[
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.yml",
    "content": "name: Bug Report\ndescription: Create a report to help us improve\n\nbody:\n  - type: markdown\n    attributes:\n      value: |\n        ⚠️ Make sure to browse the opened and closed issues before submit your issue.\n\n  - type: textarea\n    id: sample\n    attributes:\n      label: \"The following program `sample.go` triggers an unexpected result\"\n      value: |\n        package main\n\n        func main() {\n          // add a sample\n        }\n      render: go\n    validations:\n      required: true\n\n  - type: textarea\n    id: expected\n    attributes:\n      label: Expected result\n      description: |-\n        ```console\n        $ go run ./sample.go\n        // output\n        ```\n      placeholder: $ go run ./sample.go\n      render: console\n    validations:\n      required: true\n\n  - type: textarea\n    id: got\n    attributes:\n      label: Got\n      description: |-\n        ```console\n        $ yaegi ./sample.go\n        // output\n        ```\n      placeholder: $ yaegi ./sample.go\n      render: console\n    validations:\n      required: true\n\n  - type: input\n    id: version\n    attributes:\n      label: Yaegi Version\n      description: Can be a tag or a hash.\n    validations:\n      required: true\n\n  - type: textarea\n    id: additional\n    attributes:\n      label: Additional Notes\n      description: Use [Markdown syntax](https://help.github.com/articles/github-flavored-markdown) if needed.\n    validations:\n      required: false\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/config.yml",
    "content": "blank_issues_enabled: false\ncontact_links:\n  - name: Questions\n    url: https://community.traefik.io/c/yaegi\n    about: If you have a question, or are looking for advice, please post on our discussions forum!\n  - name: Documentation\n    url: https://pkg.go.dev/github.com/traefik/yaegi\n    about: Please take a look to our documenation.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.yml",
    "content": "name: Feature request\ndescription: Propose a change to Yaegi\n\nbody:\n  - type: markdown\n    attributes:\n      value: |\n        ⚠️ Make sure to browse the opened and closed issues before submit your issue.\n\n  - type: textarea\n    id: proposal\n    attributes:\n      label: Proposal\n      description: Write your feature request in the form of a proposal to be considered for implementation.\n    validations:\n      required: true\n\n  - type: textarea\n    id: background\n    attributes:\n      label: Background\n      description: Describe the background problem or need that led to this feature request.\n    validations:\n      required: true\n\n  - type: textarea\n    id: workarounds\n    attributes:\n      label: Workarounds\n      description: Are there any current workarounds that you're using that others in similar positions should know about?\n    validations:\n      required: true\n"
  },
  {
    "path": ".github/workflows/go-cross.yml",
    "content": "name: Build Cross OS\n\non:\n  push:\n    branches:\n      - master\n  pull_request:\n\njobs:\n\n  cross:\n    name: Go\n    runs-on: ${{ matrix.os }}\n    defaults:\n      run:\n        working-directory: ${{ github.workspace }}/go/src/github.com/traefik/yaegi\n\n    strategy:\n      matrix:\n        go-version: [ oldstable, stable ]\n        os: [ubuntu-latest, macos-latest, windows-latest]\n\n        include:\n          - os: ubuntu-latest\n            go-path-suffix: /go\n          - os: macos-latest\n            go-path-suffix: /go\n          - os: windows-latest\n            go-path-suffix: \\go\n\n    steps:\n      # https://github.com/marketplace/actions/checkout\n      - name: Checkout code\n        uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1\n        with:\n          path: go/src/github.com/traefik/yaegi\n\n      # https://github.com/marketplace/actions/setup-go-environment\n      - name: Set up Go ${{ matrix.go-version }}\n        uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0\n        with:\n          go-version: ${{ matrix.go-version }}\n          stable: true\n\n      - name: Setup GOPATH\n        run: go env -w GOPATH=${{ github.workspace }}${{ matrix.go-path-suffix }}\n\n# TODO fail on windows\n#      - name: Tests\n#        run: go test -v -cover ./...\n#        env:\n#          GOPATH: ${{ github.workspace }}${{ matrix.go-path }}\n\n      - name: Build\n        run: go build -race -v -ldflags \"-s -w\" -trimpath\n"
  },
  {
    "path": ".github/workflows/main.yml",
    "content": "name: Main\n\non:\n  push:\n    branches:\n      - master\n  pull_request:\n\nenv:\n  GO_VERSION: stable\n  GOLANGCI_LINT_VERSION: v2.4.0\n\njobs:\n\n  linting:\n    name: Linting\n    runs-on: ubuntu-latest\n    steps:\n      - name: Check out code\n        uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1\n        with:\n          fetch-depth: 0\n\n      - name: Set up Go ${{ env.GO_VERSION }}\n        uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0\n        with:\n          go-version: ${{ env.GO_VERSION }}\n\n      - name: Check and get dependencies\n        run: |\n          go mod tidy\n          git diff --exit-code go.mod\n          # git diff --exit-code go.sum\n          go mod download\n\n      - name: Install golangci-lint ${{ env.GOLANGCI_LINT_VERSION }}\n        run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin ${GOLANGCI_LINT_VERSION}\n\n      - name: Run golangci-lint ${{ env.GOLANGCI_LINT_VERSION }}\n        run: make check\n\n  generate:\n    name: Checks code and generated code\n    runs-on: ubuntu-latest\n    needs: linting\n    strategy:\n      matrix:\n        go-version: [ oldstable, stable ]\n    steps:\n      - name: Check out code\n        uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1\n        with:\n          fetch-depth: 0\n\n      - name: Set up Go ${{ matrix.go-version }}\n        uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0\n        with:\n          go-version: ${{ matrix.go-version }}\n          stable: true\n\n      - name: Check generated code\n        run: |\n          rm -f interp/op.go\n          make generate\n          git update-index -q --refresh\n          CHANGED=$(git diff-index --name-only HEAD --)\n          test -z \"$CHANGED\" || echo $CHANGED\n          test -z \"$CHANGED\"\n\n  main:\n    name: Build and Test\n    runs-on: ubuntu-latest\n    needs: linting\n    defaults:\n      run:\n        working-directory: ${{ github.workspace }}/go/src/github.com/traefik/yaegi\n    strategy:\n      matrix:\n        go-version: [ oldstable, stable ]\n\n    steps:\n      - name: Check out code\n        uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1\n        with:\n          path: go/src/github.com/traefik/yaegi\n          fetch-depth: 0\n\n      - name: Set up Go ${{ matrix.go-version }}\n        uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0\n        with:\n          go-version: ${{ matrix.go-version }}\n          stable: true\n\n      # https://github.com/marketplace/actions/cache\n      - name: Cache Go modules\n        uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3.5.0\n        with:\n          path: ./_test/tmp\n          key: ${{ runner.os }}-yaegi-${{ hashFiles('**//_test/tmp/') }}\n          restore-keys: |\n            ${{ runner.os }}-yaegi-\n\n      - name: Setup GOPATH\n        run: go env -w GOPATH=${{ github.workspace }}/go\n\n      - name: Build\n        run: go build -v ./...\n\n      - name: Run tests\n        run: make tests\n        env:\n          GOPATH: ${{ github.workspace }}/go\n"
  },
  {
    "path": ".github/workflows/release.yml",
    "content": "name: Release\n\non:\n  push:\n    tags:\n      - v[0-9]+.[0-9]+*\n\nenv:\n  GO_VERSION: stable\n\njobs:\n\n  release:\n    name: Create a release\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Check out code\n        uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1\n        with:\n          fetch-depth: 0\n\n      - name: Set up Go ${{ env.GO_VERSION }}\n        uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0\n        with:\n          go-version: ${{ env.GO_VERSION }}\n\n      - name: Run GoReleaser\n        uses: goreleaser/goreleaser-action@5742e2a039330cbb23ebf35f046f814d4c6ff811 # v5.1.0\n        with:\n          version: latest\n          args: release --clean\n        env:\n          GITHUB_TOKEN: ${{ secrets.GH_TOKEN_REPO }}\n"
  },
  {
    "path": ".gitignore",
    "content": ".*.swo\n.*.swp\n*.dot\n*.out\n.idea/\n/yaegi\ninternal/cmd/extract/extract\nexample/inception/inception\n_test/tmp/\n/dist\n"
  },
  {
    "path": ".golangci.yml",
    "content": "version: \"2\"\nlinters:\n  default: standard\n  enable:\n    - depguard\n    - goconst\n    - godot\n    - grouper\n    - misspell\n    - perfsprint\n    - thelper\n    - unconvert\n    - unparam\n  disable:\n    - errcheck\n  settings:\n    depguard:\n      rules:\n        main:\n          files:\n            - $all\n          allow:\n            - $gostd\n            - github.com/traefik/yaegi\n    goconst:\n      min-len: 3\n      min-occurrences: 3\n    misspell:\n      locale: US\n    staticcheck:\n      checks: [\"all\", \"-ST1000\", \"-ST1023\", \"-QF1001\", \"-QF1008\", \"-QF1011\"]\n  exclusions:\n    generated: lax\n    rules:\n      - linters:\n          - goconst\n        path: .+_test\\.go\n      - path: .+_test\\.go\n        text: 'var-declaration:'\n      - path: interp/interp.go\n        text: '`in` can be `io.Reader`'\n      - path: interp/interp.go\n        text: '`out` can be `io.Writer`'\n      - path: interp/interp.go\n        text: '`Panic` should conform to the `XxxError` format'\n      - linters:\n          - thelper\n        path: interp/interp_eval_test.go\n      - linters:\n          - containedctx\n        path: interp/debugger.go\n      - path: (.+)\\.go$\n        text: fmt.Sprintf can be replaced with string\n    paths:\n      - third_party$\n      - builtin$\n      - examples$\nissues:\n  max-issues-per-linter: 0\n  max-same-issues: 0\nformatters:\n  enable:\n    - gci\n    - gofmt\n    - gofumpt\n    - goimports\n  exclusions:\n    generated: lax\n    paths:\n      - third_party$\n      - builtin$\n      - examples$\n"
  },
  {
    "path": ".goreleaser.yml",
    "content": "project_name: yaegi\n\nbuilds:\n  - id: yaegi\n    binary: yaegi\n    main: ./cmd/yaegi/\n\n    goos:\n      - darwin\n      - linux\n#      - windows\n      - freebsd\n      - openbsd\n      - solaris\n    goarch:\n      - amd64\n      - 386\n      - arm\n      - arm64\n    goarm:\n      - 7\n      - 6\n      - 5\n\n    ignore:\n      - goos: darwin\n        goarch: 386\n\nchangelog:\n  sort: asc\n  filters:\n    exclude:\n      - '^docs:'\n      - '^doc:'\n      - '^chore:'\n      - '^test:'\n      - '^tests:'\n\narchives:\n  - id: archive\n    name_template: '{{ .ProjectName }}_v{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'\n    format: tar.gz\n    format_overrides:\n      - goos: windows\n        format: zip\n    files:\n      - LICENSE\n\nbrews:\n  - repository:\n      owner: traefik\n      name: homebrew-tap\n    commit_author:\n      name: traefiker\n      email: 30906710+traefiker@users.noreply.github.com\n    folder: Formula\n    homepage: https://github.com/traefik/yaegi\n    description: |\n      Yaegi is Another Elegant Go Interpreter.\n      It powers executable Go scripts and plugins, in embedded interpreters\n      or interactive shells, on top of the Go runtime.\n    test: |\n      system \"#{bin}/yaegi version\"\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing\n\nYaegi is an open source project, and your feedback and contributions\nare needed and always welcome.\n\n[Issues] and [Pull Requests] are opened at https://github.com/traefik/yaegi.\n\nNon trivial changes should be discussed with the project maintainers by\nopening a [Feature Request] clearly explaining rationale, background\nand possible implementation ideas. Feel free to provide code in such\ndiscussions.\n\nOnce the proposal is approved, a Pull Request can be opened. If you want\nto provide early visibility to reviewers, create a [Draft Pull Request].\n\nWe will also require you to sign the [Traefik Contributor License Agreement]\nafter you submit your first pull request to this project. The link to sign the\nagreement will be presented to you in the web interface of the pull request.\n\n[Issues]: https://github.com/traefik/yaegi/issues\n[Pull Requests]: https://github.com/traefik/yaegi/issues\n[Feature Request]: https://github.com/traefik/yaegi/issues/new?template=feature_request.md\n[Draft Pull Request]: https://github.blog/2019-02-14-introducing-draft-pull-requests/\n[Traefik Labs Contributor License Agreement]: https://cla-assistant.io/traefik/yaegi\n"
  },
  {
    "path": "LICENSE",
    "content": "                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright 2019 Containous SAS\n   Copyright 2020 Traefik Labs SAS\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n"
  },
  {
    "path": "Makefile",
    "content": "# Static linting of source files. See .golangci.toml for options\ncheck:\n\tgolangci-lint run\n\n# Generate stdlib/syscall/syscall_GOOS_GOARCH.go for all platforms\ngen_all_syscall: internal/cmd/extract/extract\n\t@for v in $$(go tool dist list); do \\\n\t\techo syscall_$${v%/*}_$${v#*/}.go; \\\n\t\tGOOS=$${v%/*} GOARCH=$${v#*/} go generate ./stdlib/syscall ./stdlib/unrestricted; \\\n\tdone\n\ninternal/cmd/extract/extract:\n\trm -f internal/cmd/extract/extract\n\tgo generate ./internal/cmd/extract\n\ngenerate: gen_all_syscall\n\tgo generate\n\ninstall:\n\tGOFLAGS=-ldflags=-X=main.version=$$(git describe --tags) go install ./...\n\ntests:\n\tgo test -v ./...\n\tgo test -race ./interp\n\n# https://github.com/goreleaser/godownloader\ninstall.sh: .goreleaser.yml\n\tgodownloader --repo=traefik/yaegi -o install.sh .goreleaser.yml\n\ngeneric_list = cmp/cmp.go slices/slices.go slices/sort.go slices/zsortanyfunc.go maps/maps.go \\\n\t\t\t   sync/oncefunc.go sync/atomic/type.go\n\n# get_generic_src imports stdlib files containing generic symbols definitions\nget_generic_src:\n\teval \"`go env`\"; echo $$GOROOT; gov=$${GOVERSION#*.}; gov=$${gov%.*}; \\\n\tfor f in ${generic_list}; do \\\n\t\tnf=stdlib/generic/go1_$${gov}_`echo $$f | tr / _`.txt; echo \"nf: $$nf\"; \\\n\t\tcat \"$$GOROOT/src/$$f\" > \"$$nf\"; \\\n\tdone\n\n.PHONY: check gen_all_syscall internal/cmd/extract/extract get_generic_src install\n"
  },
  {
    "path": "README.md",
    "content": "<p align=\"center\">\n<img width=\"400\" src=\"doc/images/yaegi.png\" alt=\"Yaegi\" title=\"Yaegi\" />\n</p>\n\n[![release](https://img.shields.io/github/tag-date/traefik/yaegi.svg?label=alpha)](https://github.com/traefik/yaegi/releases)\n[![Build Status](https://github.com/traefik/yaegi/actions/workflows/main.yml/badge.svg)](https://github.com/traefik/yaegi/actions/workflows/main.yml)\n[![GoDoc](https://godoc.org/github.com/traefik/yaegi?status.svg)](https://pkg.go.dev/mod/github.com/traefik/yaegi)\n\nYaegi is Another Elegant Go Interpreter.\nIt powers executable Go scripts and plugins, in embedded interpreters or interactive shells, on top of the Go runtime.\n\n## Features\n\n* Complete support of [Go specification][specs]\n* Written in pure Go, using only the standard library\n* Simple interpreter API: `New()`, `Eval()`, `Use()`\n* Works everywhere Go works\n* All Go & runtime resources accessible from script (with control)\n* Security: `unsafe` and `syscall` packages neither used nor exported by default\n* Support the latest 2 major releases of Go (Go 1.21 and Go 1.22)\n\n## Install\n\n### Go package\n\n```go\nimport \"github.com/traefik/yaegi/interp\"\n```\n\n### Command-line executable\n\n```bash\ngo install github.com/traefik/yaegi/cmd/yaegi@latest\n```\n\nNote that you can use [rlwrap](https://github.com/hanslub42/rlwrap) (install with your favorite package manager),\nand alias the `yaegi` command in `alias yaegi='rlwrap yaegi'` in your `~/.bashrc`, to have history and command line edition.\n\n### CI Integration\n\n```bash\ncurl -sfL https://raw.githubusercontent.com/traefik/yaegi/master/install.sh | bash -s -- -b $GOPATH/bin v0.9.0\n```\n\n## Usage\n\n### As an embedded interpreter\n\nCreate an interpreter with `New()`, run Go code with `Eval()`:\n\n```go\npackage main\n\nimport (\n\t\"github.com/traefik/yaegi/interp\"\n\t\"github.com/traefik/yaegi/stdlib\"\n)\n\nfunc main() {\n\ti := interp.New(interp.Options{})\n\n\ti.Use(stdlib.Symbols)\n\n\t_, err := i.Eval(`import \"fmt\"`)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\t_, err = i.Eval(`fmt.Println(\"Hello Yaegi\")`)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n}\n```\n\n[Go Playground](https://play.golang.org/p/2n-EpZbMYI9)\n\n### As a dynamic extension framework\n\nThe following program is compiled ahead of time, except `bar()` which is interpreted, with the following steps:\n\n1. use of `i.Eval(src)` to evaluate the script in the context of interpreter\n2. use of `v, err := i.Eval(\"foo.Bar\")` to get the symbol from the interpreter context,  as a `reflect.Value`\n3. application of `Interface()` method and type assertion to convert `v` into `bar`, as if it was compiled\n\n```go\npackage main\n\nimport \"github.com/traefik/yaegi/interp\"\n\nconst src = `package foo\nfunc Bar(s string) string { return s + \"-Foo\" }`\n\nfunc main() {\n\ti := interp.New(interp.Options{})\n\n\t_, err := i.Eval(src)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\tv, err := i.Eval(\"foo.Bar\")\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\tbar := v.Interface().(func(string) string)\n\n\tr := bar(\"Kung\")\n\tprintln(r)\n}\n```\n\n[Go Playground](https://play.golang.org/p/WvwH4JqrU-p)\n\n### As a command-line interpreter\n\nThe Yaegi command can run an interactive Read-Eval-Print-Loop:\n\n```console\n$ yaegi\n> 1 + 2\n3\n> import \"fmt\"\n> fmt.Println(\"Hello World\")\nHello World\n>\n```\n\nNote that in interactive mode, all stdlib package are pre-imported,\nyou can use them directly:\n\n```console\n$ yaegi\n> reflect.TypeOf(time.Date)\n: func(int, time.Month, int, int, int, int, int, *time.Location) time.Time\n>\n```\n\nOr interpret Go packages, directories or files, including itself:\n\n```console\n$ yaegi -syscall -unsafe -unrestricted github.com/traefik/yaegi/cmd/yaegi\n>\n```\n\nOr for Go scripting in the shebang line:\n\n```console\n$ cat /tmp/test\n#!/usr/bin/env yaegi\npackage main\n\nimport \"fmt\"\n\nfunc main() {\n\tfmt.Println(\"test\")\n}\n$ ls -la /tmp/test\n-rwxr-xr-x 1 dow184 dow184 93 Jan  6 13:38 /tmp/test\n$ /tmp/test\ntest\n```\n\n## Documentation\n\nDocumentation about Yaegi commands and libraries can be found at usual [godoc.org][docs].\n\nKey documentation of the internal design: https://marc.vertes.org/yaegi-internals/  Also see [interp/trace.go](interp/trace.go) for helpful printing commands to see what is happening under the hood during compilation.\n\n## Limitations\n\nBeside the known [bugs] which are supposed to be fixed in the short term, there are some limitations not planned to be addressed soon:\n\n- Assembly files (`.s`) are not supported.\n- Calling C code is not supported (no virtual \"C\" package).\n- Directives about the compiler, the linker, or embedding files are not supported.\n- Interfaces to be used from the pre-compiled code can not be added dynamically, as it is required to pre-compile interface wrappers.\n- Representation of types by `reflect` and printing values using %T may give different results between compiled mode and interpreted mode.\n- Interpreting computation intensive code is likely to remain significantly slower than in compiled mode.\n\nGo modules are not supported yet. Until that, it is necessary to install the source into `$GOPATH/src/github.com/traefik/yaegi` to pass all the tests.\n\n## Contributing\n\n[Contributing guide](CONTRIBUTING.md).\n\n## License\n\n[Apache 2.0][License].\n\n[specs]: https://golang.org/ref/spec\n[docs]: https://pkg.go.dev/github.com/traefik/yaegi\n[license]: https://github.com/traefik/yaegi/blob/master/LICENSE\n[github]: https://github.com/traefik/yaegi\n[bugs]: https://github.com/traefik/yaegi/issues?q=is%3Aissue+is%3Aopen+label%3Abug\n"
  },
  {
    "path": "_test/a1.go",
    "content": "package main\n\nfunc main() {\n\ta := [6]int{1, 2, 3, 4, 5, 6}\n\tprintln(a[1]) // 2\n\tfor i, v := range a {\n\t\tprintln(v)\n\t\tif i == 3 {\n\t\t\tbreak\n\t\t}\n\t}\n}\n\n// Output:\n// 2\n// 1\n// 2\n// 3\n// 4\n"
  },
  {
    "path": "_test/a10.go",
    "content": "package main\n\ntype Sample struct {\n\tName string\n}\n\nvar samples = []Sample{}\n\nfunc f(i int) {\n\tprintln(samples[i].Name)\n}\n\nfunc main() {\n\tsamples = append(samples, Sample{Name: \"test\"})\n\tf(0)\n}\n\n// Output:\n// test\n"
  },
  {
    "path": "_test/a11.go",
    "content": "package main\n\nfunc main() {\n\ta := []int{1, 2, 3, 4}\n\tfor _, v := range a {\n\t\tprintln(v)\n\t}\n}\n\n// Output:\n// 1\n// 2\n// 3\n// 4\n"
  },
  {
    "path": "_test/a12.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar buf [12]int\n\tfmt.Println(buf[0])\n}\n\n// Output:\n// 0\n"
  },
  {
    "path": "_test/a13.go",
    "content": "package main\n\ntype T1 struct {\n\tnum []int\n}\n\nfunc main() {\n\ta := T1{[]int{1, 3, 5}}\n\tfor i, v := range a.num {\n\t\tprintln(i, v)\n\t}\n}\n\n// Output:\n// 0 1\n// 1 3\n// 2 5\n"
  },
  {
    "path": "_test/a14.go",
    "content": "package main\n\nimport \"fmt\"\n\nconst size = 12\n\nfunc main() {\n\tvar buf [size]int\n\tfmt.Println(buf)\n}\n\n// Output:\n// [0 0 0 0 0 0 0 0 0 0 0 0]\n"
  },
  {
    "path": "_test/a15.go",
    "content": "package main\n\nimport \"fmt\"\n\nconst size = 12\n\nfunc main() {\n\tvar buf [size]int\n\tfmt.Println(buf[:])\n}\n\n// Output:\n// [0 0 0 0 0 0 0 0 0 0 0 0]\n"
  },
  {
    "path": "_test/a16.go",
    "content": "package main\n\nfunc main() {\n\ta := [6]int{1, 2, 3, 4, 5, 6}\n\tprintln(a[1]) // 2\n\tfor k := 0; k < 2; k++ {\n\t\tfor i, v := range a {\n\t\t\tprintln(v)\n\t\t\tif i == 3 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t}\n}\n\n// Output:\n// 2\n// 1\n// 2\n// 3\n// 4\n// 1\n// 2\n// 3\n// 4\n"
  },
  {
    "path": "_test/a17.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := make([]int, 2, 7)\n\tfmt.Println(a, len(a), cap(a))\n}\n\n// Output:\n// [0 0] 2 7\n"
  },
  {
    "path": "_test/a18.go",
    "content": "package main\n\nfunc main() {\n\ta := []int64{1, 2, 3, 4}\n\tfor _, v := range a {\n\t\tprintln(v)\n\t}\n}\n\n// Output:\n// 1\n// 2\n// 3\n// 4\n"
  },
  {
    "path": "_test/a19.go",
    "content": "package main\n\nfunc main() {\n\tvar buf [bsize]byte\n\tprintln(len(buf))\n}\n\nconst bsize = 10\n\n// Output:\n// 10\n"
  },
  {
    "path": "_test/a2.go",
    "content": "package main\n\nfunc main() {\n\ta := [6]int{1, 2, 3, 4, 5, 6}\n\ta[1] = 5\n\tprintln(a[1]) // 2\n\tfor i, v := range a {\n\t\tprintln(v)\n\t\tif i == 3 {\n\t\t\tbreak\n\t\t}\n\t}\n}\n\n// Output:\n// 5\n// 1\n// 5\n// 3\n// 4\n"
  },
  {
    "path": "_test/a20.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype IntArray []int\n\nfunc (h *IntArray) Add(x int) {\n\t*h = append(*h, x)\n}\n\nfunc main() {\n\ta := IntArray{}\n\ta.Add(4)\n\n\tfmt.Println(a)\n}\n\n// Output:\n// [4]\n"
  },
  {
    "path": "_test/a21.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := []byte(\"hello\")\n\tfmt.Println(a)\n\ta = append(a, '=')\n\tfmt.Println(a)\n}\n\n// Output:\n// [104 101 108 108 111]\n// [104 101 108 108 111 61]\n"
  },
  {
    "path": "_test/a22.go",
    "content": "package main\n\nfunc main() {\n\ta := [256]int{}\n\tvar b uint8 = 12\n\ta[b] = 1\n\tprintln(a[b])\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/a23.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar key, salt [32]byte\n\tfor i := range key {\n\t\tkey[i] = byte(i)\n\t\tsalt[i] = byte(i + 32)\n\t}\n\tfmt.Println(key)\n\tfmt.Println(salt)\n}\n\n// Output:\n// [0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31]\n// [32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63]\n"
  },
  {
    "path": "_test/a24.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tfor i := 0; i < 2; i++ {\n\t\tvar buf [8]byte\n\t\tvar x int\n\t\tfmt.Println(buf, x)\n\t\tfor i := range buf {\n\t\t\tbuf[i] = byte(i)\n\t\t\tx = i\n\t\t}\n\t\tfmt.Println(buf, x)\n\t}\n}\n\n// Output:\n// [0 0 0 0 0 0 0 0] 0\n// [0 1 2 3 4 5 6 7] 7\n// [0 0 0 0 0 0 0 0] 0\n// [0 1 2 3 4 5 6 7] 7\n"
  },
  {
    "path": "_test/a25.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar buf [8]byte\n\tfor i := 0; i < 2; i++ {\n\t\tfor i := range buf {\n\t\t\tbuf[i] += byte(i)\n\t\t}\n\t\tfmt.Println(buf)\n\t}\n}\n\n// Output:\n// [0 1 2 3 4 5 6 7]\n// [0 2 4 6 8 10 12 14]\n"
  },
  {
    "path": "_test/a26.go",
    "content": "package main\n\nfunc main() {\n\ta := [3]int{1, 2, 3}\n\tb := [3]int{1, 2, 3}\n\tprintln(a == b)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/a27.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := [...]string{\"hello\", \"world\"}\n\tfmt.Printf(\"%v %T\\n\", a, a)\n}\n\n// Output:\n// [hello world] [2]string\n"
  },
  {
    "path": "_test/a28.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := [...]string{9: \"hello\"}\n\tfmt.Printf(\"%v %T\\n\", a, a)\n}\n\n// Output:\n// [         hello] [10]string\n"
  },
  {
    "path": "_test/a29.go",
    "content": "package main\n\nimport \"fmt\"\n\nconst (\n\tzero = iota\n\tone\n\ttwo\n\tthree\n)\n\nfunc main() {\n\ta := [...]string{\n\t\tzero:      \"zero\",\n\t\tone:       \"one\",\n\t\tthree:     \"three\",\n\t\tthree + 2: \"five\",\n\t}\n\tfmt.Printf(\"%v %T\\n\", a, a)\n}\n\n// Output:\n// [zero one  three  five] [6]string\n"
  },
  {
    "path": "_test/a3.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := [6]int{1, 2, 3, 4, 5, 6}\n\tfmt.Println(a[2:])\n}\n\n// Output:\n// [3 4 5 6]\n"
  },
  {
    "path": "_test/a30.go",
    "content": "package main\n\nfunc main() {\n\tfor range []struct{}{} {\n\t}\n\tprintln(\"ok\")\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/a31.go",
    "content": "package main\n\nfunc main() {\n\tfor range []int{0, 1, 2} {\n\t\tprint(\"hello \")\n\t}\n\tprintln(\"\")\n}\n\n// Output:\n// hello hello hello\n"
  },
  {
    "path": "_test/a32.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype T struct{}\n\nvar a = []T{{}}\n\nfunc main() {\n\tfmt.Println(a)\n}\n\n// Output:\n// [{}]\n"
  },
  {
    "path": "_test/a33.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := [...]int{1, 2, 3}\n\tb := a\n\tfmt.Println(b)\n}\n\n// Output:\n// [1 2 3]\n"
  },
  {
    "path": "_test/a34.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := [...]int{1, 2, 3}\n\tvar b [3]int = a\n\tfmt.Println(b)\n}\n\n// Output:\n// [1 2 3]\n"
  },
  {
    "path": "_test/a35.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := [...]int{1, 2, 3}\n\tb := a\n\tb[0] = -1\n\tfmt.Println(a)\n}\n\n// Output:\n// [1 2 3]\n"
  },
  {
    "path": "_test/a36.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := [...]int{1, 2, 3}\n\tvar b [3]int = a\n\tb[0] = -1\n\tfmt.Println(a)\n}\n\n// Output:\n// [1 2 3]\n"
  },
  {
    "path": "_test/a37.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := [...]int{1, 2, 3}\n\tfmt.Println(a)\n}\n\n// Output:\n// [1 2 3]\n"
  },
  {
    "path": "_test/a38.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := [...]byte{}\n\tfmt.Printf(\"%T\\n\", a)\n}\n\n// Output:\n// [0]uint8\n"
  },
  {
    "path": "_test/a39.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := [...]byte{}\n\tb := a\n\tfmt.Printf(\"%T %T\\n\", a, b)\n}\n\n// Output:\n// [0]uint8 [0]uint8\n"
  },
  {
    "path": "_test/a4.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := [6]int{1, 2, 3, 4, 5, 6}\n\tfmt.Println(a[2:4])\n}\n\n// Output:\n// [3 4]\n"
  },
  {
    "path": "_test/a40.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype rule uint8\n\nconst (\n\tr0 rule = iota\n\tr1\n\tr2\n)\n\nvar a = [...]int{\n\tr0: 1,\n\tr1: 12,\n}\n\nfunc main() {\n\tfmt.Println(a)\n}\n\n// Output:\n// [1 12]\n"
  },
  {
    "path": "_test/a41.go",
    "content": "package main\n\nvar a = [...]bool{true, true}\n\nfunc main() {\n\tprintln(a[0] && true)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/a42.go",
    "content": "package main\n\nimport (\n\t\"encoding/binary\"\n\t\"fmt\"\n)\n\nfunc main() {\n\tvar b [8]byte\n\tbinary.LittleEndian.PutUint64(b[:], uint64(1))\n\n\tfmt.Println(b)\n}\n\n// Output:\n// [1 0 0 0 0 0 0 0]\n"
  },
  {
    "path": "_test/a43.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype T [l1 + l2]int\n\nconst (\n\tl1 = 2\n\tl2 = 3\n)\n\nfunc main() {\n\tfmt.Println(T{})\n}\n\n// Output:\n// [0 0 0 0 0]\n"
  },
  {
    "path": "_test/a44.go",
    "content": "package main\n\nvar a = [max]int{}\n\nconst max = 32\n\nfunc main() {\n\tprintln(len(a))\n}\n\n// Output:\n// 32\n"
  },
  {
    "path": "_test/a5.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := [6]int{1, 2, 3, 4, 5, 6}\n\tfmt.Println(a[:4])\n}\n\n// Output:\n// [1 2 3 4]\n"
  },
  {
    "path": "_test/a6.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := [6]int{1, 2, 3, 4, 5, 6}\n\tfmt.Println(a[:])\n}\n\n// Output:\n// [1 2 3 4 5 6]\n"
  },
  {
    "path": "_test/a7.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := [6]int{1, 2, 3, 4, 5, 6}\n\tfmt.Println(len(a))\n}\n\n// Output:\n// 6\n"
  },
  {
    "path": "_test/a8.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\t//a := []int{1, 2}\n\ta := make([]int, 2)\n\t//a[0] = 1\n\t//a[1] = 2\n\tfmt.Println(a)\n}\n\n// Output:\n// [0 0]\n"
  },
  {
    "path": "_test/a9.go",
    "content": "package main\n\nimport \"fmt\"\n\n//var (\n//\tsamples = []int{}\n//\tb       = 1\n//)\n\nfunc main() {\n\tvar samples = []int{}\n\tsamples = append(samples, 1)\n\tfmt.Println(samples)\n}\n\n// Output:\n// [1]\n"
  },
  {
    "path": "_test/add0.go",
    "content": "package main\n\nfunc main() {\n\tvar a interface{} = 2 + 5\n\tprintln(a.(int))\n}\n\n// Output:\n// 7\n"
  },
  {
    "path": "_test/add1.go",
    "content": "package main\n\nfunc main() {\n\tb := 2 // int\n\n\tvar c int = 5 + b\n\tprintln(c)\n\n\tvar d int32 = 6 + int32(b)\n\tprintln(d)\n\n\tvar a interface{} = 7 + b\n\tprintln(a.(int))\n\n\tvar e int32 = 2\n\tvar f interface{} = 8 + e\n\tprintln(f.(int32))\n\n\ta = 9 + e\n\tprintln(a.(int32))\n\n\tvar g int = 2\n\ta = 10 + g\n\tprintln(a.(int))\n\n\t// multiple assignment\n\tvar foo interface{}\n\tfoo, a = \"hello\", 11 + g\n\tprintln(a.(int))\n\tprintln(foo.(string))\n}\n\n// Output:\n// 7\n// 8\n// 9\n// 10\n// 11\n// 12\n// 13\n// hello\n"
  },
  {
    "path": "_test/add2.go",
    "content": "package main\n\ntype iface interface{}\n\nfunc main() {\n\tb := 2\n\tvar a iface = 5 + b\n\tprintln(a.(int))\n}\n\n// Output:\n// 7\n"
  },
  {
    "path": "_test/addr0.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n)\n\ntype extendedRequest struct {\n\thttp.Request\n\n\tData string\n}\n\nfunc main() {\n\tr := extendedRequest{}\n\treq := &r.Request\n\n\tfmt.Printf(\"%T\\n\", r.Request)\n\tfmt.Printf(\"%T\\n\", req)\n}\n\n// Output:\n// http.Request\n// *http.Request\n"
  },
  {
    "path": "_test/addr1.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype T struct {\n\tA int\n\tB int\n}\n\nfunc main() {\n\ta := &[]T{\n\t\t{1, 2},\n\t\t{3, 4},\n\t}\n\tfmt.Println(\"a:\", a)\n\tx := &(*a)[1:][0]\n\tfmt.Println(\"x:\", x)\n}\n\n// Output:\n// a: &[{1 2} {3 4}]\n// x: &{3 4}\n"
  },
  {
    "path": "_test/addr2.go",
    "content": "package main\n\nimport (\n\t\"encoding/xml\"\n\t\"errors\"\n\t\"fmt\"\n)\n\ntype Email struct {\n\tWhere string `xml:\"where,attr\"`\n\tAddr  string\n}\n\nfunc f(r interface{}) error {\n\treturn withPointerAsInterface(&r)\n}\n\nfunc withPointerAsInterface(r interface{}) error {\n\t_ = (r).(*interface{})\n\trp, ok := (r).(*interface{})\n\tif !ok {\n\t\treturn errors.New(\"cannot assert to *interface{}\")\n\t}\n\tem, ok := (*rp).(*Email)\n\tif !ok {\n\t\treturn errors.New(\"cannot assert to *Email\")\n\t}\n\tem.Where = \"work\"\n\tem.Addr = \"bob@work.com\"\n\treturn nil\n}\n\nfunc ff(s string, r interface{}) error {\n\treturn xml.Unmarshal([]byte(s), r)\n}\n\nfunc fff(s string, r interface{}) error {\n\treturn xml.Unmarshal([]byte(s), &r)\n}\n\nfunc main() {\n\tdata := `\n\t\t<Email where='work'>\n\t\t\t<Addr>bob@work.com</Addr>\n\t\t</Email>\n\t`\n\tv := Email{}\n\terr := f(&v)\n\tfmt.Println(err, v)\n\n\tvv := Email{}\n\terr = ff(data, &vv)\n\tfmt.Println(err, vv)\n\n\tvvv := Email{}\n\terr = ff(data, &vvv)\n\tfmt.Println(err, vvv)\n}\n\n// Output:\n// <nil> {work bob@work.com}\n// <nil> {work bob@work.com}\n// <nil> {work bob@work.com}\n"
  },
  {
    "path": "_test/addr3.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\nfunc main() {\n\tvar a interface{}\n\ta = 2\n\tfmt.Println(a)\n\n\tvar b *interface{}\n\tb = &a\n\tfmt.Println(*b)\n\n\tvar c **interface{}\n\tc = &b\n\tfmt.Println(**c)\n}\n\n// Output:\n// 2\n// 2\n// 2\n"
  },
  {
    "path": "_test/addr4.go",
    "content": "package main\n\nimport (\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"log\"\n)\n\nconst jsonData = `[\n  \"foo\",\n  \"bar\"\n]`\n\nconst jsonData2 = `[\n  {\"foo\": \"foo\"},\n  {\"bar\": \"bar\"}\n]`\n\nconst jsonData3 = `{\n  \"foo\": \"foo\",\n  \"bar\": \"bar\"\n}`\n\nfunc fromSlice() {\n\tvar a []interface{}\n\tvar c, d interface{}\n\tc = 2\n\td = 3\n\ta = []interface{}{c, d}\n\n\tif err := json.Unmarshal([]byte(jsonData), &a); err != nil {\n\t\tlog.Fatalln(err)\n\t}\n\n\tfor k, v := range a {\n\t\tfmt.Println(k, \":\", v)\n\t}\n}\n\nfunc fromEmpty() {\n\tvar a interface{}\n\tvar c, d interface{}\n\tc = 2\n\td = 3\n\ta = []interface{}{c, d}\n\n\tif err := json.Unmarshal([]byte(jsonData), &a); err != nil {\n\t\tlog.Fatalln(err)\n\t}\n\n\tb := a.([]interface{})\n\n\tfor k, v := range b {\n\t\tfmt.Println(k, \":\", v)\n\t}\n}\n\nfunc sliceOfObjects() {\n\tvar a interface{}\n\n\tif err := json.Unmarshal([]byte(jsonData2), &a); err != nil {\n\t\tlog.Fatalln(err)\n\t}\n\n\tb := a.([]interface{})\n\n\tfor k, v := range b {\n\t\tfmt.Println(k, \":\", v)\n\t}\n}\n\nfunc intoMap() {\n\tvar a interface{}\n\n\tif err := json.Unmarshal([]byte(jsonData3), &a); err != nil {\n\t\tlog.Fatalln(err)\n\t}\n\n\tb := a.(map[string]interface{})\n\n\tseenFoo := false\n\tfor k, v := range b {\n\t\tvv := v.(string)\n\t\tif vv != \"foo\" {\n\t\t\tif seenFoo {\n\t\t\t\tfmt.Println(k, \":\", vv)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tkk := k\n\t\t\tvvv := vv\n\t\t\tdefer fmt.Println(kk, \":\", vvv)\n\t\t\tcontinue\n\t\t}\n\t\tseenFoo = true\n\t\tfmt.Println(k, \":\", vv)\n\t}\n}\n\nfunc main() {\n\tfromSlice()\n\tfromEmpty()\n\tsliceOfObjects()\n\tintoMap()\n}\n\n// Output:\n// 0 : foo\n// 1 : bar\n// 0 : foo\n// 1 : bar\n// 0 : map[foo:foo]\n// 1 : map[bar:bar]\n// foo : foo\n// bar : bar\n"
  },
  {
    "path": "_test/addr5.go",
    "content": "package main\n\nimport (\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"net/url\"\n)\n\nfunc main() {\n\tbody := []byte(`{\n\t\t\"BODY_1\": \"VALUE_1\",\n\t\t\"BODY_2\": \"VALUE_2\",\n\t\t\"BODY_3\": null,\n\t\t\"BODY_4\": {\n\t\t\t\"BODY_1\": \"VALUE_1\",\n\t\t\t\"BODY_2\": \"VALUE_2\",\n\t\t\t\"BODY_3\": null\n\t\t},\n\t\t\"BODY_5\": [\n\t\t\t\"VALUE_1\",\n\t\t\t\"VALUE_2\",\n\t\t\t\"VALUE_3\"\n\t\t]\n\t}`)\n\n\tvalues := url.Values{}\n\n\tvar rawData map[string]interface{}\n\terr := json.Unmarshal(body, &rawData)\n\tif err != nil {\n\t\tfmt.Println(\"can't parse body\")\n\t\treturn\n\t}\n\n\tfor key, val := range rawData {\n\t\tswitch val.(type) {\n\t\tcase string, bool, float64:\n\t\t\tvalues.Add(key, fmt.Sprint(val))\n\t\tcase nil:\n\t\t\tvalues.Add(key, \"\")\n\t\tcase map[string]interface{}, []interface{}:\n\t\t\tjsonVal, err := json.Marshal(val)\n\t\t\tif err != nil {\n\t\t\t\tfmt.Println(\"can't encode json\")\n\t\t\t\treturn\n\t\t\t}\n\t\t\tvalues.Add(key, string(jsonVal))\n\t\t}\n\t}\n\tfmt.Println(values.Get(\"BODY_1\"))\n\tfmt.Println(values.Get(\"BODY_2\"))\n\tfmt.Println(values.Get(\"BODY_3\"))\n\tfmt.Println(values.Get(\"BODY_4\"))\n\tfmt.Println(values.Get(\"BODY_5\"))\n}\n\n// Output:\n// VALUE_1\n// VALUE_2\n// \n// {\"BODY_1\":\"VALUE_1\",\"BODY_2\":\"VALUE_2\",\"BODY_3\":null}\n// [\"VALUE_1\",\"VALUE_2\",\"VALUE_3\"]\n"
  },
  {
    "path": "_test/and.go",
    "content": "package main\n\nfunc main() {\n\ta, b := 1, 2\n\n\tif f1() && f2() {\n\t\tprintln(a, b)\n\t}\n}\n\nfunc f1() bool {\n\tprintln(\"f1\")\n\t//return true\n\treturn 0 == 0\n}\n\nfunc f2() bool {\n\tprintln(\"f2\")\n\t//return false\n\treturn 1 == 0\n}\n\n// Output:\n// f1\n// f2\n"
  },
  {
    "path": "_test/and0.go",
    "content": "package main\n\nfunc main() {\n\ta, b := 1, 2\n\n\tif f2() && f1() {\n\t\tprintln(a, b)\n\t}\n}\n\nfunc f1() bool {\n\tprintln(\"f1\")\n\treturn true\n}\n\nfunc f2() bool {\n\tprintln(\"f2\")\n\treturn false\n}\n\n// Output:\n// f2\n"
  },
  {
    "path": "_test/and1.go",
    "content": "package main\n\nfunc main() {\n\ta := f2() && f1()\n\tprintln(a)\n}\n\nfunc f1() bool {\n\tprintln(\"f1\")\n\treturn true\n}\n\nfunc f2() bool {\n\tprintln(\"f2\")\n\treturn false\n}\n\n// Output:\n// f2\n// false\n"
  },
  {
    "path": "_test/and2.go",
    "content": "package main\n\nfunc f() bool {\n\tprintln(\"in f\")\n\treturn true\n}\n\nfunc main() {\n\tvar (\n\t\tcl = 0\n\t\tct = \"some text\"\n\t\tce = \"\"\n\t)\n\tif ce == \"\" && (cl == 0 || cl > 1000) && (ct == \"\" || f()) {\n\t\tprintln(\"ok\")\n\t}\n}\n\n// Output:\n// in f\n// ok\n"
  },
  {
    "path": "_test/and3.go",
    "content": "package main\n\nvar a = true && true\n\nfunc main() {\n\tprintln(a)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/append0.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc f(a []int, b int) interface{} { return append(a, b) }\n\nfunc main() {\n\ta := []int{1, 2}\n\tr := f(a, 3)\n\tfmt.Println(r.([]int))\n}\n\n// Output:\n// [1 2 3]\n"
  },
  {
    "path": "_test/append1.go",
    "content": "package main\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n)\n\nfunc main() {\n\ts := bufio.NewScanner(bytes.NewReader([]byte(\"Hello\\nTest\\nLine3\")))\n\ts.Scan()\n\tprintln(string(append(s.Bytes(), []byte(\" World\")...)))\n}\n\n// Output:\n// Hello World\n"
  },
  {
    "path": "_test/append2.go",
    "content": "package main\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n)\n\nfunc main() {\n\ts := bufio.NewScanner(bytes.NewReader([]byte(\"Hello\\nTest\\nLine3\")))\n\ts.Scan()\n\tprintln(string(append(s.Bytes(), \" World\"...)))\n}\n\n// Output:\n// Hello World\n"
  },
  {
    "path": "_test/append3.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := []int{1, 2}\n\tb := [2]int{3, 4}\n\tfmt.Println(append(a, b[:]...))\n\tfmt.Println(append(a, []int{5, 6}...))\n}\n\n// Output:\n// [1 2 3 4]\n// [1 2 5 6]\n"
  },
  {
    "path": "_test/append4.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := []*int{}\n\ta = append(a, nil)\n\tfmt.Println(a)\n}\n\n// Output:\n// [<nil>]\n"
  },
  {
    "path": "_test/assert0.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\ntype MyWriter interface {\n\tWrite(p []byte) (i int, err error)\n}\n\ntype DummyWriter interface {\n\tWrite(p []byte) (i int, err error)\n}\n\ntype TestStruct struct{}\n\nfunc (t TestStruct) Write(p []byte) (n int, err error) {\n\treturn len(p), nil\n}\n\nfunc usesWriter(w MyWriter) {\n\tn, _ := w.Write([]byte(\"hello world\"))\n\tfmt.Println(n)\n}\n\ntype MyStringer interface {\n\tString() string\n}\n\ntype DummyStringer interface {\n\tString() string\n}\n\nfunc usesStringer(s MyStringer) {\n\tfmt.Println(s.String())\n}\n\nfunc main() {\n\t// TODO(mpl): restore when we can deal with empty interface.\n//\tvar t interface{}\n\tvar t DummyWriter\n\tt = TestStruct{}\n\tvar tw MyWriter\n\tvar ok bool\n\ttw, ok = t.(MyWriter)\n\tif !ok {\n\t\tfmt.Println(\"TestStruct does not implement MyWriter\")\n\t} else {\n\t\tfmt.Println(\"TestStruct implements MyWriter\")\n\t\tusesWriter(tw)\n\t}\n\tn, _ := t.(MyWriter).Write([]byte(\"hello world\"))\n\tfmt.Println(n)\n\n\t// not redundant with the above, because it goes through a slightly different code path.\n\tif _, ok := t.(MyWriter); !ok {\n\t\tfmt.Println(\"TestStruct does not implement MyWriter\")\n\t\treturn\n\t} else {\n\t\tfmt.Println(\"TestStruct implements MyWriter\")\n\t}\n\n\t// TODO(mpl): restore\n\t/*\n\tt = 42\n\tfoo, ok := t.(MyWriter)\n\tif !ok {\n\t\tfmt.Println(\"42 does not implement MyWriter\")\n\t} else {\n\t\tfmt.Println(\"42 implements MyWriter\")\n\t}\n\t_ = foo\n\n\tif _, ok := t.(MyWriter); !ok {\n\t\tfmt.Println(\"42 does not implement MyWriter\")\n\t} else {\n\t\tfmt.Println(\"42 implements MyWriter\")\n\t}\n\t*/\n\n\t// var tt interface{}\n\tvar tt DummyStringer\n\ttt = time.Nanosecond\n\tvar myD MyStringer\n\tmyD, ok = tt.(MyStringer)\n\tif !ok {\n\t\tfmt.Println(\"time.Nanosecond does not implement MyStringer\")\n\t} else {\n\t\tfmt.Println(\"time.Nanosecond implements MyStringer\")\n\t\tusesStringer(myD)\n\t}\n\tfmt.Println(tt.(MyStringer).String())\n\n\tif _, ok := tt.(MyStringer); !ok {\n\t\tfmt.Println(\"time.Nanosecond does not implement MyStringer\")\n\t} else {\n\t\tfmt.Println(\"time.Nanosecond implements MyStringer\")\n\t}\n\n\t// TODO(mpl): restore\n\t/*\n\ttt = 42\n\tbar, ok := tt.(MyStringer)\n\tif !ok {\n\t\tfmt.Println(\"42 does not implement MyStringer\")\n\t} else {\n\t\tfmt.Println(\"42 implements MyStringer\")\n\t}\n\t_ = bar\n\n\tif _, ok := tt.(MyStringer); !ok {\n\t\tfmt.Println(\"42 does not implement MyStringer\")\n\t} else {\n\t\tfmt.Println(\"42 implements MyStringer\")\n\t}\n\t*/\n}\n\n// Output:\n// TestStruct implements MyWriter\n// 11\n// 11\n// TestStruct implements MyWriter\n// time.Nanosecond implements MyStringer\n// 1ns\n// 1ns\n// time.Nanosecond implements MyStringer\n"
  },
  {
    "path": "_test/assert1.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"reflect\"\n\t\"time\"\n)\n\ntype TestStruct struct{}\n\nfunc (t TestStruct) String() string {\n\treturn \"hello world\"\n}\n\ntype DummyStringer interface{\n\tString() string\n}\n\nfunc main() {\n\taType := reflect.TypeOf((*fmt.Stringer)(nil)).Elem()\n\n\tvar t interface{}\n\tt = time.Nanosecond\n\ts, ok := t.(fmt.Stringer)\n\tif !ok {\n\t\tfmt.Println(\"time.Nanosecond does not implement fmt.Stringer\")\n\t\treturn\n\t}\n\tfmt.Println(s.String())\n\tfmt.Println(t.(fmt.Stringer).String())\n\tbType := reflect.TypeOf(time.Nanosecond)\n\tfmt.Println(bType.Implements(aType))\n\n\t// not redundant with the above, because it goes through a slightly different code path.\n\tif _, ok := t.(fmt.Stringer); !ok {\n\t\tfmt.Println(\"time.Nanosecond does not implement fmt.Stringer\")\n\t\treturn\n\t} else {\n\t\tfmt.Println(\"time.Nanosecond implements fmt.Stringer\")\n\t}\n\n\tt = 42\n\tfoo, ok := t.(fmt.Stringer)\n\tif !ok {\n\t\tfmt.Println(\"42 does not implement fmt.Stringer\")\n\t} else {\n\t\tfmt.Println(\"42 implements fmt.Stringer\")\n\t\treturn\n\t}\n\t_ = foo\n\n\tif _, ok := t.(fmt.Stringer); !ok {\n\t\tfmt.Println(\"42 does not implement fmt.Stringer\")\n\t} else {\n\t\tfmt.Println(\"42 implements fmt.Stringer\")\n\t\treturn\n\t}\n\n\t// TODO(mpl): restore when fixed\n\t// var tt interface{}\n\tvar tt DummyStringer\n\ttt = TestStruct{}\n\tss, ok := tt.(fmt.Stringer)\n\tif !ok {\n\t\tfmt.Println(\"TestStuct does not implement fmt.Stringer\")\n\t\treturn\n\t}\n\tfmt.Println(ss.String())\n\tfmt.Println(tt.(fmt.Stringer).String())\n\n\tif _, ok := tt.(fmt.Stringer); !ok {\n\t\tfmt.Println(\"TestStuct does not implement fmt.Stringer\")\n\t\treturn\n\t} else {\n\t\tfmt.Println(\"TestStuct implements fmt.Stringer\")\n\t}\n}\n\n// Output:\n// 1ns\n// 1ns\n// true\n// time.Nanosecond implements fmt.Stringer\n// 42 does not implement fmt.Stringer\n// 42 does not implement fmt.Stringer\n// hello world\n// hello world\n// TestStuct implements fmt.Stringer\n"
  },
  {
    "path": "_test/assert2.go",
    "content": "package main\n\nimport (\n\t\"strings\"\n\t\"sync\"\n)\n\n// Define an interface of stringBuilder that is compatible with\n// strings.Builder(go 1.10) and bytes.Buffer(< go 1.10).\ntype stringBuilder interface {\n\tWriteRune(r rune) (n int, err error)\n\tWriteString(s string) (int, error)\n\tReset()\n\tGrow(n int)\n\tString() string\n}\n\nvar builderPool = sync.Pool{New: func() interface{} {\n\treturn newStringBuilder()\n}}\n\nfunc newStringBuilder() stringBuilder {\n\treturn &strings.Builder{}\n}\n\nfunc main() {\n\ti := builderPool.Get()\n\tsb := i.(stringBuilder)\n\t_, _ = sb.WriteString(\"hello\")\n\n\tprintln(sb.String())\n\n\tbuilderPool.Put(i)\n}\n\n// Output:\n// hello\n"
  },
  {
    "path": "_test/assert3.go",
    "content": "package main\n\nimport \"crypto/rsa\"\n\nfunc main() {\n\tvar pKey interface{} = &rsa.PublicKey{}\n\n\tif _, ok := pKey.(*rsa.PublicKey); ok {\n\t\tprintln(\"ok\")\n\t} else {\n\t\tprintln(\"nok\")\n\t}\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/assert4.go",
    "content": "package main\n\nvar cc interface{} = 2\nvar dd = cc.(int)\n\nfunc main() {\n\tprintln(dd)\n}\n\n// Output:\n// 2\n"
  },
  {
    "path": "_test/assign.go",
    "content": "package main\n\nfunc main() {\n\ta, b := 1, 2 // Multiple assign\n\tprintln(a, b)\n}\n\n// Output:\n// 1 2\n"
  },
  {
    "path": "_test/assign0.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n\t\"time\"\n)\n\nfunc main() {\n\thttp.DefaultClient.Timeout = time.Second * 10\n\tfmt.Println(http.DefaultClient)\n\thttp.DefaultClient = &http.Client{}\n\tfmt.Println(http.DefaultClient)\n}\n\n// Output:\n// &{<nil> <nil> <nil> 10s}\n// &{<nil> <nil> <nil> 0s}\n"
  },
  {
    "path": "_test/assign1.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar buf []byte\n\n\tbuf = nil\n\tfmt.Println(buf)\n}\n\n// Output:\n// []\n"
  },
  {
    "path": "_test/assign10.go",
    "content": "package main\n\nfunc main() {\n\tvar a uint\n\ta = 1 + 2\n\tprintln(a)\n}\n\n// Output:\n// 3\n"
  },
  {
    "path": "_test/assign11.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\t_, _, _ = fmt.Println(\"test\")\n}\n\n// Error:\n// 6:2: assignment mismatch: 3 variables but fmt.Println returns 2 values\n"
  },
  {
    "path": "_test/assign12.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta, b, c := fmt.Println(\"test\")\n\tprintln(a, b, c)\n}\n\n// Error:\n// 6:2: assignment mismatch: 3 variables but fmt.Println returns 2 values\n"
  },
  {
    "path": "_test/assign13.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc getStr() string {\n\treturn \"test\"\n}\n\nfunc main() {\n\tm := make(map[string]string, 0)\n\tm[\"a\"] = fmt.Sprintf(\"%v\", 0.1)\n\tm[\"b\"] = string(fmt.Sprintf(\"%v\", 0.1))\n\tm[\"c\"] = getStr()\n\n\tfmt.Println(m)\n}\n\n// Output:\n// map[a:0.1 b:0.1 c:test]\n"
  },
  {
    "path": "_test/assign14.go",
    "content": "package main\n\nvar optionsG map[string]string = nil\n\nvar roundG = 30\n\nfunc main() {\n\tdummy := roundG\n\troundG = dummy + 1\n\tprintln(roundG)\n\tprintln(optionsG == nil)\n}\n\n// Output:\n// 31\n// true\n"
  },
  {
    "path": "_test/assign15.go",
    "content": "package main\n\nfunc main() {\n\tvar c chan<- struct{} = make(chan struct{})\n\tvar d <-chan struct{} = c\n\n\t_ = d\n}\n\n// Error:\n// _test/assign15.go:5:26: cannot use type chan<- struct {} as type <-chan struct {} in assignment\n"
  },
  {
    "path": "_test/assign16.go",
    "content": "package main\n\ntype H struct {\n\tbits uint\n}\n\nfunc main() {\n\th := &H{8}\n\tvar x uint = (1 << h.bits) >> 6\n\n\tprintln(x)\n}\n\n// Output:\n// 4\n"
  },
  {
    "path": "_test/assign17.go",
    "content": "package main\n\nfunc main() {\n\ts := make([]map[string]string, 0)\n\tm := make(map[string]string)\n\tm[\"m1\"] = \"m1\"\n\tm[\"m2\"] = \"m2\"\n\ts = append(s, m)\n\ttmpStr := \"start\"\n\tprintln(tmpStr)\n\tfor _, v := range s {\n\t\ttmpStr, ok := v[\"m1\"]\n\t\tprintln(tmpStr, ok)\n\t}\n\tprintln(tmpStr)\n}\n\n// Output:\n// start\n// m1 true\n// start\n"
  },
  {
    "path": "_test/assign18.go",
    "content": "package main\n\nfunc main() {\n\ts := make([]map[string]string, 0)\n\tm := make(map[string]string)\n\tm[\"m1\"] = \"m1\"\n\tm[\"m2\"] = \"m2\"\n\ts = append(s, m)\n\ttmpStr := \"start\"\n\tprintln(tmpStr)\n\tfor _, v := range s {\n\t\ttmpStr, _ := v[\"m1\"]\n\t\tprintln(tmpStr)\n\t}\n\tprintln(tmpStr)\n}\n\n// Output:\n// start\n// m1\n// start\n"
  },
  {
    "path": "_test/assign19.go",
    "content": "package main\n\nfunc main() {\n\ta, b, c := 1, 2\n\t_, _, _ = a, b, c\n}\n\n// Error:\n// _test/assign19.go:4:2: cannot assign 2 values to 3 variables\n"
  },
  {
    "path": "_test/assign2.go",
    "content": "package main\n\nfunc main() {\n\tr := uint32(2000000000)\n\tr = hello(r)\n\tprintln(r)\n}\n\nfunc hello(r uint32) uint32 { return r + 1 }\n\n// Output:\n// 2000000001\n"
  },
  {
    "path": "_test/assign3.go",
    "content": "package main\n\nfunc main() {\n\ta, b := 1, 2\n\tprintln(a, b)\n\ta, b = b, a\n\tprintln(a, b)\n}\n\n// Output:\n// 1 2\n// 2 1\n"
  },
  {
    "path": "_test/assign4.go",
    "content": "package main\n\nfunc main() {\n\ta, b, c := 1, 2, 3\n\tprintln(a, b, c)\n\ta, b, c = c, a, b\n\tprintln(a, b, c)\n}\n\n// Output:\n// 1 2 3\n// 3 1 2\n"
  },
  {
    "path": "_test/assign5.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tt := []int{1, 2}\n\tfmt.Println(t)\n\tt[0], t[1] = t[1], t[0]\n\tfmt.Println(t)\n}\n\n// Output:\n// [1 2]\n// [2 1]\n"
  },
  {
    "path": "_test/assign6.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tt := map[string]int{\"a\": 1, \"b\": 2}\n\tfmt.Println(t[\"a\"], t[\"b\"])\n\tt[\"a\"], t[\"b\"] = t[\"b\"], t[\"a\"]\n\tfmt.Println(t[\"a\"], t[\"b\"])\n}\n\n// Output:\n// 1 2\n// 2 1\n"
  },
  {
    "path": "_test/assign7.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := 3\n\tt := map[string]int{\"a\": 1, \"b\": 2}\n\ts := []int{4, 5}\n\tfmt.Println(a, t[\"b\"], s)\n\ta, t[\"b\"], s[1] = t[\"b\"], s[1], a\n\tfmt.Println(a, t[\"b\"], s)\n}\n\n// Output:\n// 3 2 [4 5]\n// 2 5 [4 3]\n"
  },
  {
    "path": "_test/assign8.go",
    "content": "package main\n\nfunc main() {\n\t_ = 1\n\tprintln(1)\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/assign9.go",
    "content": "package main\n\ntype foo func(b int)\n\nfunc boo(b int) { println(\"boo\", b) }\n\nfunc main() {\n\tvar f foo\n\n\tf = boo\n\tf(4)\n}\n\n// Output:\n// boo 4\n"
  },
  {
    "path": "_test/b1/foo/foo.go",
    "content": "package foo\n\nimport bar \"github.com/traefik/yaegi/_test/b2/foo\"\n\nvar Desc = \"in b1/foo\"\n\nvar Desc2 = Desc + bar.Desc\n"
  },
  {
    "path": "_test/b2/foo/foo.go",
    "content": "package foo\n\nvar Desc = \"in b2/foo\"\n"
  },
  {
    "path": "_test/bad0.go",
    "content": "println(\"Hello\")\n\n// Error:\n// 1:1: expected 'package', found println\n"
  },
  {
    "path": "_test/baz-bat/baz-bat.go",
    "content": "package baz\n\nvar Name = \"baz-bat\"\n"
  },
  {
    "path": "_test/bin.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tf := fmt.Println\n\tf(\"Hello\")\n}\n\n// Output:\n// Hello\n"
  },
  {
    "path": "_test/bin0.go",
    "content": "package main\n\nimport \"strings\"\n\nfunc main() {\n\ta := strings.SplitN(\"truc machin\", \" \", 2)\n\tprintln(a[0])\n}\n\n// Output:\n// truc\n"
  },
  {
    "path": "_test/bin1.go",
    "content": "package main\n\nimport (\n\t\"crypto/sha1\"\n\t\"fmt\"\n)\n\nfunc main() {\n\td := sha1.New()\n\td.Write([]byte(\"password\"))\n\ta := d.Sum(nil)\n\tfmt.Println(a)\n}\n\n// Output:\n// [91 170 97 228 201 185 63 63 6 130 37 11 108 248 51 27 126 230 143 216]\n"
  },
  {
    "path": "_test/bin2.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"math\"\n)\n\nfunc main() {\n\tfmt.Println(math.Abs(-5))\n}\n\n// Output:\n// 5\n"
  },
  {
    "path": "_test/bin3.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tstr := \"part1\"\n\tstr += fmt.Sprintf(\"%s\", \"part2\")\n\tfmt.Println(str)\n}\n\n// Output:\n// part1part2\n"
  },
  {
    "path": "_test/bin4.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"strings\"\n)\n\nfunc Bar(s string) bool {\n\ta := strings.HasPrefix(\"fas\", \"f\")\n\tb := strings.HasPrefix(\"aaaaa\", \"a\")\n\ta_and_b := strings.HasPrefix(\"fas\", \"f\") && strings.HasPrefix(\"aaaaa\", \"a\")\n\tfmt.Println(a, b, a && b, a_and_b)\n\treturn a && b\n}\n\nfunc main() {\n\tprintln(Bar(\"kung\"))\n}\n"
  },
  {
    "path": "_test/bin5.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net\"\n)\n\nfunc main() {\n\taddr := net.TCPAddr{IP: net.IPv4(1, 1, 1, 1), Port: 80}\n\tvar s fmt.Stringer = &addr\n\tfmt.Println(s.String())\n}\n\n// Output:\n// 1.1.1.1:80\n"
  },
  {
    "path": "_test/binstruct_ptr_map0.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"image\"\n)\n\nfunc main() {\n\tv := map[string]*image.Point{\n\t\t\"foo\": {X: 3, Y: 2},\n\t\t\"bar\": {X: 4, Y: 5},\n\t}\n\tfmt.Println(v[\"foo\"], v[\"bar\"])\n}\n\n// Output:\n// (3,2) (4,5)\n"
  },
  {
    "path": "_test/binstruct_ptr_slice0.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"image\"\n)\n\nfunc main() {\n\tv := []*image.Point{\n\t\t{X: 3, Y: 2},\n\t\t{X: 4, Y: 5},\n\t}\n\tfmt.Println(v)\n}\n\n// Output:\n// [(3,2) (4,5)]\n"
  },
  {
    "path": "_test/binstruct_slice0.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"image\"\n)\n\nfunc main() {\n\tv := []image.Point{\n\t\t{X: 3, Y: 2},\n\t}\n\tfmt.Println(v)\n}\n\n// Output:\n// [(3,2)]\n"
  },
  {
    "path": "_test/bltn.go",
    "content": "package main\n\nfunc main() {\n\tprintln(\"Hello\")\n}\n\n// Output:\n// Hello\n"
  },
  {
    "path": "_test/bltn0.go",
    "content": "package main\n\nfunc main() {\n\tf := println\n\tf(\"Hello\")\n}\n\n// Error:\n// 4:7: use of builtin println not in function call\n"
  },
  {
    "path": "_test/bool.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tfmt.Println(false, true)\n}\n\n// Output:\n// false true\n"
  },
  {
    "path": "_test/bool0.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tfmt.Println(true)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/bool1.go",
    "content": "package main\n\ntype T struct {\n\tv bool\n}\n\nfunc main() {\n\ta := T{}\n\tif a.v {\n\t\tprintln(\"ok\")\n\t} else {\n\t\tprintln(\"nok\")\n\t}\n}\n\n// Output:\n// nok\n"
  },
  {
    "path": "_test/bool2.go",
    "content": "package main\n\ntype T struct {\n\tv bool\n}\n\nfunc main() {\n\ta := &T{}\n\tif a.v {\n\t\tprintln(\"ok\")\n\t} else {\n\t\tprintln(\"nok\")\n\t}\n}\n\n// Output:\n// nok\n"
  },
  {
    "path": "_test/bool3.go",
    "content": "package main\n\nfunc main() {\n\tm := map[int]bool{0: false, 1: true}\n\tif m[0] {\n\t\tprintln(0)\n\t} else {\n\t\tprintln(1)\n\t}\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/bool4.go",
    "content": "package main\n\nfunc main() {\n\tm := []bool{false, true}\n\tif m[0] {\n\t\tprintln(0)\n\t} else {\n\t\tprintln(1)\n\t}\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/bool5.go",
    "content": "package main\n\nfunc main() {\n\tvar b bool\n\tm := &b\n\n\tif *m {\n\t\tprintln(0)\n\t} else {\n\t\tprintln(1)\n\t}\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/break0.go",
    "content": "package main\n\nfunc main() {\n\tn := 2\n\tm := 2\n\tfoo := true\nOuterLoop:\n\tprintln(\"Boo\")\n\tfor i := 0; i < n; i++ {\n\t\tprintln(\"I: \", i)\n\t\tfor j := 0; j < m; j++ {\n\t\t\tswitch foo {\n\t\t\tcase true:\n\t\t\t\tprintln(foo)\n\t\t\t\tbreak OuterLoop\n\t\t\tcase false:\n\t\t\t\tprintln(foo)\n\t\t\t}\n\t\t}\n\t}\n}\n\n// Error:\n// 15:5: invalid break label OuterLoop\n"
  },
  {
    "path": "_test/break1.go",
    "content": "package main\n\nfunc main() {\n\tn := 2\n\tm := 2\n\tfoo := true\nOuterLoop:\n\tfor i := 0; i < n; i++ {\n\t\tprintln(\"I: \", i)\n\t\tfor j := 0; j < m; j++ {\n\t\t\tswitch foo {\n\t\t\tcase true:\n\t\t\t\tprintln(foo)\n\t\t\t\tbreak OuterLoop\n\t\t\tcase false:\n\t\t\t\tprintln(foo)\n\t\t\t}\n\t\t}\n\t}\n}\n\n// Output:\n// I:  0\n// true\n"
  },
  {
    "path": "_test/break2.go",
    "content": "package main\n\nfunc main() {\n\tn := 2\n\tm := 2\n\tfoo := true\nOuterLoop:\n\tfor i := 0; i < n; i++ {\n\t\tprintln(\"I: \", i)\n\t\tfor j := 0; j < m; j++ {\n\t\t\tswitch foo {\n\t\t\tcase true:\n\t\t\t\tprintln(foo)\n\t\t\t\tbreak OuterLoop\n\t\t\tcase false:\n\t\t\t\tprintln(foo)\n\t\t\t\tcontinue OuterLoop\n\t\t\t}\n\t\t}\n\t}\n}\n\n// Output:\n// I:  0\n// true\n"
  },
  {
    "path": "_test/break3.go",
    "content": "package main\n\nfunc main() {\n\tn := 2\n\tm := 2\n\tfoo := true\n\tgoto OuterLoop\n\tprintln(\"Boo\")\nOuterLoop:\n\tfor i := 0; i < n; i++ {\n\t\tprintln(\"I: \", i)\n\t\tfor j := 0; j < m; j++ {\n\t\t\tswitch foo {\n\t\t\tcase true:\n\t\t\t\tprintln(foo)\n\t\t\t\tbreak OuterLoop\n\t\t\tcase false:\n\t\t\t\tprintln(foo)\n\t\t\t\tgoto OuterLoop\n\t\t\t}\n\t\t}\n\t}\n}\n\n// Output:\n// I:  0\n// true\n"
  },
  {
    "path": "_test/c1/c1.go",
    "content": "package c1\n\nimport \"github.com/traefik/yaegi/_test/c2\"\n\nvar C1 = c2.C2 + \"x\"\n"
  },
  {
    "path": "_test/c2/c2.go",
    "content": "package c2\n\nimport \"github.com/traefik/yaegi/_test/c1\"\n\nvar C2 = c1.C1 + \"Y\"\n"
  },
  {
    "path": "_test/cap0.go",
    "content": "package main\n\nfunc f(a []int) interface{} {\n\treturn cap(a)\n}\n\nfunc g(a []int) int {\n\treturn cap(a)\n}\n\nfunc main() {\n\ta := []int{1, 2}\n\tprintln(g(a))\n\tprintln(f(a).(int))\n}\n\n// Output:\n// 2\n// 2\n"
  },
  {
    "path": "_test/chan0.go",
    "content": "package main\n\ntype Channel chan string\n\nfunc send(c Channel) { c <- \"ping\" }\n\nfunc main() {\n\tchannel := make(Channel)\n\tgo send(channel)\n\tmsg := <-channel\n\tprintln(msg)\n}\n\n// Output:\n// ping\n"
  },
  {
    "path": "_test/chan1.go",
    "content": "package main\n\nfunc send(c chan<- string) { c <- \"ping\" }\n\nfunc main() {\n\tchannel := make(chan string)\n\tgo send(channel)\n\tmsg := <-channel\n\tprintln(msg)\n}\n\n// Output:\n// ping\n"
  },
  {
    "path": "_test/chan10.go",
    "content": "package main\n\nimport \"time\"\n\nfunc main() {\n\tvar tick <-chan time.Time = time.Tick(time.Millisecond)\n\t_ = tick\n\tprintln(\"success\")\n}\n\n// Output:\n// success\n"
  },
  {
    "path": "_test/chan2.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tmessages := make(chan string)\n\n\tgo func() { messages <- \"ping\" }()\n\n\tmsg := <-messages\n\tfmt.Println(msg)\n}\n\n// Output:\n// ping\n"
  },
  {
    "path": "_test/chan3.go",
    "content": "package main\n\nfunc send(c chan<- int32) { c <- 123 }\n\nfunc main() {\n\tchannel := make(chan int32)\n\tgo send(channel)\n\tmsg := <-channel\n\tprintln(msg)\n}\n\n// Output:\n// 123\n"
  },
  {
    "path": "_test/chan4.go",
    "content": "package main\n\nfunc send(c chan<- bool) { c <- false }\n\nfunc main() {\n\tchannel := make(chan bool)\n\tgo send(channel)\n\tif <-channel {\n\t\tprintln(\"ok\")\n\t} else {\n\t\tprintln(\"nok\")\n\t}\n}\n\n// Output:\n// nok\n"
  },
  {
    "path": "_test/chan5.go",
    "content": "package main\n\nimport \"time\"\n\nfunc main() {\n\n\t// For our example we'll select across two channels.\n\tc1 := make(chan string)\n\tc2 := make(chan string)\n\n\t// Each channel will receive a value after some amount\n\t// of time, to simulate e.g. blocking RPC operations\n\t// executing in concurrent goroutines.\n\tgo func() {\n\t\t//time.Sleep(1 * time.Second)\n\t\ttime.Sleep(1e9)\n\t\tc1 <- \"one\"\n\t}()\n\tgo func() {\n\t\ttime.Sleep(2e9)\n\t\tc2 <- \"two\"\n\t}()\n\n\tmsg1 := <-c1\n\tprintln(msg1)\n\n\tmsg2 := <-c2\n\tprintln(msg2)\n}\n"
  },
  {
    "path": "_test/chan6.go",
    "content": "package main\n\nfunc send(c chan<- int32) { c <- 123 }\n\nfunc main() {\n\tchannel := make(chan int32)\n\tgo send(channel)\n\tmsg, ok := <-channel\n\tprintln(msg, ok)\n}\n"
  },
  {
    "path": "_test/chan7.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tqueue := make(chan string, 2)\n\tqueue <- \"one\"\n\tqueue <- \"two\"\n\tclose(queue)\n\tfor elem := range queue {\n\t\tfmt.Println(elem)\n\t}\n}\n\n// Output:\n// one\n// two\n"
  },
  {
    "path": "_test/chan8.go",
    "content": "package main\n\nfunc main() {\n\tmessages := make(chan bool)\n\n\tgo func() { messages <- true }()\n\n\tprintln(<-messages && true)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/chan9.go",
    "content": "package main\n\ntype Channel chan string\n\ntype T struct {\n\tChannel\n}\n\nfunc send(c Channel) { c <- \"ping\" }\n\nfunc main() {\n\tt := &T{}\n\tt.Channel = make(Channel)\n\tgo send(t.Channel)\n\tmsg := <-t.Channel\n\tprintln(msg)\n}\n\n// Output:\n// ping\n"
  },
  {
    "path": "_test/cli1.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"log\"\n\t\"net\"\n\t\"net/http\"\n)\n\nfunc client(uri string) {\n\tresp, err := http.Get(uri)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tbody, err := io.ReadAll(resp.Body)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tfmt.Println(string(body))\n}\n\nfunc server(ln net.Listener, ready chan bool) {\n\thttp.HandleFunc(\"/hello\", func(w http.ResponseWriter, r *http.Request) {\n\t\tvar r1 *http.Request = r\n\t\tfmt.Fprintln(w, \"Welcome to my website!\", r1.RequestURI)\n\t})\n\n\tgo http.Serve(ln, nil)\n\tready <- true\n}\n\nfunc main() {\n\tln, err := net.Listen(\"tcp\", \"localhost:0\")\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tdefer ln.Close()\n\n\tready := make(chan bool)\n\tgo server(ln, ready)\n\t<-ready\n\n\tclient(fmt.Sprintf(\"http://%s/hello\", ln.Addr().String()))\n\thttp.DefaultServeMux = &http.ServeMux{}\n}\n\n// Output:\n// Welcome to my website! /hello\n"
  },
  {
    "path": "_test/cli2.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"log\"\n\t\"net\"\n\t\"net/http\"\n)\n\ntype T struct {\n\tln net.Listener\n}\n\nfunc (t *T) Close() {\n\tt.ln.Close()\n}\n\nfunc client(uri string) {\n\tresp, err := http.Get(uri)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tbody, err := io.ReadAll(resp.Body)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tfmt.Println(string(body))\n}\n\nfunc server(ln net.Listener, ready chan bool) {\n\thttp.HandleFunc(\"/hello\", func(w http.ResponseWriter, r *http.Request) {\n\t\tvar r1 *http.Request = r\n\t\tfmt.Fprintln(w, \"Welcome to my website!\", r1.RequestURI)\n\t})\n\n\tgo http.Serve(ln, nil)\n\tready <- true\n}\n\nfunc main() {\n\tln, err := net.Listen(\"tcp\", \"localhost:0\")\n\tt := &T{ln}\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tdefer t.Close()\n\t//\tdefer ln.Close()\n\n\tready := make(chan bool)\n\tgo server(ln, ready)\n\t<-ready\n\n\tclient(fmt.Sprintf(\"http://%s/hello\", ln.Addr().String()))\n\thttp.DefaultServeMux = &http.ServeMux{}\n}\n\n// Output:\n// Welcome to my website! /hello\n"
  },
  {
    "path": "_test/cli3.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"log\"\n\t\"net/http\"\n\t\"net/http/httptest\"\n)\n\nfunc client(uri string) {\n\tresp, err := http.Get(uri)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tbody, err := io.ReadAll(resp.Body)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tfmt.Println(string(body))\n}\n\nfunc main() {\n\tmux := http.NewServeMux()\n\tmux.HandleFunc(\"/\", func(w http.ResponseWriter, r *http.Request) {\n\t\tfmt.Fprint(w, \"Welcome to my website!\")\n\t})\n\n\tserver := httptest.NewServer(mux)\n\tdefer server.Close()\n\n\tclient(server.URL)\n}\n\n// Output:\n// Welcome to my website!\n"
  },
  {
    "path": "_test/cli4.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"log\"\n\t\"net/http\"\n\t\"net/http/httptest\"\n)\n\ntype mw1 struct {\n\tnext http.Handler\n}\n\nfunc (m *mw1) ServeHTTP(rw http.ResponseWriter, rq *http.Request) {\n\tm.next.ServeHTTP(rw, rq)\n}\n\ntype mw0 struct{}\n\nfunc (m *mw0) ServeHTTP(w http.ResponseWriter, r *http.Request) {\n\tfmt.Fprint(w, \"Welcome to my website!\")\n}\n\nfunc main() {\n\tm0 := &mw0{}\n\tm1 := &mw1{m0}\n\n\tmux := http.NewServeMux()\n\tmux.HandleFunc(\"/\", m1.ServeHTTP)\n\n\tserver := httptest.NewServer(mux)\n\tdefer server.Close()\n\n\tclient(server.URL)\n}\n\nfunc client(uri string) {\n\tresp, err := http.Get(uri)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tbody, err := io.ReadAll(resp.Body)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tfmt.Println(string(body))\n}\n\n// Output:\n// Welcome to my website!\n"
  },
  {
    "path": "_test/cli5.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"log\"\n\t\"net/http\"\n\t\"net/http/httptest\"\n)\n\ntype mw1 struct {\n\tnext http.Handler\n}\n\nfunc (m *mw1) ServeHTTP(rw http.ResponseWriter, rq *http.Request) {\n\tm.next.ServeHTTP(rw, rq)\n}\n\ntype mw0 struct{}\n\nfunc (m *mw0) ServeHTTP(w http.ResponseWriter, r *http.Request) {\n\tfmt.Fprint(w, \"Welcome to my website!\")\n}\n\nfunc main() {\n\tm0 := &mw0{}\n\tm1 := &mw1{next: m0}\n\n\tmux := http.NewServeMux()\n\tmux.HandleFunc(\"/\", m1.ServeHTTP)\n\n\tserver := httptest.NewServer(mux)\n\tdefer server.Close()\n\n\tclient(server.URL)\n}\n\nfunc client(uri string) {\n\tresp, err := http.Get(uri)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tbody, err := io.ReadAll(resp.Body)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tfmt.Println(string(body))\n}\n\n// Output:\n// Welcome to my website!\n"
  },
  {
    "path": "_test/cli6.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"log\"\n\t\"net/http\"\n\t\"net/http/httptest\"\n)\n\ntype T struct {\n\thttp.ResponseWriter\n}\n\ntype mw1 struct {\n\tnext http.Handler\n}\n\nfunc (m *mw1) ServeHTTP(rw http.ResponseWriter, rq *http.Request) {\n\tt := &T{\n\t\tResponseWriter: rw,\n\t}\n\tx := t.Header()\n\tfmt.Fprint(rw, \"Welcome to my website!\", x)\n}\n\nfunc main() {\n\tm1 := &mw1{}\n\n\tmux := http.NewServeMux()\n\tmux.HandleFunc(\"/\", m1.ServeHTTP)\n\n\tserver := httptest.NewServer(mux)\n\tdefer server.Close()\n\n\tclient(server.URL)\n}\n\nfunc client(uri string) {\n\tresp, err := http.Get(uri)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tbody, err := io.ReadAll(resp.Body)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tfmt.Println(string(body))\n}\n\n// Output:\n// Welcome to my website!map[]\n"
  },
  {
    "path": "_test/cli7.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"log\"\n\t\"net/http\"\n\t\"net/http/httptest\"\n)\n\ntype T struct {\n\thttp.ResponseWriter\n}\n\ntype mw1 struct {\n}\n\nvar obj = map[string]interface{}{}\n\nfunc (m *mw1) ServeHTTP(rw http.ResponseWriter, rq *http.Request) {\n\tt := &T{\n\t\tResponseWriter: rw,\n\t}\n\tx := t.Header()\n\ti := obj[\"m1\"].(*mw1)\n\tfmt.Fprint(rw, \"Welcome to my website!\", x, i)\n}\n\nfunc main() {\n\tm1 := &mw1{}\n\n\tobj[\"m1\"] = m1\n\n\tmux := http.NewServeMux()\n\tmux.HandleFunc(\"/\", m1.ServeHTTP)\n\n\tserver := httptest.NewServer(mux)\n\tdefer server.Close()\n\n\tclient(server.URL)\n}\n\nfunc client(uri string) {\n\tresp, err := http.Get(uri)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tbody, err := io.ReadAll(resp.Body)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tfmt.Println(string(body))\n}\n\n// Output:\n// Welcome to my website!map[] &{}\n"
  },
  {
    "path": "_test/cli8.go",
    "content": "package main\n\nimport (\n\t\"net/http\"\n\t\"net/http/httptest\"\n)\n\ntype T struct {\n\tname string\n\tnext http.Handler\n}\n\nfunc (t *T) ServeHTTP(rw http.ResponseWriter, req *http.Request) {\n\tprintln(\"in T.ServeHTTP\")\n\tif t.next != nil {\n\t\tt.next.ServeHTTP(rw, req)\n\t}\n}\n\nfunc New(name string, next http.Handler) (http.Handler, error) { return &T{name, next}, nil }\n\nfunc main() {\n\tnext := func(rw http.ResponseWriter, req *http.Request) {\n\t\tprintln(\"in next\")\n\t}\n\n\tt, err := New(\"test\", http.HandlerFunc(next))\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\trecorder := httptest.NewRecorder()\n\treq := httptest.NewRequest(http.MethodGet, \"/\", nil)\n\tt.ServeHTTP(recorder, req)\n\tprintln(recorder.Result().Status)\n}\n\n// Output:\n// in T.ServeHTTP\n// in next\n// 200 OK\n"
  },
  {
    "path": "_test/closure0.go",
    "content": "package main\n\ntype adder func(int, int) int\n\nfunc genAdd(k int) adder {\n\treturn func(i, j int) int {\n\t\treturn i + j + k\n\t}\n}\n\nfunc main() {\n\tf := genAdd(5)\n\tprintln(f(3, 4))\n}\n\n// Output:\n// 12\n"
  },
  {
    "path": "_test/closure1.go",
    "content": "package main\n\ntype adder func(int, int) int\n\nfunc genAdd(k int) adder {\n\treturn func(i, j int) int {\n\t\treturn i + j + k\n\t}\n}\n\nfunc main() {\n\tf := genAdd(5)\n\tg := genAdd(8)\n\tprintln(f(3, 4))\n\tprintln(g(3, 4))\n}\n\n// Output:\n// 12\n// 15\n"
  },
  {
    "path": "_test/closure10.go",
    "content": "package main\n\nfunc main() {\n\tfoos := []func(){}\n\n\tfor i := 0; i < 3; i++ {\n\t\ta, b := i, i\n\t\tfoos = append(foos, func() { println(i, a, b) })\n\t}\n\tfoos[0]()\n\tfoos[1]()\n\tfoos[2]()\n}\n\n// Output:\n// 0 0 0\n// 1 1 1\n// 2 2 2\n"
  },
  {
    "path": "_test/closure11.go",
    "content": "package main\n\ntype T struct {\n\tF func()\n}\n\nfunc main() {\n\tfoos := []T{}\n\n\tfor i := 0; i < 3; i++ {\n\t\ta := i\n\t\tfoos = append(foos, T{func() { println(i, a) }})\n\t}\n\tfoos[0].F()\n\tfoos[1].F()\n\tfoos[2].F()\n}\n\n// Output:\n// 0 0\n// 1 1\n// 2 2\n"
  },
  {
    "path": "_test/closure12.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype T struct {\n\tF func()\n}\n\nfunc main() {\n\tfoos := []T{}\n\n\tfor i := 0; i < 3; i++ {\n\t\ta := i\n\t\tn := fmt.Sprintf(\"i=%d\", i)\n\t\tfoos = append(foos, T{func() { println(i, a, n) }})\n\t}\n\tfoos[0].F()\n\tfoos[1].F()\n\tfoos[2].F()\n}\n\n// Output:\n// 0 0 i=0\n// 1 1 i=1\n// 2 2 i=2\n"
  },
  {
    "path": "_test/closure13.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"strconv\"\n)\n\ntype monkey struct {\n\ttest func() int\n}\n\nfunc main() {\n\tinput := []string{\"1\", \"2\", \"3\"}\n\n\tvar monkeys []*monkey\n\n\tfor _, v := range input {\n\t\tkong := monkey{}\n\t\tdivisor, err := strconv.Atoi(v)\n\t\tif err != nil {\n\t\t\tpanic(err)\n\t\t}\n\t\tfmt.Print(divisor, \" \")\n\t\tkong.test = func() int {\n\t\t\treturn divisor\n\t\t}\n\t\tmonkeys = append(monkeys, &kong)\n\t}\n\n\tfor _, mk := range monkeys {\n\t\tfmt.Print(mk.test(), \" \")\n\t}\n}\n\n// Output:\n// 1 2 3 1 2 3\n"
  },
  {
    "path": "_test/closure14.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype monkey struct {\n\ttest func() int\n}\n\nfunc getk(k int) (int, error) { return k, nil }\n\nfunc main() {\n\tinput := []string{\"1\", \"2\", \"3\"}\n\n\tvar monkeys []*monkey\n\n\tfor k := range input {\n\t\tkong := monkey{}\n\t\tdivisor, _ := getk(k)\n\t\tfmt.Print(divisor, \" \")\n\t\tkong.test = func() int {\n\t\t\treturn divisor\n\t\t}\n\t\tmonkeys = append(monkeys, &kong)\n\t}\n\n\tfor _, mk := range monkeys {\n\t\tfmt.Print(mk.test(), \" \")\n\t}\n}\n\n// Output:\n// 0 1 2 0 1 2\n"
  },
  {
    "path": "_test/closure15.go",
    "content": "package main\n\nfunc main() {\n\tfoos := []func(){}\n\n\tfor i := range 3 {\n\t\ta := i\n\t\tfoos = append(foos, func() { println(i, a) })\n\t}\n\tfoos[0]()\n\tfoos[1]()\n\tfoos[2]()\n}\n\n// Output:\n// 0 0\n// 1 1\n// 2 2\n"
  },
  {
    "path": "_test/closure16.go",
    "content": "package main\n\nfunc main() {\n\tfoos := []func(){}\n\n\tfor i := range 3 {\n\t\ta, b := i, i\n\t\tfoos = append(foos, func() { println(i, a, b) })\n\t}\n\tfoos[0]()\n\tfoos[1]()\n\tfoos[2]()\n}\n\n// Output:\n// 0 0 0\n// 1 1 1\n// 2 2 2\n"
  },
  {
    "path": "_test/closure17.go",
    "content": "package main\n\ntype T struct {\n\tF func()\n}\n\nfunc main() {\n\tfoos := []T{}\n\n\tfor i := range 3 {\n\t\ta := i\n\t\tfoos = append(foos, T{func() { println(i, a) }})\n\t}\n\tfoos[0].F()\n\tfoos[1].F()\n\tfoos[2].F()\n}\n\n// Output:\n// 0 0\n// 1 1\n// 2 2\n"
  },
  {
    "path": "_test/closure18.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype T struct {\n\tF func()\n}\n\nfunc main() {\n\tfoos := []T{}\n\n\tfor i := range 3 {\n\t\ta := i\n\t\tn := fmt.Sprintf(\"i=%d\", i)\n\t\tfoos = append(foos, T{func() { println(i, a, n) }})\n\t}\n\tfoos[0].F()\n\tfoos[1].F()\n\tfoos[2].F()\n}\n\n// Output:\n// 0 0 i=0\n// 1 1 i=1\n// 2 2 i=2\n"
  },
  {
    "path": "_test/closure19.go",
    "content": "package main\n\nfunc main() {\n\tfoos := []func(){}\n\n\tfor i := 0; i < 3; i++ {\n\t\ti := i\n\t\tfoos = append(foos, func() { println(i) })\n\t}\n\tfoos[0]()\n\tfoos[1]()\n\tfoos[2]()\n}\n\n// Output:\n// 0\n// 1\n// 2\n"
  },
  {
    "path": "_test/closure2.go",
    "content": "package main\n\nfunc adder() func(int) int {\n\tsum := 0\n\treturn func(x int) int {\n\t\tsum = sum + x\n\t\treturn sum\n\t}\n}\n\nfunc main() {\n\tpos, neg := adder(), adder()\n\tfor i := 0; i < 10; i++ {\n\t\tprintln(pos(i), neg(-2*i))\n\t}\n}\n\n// Output:\n// 0 0\n// 1 -2\n// 3 -6\n// 6 -12\n// 10 -20\n// 15 -30\n// 21 -42\n// 28 -56\n// 36 -72\n// 45 -90\n"
  },
  {
    "path": "_test/closure20.go",
    "content": "package main\n\nfunc main() {\n\tfoos := []func(){}\n\n\tfor i := range 3 {\n\t\ti := i\n\t\tfoos = append(foos, func() { println(i) })\n\t}\n\tfoos[0]()\n\tfoos[1]()\n\tfoos[2]()\n}\n\n// Output:\n// 0\n// 1\n// 2\n"
  },
  {
    "path": "_test/closure3.go",
    "content": "package main\n\ntype T1 struct {\n\tName string\n}\n\nfunc (t *T1) genAdd(k int) func(int) int {\n\treturn func(i int) int {\n\t\tprintln(t.Name)\n\t\treturn i + k\n\t}\n}\n\nvar t = &T1{\"test\"}\n\nfunc main() {\n\tf := t.genAdd(4)\n\tprintln(f(5))\n}\n\n// Output:\n// test\n// 9\n"
  },
  {
    "path": "_test/closure4.go",
    "content": "package main\n\ntype T1 struct {\n\tName string\n}\n\nfunc (t *T1) genAdd(k int) func(int) int {\n\treturn func(i int) int {\n\t\tprintln(t.Name)\n\t\treturn i + k\n\t}\n}\n\nvar t = T1{\"test\"}\n\nfunc main() {\n\tf := t.genAdd(4)\n\tprintln(f(5))\n}\n\n// Output:\n// test\n// 9\n"
  },
  {
    "path": "_test/closure5.go",
    "content": "package main\n\ntype T1 struct {\n\tName string\n}\n\nfunc (t T1) genAdd(k int) func(int) int {\n\treturn func(i int) int {\n\t\tprintln(t.Name)\n\t\treturn i + k\n\t}\n}\n\nvar t = T1{\"test\"}\n\nfunc main() {\n\tf := t.genAdd(4)\n\tprintln(f(5))\n}\n\n// Output:\n// test\n// 9\n"
  },
  {
    "path": "_test/closure6.go",
    "content": "package main\n\ntype T1 struct {\n\tName string\n}\n\nfunc (t *T1) genAdd(k int) func(int) int {\n\treturn func(i int) int {\n\t\tprintln(t.Name)\n\t\treturn i + k\n\t}\n}\n\nvar t = &T1{\"test\"}\n\nfunc main() {\n\tf := t.genAdd(4)\n\tprintln(f(5))\n}\n\n// Output:\n// test\n// 9\n"
  },
  {
    "path": "_test/closure7.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\ntype Config struct {\n\tA string\n}\n\nvar conf *Config = &Config{}\n\nfunc SetConfig() func(*Config) {\n\treturn func(cf *Config) {\n\t\tconf = cf\n\t}\n}\n\nfunc main() {\n\tconf := &Config{\n\t\tA: \"foo\",\n\t}\n\n\tfmt.Println(conf.A)\n}\n\n// Output:\n// foo\n"
  },
  {
    "path": "_test/closure8.go",
    "content": "package main\n\nvar f = func(a int) int { return 2 + a }\n\nfunc main() {\n\tprintln(f(3))\n}\n\n// Output:\n// 5\n"
  },
  {
    "path": "_test/closure9.go",
    "content": "package main\n\nfunc main() {\n\tfoos := []func(){}\n\n\tfor i := 0; i < 3; i++ {\n\t\ta := i\n\t\tfoos = append(foos, func() { println(i, a) })\n\t}\n\tfoos[0]()\n\tfoos[1]()\n\tfoos[2]()\n}\n\n// Output:\n// 0 0\n// 1 1\n// 2 2\n"
  },
  {
    "path": "_test/comp0.go",
    "content": "package main\n\nfunc main() {\n\tprintln(2 < 2.4)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/comp1.go",
    "content": "package main\n\nfunc main() {\n\tvar a interface{} = 1 < 2\n\tprintln(a.(bool))\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/comp2.go",
    "content": "package main\n\ntype delta int32\n\nfunc main() {\n\ta := delta(-1)\n\n\tprintln(a != -1)\n\tprintln(a == -1)\n}\n\n// Output:\n// false\n// true\n"
  },
  {
    "path": "_test/complex0.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := complex(3, 2)\n\tfmt.Println(a, real(a), imag(a))\n}\n\n// Output:\n// (3+2i) 3 2\n"
  },
  {
    "path": "_test/complex1.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar c complex128\n\tc = 1\n\tfmt.Printf(\"%T %v\\n\", c, c)\n}\n\n// Output:\n// complex128 (1+0i)\n"
  },
  {
    "path": "_test/complex2.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tc := complex(1, 0)\n\tc += 1\n\tfmt.Printf(\"%T %v\\n\", c, c)\n}\n\n// Output:\n// complex128 (2+0i)\n"
  },
  {
    "path": "_test/complex3.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar s int = 1 + complex(1, 0)\n\tfmt.Printf(\"%T %v\\n\", s, s)\n}\n\n// Output:\n// int 2\n"
  },
  {
    "path": "_test/complex4.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc f(a, b float64) interface{} { return complex(a, b) }\n\nfunc main() {\n\ta := f(3, 2)\n\tfmt.Println(a.(complex128))\n}\n\n// Output:\n// (3+2i)\n"
  },
  {
    "path": "_test/composite0.go",
    "content": "package main\n\nimport \"fmt\"\n\nvar a = &[]*T{}\n\ntype T struct{ name string }\n\nfunc main() {\n\tfmt.Println(a)\n}\n\n// Output:\n// &[]\n"
  },
  {
    "path": "_test/composite1.go",
    "content": "package main\n\nimport \"fmt\"\n\nvar a = &[]*T{{}}\n\ntype T struct{ name string }\n\nfunc main() {\n\tfmt.Println((*a)[0])\n}\n\n// Output:\n// &{}\n"
  },
  {
    "path": "_test/composite10.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := []map[int]int{make(map[int]int)}\n\n\tfor _, b := range a {\n\t\tfmt.Println(b)\n\t}\n}\n\n// Output:\n// map[]\n"
  },
  {
    "path": "_test/composite11.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"image/color\"\n)\n\nfunc main() {\n\tc := color.NRGBA64{1, 1, 1, 1}\n\n\tfmt.Println(c)\n}\n\n// Output:\n// {1 1 1 1}\n"
  },
  {
    "path": "_test/composite12.go",
    "content": "package main\n\ntype A struct {\n\tC D\n}\n\ntype D struct {\n\tE string\n}\n\nfunc main() {\n\ta := A{}\n\ta.C = D{\"bb\"}\n\n\tprintln(a.C.E)\n}\n\n// Output:\n// bb\n"
  },
  {
    "path": "_test/composite13.go",
    "content": "package main\n\ntype A struct {\n\tC D\n}\n\ntype D struct {\n\tE string\n}\n\nfunc main() {\n\ta := A{}\n\ta.C = D{E: \"bb\"}\n\n\tprintln(a.C.E)\n}\n\n// Output:\n// bb\n"
  },
  {
    "path": "_test/composite14.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype T struct {\n\tb []byte\n}\n\nfunc main() {\n\tt := T{nil}\n\tfmt.Println(t)\n}\n\n// Output:\n// {[]}\n"
  },
  {
    "path": "_test/composite15.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\nfunc interfaceAsInts() {\n\tvar a interface{}\n\tb := 2\n\tc := 3\n\ta = []int{b, c}\n\n\td, ok := a.([]int)\n\tif !ok {\n\t\tprintln(\"nope\")\n\t\treturn\n\t}\n\n\tfor _, v := range d {\n\t\tfmt.Println(v)\n\t}\n}\n\nfunc interfaceAsInterfaces() {\n\tvar a, b, c interface{}\n\tb = 2\n\tc = 3\n\ta = []interface{}{b, c}\n\n\td, ok := a.([]interface{})\n\tif !ok {\n\t\tprintln(\"nope\")\n\t\treturn\n\t}\n\tfmt.Println(d)\n\n\tfor _, v := range d {\n\t\tfmt.Println(v)\n\t}\n}\n\nfunc main() {\n\tinterfaceAsInts()\n\tinterfaceAsInterfaces()\n}\n\n// Output:\n// 2\n// 3\n// [2 3]\n// 2\n// 3\n"
  },
  {
    "path": "_test/composite16.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/url\"\n)\n\nfunc main() {\n\tbody := url.Values{\n\t\t\"Action\": {\"none\"},\n\t}\n\tfmt.Println(body)\n}\n\n// Output:\n// map[Action:[none]]\n"
  },
  {
    "path": "_test/composite17.go",
    "content": "package main\n\nimport (\n\t\"html/template\"\n)\n\nvar str = `{{ stringOr .Data \"test\" }}`\n\nfunc main() {\n\t_, err := template.New(\"test\").\n\t\tFuncs(template.FuncMap{\n\t\t\t\"stringOr\": stringOr,\n\t\t}).\n\t\tParse(str)\n\tif err != nil {\n\t\tprintln(err.Error())\n\t\treturn\n\t}\n\tprintln(\"success\")\n}\n\nfunc stringOr(v, def string) string {\n\tif v == \"\" {\n\t\treturn def\n\t}\n\treturn v\n}\n\n// Output:\n// success\n"
  },
  {
    "path": "_test/composite18.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype fn func(string, string) bool\n\nvar funcs = []fn{\n\tcmpLessFn,\n\tcmpGreaterFn,\n\tnil,\n}\n\nfunc cmpLessFn(a string, b string) bool {\n\treturn a < b\n}\n\nfunc cmpGreaterFn(a string, b string) bool {\n\treturn a > b\n}\n\nfunc main() {\n\tfor _, f := range funcs {\n\t\tif f == nil {\n\t\t\tcontinue\n\t\t}\n\t\tfmt.Println(f(\"a\", \"b\"))\n\t}\n}\n\n// Output:\n// true\n// false\n"
  },
  {
    "path": "_test/composite19.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype fn func(string, string) bool\n\nvar funcs = map[string]fn{\n\t\"less\":    cmpLessFn,\n\t\"greater\": cmpGreaterFn,\n\t\"none\":     nil,\n}\n\nfunc cmpLessFn(a string, b string) bool {\n\treturn a < b\n}\n\nfunc cmpGreaterFn(a string, b string) bool {\n\treturn a > b\n}\n\nfunc main() {\n\tfor _, n := range []string{\"less\", \"greater\", \"none\"} {\n\t\tf := funcs[n]\n\t\tif f == nil {\n\t\t\tcontinue\n\t\t}\n\t\tfmt.Println(f(\"a\", \"b\"))\n\t}\n}\n\n// Output:\n// true\n// false\n"
  },
  {
    "path": "_test/composite2.go",
    "content": "package main\n\nimport \"fmt\"\n\nvar a = &[]*T{{\"hello\"}}\n\ntype T struct{ name string }\n\nfunc main() {\n\tfmt.Println((*a)[0])\n}\n\n// Output:\n// &{hello}\n"
  },
  {
    "path": "_test/composite3.go",
    "content": "package main\n\nfunc main() {\n\tvar err error\n\tvar ok bool\n\n\t_, ok = err.(interface{ IsSet() bool })\n\tprintln(ok)\n}\n\n// Output:\n// false\n"
  },
  {
    "path": "_test/composite4.go",
    "content": "package main\n\nfunc main() {\n\tvar err error\n\n\t_, ok := err.(interface{ IsSet() bool })\n\tprintln(ok)\n}\n\n// Output:\n// false\n"
  },
  {
    "path": "_test/composite5.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype T struct {\n\tm uint16\n}\n\nvar t = T{1<<2 | 1<<3}\n\nfunc main() {\n\tfmt.Println(t)\n}\n\n// Output:\n// {12}\n"
  },
  {
    "path": "_test/composite6.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/traefik/yaegi/_test/ct1\"\n)\n\ntype T struct {\n\tm uint16\n}\n\nvar t = T{1 << ct1.R}\n\nfunc main() {\n\tfmt.Println(t)\n}\n\n// Output:\n// {2}\n"
  },
  {
    "path": "_test/composite7.go",
    "content": "package main\n\ntype T struct {\n\tname string\n}\n\nvar tab = []*T{{\n\tname: \"foo\",\n}, {\n\tname: \"bar\",\n}}\n\nfunc main() {\n\tprintln(len(tab))\n\tprintln(tab[0].name)\n}\n\n// Output:\n// 2\n// foo\n"
  },
  {
    "path": "_test/composite8.go",
    "content": "package main\n\ntype T struct{ I int }\n\nfunc main() {\n\tt := []*T{}\n\ts := []int{1, 2}\n\tfor _, e := range s {\n\t\tx := &T{e}\n\t\tt = append(t, x)\n\t}\n\tprintln(t[0].I, t[1].I)\n}\n\n// Output:\n// 1 2\n"
  },
  {
    "path": "_test/composite8bis.go",
    "content": "package main\n\ntype T struct{ I int }\n\nfunc main() {\n\tt := []*T{}\n\ts := []int{1, 2}\n\tfor _, e := range s {\n\t\tx := &T{I: e}\n\t\tt = append(t, x)\n\t}\n\tprintln(t[0].I, t[1].I)\n}\n\n// Output:\n// 1 2\n"
  },
  {
    "path": "_test/composite9.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := [][]int{make([]int,0)}\n\n\tfor _, b := range a {\n\t\tfmt.Println(b)\n\t}\n}\n\n// Output:\n// []\n"
  },
  {
    "path": "_test/const0.go",
    "content": "package main\n\nconst (\n\ta = iota\n\tb\n)\n\nfunc main() {\n\tprintln(a, b)\n}\n\n// Output:\n// 0 1\n"
  },
  {
    "path": "_test/const1.go",
    "content": "package main\n\ntype T struct {\n\ta int\n\tb string\n}\n\nvar t = T{1, \"hello\"}\n\nfunc main() {\n\tprintln(t.a, t.b)\n}\n\n// Output:\n// 1 hello\n"
  },
  {
    "path": "_test/const10.go",
    "content": "package main\n\nconst (\n\ta = 2\n\tb = c + d\n\tc = a + d\n\td = e + f\n\te = 3\n\tf = 4\n)\n\nfunc main() {\n\tprintln(b)\n}\n\n// Output:\n// 16\n"
  },
  {
    "path": "_test/const11.go",
    "content": "package main\n\nfunc main() {\n\tconst (\n\t\tx = 2 * iota\n\t\tdim\n\t)\n\tvar t [dim * 2]int\n\tprintln(t[0], len(t))\n}\n\n// Output:\n// 0 4\n"
  },
  {
    "path": "_test/const12.go",
    "content": "package main\n\ntype Kind int\n\nconst (\n\tNone Kind = 0\n\tLeft Kind = 1 << iota\n\tRight\n\tBoth Kind = Left | Right\n)\n\nfunc main() {\n\tprintln(None, Left, Right, Both)\n}\n\n// Output:\n// 0 2 4 6\n"
  },
  {
    "path": "_test/const13.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\nfunc main() {\n\tconst tooBig = 1267650600228229401496703205376\n\tconst huge = 1 << 100\n\tconst large = huge >> 38\n\n\tfmt.Println(int64(large))\n}\n\n// Output:\n// 4611686018427387904\n"
  },
  {
    "path": "_test/const14.go",
    "content": "package main\n\nimport \"compress/flate\"\n\nfunc f1(i int) { println(\"i:\", i) }\n\nfunc main() {\n\ti := flate.BestSpeed\n\tf1(i)\n}\n\n// Output:\n// i: 1\n"
  },
  {
    "path": "_test/const15.go",
    "content": "package main\n\ntype T1 t1\n\ntype t1 int8\n\nconst (\n\tP2 T1 = 2\n\tP3 T1 = 3\n)\n\nfunc main() {\n\tprintln(P3)\n}\n\n// Output:\n// 3\n"
  },
  {
    "path": "_test/const16.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\nfunc main() {\n\tfmt.Println(7 / 3)\n}\n\n// Output:\n// 2\n"
  },
  {
    "path": "_test/const17.go",
    "content": "package main\n\nimport \"fmt\"\n\nvar t [7/3]int\n\nfunc main() {\n\tt[0] = 3/2\n\tt[1] = 5/2\n\tfmt.Println(t)\n}\n\n// Output:\n// [1 2]\n"
  },
  {
    "path": "_test/const18.go",
    "content": "package main\n\nimport \"time\"\n\nfunc main() {\n\ta := int64(time.Second)\n\tprintln(a)\n}\n\n// Output:\n// 1000000000\n"
  },
  {
    "path": "_test/const19.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\nfunc get10Hours() time.Duration {\n\treturn 10 * time.Hour\n}\n\nfunc main() {\n\tfmt.Println(get10Hours().String())\n}\n\n// Output:\n// 10h0m0s\n"
  },
  {
    "path": "_test/const2.go",
    "content": "package main\n\nfunc main() {\n\tprintln(a)\n}\n\nconst a = \"hello\"\n\n// Output:\n// hello\n"
  },
  {
    "path": "_test/const20.go",
    "content": "package main\n\nimport \"fmt\"\n\nconst maxLen = int64(int64(^uint64(0) >> 1))\n\nfunc main() {\n\tfmt.Println(maxLen)\n}\n\n// Output:\n// 9223372036854775807\n"
  },
  {
    "path": "_test/const21.go",
    "content": "package main\n\nconst a = 64\n\nvar b uint = a * a / 2\n\nfunc main() {\n\tprintln(b)\n}\n\n// Output:\n// 2048\n"
  },
  {
    "path": "_test/const22.go",
    "content": "package main\n\nconst (\n\tnumDec uint8 = (1 << iota) / 2\n\tnumHex\n\tnumOct\n\tnumFloat\n)\n\nfunc main() {\n\tprintln(13 & (numHex | numOct))\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/const23.go",
    "content": "package main\n\nconst maxlen = len(\"hello\")\n\nvar gfm = [maxlen]byte{}\n\nfunc main() {\n\tprintln(len(gfm))\n}\n\n// Output:\n// 5\n"
  },
  {
    "path": "_test/const24.go",
    "content": "package main\n\nvar aa = [...]int{1, 2, 3}\n\nconst maxlen = cap(aa)\n\nvar gfm = [maxlen]byte{}\n\nfunc main() {\n\tprintln(len(gfm))\n}\n\n// Output:\n// 3\n"
  },
  {
    "path": "_test/const25.go",
    "content": "package main\n\nconst (\n\tFGBlack Attribute = iota + 30\n)\n\ntype Attribute int\n\nfunc main() {\n\tprintln(FGBlack)\n}\n"
  },
  {
    "path": "_test/const26.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\nfunc init() {\n\tfmt.Println(constString)\n\tfmt.Println(const2)\n\tfmt.Println(varString)\n}\n\nconst constString string = \"hello\"\n\nconst (\n\tconst1 = iota + 10\n\tconst2\n\tconst3\n)\n\nvar varString string = \"test\"\n\nfunc main() {}\n\n// Output:\n// hello\n// 11\n// test\n"
  },
  {
    "path": "_test/const3.go",
    "content": "package main\n\nconst a, b, c int = 1, 2, 3\n\nfunc main() { println(a, b, c) }\n\n// Output:\n// 1 2 3\n"
  },
  {
    "path": "_test/const4.go",
    "content": "package main\n\nconst (\n\ta = 2\n\tb = 3\n\tc\n)\n\nfunc main() {\n\tprintln(a, b, c)\n}\n\n// Output:\n// 2 3 3\n"
  },
  {
    "path": "_test/const5.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\nconst (\n\ta uint8 = 2 * iota\n\tb\n\tc\n)\n\nfunc main() {\n\tfmt.Printf(\"%T\\n\", c)\n\tfmt.Println(a, b, c)\n}\n\n// Output:\n// uint8\n// 0 2 4\n"
  },
  {
    "path": "_test/const6.go",
    "content": "package main\n\nconst (\n\tmaxNonStarters = 30\n\tmaxBufferSize  = maxNonStarters + 2\n)\n\ntype reorderBuffer struct {\n\trune [maxBufferSize]Properties\n}\n\ntype Properties struct {\n\tpos  uint8\n\tsize uint8\n}\n\nfunc main() {\n\tprintln(len(reorderBuffer{}.rune))\n}\n\n// Output:\n// 32\n"
  },
  {
    "path": "_test/const7.go",
    "content": "package main\n\nimport \"fmt\"\n\nconst (\n\ta = iota\n\tb\n\tc\n\td\n)\n\ntype T [c]int\n\nfunc main() {\n\tfmt.Println(T{})\n}\n\n// Output:\n// [0 0]\n"
  },
  {
    "path": "_test/const8.go",
    "content": "package main\n\nconst (\n\ta = 2\n\tb = c + d\n\tc = 4\n\td = 5\n)\n\nfunc main() {\n\tprintln(a, b, c, d)\n}\n\n// Output:\n// 2 9 4 5\n"
  },
  {
    "path": "_test/const9.go",
    "content": "package main\n\nconst (\n\ta = 2\n\tb = c + d\n\tc = a + d\n\td = e + f\n\te = b + 2\n\tf = 4\n)\n\nfunc main() {\n\tprintln(b)\n}\n\n// Error:\n// 5:2: constant definition loop\n"
  },
  {
    "path": "_test/cont.go",
    "content": "package main\n\nfunc main() {\n\tfor i := 0; i < 10; i++ {\n\t\tif i < 5 {\n\t\t\tcontinue\n\t\t}\n\t\tprintln(i)\n\t}\n}\n\n// Output:\n// 5\n// 6\n// 7\n// 8\n// 9\n"
  },
  {
    "path": "_test/cont0.go",
    "content": "package main\n\nfunc main() {\n\ti := 0\n\tfor {\n\t\tif i > 10 {\n\t\t\tbreak\n\t\t}\n\t\ti++\n\t\tif i < 5 {\n\t\t\tcontinue\n\t\t}\n\t\tprintln(i)\n\t}\n}\n\n// Output:\n// 5\n// 6\n// 7\n// 8\n// 9\n// 10\n// 11\n"
  },
  {
    "path": "_test/cont1.go",
    "content": "package main\n\nfunc main() {\n\ti := 0\n\tfor {\n\t\tif i > 10 {\n\t\t\tbreak\n\t\t}\n\t\tif i < 5 {\n\t\t\ti++\n\t\t\tcontinue\n\t\t}\n\t\tprintln(i)\n\t\ti++\n\t}\n}\n\n// Output:\n// 5\n// 6\n// 7\n// 8\n// 9\n// 10\n"
  },
  {
    "path": "_test/cont2.go",
    "content": "package main\n\nfunc main() {\n\tn := 2\n\tm := 2\n\tfoo := true\nOuterLoop:\n\tfor i := 0; i < n; i++ {\n\t\tprintln(\"I: \", i)\n\t\tfor j := 0; j < m; j++ {\n\t\t\tswitch foo {\n\t\t\tcase true:\n\t\t\t\tprintln(foo)\n\t\t\t\tcontinue OuterLoop\n\t\t\tcase false:\n\t\t\t\tprintln(foo)\n\t\t\t}\n\t\t}\n\t}\n}\n\n// Output:\n// I:  0\n// true\n// I:  1\n// true\n"
  },
  {
    "path": "_test/cont3.go",
    "content": "package main\n\nfunc main() {\n\tn := 2\n\tm := 2\n\tfoo := true\nOuterLoop:\n\tprintln(\"boo\")\n\tfor i := 0; i < n; i++ {\n\t\tprintln(\"I: \", i)\n\t\tfor j := 0; j < m; j++ {\n\t\t\tswitch foo {\n\t\t\tcase true:\n\t\t\t\tprintln(foo)\n\t\t\t\tcontinue OuterLoop\n\t\t\tcase false:\n\t\t\t\tprintln(foo)\n\t\t\t}\n\t\t}\n\t}\n}\n\n// Error:\n// 15:5: invalid continue label OuterLoop\n"
  },
  {
    "path": "_test/context.go",
    "content": "package main\n\nimport \"context\"\n\nfunc get(ctx context.Context, k string) string {\n\tvar r string\n\tif v := ctx.Value(k); v != nil {\n\t\tr = v.(string)\n\t}\n\treturn r\n}\n\nfunc main() {\n\tctx := context.WithValue(context.Background(), \"hello\", \"world\")\n\tprintln(get(ctx, \"hello\"))\n}\n\n// Output:\n// world\n"
  },
  {
    "path": "_test/context2.go",
    "content": "package main\n\nimport \"context\"\n\nfunc get(ctx context.Context, k string) string {\n\tvar r string\n\tvar ok bool\n\tif v := ctx.Value(k); v != nil {\n\t\tr, ok = v.(string)\n\t\tprintln(ok)\n\t}\n\treturn r\n}\n\nfunc main() {\n\tctx := context.WithValue(context.Background(), \"hello\", \"world\")\n\tprintln(get(ctx, \"hello\"))\n}\n\n// Output:\n// true\n// world\n"
  },
  {
    "path": "_test/convert0.go",
    "content": "package main\n\ntype T struct {\n\tv int\n}\n\ntype comparator func(T, T) bool\n\nfunc sort(items []T, comp comparator) {\n\tprintln(\"in sort\")\n}\n\nfunc compT(t0, t1 T) bool { return t0.v < t1.v }\n\nfunc main() {\n\ta := []T{}\n\tsort(a, comparator(compT))\n}\n\n// Output:\n// in sort\n"
  },
  {
    "path": "_test/convert1.go",
    "content": "package main\n\nimport \"strconv\"\n\ntype atoidef func(s string) (int, error)\n\nfunc main() {\n\tstdatoi := atoidef(strconv.Atoi)\n\tn, err := stdatoi(\"7\")\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tprintln(n)\n}\n\n// Output:\n// 7\n"
  },
  {
    "path": "_test/convert2.go",
    "content": "package main\n\nimport \"bufio\"\n\nfunc fakeSplitFunc(data []byte, atEOF bool) (advance int, token []byte, err error) {\n\treturn 7, nil, nil\n}\n\nfunc main() {\n\tsplitfunc := bufio.SplitFunc(fakeSplitFunc)\n\tn, _, err := splitfunc(nil, true)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tprintln(n)\n}\n\n// Output:\n// 7\n"
  },
  {
    "path": "_test/convert3.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n)\n\nfunc main() {\n\tnext := func(rw http.ResponseWriter, req *http.Request) {\n\t\trw.Header().Set(\"Cache-Control\", \"max-age=20\")\n\t\trw.WriteHeader(http.StatusOK)\n\t}\n\tf := http.HandlerFunc(next)\n\tfmt.Printf(\"%T\\n\", f.ServeHTTP)\n}\n\n// Output:\n// func(http.ResponseWriter, *http.Request)\n"
  },
  {
    "path": "_test/copy0.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := []int{10, 20, 30}\n\tb := [4]int{}\n\tc := b[:]\n\tcopy(c, a)\n\tfmt.Println(c)\n}\n\n// Output:\n// [10 20 30 0]\n"
  },
  {
    "path": "_test/copy1.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := []int{10, 20, 30}\n\tb := &[4]int{}\n\tc := b[:]\n\tcopy(c, a)\n\tfmt.Println(c)\n}\n\n// Output:\n// [10 20 30 0]\n"
  },
  {
    "path": "_test/copy2.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc f(a, b []int) interface{} { return copy(a, b) }\n\nfunc main() {\n\ta := []int{10, 20, 30}\n\tb := [4]int{}\n\tc := b[:]\n\tr := f(c, a)\n\tfmt.Println(r.(int))\n}\n\n// Output:\n// 3\n"
  },
  {
    "path": "_test/ct/ct1.go",
    "content": "package ct\n\nfunc init() { println(\"hello from ct1\") }\n"
  },
  {
    "path": "_test/ct/ct2.go",
    "content": "// +build !dummy\n\npackage ct\n\nfunc init() { println(\"hello from ct2\") }\n"
  },
  {
    "path": "_test/ct/ct3.go",
    "content": "// +build dummy\n\npackage ct\n\nfunc init() { println(\"hello from ct3\") }\n"
  },
  {
    "path": "_test/ct1/ct1.go",
    "content": "package ct1\n\ntype Class uint\n\nconst (\n\tL Class = iota\n\tR\n\tAL\n)\n"
  },
  {
    "path": "_test/d1/d1.go",
    "content": "package d1\n\ntype T struct {\n\tName string\n}\n\nfunc (t *T) F() { println(t.Name) }\n\nfunc NewT(s string) *T { return &T{s} }\n"
  },
  {
    "path": "_test/d2/d2.go",
    "content": "package d2\n\nimport \"github.com/traefik/yaegi/_test/d1\"\n\nvar (\n\tX = d1.NewT(\"test\")\n\tF = X.F\n)\n"
  },
  {
    "path": "_test/d3.go",
    "content": "package main\n\nimport \"github.com/traefik/yaegi/_test/d2\"\n\nfunc main() {\n\tf := d2.F\n\tf()\n}\n\n// Output:\n// test\n"
  },
  {
    "path": "_test/defer0.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tprintln(\"hello\")\n\tdefer fmt.Println(\"bye\")\n\tdefer fmt.Println(\"au revoir\")\n\tprintln(\"world\")\n}\n\n// Output:\n// hello\n// world\n// au revoir\n// bye\n"
  },
  {
    "path": "_test/defer1.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tprintln(\"hello\")\n\tdefer func() {\n\t\tfmt.Println(\"bye\")\n\t}()\n\tprintln(\"world\")\n}\n\n// Output:\n// hello\n// world\n// bye\n"
  },
  {
    "path": "_test/defer2.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tprintln(\"hello\")\n\ti := 12\n\tdefer func() {\n\t\tfmt.Println(\"i:\", i)\n\t}()\n\ti = 20\n\tprintln(\"world\")\n}\n\n// Output:\n// hello\n// world\n// i: 20\n"
  },
  {
    "path": "_test/defer3.go",
    "content": "package main\n\nimport (\n\t\"net/http\"\n\t\"net/http/httptest\"\n)\n\nfunc main() {\n\tprintln(\"hello\")\n\tmux := http.NewServeMux()\n\tserver := httptest.NewServer(mux)\n\tdefer server.Close()\n}\n\n// Output:\n// hello\n"
  },
  {
    "path": "_test/defer4.go",
    "content": "package main\n\nimport \"sync\"\n\ntype T struct {\n\tmu   sync.RWMutex\n\tname string\n}\n\nfunc (t *T) get() string {\n\tt.mu.RLock()\n\tdefer t.mu.RUnlock()\n\treturn t.name\n}\n\nvar d = T{name: \"test\"}\n\nfunc main() {\n\tprintln(d.get())\n}\n\n// Output:\n// test\n"
  },
  {
    "path": "_test/defer5.go",
    "content": "package main\n\nfunc f1() {\n\tdefer println(\"f1-begin\")\n\tf2()\n\tdefer println(\"f1-end\")\n}\n\nfunc f2() {\n\tdefer println(\"f2-begin\")\n\tf3()\n\tdefer println(\"f2-end\")\n}\n\nfunc f3() {\n\tdefer println(\"f3-begin\")\n\tprintln(\"hello\")\n\tdefer println(\"f3-end\")\n}\n\nfunc main() {\n\tf1()\n}\n\n// Output:\n// hello\n// f3-end\n// f3-begin\n// f2-end\n// f2-begin\n// f1-end\n// f1-begin\n"
  },
  {
    "path": "_test/defer6.go",
    "content": "package main\n\nfunc f1() {\n\tdefer print(\"f1-begin \")\n\tf2()\n\tdefer print(\"f1-end \")\n}\n\nfunc f2() {\n\tdefer print(\"f2-begin \")\n\tf3()\n\tdefer print(\"f2-end \")\n}\n\nfunc f3() {\n\tdefer print(\"f3-begin \")\n\tprint(\"hello \")\n\tdefer print(\"f3-end \")\n}\n\nfunc main() {\n\tf1()\n\tprintln()\n}\n\n// Output:\n// hello f3-end f3-begin f2-end f2-begin f1-end f1-begin\n"
  },
  {
    "path": "_test/defer7.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc f1(in, out []string) {\n\tdefer copy(out, in)\n}\n\nfunc main() {\n\tin := []string{\"foo\", \"bar\"}\n\tout := make([]string, 2)\n\tf1(in, out)\n\n\tfmt.Println(out)\n}\n\n// Output:\n// [foo bar]\n"
  },
  {
    "path": "_test/defer8.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc f1(m map[string]string) {\n\tdefer delete(m, \"foo\")\n\tdefer delete(m, \"test\")\n\n\tfmt.Println(m)\n}\n\nfunc main() {\n\tm := map[string]string{\n\t\t\"foo\": \"bar\",\n\t\t\"baz\": \"bat\",\n\t}\n\tf1(m)\n\n\tfmt.Println(m)\n}\n\n// Output:\n// map[baz:bat foo:bar]\n// map[baz:bat]\n"
  },
  {
    "path": "_test/defer9.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc f1(ch chan string) {\n\tdefer close(ch)\n\n\tch <- \"foo\"\n}\n\nfunc main() {\n\tch := make(chan string, 1)\n\tf1(ch)\n\n\tfor s := range ch {\n\t\tfmt.Println(s)\n\t}\n}\n\n// Output:\n// foo\n"
  },
  {
    "path": "_test/delete0.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := map[string]int{\"hello\": 1, \"world\": 3}\n\tdelete(a, \"hello\")\n\tfmt.Println(a)\n}\n\n// Output:\n// map[world:3]\n"
  },
  {
    "path": "_test/eval0.go",
    "content": "package main\n\nimport (\n\t\"log\"\n\t\"os\"\n\n\t\"github.com/traefik/yaegi/interp\"\n)\n\nfunc main() {\n\tlog.SetFlags(log.Lshortfile)\n\ti := interp.New(interp.Options{Stdout: os.Stdout})\n\tif _, err := i.Eval(`func f() (int, int) { return 1, 2 }`); err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tif _, err := i.Eval(`a, b := f()`); err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tif _, err := i.Eval(`println(a, b)`); err != nil {\n\t\tlog.Fatal(err)\n\t}\n}\n\n// Output:\n// 1 2\n"
  },
  {
    "path": "_test/export0.go",
    "content": "package main\n\nfunc Test() {\n\tprintln(\"Hello from test\")\n}\n\n// Output:\n//\n"
  },
  {
    "path": "_test/export1.go",
    "content": "package sample\n\ntype Sample struct{ Name string }\n\nfunc (s *Sample) Test() {\n\tprintln(\"Hello from test\", s.Name)\n}\n\n// Output:\n//\n"
  },
  {
    "path": "_test/factor.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"math/big\"\n)\n\nfunc main() {\n\t// 157 bit n = pq with p ~= 78 bits\n\tn := big.NewInt(0)\n\tn.SetString(\"273966616513101251352941655302036077733021013991\", 10)\n\n\ti := big.NewInt(0)\n\t// Set i to be p - 10e6\n\ti.SetString(\"496968652506233112158689\", 10)\n\n\t// Move temp big int out here so no possible GC thrashing\n\ttemp := big.NewInt(0)\n\t// Avoid creating the new bigint each time\n\ttwo := big.NewInt(2)\n\tfor {\n\t\t// Check if the odd number is a divisor of n\n\t\ttemp.Mod(n, i)\n\t\tif temp.Sign() == 0 {\n\t\t\tfmt.Println(i)\n\t\t\tbreak\n\t\t}\n\n\t\ti.Add(i, two)\n\t}\n}\n"
  },
  {
    "path": "_test/fib.go",
    "content": "package main\n\n// Compute fibonacci numbers, no memoization\nfunc fib(n int) int {\n\tif n < 2 {\n\t\treturn n\n\t}\n\treturn fib(n-2) + fib(n-1)\n}\n\nfunc main() {\n\tprintln(fib(35))\n\t//println(fib(10))\n}\n"
  },
  {
    "path": "_test/fib0.go",
    "content": "package main\n\n// Compute fibonacci numbers, no memoization\nfunc fib(n int) int {\n\tif n < 2 {\n\t\treturn n\n\t}\n\treturn fib(n-2) + fib(n-1)\n}\n\nfunc main() {\n\tprintln(fib(4))\n}\n\n// Output:\n// 3\n"
  },
  {
    "path": "_test/file_access.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"os\"\n)\n\nfunc main() {\n\tfile, err := os.CreateTemp(\"\", \"yeagibench\")\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\tn, err := file.Write([]byte(\"hello world\"))\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tfmt.Println(\"n:\", n)\n\n\terr = file.Close()\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\tb, err := os.ReadFile(file.Name())\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tfmt.Println(\"b:\", string(b))\n\n\terr = os.Remove(file.Name())\n\tif err != nil {\n\t\tpanic(err)\n\t}\n}\n\n// Output:\n// n: 11\n// b: hello world\n"
  },
  {
    "path": "_test/flag0.go",
    "content": "package main\n\nimport (\n\t\"flag\"\n\t\"fmt\"\n)\n\nfunc main() {\n\tflag.Parse()\n\tfmt.Println(\"Narg:\", flag.NArg())\n}\n\n// Output:\n// Narg: 0\n"
  },
  {
    "path": "_test/foo/bar.go",
    "content": "package foo\n\nimport \"github.com/traefik/yaegi/_test/foo/boo\"\n\nvar Bar = \"BARR\"\nvar Boo = boo.Boo\n\nfunc init() { println(\"init foo\") }\n"
  },
  {
    "path": "_test/foo/bir.go",
    "content": "package foo\n\nimport \"github.com/traefik/yaegi/_test/foo/boo\"\n\nvar Bir = boo.Boo + \"22\"\n"
  },
  {
    "path": "_test/foo/boo/boo.go",
    "content": "package boo\n\nvar Boo = \"Boo\"\n\nfunc init() { println(\"init boo\") }\n"
  },
  {
    "path": "_test/foo-bar/foo-bar.go",
    "content": "package bar\n\nvar Name = \"foo-bar\"\n"
  },
  {
    "path": "_test/for0.go",
    "content": "package main\n\nfunc main() {\n\ti := 0\n\t//for ;i >= 0; i++ {\n\tfor {\n\t\tif i > 5 {\n\t\t\tbreak\n\t\t}\n\t\tprintln(i)\n\t\ti++\n\t}\n}\n\n// Output:\n// 0\n// 1\n// 2\n// 3\n// 4\n// 5\n"
  },
  {
    "path": "_test/for1.go",
    "content": "package main\n\nfunc main() {\n\ti := 0\n\tfor i < 10 {\n\t\tif i > 4 {\n\t\t\tbreak\n\t\t}\n\t\tprintln(i)\n\t\ti++\n\t}\n}\n\n// Output:\n// 0\n// 1\n// 2\n// 3\n// 4\n"
  },
  {
    "path": "_test/for10.go",
    "content": "package main\n\nfunc main() {\n\tfor a := 0; false; {\n\t\tprintln(\"nok\", a)\n\t\ta++\n\t\tbreak\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// bye\n"
  },
  {
    "path": "_test/for11.go",
    "content": "package main\n\nfunc main() {\n\ta := 0\n\tfor ; true; a++ {\n\t\tprintln(\"nok\", a)\n\t\tbreak\n\t}\n\tprintln(\"bye\", a)\n}\n\n// Output:\n// nok 0\n// bye 0\n"
  },
  {
    "path": "_test/for12.go",
    "content": "package main\n\nfunc main() {\n\tfor a := 0; false; a++ {\n\t\tprintln(\"nok\", a)\n\t\tbreak\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// bye\n"
  },
  {
    "path": "_test/for13.go",
    "content": "package main\n\nfunc main() {\n\ta := 0\n\tfor ; false; a++ {\n\t\tprintln(\"nok\", a)\n\t\tbreak\n\t}\n\tprintln(\"bye\", a)\n}\n\n// Output:\n// bye 0\n"
  },
  {
    "path": "_test/for14.go",
    "content": "package main\n\nfunc main() {\n\tfor a := 0; true; a++ {\n\t\tprintln(a)\n\t\tif a > 0 {\n\t\t\tbreak\n\t\t}\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// 0\n// 1\n// bye\n"
  },
  {
    "path": "_test/for15.go",
    "content": "package main\n\nfunc f() int { println(\"in f\"); return 1 }\n\nfunc main() {\n\tfor i := f(); ; {\n\t\tprintln(\"in loop\")\n\t\tif i > 0 {\n\t\t\tbreak\n\t\t}\n\t}\n}\n\n// Output:\n// in f\n// in loop\n"
  },
  {
    "path": "_test/for16.go",
    "content": "package main\n\nfunc main() {\n\tmax := 1\n\tfor ; ; max-- {\n\t\tif max == 0 {\n\t\t\tbreak\n\t\t}\n\t\tprintln(\"in for\")\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// in for\n// bye\n"
  },
  {
    "path": "_test/for17.go",
    "content": "package main\n\nfunc main() {\n\tmx := 3\n\tfor i := range mx {\n\t\tprintln(i)\n\t}\n}\n\n// Output:\n// 0\n// 1\n// 2\n"
  },
  {
    "path": "_test/for18.go",
    "content": "package main\n\nfunc main() {\n\tfor i := range 3 {\n\t\tprintln(i)\n\t}\n}\n\n// Output:\n// 0\n// 1\n// 2\n"
  },
  {
    "path": "_test/for19.go",
    "content": "package main\n\nfunc main() {\n\tfor range 3 {\n\t\tprintln(\"i\")\n\t}\n}\n\n// Output:\n// i\n// i\n// i\n"
  },
  {
    "path": "_test/for2.go",
    "content": "package main\n\nfunc main() {\n\tfor i := 2; ; i++ {\n\t\tprintln(i)\n\t\tif i > 3 {\n\t\t\tbreak\n\t\t}\n\t}\n}\n\n// Output:\n// 2\n// 3\n// 4\n"
  },
  {
    "path": "_test/for3.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"sort\"\n)\n\nfunc main() {\n\tm := map[string][]string{\n\t\t\"hello\": []string{\"foo\", \"bar\"},\n\t\t\"world\": []string{\"truc\", \"machin\"},\n\t}\n\n\tvar content []string\n\n\tfor key, values := range m {\n\t\tfor _, value := range values {\n\t\t\tcontent = append(content, key+value)\n\t\t}\n\t}\n\n\tsort.Strings(content)\n\tfmt.Println(content)\n}\n\n// Output:\n// [hellobar hellofoo worldmachin worldtruc]\n"
  },
  {
    "path": "_test/for4.go",
    "content": "package main\n\nfunc main() {\n\tfor i := 1; i <= 2; i++ {\n\t\tvar x, y int\n\t\tprintln(x, y)\n\t\tx, y = i, 2*i\n\t\tprintln(x, y)\n\t}\n}\n\n// Output:\n// 0 0\n// 1 2\n// 0 0\n// 2 4\n"
  },
  {
    "path": "_test/for5.go",
    "content": "package main\n\nfunc main() {\n\tvar a bool\n\n\tfor a {\n\t\tprintln(\"nok\")\n\t\tbreak\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// bye\n"
  },
  {
    "path": "_test/for6.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ts := \"三\"\n\tfor i := 0; i < len(s); i++ {\n\t\tfmt.Printf(\"byte %d: %d\\n\", i, s[i])\n\t}\n\tfor i, r := range s {\n\t\tfmt.Printf(\"rune %d: %d\\n\", i, r)\n\t}\n}\n\n// Output:\n// byte 0: 228\n// byte 1: 184\n// byte 2: 137\n// rune 0: 19977\n"
  },
  {
    "path": "_test/for7.go",
    "content": "package main\n\nfunc main() {\n\tfor i := 0; i; {\n\t}\n}\n\n// Error:\n// 4:14: non-bool used as for condition\n"
  },
  {
    "path": "_test/for8.go",
    "content": "package main\n\nfunc main() {\n\tfor i := 0; i < 4; i++ {\n\t\tfor {\n\t\t\tbreak\n\t\t}\n\t\tif i == 1 {\n\t\t\tcontinue\n\t\t}\n\t\tprintln(i)\n\t}\n}\n\n// Output:\n// 0\n// 2\n// 3\n"
  },
  {
    "path": "_test/for9.go",
    "content": "package main\n\nfunc main() {\n\tfor false {\n\t\tprintln(\"nok\")\n\t\tbreak\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// bye\n"
  },
  {
    "path": "_test/fun.go",
    "content": "package main\n\nfunc f(i int) int { return i + 15 }\n\nfunc main() {\n\tprintln(f(4))\n}\n\n// Output:\n// 19\n"
  },
  {
    "path": "_test/fun10.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc f() func() {\n\treturn nil\n}\n\nfunc main() {\n\tg := f()\n\tfmt.Printf(\"%T %v\\n\", g, g)\n\tif g == nil {\n\t\tfmt.Println(\"nil func\")\n\t}\n}\n\n// Output:\n// func() <nil>\n// nil func\n"
  },
  {
    "path": "_test/fun11.go",
    "content": "package main\n\nvar f F\n\ntype F func(int)\n\nfunc main() {\n\tprintln(\"ok\")\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/fun12.go",
    "content": "package main\n\nfunc use(interface{}) {}\n\nfunc main() {\n\tz := map[string]interface{}{\"a\": 5}\n\tuse(z)\n\tprintln(\"bye\")\n}\n\n// Output:\n// bye\n"
  },
  {
    "path": "_test/fun13.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype T struct{}\n\nfunc newT() (T, error) { return T{}, nil }\n\nfunc main() {\n\tvar (\n\t\ti   interface{}\n\t\terr error\n\t)\n\ti, err = newT()\n\tfmt.Println(i, err)\n}\n\n// Output:\n// {} <nil>\n"
  },
  {
    "path": "_test/fun14.go",
    "content": "package main\n\nfunc f() (bool, int) { return true, 2 }\n\nfunc g() (bool, int) { return f() }\n\nfunc main() {\n\tb, i := g()\n\tprintln(b, i)\n}\n\n// Output:\n// true 2\n"
  },
  {
    "path": "_test/fun15.go",
    "content": "package main\n\nfunc f1(a int) interface{} { return a + 1 }\n\nfunc f2(a int64) interface{} { return a + 1 }\n\nfunc main() {\n\tc := f1(3)\n\tprintln(c.(int))\n\tb := f2(3)\n\tprintln(b.(int64))\n}\n\n// Output:\n// 4\n// 4\n"
  },
  {
    "path": "_test/fun16.go",
    "content": "package main\n\nfunc f1(a int) int { return a + 1 }\n\nfunc f2(a int) interface{} {\n\t// TODO: re-enable the optimized case below, once we've figured out why it\n\t// interferes with the empty interface model.\n\t// return f1(a)\n\tvar foo interface{} = f1(a)\n\treturn foo\n}\n\nfunc main() {\n\tc := f2(3)\n\tprintln(c.(int))\n}\n\n// Output:\n// 4\n"
  },
  {
    "path": "_test/fun17.go",
    "content": "package main\n\nfunc f1(a int) interface{} { return a + 1 }\n\nfunc f2(a int) interface{} { return f1(a) }\n\nfunc main() {\n\tc := f2(3)\n\tprintln(c.(int))\n}\n\n// Output:\n// 4\n"
  },
  {
    "path": "_test/fun18.go",
    "content": "package main\n\nvar m = map[string]int{\"foo\": 1, \"bar\": 2}\n\nfunc f(s string) interface{} { return m[s] }\n\nfunc main() {\n\tprintln(f(\"foo\").(int))\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/fun19.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\nfunc foo() ([]string, error) {\n\treturn nil, fmt.Errorf(\"bar\")\n}\n\nfunc main() {\n\ta, b := foo()\n\tfmt.Println(a, b)\n}\n\n// Output:\n// [] bar\n"
  },
  {
    "path": "_test/fun2.go",
    "content": "package main\n\ntype Coord struct{ x, y int }\n\nfunc f(c Coord) int { return c.x + c.y }\n\nfunc main() {\n\tc := Coord{3, 4}\n\tprintln(f(c))\n}\n\n// Output:\n// 7\n"
  },
  {
    "path": "_test/fun20.go",
    "content": "package main\n\nimport \"fmt\"\n\nvar myerr error = fmt.Errorf(\"bar\")\n\nfunc ferr() error { return myerr }\n\nfunc foo() ([]string, error) {\n\treturn nil, ferr()\n}\n\nfunc main() {\n\ta, b := foo()\n\tfmt.Println(a, b)\n}\n\n// Output:\n// [] bar\n"
  },
  {
    "path": "_test/fun21.go",
    "content": "package main\n\nfunc Bar() string {\n\treturn\n}\n\nfunc main() {\n\tprintln(Bar())\n}\n\n// Error:\n// 4:2: not enough arguments to return\n"
  },
  {
    "path": "_test/fun22.go",
    "content": "package main\n\nimport \"time\"\n\nfunc main() {\n\ttime.Date()\n}\n\n// Error:\n// 6:2: not enough arguments in call to time.Date\n"
  },
  {
    "path": "_test/fun23.go",
    "content": "package main\n\nfunc f(x int) { return x }\n\nfunc main() {\n\tprint(\"hello\")\n}\n\n// Error:\n// 3:17: too many arguments to return\n"
  },
  {
    "path": "_test/fun24.go",
    "content": "package main\n\nfunc f(x int) (int, int) { return x, \"foo\" }\n\nfunc main() {\n\tprint(\"hello\")\n}\n\n// Error:\n// cannot use \"foo\" (type stringT) as type intT in return argument\n"
  },
  {
    "path": "_test/fun25.go",
    "content": "package main\n\nfunc f(x string) (a int, b int) { return x, 5 }\n\nfunc main() {\n\tprint(\"hello\")\n}\n\n// Error:\n// cannot use x (type stringT) as type intT in return argument\n"
  },
  {
    "path": "_test/fun26.go",
    "content": "package main\n\ntype F func() (int, error)\n\nfunc f1() (int, error) { return 3, nil }\n\nfunc f2(a string, f F) {\n\tc, _ := f()\n\tprintln(a, c)\n}\n\nfunc main() {\n\tf2(\"hello\", F(f1))\n}\n\n// Output:\n// hello 3\n"
  },
  {
    "path": "_test/fun27.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"sync\"\n)\n\nfunc main() {\n\tvar wg sync.WaitGroup\n\twg.Add(1)\n\tgo func() {\n\t\tdefer wg.Done()\n\n\t\tprint(\"test\")\n\t}()\n\n\twg.Wait()\n}\n\nfunc print(state string) {\n\tfmt.Println(state)\n}\n\n// Output:\n// test\n"
  },
  {
    "path": "_test/fun28.go",
    "content": "package main\n\nimport (\n\t\"runtime\"\n)\n\ntype T struct {\n\tname string\n}\n\nfunc finalize(t *T) { println(\"finalize\") }\n\nfunc newT() *T {\n\tt := new(T)\n\truntime.SetFinalizer(t, finalize)\n\treturn t\n}\n\nfunc main() {\n\tt := newT()\n\tprintln(t != nil)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/fun3.go",
    "content": "package main\n\ntype Coord struct{ x, y int }\n\nfunc f(i, j int, c Coord) int { return i*c.x + j*c.y }\n\nfunc main() {\n\tc := Coord{3, 4}\n\tprintln(f(2, 3, c))\n}\n\n// Output:\n// 18\n"
  },
  {
    "path": "_test/fun4.go",
    "content": "package main\n\nfunc f() {}\n\nfunc main() {\n\tf()\n\tprintln(\"ok\")\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/fun5.go",
    "content": "package main\n\nfunc f(i int64) {\n\tprintln(i)\n}\n\nfunc main() {\n\tf(34)\n}\n\n// Output:\n// 34\n"
  },
  {
    "path": "_test/fun6.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"sync\"\n)\n\nfunc NewPool() Pool { return Pool{} }\n\ntype Pool struct {\n\tp *sync.Pool\n}\n\nvar _pool = NewPool()\n\nfunc main() {\n\tfmt.Println(_pool)\n}\n\n// Output:\n// {<nil>}\n"
  },
  {
    "path": "_test/fun7.go",
    "content": "package main\n\nimport (\n\tgoflag \"flag\"\n\t\"fmt\"\n)\n\nfunc Foo(goflag *goflag.Flag) {\n\tfmt.Println(goflag)\n}\n\nfunc main() {\n\tg := &goflag.Flag{}\n\tFoo(g)\n}\n\n// Output:\n// &{  <nil> }\n"
  },
  {
    "path": "_test/fun8.go",
    "content": "package main\n\nfunc main() { println(f == nil) }\n\nvar f func()\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/fun9.go",
    "content": "package main\n\ntype T uint\n\nfunc main() {\n\ttype myint int\n\tvar i = myint(1)\n\tprintln(i)\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/gen1.go",
    "content": "package main\n\nimport \"fmt\"\n\n// SumInts adds together the values of m.\nfunc SumInts(m map[string]int64) int64 {\n\tvar s int64\n\tfor _, v := range m {\n\t\ts += v\n\t}\n\treturn s\n}\n\n// SumFloats adds together the values of m.\nfunc SumFloats(m map[string]float64) float64 {\n\tvar s float64\n\tfor _, v := range m {\n\t\ts += v\n\t}\n\treturn s\n}\n\nfunc main() {\n\t// Initialize a map for the integer values\n\tints := map[string]int64{\n\t\t\"first\":  34,\n\t\t\"second\": 12,\n\t}\n\n\t// Initialize a map for the float values\n\tfloats := map[string]float64{\n\t\t\"first\":  35.98,\n\t\t\"second\": 26.99,\n\t}\n\n\tfmt.Printf(\"Non-Generic Sums: %v and %v\\n\",\n\t\tSumInts(ints),\n\t\tSumFloats(floats))\n}\n"
  },
  {
    "path": "_test/gen10.go",
    "content": "package main\n\nfunc genFunc() (f func()) {\n\treturn f\n}\n\nfunc main() {\n\tprintln(genFunc() == nil)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/gen11.go",
    "content": "package main\n\nimport (\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"net/netip\"\n)\n\ntype Slice[T any] struct {\n\tx []T\n}\n\ntype IPPrefixSlice struct {\n\tx Slice[netip.Prefix]\n}\n\nfunc (v Slice[T]) MarshalJSON() ([]byte, error) { return json.Marshal(v.x) }\n\n// MarshalJSON implements json.Marshaler.\nfunc (v IPPrefixSlice) MarshalJSON() ([]byte, error) {\n\treturn v.x.MarshalJSON()\n}\n\nfunc main() {\n\tt := IPPrefixSlice{}\n\tfmt.Println(t)\n\tb, e := t.MarshalJSON()\n\tfmt.Println(string(b), e)\n}\n\n// Output:\n// {{[]}}\n// null <nil>\n"
  },
  {
    "path": "_test/gen12.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\nfunc MapOf[K comparable, V any](m map[K]V) Map[K, V] {\n\treturn Map[K, V]{m}\n}\n\ntype Map[K comparable, V any] struct {\n\tж map[K]V\n}\n\nfunc (v MapView) Int() Map[string, int] { return MapOf(v.ж.Int) }\n\ntype VMap struct {\n\tInt map[string]int\n}\n\ntype MapView struct {\n\tж *VMap\n}\n\nfunc main() {\n\tmv := MapView{&VMap{}}\n\tfmt.Println(mv.ж)\n}\n\n// Output:\n// &{map[]}\n"
  },
  {
    "path": "_test/gen13.go",
    "content": "package main\n\ntype Map[K comparable, V any] struct {\n\tж map[K]V\n}\n\nfunc (m Map[K, V]) Has(k K) bool {\n\t_, ok := m.ж[k]\n\treturn ok\n}\n\nfunc main() {\n\tm := Map[string, float64]{}\n\tprintln(m.Has(\"test\"))\n}\n\n// Output:\n// false\n"
  },
  {
    "path": "_test/gen2.go",
    "content": "package main\n\nimport \"fmt\"\n\n// SumIntsOrFloats sums the values of map m. It supports both int64 and float64\n// as types for map values.\nfunc SumIntsOrFloats[K comparable, V int64 | float64](m map[K]V) V {\n\tvar s V\n\tfor _, v := range m {\n\t\ts += v\n\t}\n\treturn s\n}\n\nfunc main() {\n\t// Initialize a map for the integer values\n\tints := map[string]int64{\n\t\t\"first\":  34,\n\t\t\"second\": 12,\n\t}\n\n\t// Initialize a map for the float values\n\tfloats := map[string]float64{\n\t\t\"first\":  35.98,\n\t\t\"second\": 26.99,\n\t}\n\n\tfmt.Printf(\"Generic Sums: %v and %v\\n\",\n\t\tSumIntsOrFloats[string, int64](ints),\n\t\tSumIntsOrFloats[string, float64](floats))\n}\n\n// Output:\n// Generic Sums: 46 and 62.97\n"
  },
  {
    "path": "_test/gen3.go",
    "content": "package main\n\ntype Number interface {\n\tint | int64 | ~float64\n}\n\nfunc Sum[T Number](numbers []T) T {\n\tvar total T\n\tfor _, x := range numbers {\n\t\ttotal += x\n\t}\n\treturn total\n}\n\nfunc main() {\n\txs := []int{3, 5, 10}\n\ttotal := Sum(xs)\n\tprintln(total)\n}\n\n// Output:\n// 18\n"
  },
  {
    "path": "_test/gen4.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype List[T any] struct {\n\thead, tail *element[T]\n}\n\n// A recursive generic type.\ntype element[T any] struct {\n\tnext *element[T]\n\tval  T\n}\n\nfunc (lst *List[T]) Push(v T) {\n\tif lst.tail == nil {\n\t\tlst.head = &element[T]{val: v}\n\t\tlst.tail = lst.head\n\t} else {\n\t\tlst.tail.next = &element[T]{val: v}\n\t\tlst.tail = lst.tail.next\n\t}\n}\n\nfunc (lst *List[T]) GetAll() []T {\n\tvar elems []T\n\tfor e := lst.head; e != nil; e = e.next {\n\t\telems = append(elems, e.val)\n\t}\n\treturn elems\n}\n\nfunc main() {\n\tlst := List[int]{}\n\tlst.Push(10)\n\tlst.Push(13)\n\tlst.Push(23)\n\tfmt.Println(\"list:\", lst.GetAll())\n}\n\n// Output:\n// list: [10 13 23]\n"
  },
  {
    "path": "_test/gen5.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype Set[Elem comparable] struct {\n\tm map[Elem]struct{}\n}\n\nfunc Make[Elem comparable]() Set[Elem] {\n\treturn Set[Elem]{m: make(map[Elem]struct{})}\n}\n\nfunc (s Set[Elem]) Add(v Elem) {\n\ts.m[v] = struct{}{}\n}\n\nfunc main() {\n\ts := Make[int]()\n\ts.Add(1)\n\tfmt.Println(s)\n}\n\n// Output:\n// {map[1:{}]}\n"
  },
  {
    "path": "_test/gen6.go",
    "content": "package main\n\nfunc MapKeys[K comparable, V any](m map[K]V) []K {\n\tr := make([]K, 0, len(m))\n\tfor k := range m {\n\t\tr = append(r, k)\n\t}\n\treturn r\n}\n\nfunc main() {\n\tvar m = map[int]string{1: \"2\", 2: \"4\", 4: \"8\"}\n\n\t// Test type inference\n\tprintln(len(MapKeys(m)))\n}\n\n// Output:\n// 3\n"
  },
  {
    "path": "_test/gen7.go",
    "content": "package main\n\nfunc MapKeys[K comparable, V any](m map[K]V) []K {\n\tr := make([]K, 0, len(m))\n\tfor k := range m {\n\t\tr = append(r, k)\n\t}\n\treturn r\n}\n\nfunc main() {\n\tvar m = map[int]string{1: \"2\", 2: \"4\", 4: \"8\"}\n\n\t// Test type inference\n\tprintln(len(MapKeys))\n}\n\n// Error:\n// invalid argument for len\n"
  },
  {
    "path": "_test/gen8.go",
    "content": "package main\n\ntype Float interface {\n\t~float32 | ~float64\n}\n\nfunc add[T Float](a, b T) float64 { return float64(a) + float64(b) }\n\nfunc main() {\n\tvar x, y int = 1, 2\n\tprintln(add(x, y))\n}\n\n// Error:\n// int does not implement main.Float\n"
  },
  {
    "path": "_test/gen9.go",
    "content": "package main\n\ntype Float interface {\n\t~float32 | ~float64\n}\n\nfunc add[T Float](a, b T) float64 { return float64(a) + float64(b) }\n\nfunc main() {\n\tprintln(add(1, 2))\n}\n\n// Error:\n// untyped int does not implement main.Float\n"
  },
  {
    "path": "_test/goto0.go",
    "content": "package main\n\nfunc main() {\n\tprintln(\"foo\")\n\tgoto L1\n\tprintln(\"Hello\")\nL1:\n\tprintln(\"bar\")\n\tprintln(\"bye\")\n}\n\n// Output:\n// foo\n// bar\n// bye\n"
  },
  {
    "path": "_test/goto1.go",
    "content": "package main\n\nfunc main() {\n\tif true {\n\t\tgoto here\n\t}\nhere:\n\tprintln(\"ok\")\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/heap.go",
    "content": "// This example demonstrates an integer heap built using the heap interface.\npackage main\n\nimport (\n\t\"container/heap\"\n\t\"fmt\"\n)\n\n// An IntHeap is a min-heap of ints.\ntype IntHeap []int\n\nfunc (h IntHeap) Len() int           { return len(h) }\nfunc (h IntHeap) Less(i, j int) bool { return h[i] < h[j] }\nfunc (h IntHeap) Swap(i, j int)      { h[i], h[j] = h[j], h[i] }\n\nfunc (h *IntHeap) Push(x interface{}) {\n\t// Push and Pop use pointer receivers because they modify the slice's length,\n\t// not just its contents.\n\t*h = append(*h, x.(int))\n}\n\nfunc (h *IntHeap) Pop() interface{} {\n\told := *h\n\tn := len(old)\n\tx := old[n-1]\n\t*h = old[0 : n-1]\n\treturn x\n}\n\n// This example inserts several ints into an IntHeap, checks the minimum,\n// and removes them in order of priority.\nfunc main() {\n\th := &IntHeap{2, 1, 5}\n\theap.Init(h)\n\theap.Push(h, 3)\n\tfmt.Printf(\"minimum: %d\\n\", (*h)[0])\n\tfmt.Println(\"h:\", h)\n\tfor h.Len() > 0 {\n\t\tfmt.Printf(\"%d \", heap.Pop(h))\n\t}\n}\n\n// Output:\n// minimum: 1\n// h: &[1 2 5 3]\n// 1 2 3 5\n"
  },
  {
    "path": "_test/if.go",
    "content": "package main\n\nfunc main() {\n\tif a := f(); a > 0 {\n\t\tprintln(a)\n\t}\n}\n\nfunc f() int { return 1 }\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/if0.go",
    "content": "package main\n\nfunc main() {\n\tvar a bool\n\n\tif a {\n\t\tprintln(\"ok\")\n\t} else {\n\t\tprintln(\"nok\")\n\t}\n}\n\n// Output:\n// nok\n"
  },
  {
    "path": "_test/if1.go",
    "content": "package main\n\nfunc main() {\n\ti := 1\n\tif i > 0 {\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// bye\n"
  },
  {
    "path": "_test/if2.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar i int\n\tif i % 1000000 {\n\t\tfmt.Println(\"oops\")\n\t}\n}\n\n// Error:\n// 7:5: non-bool used as if condition\n"
  },
  {
    "path": "_test/if3.go",
    "content": "package main\n\nfunc main() {\n\ta := 0\n\tif false {\n\t\tprintln(\"false\")\n\t\ta = 1\n\t} else {\n\t\tprintln(\"true\")\n\t\ta = -1\n\t}\n\tprintln(a)\n}\n\n// Output:\n// true\n// -1\n"
  },
  {
    "path": "_test/if4.go",
    "content": "package main\n\nconst bad = false\n\nfunc main() {\n\ta := 0\n\tif bad {\n\t\tprintln(\"false\")\n\t\ta = 1\n\t} else {\n\t\tprintln(\"true\")\n\t\ta = -1\n\t}\n\tprintln(a)\n}\n\n// Output:\n// true\n// -1\n"
  },
  {
    "path": "_test/if5.go",
    "content": "package main\n\nfunc main() {\n\tif true {\n\t\tprintln(\"ok\")\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// ok\n// bye\n"
  },
  {
    "path": "_test/if6.go",
    "content": "package main\n\nfunc main() {\n\tif false {\n\t\tprintln(\"nok\")\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// bye\n"
  },
  {
    "path": "_test/if7.go",
    "content": "package main\n\nfunc main() {\n\ta := 0\n\tb := false\n\tif (b) {\n\t\ta = 1\n\t} else {\n\t\ta = -1\n\t}\n\tprintln(a)\n}\n\n// Output:\n// -1\n"
  },
  {
    "path": "_test/imag0.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc f(c complex128) interface{} { return imag(c) }\n\nfunc main() {\n\tc := complex(3, 2)\n\ta := f(c)\n\tfmt.Println(a.(float64))\n}\n\n// Output:\n// 2\n"
  },
  {
    "path": "_test/import0.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tfmt.Println(\"Hello\", 42)\n}\n\n// Output:\n// Hello 42\n"
  },
  {
    "path": "_test/import1.go",
    "content": "package main\n\nimport f \"fmt\"\n\nfunc main() {\n\tf.Println(\"Hello\", 42)\n}\n\n// Output:\n// Hello 42\n"
  },
  {
    "path": "_test/import2.go",
    "content": "package main\n\nimport . \"fmt\"\n\nfunc main() {\n\tPrintln(\"Hello\", 42)\n}\n\n// Output:\n// Hello 42\n"
  },
  {
    "path": "_test/import3.go",
    "content": "package main\n\nimport \"github.com/traefik/yaegi/_test/foo\"\n\nfunc main() { println(foo.Bar, foo.Boo) }\n\n// Output:\n// init boo\n// init foo\n// BARR Boo\n"
  },
  {
    "path": "_test/import4.go",
    "content": "package main\n\nimport \"github.com/traefik/yaegi/_test/p1\"\n\nfunc main() { println(\"num:\", p1.Uint32()) }\n\n// Output:\n// num: 2596996162\n"
  },
  {
    "path": "_test/import5.go",
    "content": "package main\n\nimport boo \"github.com/traefik/yaegi/_test/foo\"\n\nfunc main() { println(boo.Bar, boo.Boo, boo.Bir) }\n\n// Output:\n// init boo\n// init foo\n// BARR Boo Boo22\n"
  },
  {
    "path": "_test/import6.go",
    "content": "package main\n\nimport \"github.com/traefik/yaegi/_test/c1\"\n\nfunc main() {\n\tprintln(c1.C1)\n}\n\n// Error:\n// import cycle not allowed\n//\timports github.com/traefik/yaegi/_test/c1\n"
  },
  {
    "path": "_test/import7.go",
    "content": "package main\n\nimport bar \"github.com/traefik/yaegi/_test/foo-bar\"\n\nfunc main() {\n\tprintln(bar.Name)\n}\n\n// Output:\n// foo-bar\n"
  },
  {
    "path": "_test/import8.go",
    "content": "package main\n\nimport \"github.com/traefik/yaegi/_test/b1/foo\"\n\nfunc main() {\n\tprintln(foo.Desc)\n}\n\n// Output:\n// in b1/foo\n"
  },
  {
    "path": "_test/import9.go",
    "content": "package main\n\nimport \"github.com/traefik/yaegi/_test/baz-bat\"\n\nfunc main() {\n\tprintln(baz.Name)\n}\n\n// Output:\n// baz-bat\n"
  },
  {
    "path": "_test/inc.go",
    "content": "package main\n\nfunc main() {\n\ti := 2\n\t//i++\n\ti = i + 1\n\tprintln(i)\n}\n\n// Output:\n// 3\n"
  },
  {
    "path": "_test/inception.go",
    "content": "package main\n\nimport (\n\t\"log\"\n\n\t\"github.com/traefik/yaegi/interp\"\n)\n\nfunc main() {\n\tlog.SetFlags(log.Lshortfile)\n\ti := interp.New(interp.Options{})\n\ti.Use(interp.Symbols)\n\tif _, err := i.Eval(`import \"github.com/traefik/yaegi/interp\"`); err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tif _, err := i.Eval(`i := interp.New(interp.Options{})`); err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tif _, err := i.Eval(`i.Eval(\"println(42)\")`); err != nil {\n\t\tlog.Fatal(err)\n\t}\n}\n"
  },
  {
    "path": "_test/init0.go",
    "content": "package main\n\nfunc init() {\n\tprintln(\"Hello from init 1\")\n}\n\nfunc init() {\n\tprintln(\"Hello from init 2\")\n}\n\nfunc main() {\n\tprintln(\"Hello from main\")\n}\n\n// Output:\n// Hello from init 1\n// Hello from init 2\n// Hello from main\n"
  },
  {
    "path": "_test/init1.go",
    "content": "package main\n\nfunc init() {\n\tprintln(\"here\")\n}\n\nfunc main() {\n\tinit()\n}\n\n// Error:\n// _test/init1.go:8:2: undefined: init\n"
  },
  {
    "path": "_test/interface0.go",
    "content": "package main\n\ntype sample struct {\n\tcount int\n}\n\nfunc run(inf interface{}, name string) {\n\tx := inf.(sample)\n\tprintln(x.count, name)\n}\n\nfunc main() {\n\ta := sample{2}\n\tprintln(a.count)\n\trun(a, \"truc\")\n}\n\n// Output:\n// 2\n// 2 truc\n"
  },
  {
    "path": "_test/interface1.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype fii interface {\n\tHello()\n}\n\ntype Boo struct {\n\tName string\n}\n\nfunc (b *Boo) Hello() {\n\tfmt.Println(\"Hello\", b)\n\tfmt.Println(b.Name)\n}\n\nfunc inCall(foo fii) {\n\tfmt.Println(\"inCall\")\n\tfoo.Hello()\n}\n\nfunc main() {\n\tfmt.Println(\"in\")\n\tboo := &Boo{\"foo\"}\n\tinCall(boo)\n}\n\n// Output:\n// in\n// inCall\n// Hello &{foo}\n// foo\n"
  },
  {
    "path": "_test/interface10.go",
    "content": "package main\n\ntype Edge interface {\n\tReverseEdge() Edge\n}\n\nfunc main() {\n\tprintln(\"hello\")\n}\n\n// Output:\n// hello\n"
  },
  {
    "path": "_test/interface11.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype Error interface {\n\terror\n\tCode() string\n}\n\ntype MyError Error\n\ntype T struct {\n\tName string\n}\n\nfunc (t *T) Error() string { return \"err: \" + t.Name }\nfunc (t *T) Code() string  { return \"code: \" + t.Name }\n\nfunc newT(s string) MyError { return &T{s} }\n\nfunc main() {\n\tt := newT(\"foo\")\n\tfmt.Println(t.Code())\n}\n\n// Output:\n// code: foo\n"
  },
  {
    "path": "_test/interface12.go",
    "content": "package main\n\ntype I1 interface {\n\tTruc()\n}\n\ntype T1 struct{}\n\nfunc (T1) Truc() { println(\"in T1 truc\") }\n\nvar x I1 = T1{}\n\nfunc main() {\n\tx.Truc()\n}\n\n// Output:\n// in T1 truc\n"
  },
  {
    "path": "_test/interface13.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\ntype X struct{}\n\nfunc (X) Foo() int {\n\treturn 1\n}\nfunc (X) Bar() int {\n\treturn 2\n}\n\ntype Foo interface {\n\tFoo() int\n}\ntype Bar interface {\n\tBar() int\n}\n\nfunc main() {\n\tvar x X\n\tvar i Foo = x\n\tj := i.(Bar)\n\n\tfmt.Println(j.Bar())\n}\n\n// Output:\n// 2\n"
  },
  {
    "path": "_test/interface14.go",
    "content": "package main\n\ntype T struct{}\n\nfunc (t *T) Error() string { return \"T: error\" }\n\nvar invalidT = &T{}\n\nfunc main() {\n\tvar err error\n\tif err != invalidT {\n\t\tprintln(\"ok\")\n\t}\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/interface15.go",
    "content": "package main\n\ntype Fooer interface {\n\tFoo() string\n}\n\ntype Barer interface {\n\t//fmt.Stringer\n\tFooer\n\tBar()\n}\n\ntype T struct{}\n\nfunc (t *T) Foo() string { return \"T: foo\" }\nfunc (*T) Bar()          { println(\"in bar\") }\n\nvar t = &T{}\n\nfunc main() {\n\tvar f Barer\n\tif f != t {\n\t\tprintln(\"ok\")\n\t}\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/interface16.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype Barer interface {\n\tfmt.Stringer\n\tBar()\n}\n\ntype T struct{}\n\nfunc (*T) String() string { return \"T: nothing\" }\nfunc (*T) Bar()           { println(\"in bar\") }\n\nvar t = &T{}\n\nfunc main() {\n\tvar f Barer\n\tif f != t {\n\t\tprintln(\"ok\")\n\t}\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/interface17.go",
    "content": "package main\n\ntype T struct{}\n\nfunc (t T) Error() string { return \"T: error\" }\n\nvar invalidT = T{}\n\nfunc main() {\n\tvar err error\n\tif err != invalidT {\n\t\tprintln(\"ok\")\n\t}\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/interface18.go",
    "content": "package main\n\ntype T struct{}\n\nfunc (t *T) Error() string { return \"T: error\" }\nfunc (*T) Foo()            { println(\"foo\") }\n\nvar invalidT = &T{}\n\nfunc main() {\n\tvar err error\n\tif err != invalidT {\n\t\tprintln(\"ok\")\n\t}\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/interface19.go",
    "content": "package main\n\nimport \"fmt\"\n\nvar I interface{}\n\nfunc main() {\n\tfmt.Printf(\"%T %v\\n\", I, I)\n}\n\n// Output:\n// <nil> <nil>\n"
  },
  {
    "path": "_test/interface2.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype fii interface {\n\tHello()\n}\n\ntype Boo struct {\n\tName string\n}\n\ntype Bar struct{}\n\nfunc (b Bar) Hello() { fmt.Println(\"b:\", b) }\n\nfunc (b Boo) Hello() {\n\tfmt.Println(\"Hello\", b)\n\tfmt.Println(b.Name)\n}\n\nfunc inCall(foo fii) {\n\tfmt.Println(\"inCall\")\n\tswitch a := foo.(type) {\n\tcase Boo:\n\t\ta.Hello()\n\tdefault:\n\t\tfmt.Println(\"a:\", a)\n\t}\n}\n\nfunc main() {\n\tboo := Boo{\"foo\"}\n\tinCall(boo)\n\tinCall(Bar{})\n}\n\n// Output:\n// inCall\n// Hello {foo}\n// foo\n// inCall\n// a: {}\n"
  },
  {
    "path": "_test/interface20.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar a interface{}\n\ta = string(\"A\")\n\tfmt.Println(a)\n}\n\n// Output:\n// A\n"
  },
  {
    "path": "_test/interface21.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ts := make([]interface{}, 1)\n\ts[0] = 1\n\tfmt.Println(s[0])\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/interface22.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ts := make([]interface{}, 0)\n\ts = append(s, 1)\n\tfmt.Println(s[0])\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/interface23.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tm := make(map[string]interface{})\n\tm[\"A\"] = string(\"A\")\n\tfmt.Println(m[\"A\"])\n}\n\n// Output:\n// A\n"
  },
  {
    "path": "_test/interface24.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tm := make(map[string]interface{})\n\tfmt.Println(m[\"B\"])\n}\n\n// Output:\n// <nil>\n"
  },
  {
    "path": "_test/interface25.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tm := make(map[string]interface{})\n\tm[\"A\"] = 1\n\tfor _, v := range m {\n\t\tfmt.Println(v)\n\t}\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/interface26.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ts := make([]interface{}, 0)\n\ts = append(s, 1)\n\tfor _, v := range s {\n\t\tfmt.Println(v)\n\t}\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/interface27.go",
    "content": "package main\n\nimport \"fmt\"\n\nvar errs = map[int]error{0: nil}\n\nfunc main() {\n\tfmt.Println(errs)\n}\n\n// Output:\n// map[0:<nil>]\n"
  },
  {
    "path": "_test/interface28.go",
    "content": "package main\n\nimport \"fmt\"\n\nvar errs = []error{nil}\n\nfunc main() {\n\tfmt.Println(errs)\n}\n\n// Output:\n// [<nil>]\n"
  },
  {
    "path": "_test/interface29.go",
    "content": "package main\n\nfunc main() {\n\tvar a interface{}\n\tprintln(a == nil)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/interface3.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype fii interface {\n\tHello()\n}\n\ntype Boo struct {\n\tName string\n}\n\nfunc (b Boo) Hello() {\n\tfmt.Println(\"Hello\", b)\n\tfmt.Println(b.Name)\n}\n\nfunc inCall(foo fii) {\n\tfmt.Println(\"inCall\")\n\tfoo.Hello()\n}\n\nfunc main() {\n\tboo := Boo{\"foo\"}\n\tinCall(boo)\n}\n\n// Output:\n// inCall\n// Hello {foo}\n// foo\n"
  },
  {
    "path": "_test/interface30.go",
    "content": "package main\n\nfunc main() {\n\tvar a interface{}\n\tprintln(a != nil)\n}\n\n// Output:\n// false\n"
  },
  {
    "path": "_test/interface31.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ts := []interface{}{\"test\", 2}\n\tfmt.Println(s[0], s[1])\n}\n\n// Output:\n// test 2\n"
  },
  {
    "path": "_test/interface32.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ts := [2]interface{}{\"test\", 2}\n\tfmt.Println(s[0], s[1])\n}\n\n// Output:\n// test 2\n"
  },
  {
    "path": "_test/interface33.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar a = map[string]interface{}{\"test\": \"test\"}\n\tfmt.Println(a[\"test\"])\n}\n\n// Output:\n// test\n"
  },
  {
    "path": "_test/interface34.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ts := [2]interface{}{1: \"test\", 0: 2}\n\tfmt.Println(s[0], s[1])\n}\n\n// Output:\n// 2 test\n"
  },
  {
    "path": "_test/interface35.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype T struct {\n\tI interface{}\n}\n\nfunc main() {\n\tt := T{\"test\"}\n\tfmt.Println(t)\n}\n\n// Output:\n// {test}\n"
  },
  {
    "path": "_test/interface36.go",
    "content": "package main\n\nimport \"fmt\"\n\nvar (\n\tt *S\n\t_ I = t\n\t_ J = t\n)\n\ntype S struct {\n\tName string\n}\n\nfunc (s *S) F() int { return len(s.Name) }\nfunc (s *S) G() int { return s.F() }\nfunc (s *S) Ri() I  { return s }\nfunc (s *S) Rj() J  { return s }\n\ntype J interface {\n\tI\n\tG() int\n\tRj() J\n}\n\ntype I interface {\n\tF() int\n\tRi() I\n}\n\nfunc main() {\n\tvar j J\n\tfmt.Println(j)\n}\n\n// Output:\n// <nil>\n"
  },
  {
    "path": "_test/interface37.go",
    "content": "package main\n\ntype I interface {\n\tA() string\n\tB() string\n}\n\ntype s struct{}\n\nfunc NewS() (I, error) {\n\treturn &s{}, nil\n}\n\nfunc (c *s) A() string { return \"a\" }\nfunc (c *s) B() string { return \"b\" }\n\nfunc main() {\n\ts, _ := NewS()\n\tprintln(s.A())\n}\n\n// Output:\n// a\n"
  },
  {
    "path": "_test/interface38.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype foo struct {\n\tbar string\n}\n\nfunc (f foo) String() string {\n\treturn \"Hello from \" + f.bar\n}\n\nfunc main() {\n\tvar f fmt.Stringer = foo{bar: \"bar\"}\n\tfmt.Println(f)\n}\n\n// Output:\n// Hello from bar\n"
  },
  {
    "path": "_test/interface39.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype foo struct {\n\tbar string\n}\n\nfunc (f *foo) String() string {\n\treturn \"Hello from \" + f.bar\n}\n\nfunc main() {\n\tvar f fmt.Stringer = &foo{bar: \"bar\"}\n\tfmt.Println(f)\n}\n\n// Output:\n// Hello from bar\n"
  },
  {
    "path": "_test/interface4.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype fii interface {\n\tHello()\n}\n\ntype Boo struct {\n\tName string\n}\n\ntype Bir struct {\n\tBoo\n}\n\nfunc (b Boo) Hello() {\n\tfmt.Println(\"Hello\", b)\n\tfmt.Println(b.Name)\n}\n\nfunc inCall(foo fii) {\n\tfmt.Println(\"inCall\")\n\tfoo.Hello()\n}\n\nfunc main() {\n\tbir := Bir{Boo{\"foo\"}}\n\tinCall(bir)\n}\n\n// Output:\n// inCall\n// Hello {foo}\n// foo\n"
  },
  {
    "path": "_test/interface40.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype foo struct {\n\tbar string\n}\n\nfunc (f foo) String() string {\n\treturn \"Hello from \" + f.bar\n}\n\nfunc Foo(s string) fmt.Stringer {\n\treturn foo{s}\n}\n\nfunc main() {\n\tf := Foo(\"bar\")\n\tfmt.Println(f)\n}\n\n// Output:\n// Hello from bar\n"
  },
  {
    "path": "_test/interface41.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype foo struct {\n\tbar string\n}\n\nfunc (f *foo) String() string {\n\treturn \"Hello from \" + f.bar\n}\n\nfunc Foo(s string) fmt.Stringer {\n\treturn &foo{s}\n}\n\nfunc main() {\n\tf := Foo(\"bar\")\n\tfmt.Println(f)\n}\n\n// Output:\n// Hello from bar\n"
  },
  {
    "path": "_test/interface42.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tv := interface{}(0)\n\n\tfmt.Println(v)\n}\n\n// Output:\n// 0\n"
  },
  {
    "path": "_test/interface43.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tv := interface{}(nil)\n\n\tfmt.Println(v)\n}\n\n// Output:\n// <nil>\n"
  },
  {
    "path": "_test/interface44.go",
    "content": "package main\n\ntype S struct {\n\ta int\n}\n\nfunc main() {\n\tvar i interface{} = S{a: 1}\n\n\ts, ok := i.(S)\n\tif !ok {\n\t\tprintln(\"bad\")\n\t\treturn\n\t}\n\tprintln(s.a)\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/interface45.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar i interface{} = 1\n\tvar s struct{}\n\ts, _ = i.(struct{})\n\tfmt.Println(s)\n}\n\n// Output:\n// {}\n"
  },
  {
    "path": "_test/interface46.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype I interface {\n\tFoo() string\n}\n\ntype Printer struct {\n\ti I\n}\n\nfunc New(i I) *Printer {\n\treturn &Printer{\n\t\ti: i,\n\t}\n}\n\nfunc (p *Printer) Print() {\n\tfmt.Println(p.i.Foo())\n}\n\ntype T struct{}\n\nfunc (t *T) Foo() string {\n\treturn \"test\"\n}\n\nfunc main() {\n\tg := New(&T{})\n\tg.Print()\n}\n\n// Output:\n// test\n"
  },
  {
    "path": "_test/interface47.go",
    "content": "package main\n\ntype Doer interface {\n\tDo() error\n}\n\ntype T struct {\n\tName string\n}\n\nfunc (t *T) Do() error { println(\"in do\"); return nil }\n\nfunc f() (Doer, error) { return &T{\"truc\"}, nil }\n\ntype Ev struct {\n\tdoer func() (Doer, error)\n}\n\nfunc (e *Ev) do() {\n\td, _ := e.doer()\n\td.Do()\n}\n\nfunc main() {\n\te := &Ev{f}\n\tprintln(e != nil)\n\te.do()\n}\n\n// Output:\n// true\n// in do\n"
  },
  {
    "path": "_test/interface48.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype I1 interface{ A }\n\ntype A = I2\n\ntype I2 interface{ F() I1 }\n\nfunc main() {\n\tvar i I1\n\tfmt.Println(i)\n}\n\n// Output:\n// <nil>\n"
  },
  {
    "path": "_test/interface49.go",
    "content": "package main\n\ntype Descriptor interface {\n\tParentFile() FileDescriptor\n}\n\ntype FileDescriptor interface {\n\tEnums() EnumDescriptors\n\tServices() ServiceDescriptors\n}\n\ntype EnumDescriptors interface {\n\tGet(i int) EnumDescriptor\n}\n\ntype EnumDescriptor interface {\n\tValues() EnumValueDescriptors\n}\n\ntype EnumValueDescriptors interface {\n\tGet(i int) EnumValueDescriptor\n}\n\ntype EnumValueDescriptor interface {\n\tDescriptor\n}\n\ntype ServiceDescriptors interface {\n\tGet(i int) ServiceDescriptor\n}\n\ntype ServiceDescriptor interface {\n\tDescriptor\n\tisServiceDescriptor\n}\n\ntype isServiceDescriptor interface{ ProtoType(ServiceDescriptor) }\n\nfunc main() {\n\tvar d Descriptor\n\tprintln(d == nil)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/interface5.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype Myint int\n\nfunc (i Myint) Double() { fmt.Println(\"Myint:\", i, i) }\n\ntype Boo interface {\n\tDouble()\n}\n\nfunc f(boo Boo) {\n\tboo.Double()\n}\n\nfunc main() {\n\tvar i Myint = 3\n\tf(i)\n}\n\n// Output:\n// Myint: 3 3\n"
  },
  {
    "path": "_test/interface50.go",
    "content": "package main\n\nfunc main() {\n\ta := true\n\tvar b interface{} = 5\n\tprintln(b.(int))\n\tb = a == true\n\tprintln(b.(bool))\n}\n\n// Output:\n// 5\n// true\n"
  },
  {
    "path": "_test/interface51.go",
    "content": "package main\n\ntype Error interface {\n\terror\n\tMessage() string\n}\n\ntype T struct {\n\tMsg string\n}\n\nfunc (t *T) Error() string   { return t.Msg }\nfunc (t *T) Message() string { return \"message:\" + t.Msg }\n\nfunc newError() Error { return &T{\"test\"} }\n\nfunc main() {\n\te := newError()\n\tprintln(e.Error())\n}\n\n// Output:\n// test\n"
  },
  {
    "path": "_test/interface52.go",
    "content": "package main\n\nimport \"testing\"\n\nfunc main() {\n\tt := testing.T{}\n\tvar tb testing.TB\n\ttb = &t\n\tif tb.TempDir() == \"\" {\n\t\tprintln(\"FAIL\")\n\t\treturn\n\t}\n\tprintln(\"PASS\")\n}\n\n// Output:\n// PASS\n"
  },
  {
    "path": "_test/interface6.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype Myint int\n\nfunc (i Myint) Double() { fmt.Println(\"Myint:\", i, i) }\n\ntype Boo interface {\n\tDouble()\n}\n\nfunc f(boo Boo) { boo.Double() }\n\nfunc g(i int) Boo { return Myint(i) }\n\nfunc main() {\n\tf(g(4))\n}\n\n// Output:\n// Myint: 4 4\n"
  },
  {
    "path": "_test/interface7.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype T int\n\nfunc (t T) Error() string { return fmt.Sprintf(\"This is an error from T: %d\", t) }\n\nfunc f(t T) error { return t }\n\nfunc main() {\n\tx := T(1)\n\tfmt.Println(f(x))\n}\n\n// Output:\n// This is an error from T: 1\n"
  },
  {
    "path": "_test/interface8.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\nvar _ = (HelloInterface)((*Hello)(nil))\n\ntype HelloInterface interface {\n\tHi() string\n}\n\ntype Hello struct{}\n\nfunc (h *Hello) Hi() string {\n\treturn \"hi\"\n}\n\nfunc main() {\n\th := &Hello{}\n\tfmt.Println(h.Hi())\n}\n\n// Output:\n// hi\n"
  },
  {
    "path": "_test/interface9.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype Int int\n\nfunc (I Int) String() string {\n\treturn \"foo\"\n}\n\nfunc main() {\n\tvar i Int\n\tvar st fmt.Stringer = i\n\tfmt.Println(st.String())\n}\n\n// Output:\n// foo\n"
  },
  {
    "path": "_test/interp.gi",
    "content": "package main\n\nimport (\n\t\"github.com/traefik/yaegi/interp\"\n)\n\nfunc main() {\n\ti := interp.New(interp.Opt{})\n\ti.Eval(`println(\"Hello\")`)\n}\n\n// Output:\n// Hello\n"
  },
  {
    "path": "_test/interp2.gi",
    "content": "package main\n\nimport (\n\t\"github.com/traefik/yaegi/interp\"\n)\n\nfunc main() {\n\ti := interp.New(interp.Opt{})\n\ti.Use(interp.ExportValue, interp.ExportType)\n\ti.Eval(`import \"github.com/traefik/yaegi/interp\"`)\n\ti.Eval(`i := interp.New(interp.Opt{})`)\n\ti.Eval(`i.Eval(\"println(42)\")`)\n}\n\n// Output:\n// 42\n"
  },
  {
    "path": "_test/io0.go",
    "content": "package main\n\nimport (\n\t\"crypto/rand\"\n\t\"fmt\"\n\t\"io\"\n)\n\nfunc main() {\n\tvar buf [16]byte\n\tfmt.Println(buf)\n\tio.ReadFull(rand.Reader, buf[:])\n\t//io.ReadFull(rand.Reader, buf)\n\tfmt.Println(buf)\n}\n"
  },
  {
    "path": "_test/io1.go",
    "content": "package main\n\nimport (\n\t\"encoding/base64\"\n\t\"fmt\"\n)\n\nfunc main() {\n\tvar buf [4]byte\n\ts := base64.RawStdEncoding.EncodeToString(buf[:])\n\tfmt.Println(s)\n}\n\n// Output:\n// AAAAAA\n"
  },
  {
    "path": "_test/io2.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"log\"\n\t\"strings\"\n)\n\nfunc main() {\n\tr := strings.NewReader(\"Go is a general-purpose language designed with systems programming in mind.\")\n\n\tb, err := io.ReadAll(r)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tfmt.Printf(\"%s\", b)\n}\n\n// Output:\n// Go is a general-purpose language designed with systems programming in mind.\n"
  },
  {
    "path": "_test/iota.go",
    "content": "package main\n\nimport \"fmt\"\n\nconst (\n\tFoo = iota\n\tBar\n\tBaz\n)\n\nconst (\n\tAsm = iota\n\tC\n\tJava\n\tGo\n)\n\nfunc main() {\n\tfmt.Println(Foo, Bar, Baz)\n\tfmt.Println(Asm, C, Java, Go)\n}\n\n// Output:\n// 0 1 2\n// 0 1 2 3\n"
  },
  {
    "path": "_test/iota0.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tconst (\n\t\tFoo = iota\n\t\tBar\n\t\tBaz\n\t)\n\n\tconst (\n\t\tAsm = iota\n\t\tC\n\t\tJava\n\t\tGo\n\t)\n\n\tfmt.Println(Foo, Bar, Baz)\n\tfmt.Println(Asm, C, Java, Go)\n}\n\n// Output:\n// 0 1 2\n// 0 1 2 3\n"
  },
  {
    "path": "_test/ipp_as_key.go",
    "content": "package main\n\nimport (\n\t\"guthib.com/toto\" // pkg name is actually titi\n\t\"guthib.com/tata\" // pkg name is actually tutu\n)\n\nfunc main() {\n\tprintln(\"Hello\", titi.Quux())\n\tprintln(\"Hello\", tutu.Quux())\n}\n\n// GOPATH:testdata/redeclaration-global7\n// Output:\n// Hello bar\n// Hello baz\n"
  },
  {
    "path": "_test/issue-1007.go",
    "content": "package main\n\ntype TypeA struct {\n\tB TypeB\n}\n\ntype TypeB struct {\n\tC1 *TypeC\n\tC2 *TypeC\n}\n\ntype TypeC struct {\n\tVal string\n\tD   *TypeD\n\tD2  *TypeD\n}\n\ntype TypeD struct {\n\tName string\n}\n\nfunc build() *TypeA {\n\treturn &TypeA{\n\t\tB: TypeB{\n\t\t\tC2: &TypeC{Val: \"22\"},\n\t\t},\n\t}\n}\n\nfunc Bar(s string) string {\n\ta := build()\n\treturn s + \"-\" + a.B.C2.Val\n}\n\nfunc main() {\n\tprintln(Bar(\"test\"))\n}\n\n// Output:\n// test-22\n"
  },
  {
    "path": "_test/issue-1010.go",
    "content": "package main\n\nimport (\n\t\"encoding/json\"\n\t\"fmt\"\n)\n\ntype MyJsonMarshaler struct{ n int }\n\nfunc (m MyJsonMarshaler) MarshalJSON() ([]byte, error) {\n\treturn []byte(fmt.Sprintf(`{\"num\": %d}`, m.n)), nil\n}\n\nfunc main() {\n\tch := make(chan json.Marshaler, 1)\n\tch <- MyJsonMarshaler{2}\n\tm, err := json.Marshal(<-ch)\n\tfmt.Println(string(m), err)\n}\n\n// Output:\n// {\"num\":2} <nil>\n"
  },
  {
    "path": "_test/issue-1022.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tdefer func() {\n\t\tr := recover()\n\t\tif r != nil {\n\t\t\tfmt.Println(r)\n\t\t}\n\t}()\n\n\tpanic(\"Ho Ho Ho!\")\n}\n\n// Output:\n// Ho Ho Ho!\n"
  },
  {
    "path": "_test/issue-1052.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta, b := 1, 1\n\tfor i := 0; i < 10; i++ {\n\t\tfmt.Println(a)\n\t\ta, b = b, a+b\n\t}\n}\n\n// Output:\n// 1\n// 1\n// 2\n// 3\n// 5\n// 8\n// 13\n// 21\n// 34\n// 55\n"
  },
  {
    "path": "_test/issue-1065.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype AST struct {\n\tNum      int\n\tChildren []AST\n}\n\nfunc newAST(num int, root AST, children ...AST) AST {\n\treturn AST{num, append([]AST{root}, children...)}\n}\n\nfunc main() {\n\tast := newAST(1, AST{}, AST{})\n\tfmt.Println(ast)\n}\n\n// Output:\n// {1 [{0 []} {0 []}]}\n"
  },
  {
    "path": "_test/issue-1068.go",
    "content": "package main\n\ntype I interface {\n\tHello()\n}\n\ntype T struct{}\n\nfunc (t T) Hello() { println(\"hello\") }\n\ntype I2 I\n\nfunc main() {\n\tvar i I2 = T{}\n\ti.Hello()\n}\n\n// Output:\n// hello\n"
  },
  {
    "path": "_test/issue-1088.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tfor i, ch := range \"日本語\" {\n\t\tfmt.Printf(\"%#U starts at byte position %d\\n\", ch, i)\n\t}\n}\n\n// Output:\n// U+65E5 '日' starts at byte position 0\n// U+672C '本' starts at byte position 3\n// U+8A9E '語' starts at byte position 6\n"
  },
  {
    "path": "_test/issue-1089.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\nfunc main() {\n\tfmt.Println(`\"` + time.RFC3339Nano + `\"`)\n}\n\n// Output:\n// \"2006-01-02T15:04:05.999999999Z07:00\"\n"
  },
  {
    "path": "_test/issue-1093.go",
    "content": "package main\n\nfunc b() string {\n\treturn \"b\"\n}\n\nfunc main() {\n\tvar x int\n\tx = \"a\" + b()\n}\n\n// Error:\n// 9:6: cannot use type untyped string as type int in assignment\n"
  },
  {
    "path": "_test/issue-1094.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar x interface{}\n\tx = \"a\" + fmt.Sprintf(\"b\")\n\tfmt.Printf(\"%v %T\\n\", x, x)\n}\n\n// Output:\n// ab string\n"
  },
  {
    "path": "_test/issue-1101.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n)\n\nfunc main() {\n\tmethod := \"POST\"\n\tswitch method {\n\tcase http.MethodPost:\n\t\tfmt.Println(\"It's a post!\")\n\t}\n}\n\n// Output:\n// It's a post!\n"
  },
  {
    "path": "_test/issue-1115.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\nouter:\n\tfor y := 0; y < 10; y++ {\n\t\tfor x := 0; x < 10; x++ {\n\t\t\tif x == 5 && y == 5 {\n\t\t\t\tbreak outer\n\t\t\t}\n\t\t}\n\t\tfmt.Println(y)\n\t}\n\tfmt.Println(\"Yay! I finished!\")\n}\n\n// Output:\n// 0\n// 1\n// 2\n// 3\n// 4\n// Yay! I finished!\n"
  },
  {
    "path": "_test/issue-1126.go",
    "content": "package main\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"strings\"\n)\n\nfunc main() {\n\terr := errors.New(\"hello there\")\n\n\tswitch true {\n\tcase err == nil:\n\t\tbreak\n\tcase strings.Contains(err.Error(), \"hello\"):\n\t\tfmt.Println(\"True!\")\n\tdefault:\n\t\tfmt.Println(\"False!\")\n\t}\n}\n\n// Output:\n// True!\n"
  },
  {
    "path": "_test/issue-1128.go",
    "content": "package main\n\nimport \"net\"\n\nfunc main() {\n\tc := append(net.Buffers{}, []byte{})\n\tprintln(len(c))\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/issue-1134.go",
    "content": "package main\n\ntype I interface {\n\tHello()\n}\n\ntype T struct {\n\tName  string\n\tChild []*T\n}\n\nfunc (t *T) Hello() { println(\"Hello\", t.Name) }\n\nfunc main() {\n\tvar i I = new(T)\n\ti.Hello()\n}\n\n// Output:\n// Hello\n"
  },
  {
    "path": "_test/issue-1136.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"io\"\n)\n\ntype T struct {\n\tr io.Reader\n}\n\nfunc (t *T) Read(p []byte) (n int, err error) { n, err = t.r.Read(p); return }\n\nfunc main() {\n\tx := io.LimitedReader{}\n\ty := io.Reader(&x)\n\ty = &T{y}\n\tfmt.Println(y.Read([]byte(\"\")))\n}\n\n// Output:\n// 0 EOF\n"
  },
  {
    "path": "_test/issue-1145.go",
    "content": "package main\n\nimport \"sync\"\n\ntype F func()\n\nfunc main() {\n\tvar wg sync.WaitGroup\n\tvar f F = wg.Done\n\tprintln(f != nil)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/issue-1156.go",
    "content": "package main\n\ntype myInterface interface {\n\tmyFunc() string\n}\n\ntype V struct{}\n\nfunc (v *V) myFunc() string { return \"hello\" }\n\ntype U struct {\n\tv myInterface\n}\n\nfunc (u *U) myFunc() string { return u.v.myFunc() }\n\nfunc main() {\n\tx := V{}\n\ty := myInterface(&x)\n\ty = &U{y}\n\tprintln(y.myFunc())\n}\n\n// Output:\n// hello\n"
  },
  {
    "path": "_test/issue-1163.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype WidgetEvent struct {\n\tNothing string\n}\n\ntype WidgetControl interface {\n\tHandleEvent(e *WidgetEvent)\n}\n\ntype Button struct{}\n\nfunc (b *Button) HandleEvent(e *WidgetEvent) {\n}\n\ntype WindowEvent struct {\n\tSomething int\n}\n\ntype Window struct {\n\tWidget WidgetControl\n}\n\nfunc (w *Window) HandleEvent(e *WindowEvent) {\n}\n\nfunc main() {\n\twindow := &Window{\n\t\tWidget: &Button{},\n\t}\n\twindowevent := &WindowEvent{}\n\t// The next line uses the signature from the wrong method, resulting in an error.\n\t// Renaming one of the clashing method names fixes the problem.\n\twindow.HandleEvent(windowevent)\n\tfmt.Println(\"OK!\")\n}\n\n// Output:\n// OK!\n"
  },
  {
    "path": "_test/issue-1166.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"io\"\n)\n\ntype T []byte\n\nfunc (t *T) Write(p []byte) (n int, err error) { *t = append(*t, p...); return len(p), nil }\n\nfunc foo(w io.Writer) {\n\ta := w.(*T)\n\tfmt.Fprint(a, \"test\")\n\tfmt.Printf(\"%s\\n\", *a)\n}\n\nfunc main() {\n\tx := T{}\n\tfoo(&x)\n}\n\n// Output:\n// test\n"
  },
  {
    "path": "_test/issue-1167.go",
    "content": "package main\n\nimport (\n\t\"crypto/ecdsa\"\n\t\"crypto/elliptic\"\n\t\"crypto/rand\"\n)\n\nfunc main() {\n\tkey, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tpub := key.Public().(*ecdsa.PublicKey)\n\tprintln(pub.Params().Name)\n}\n\n// Output:\n// P-256\n"
  },
  {
    "path": "_test/issue-1173.go",
    "content": "package main\n\nvar real = func() { println(\"Hello\") }\n\nfunc main() {\n\treal()\n}\n\n// Output:\n// Hello\n"
  },
  {
    "path": "_test/issue-1175.go",
    "content": "package main\n\ntype Level int8\n\nconst (\n\ta Level = -1\n\tb Level = 5\n\td       = b - a + 1\n)\n\ntype counters [d]int\n\nfunc main() {\n\tprintln(len(counters{}))\n}\n\n// Output:\n// 7\n"
  },
  {
    "path": "_test/issue-1177.go",
    "content": "package main\n\ntype counters [3][16]int\n\nfunc main() {\n\tcs := &counters{}\n\tp := &cs[0][1]\n\t*p = 2\n\tprintln(cs[0][1])\n}\n\n// Output:\n// 2\n"
  },
  {
    "path": "_test/issue-1179.go",
    "content": "package main\n\ntype I interface {\n\tF()\n}\n\ntype T struct {\n\tName string\n}\n\nfunc (t *T) F() { println(\"in F\", t.Name) }\n\nfunc NewI(s string) I { return newT(s) }\n\nfunc newT(s string) *T { return &T{s} }\n\nfunc main() {\n\ti := NewI(\"test\")\n\ti.F()\n}\n\n// Output:\n// in F test\n"
  },
  {
    "path": "_test/issue-1181.go",
    "content": "package main\n\nfunc main() {\n\ta, b := 1, 2\n\ta, b = b, -a\n\tprintln(a, b)\n}\n\n// Output:\n// 2 -1\n"
  },
  {
    "path": "_test/issue-1185.go",
    "content": "package main\n\nimport \"io\"\n\ntype B []byte\n\nfunc (b B) Write(p []byte) (n int, err error) {\n\tb = p\n\treturn len(p), nil\n}\n\nfunc main() {\n\tb := B{}\n\ta := make([]io.Writer, 0)\n\ta = append(a, b)\n\tprintln(len(a))\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/issue-1187.go",
    "content": "package main\n\nimport (\n\t\"io\"\n\t\"os\"\n)\n\ntype sink interface {\n\tio.Writer\n\tio.Closer\n}\n\nfunc newSink() sink {\n\t// return os.Stdout\t// Stdout is special in yaegi tests\n\tfile, err := os.CreateTemp(\"\", \"yaegi-test.*\")\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn file\n}\n\nfunc main() {\n\ts := newSink()\n\tn, err := s.Write([]byte(\"Hello\\n\"))\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tvar writer io.Writer = s\n\tm, err := writer.Write([]byte(\"Hello\\n\"))\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tvar closer io.Closer = s\n\terr = closer.Close()\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\terr = os.Remove(s.(*os.File).Name())\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tprintln(m, n)\n}\n\n// Output:\n// 6 6\n"
  },
  {
    "path": "_test/issue-1189.go",
    "content": "package main\n\ntype I interface {\n\tFoo() int\n}\n\ntype S1 struct {\n\ti int\n}\n\nfunc (s S1) Foo() int { return s.i }\n\ntype S2 struct{}\n\nfunc (s *S2) Foo() int { return 42 }\n\nfunc main() {\n\tIs := map[string]I{\n\t\t\"foo\": S1{21},\n\t\t\"bar\": &S2{},\n\t}\n\tn := 0\n\tfor _, s := range Is {\n\t\tn += s.Foo()\n\t}\n\tbar := \"bar\"\n\tprintln(n, Is[\"foo\"].Foo(), Is[bar].Foo())\n}\n\n// Output:\n// 63 21 42\n"
  },
  {
    "path": "_test/issue-1202.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype foobar struct {\n\tcallback func(string) func()\n}\n\nfunc cb(text string) func() {\n\treturn func() {\n\t\tfmt.Println(text)\n\t}\n}\n\nfunc main() {\n\t// These ways of invoking it all work...\n\tcb(\"Hi from inline callback!\")()\n\n\tasVarTest1 := cb(\"Hi from asVarTest1 callback!\")\n\tasVarTest1()\n\n\tasVarTest2 := cb\n\tasVarTest2(\"Hi from asVarTest2 callback!\")()\n\n\t// But inside a struct panics in yaegi...\n\tasStructField := &foobar{callback: cb}\n\tasStructField.callback(\"Hi from struct field callback!\")() // <--- panics here\n}\n\n// Output:\n// Hi from inline callback!\n// Hi from asVarTest1 callback!\n// Hi from asVarTest2 callback!\n// Hi from struct field callback!\n"
  },
  {
    "path": "_test/issue-1205.go",
    "content": "package main\n\ntype Option interface {\n\tapply()\n}\n\nfunc f(opts ...Option) {\n\tfor _, opt := range opts {\n\t\topt.apply()\n\t}\n}\n\ntype T struct{}\n\nfunc (t *T) apply() { println(\"in apply\") }\n\nfunc main() {\n\topt := []Option{&T{}}\n\tf(opt[0]) // works\n\tf(opt...) // fails\n}\n\n// Output:\n// in apply\n// in apply\n"
  },
  {
    "path": "_test/issue-1208.go",
    "content": "package main\n\ntype Enabler interface {\n\tEnabled() bool\n}\n\ntype Logger struct {\n\tcore Enabler\n}\n\nfunc (log *Logger) GetCore() Enabler { return log.core }\n\ntype T struct{}\n\nfunc (t *T) Enabled() bool { return true }\n\nfunc main() {\n\tbase := &Logger{&T{}}\n\tprintln(base.GetCore().Enabled())\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/issue-1260.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n)\n\ntype WriteSyncer interface {\n\tio.Writer\n\tSync() error\n}\n\ntype Sink interface {\n\tWriteSyncer\n\tio.Closer\n}\n\nfunc newFileSink(path string) (Sink, error) {\n\treturn os.OpenFile(path, os.O_WRONLY|os.O_APPEND|os.O_CREATE, 0666)\n}\n\ntype Sink1 struct{ name string }\n\nfunc (s Sink1) Write(b []byte) (int, error) { println(\"in Write\"); return 0, nil }\nfunc (s Sink1) Sync() error                 { println(\"in Sync\"); return nil }\nfunc (s Sink1) Close() error                { println(\"in Close\", s.name); return nil }\nfunc newS1(name string) Sink                { return Sink1{name} }\nfunc newS1p(name string) Sink               { return &Sink1{name} }\n\ntype Sink2 struct{ name string }\n\nfunc (s *Sink2) Write(b []byte) (int, error) { println(\"in Write\"); return 0, nil }\nfunc (s *Sink2) Sync() error                 { println(\"in Sync\"); return nil }\nfunc (s *Sink2) Close() error                { println(\"in Close\", s.name); return nil }\nfunc newS2(name string) Sink                 { return Sink1{name} }\n\nfunc main() {\n\ttmpfile, err := os.CreateTemp(\"\", \"xxx\")\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tdefer os.Remove(tmpfile.Name())\n\tclosers := []io.Closer{}\n\tsink, err := newFileSink(tmpfile.Name())\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tclosers = append(closers, sink)\n\n\ts1p := newS1p(\"ptr\")\n\ts1 := newS1(\"struct\")\n\ts2 := newS2(\"ptr2\")\n\tclosers = append(closers, s1p, s1, s2)\n\tfor _, closer := range closers {\n\t\tfmt.Println(closer.Close())\n\t}\n}\n\n// Output:\n// <nil>\n// in Close ptr\n// <nil>\n// in Close struct\n// <nil>\n// in Close ptr2\n// <nil>\n"
  },
  {
    "path": "_test/issue-1276.go",
    "content": "package main\n\nimport (\n\t\"flag\"\n)\n\ntype customFlag struct{}\n\nfunc (cf customFlag) String() string {\n\treturn \"custom flag\"\n}\n\nfunc (cf customFlag) Set(string) error {\n\treturn nil\n}\n\nfunc main() {\n\tflag.Var(customFlag{}, \"cf\", \"custom flag\")\n\tflag.Parse()\n\tprintln(\"Hello, playground\")\n}\n\n// Output:\n// Hello, playground\n"
  },
  {
    "path": "_test/issue-1280.go",
    "content": "package main\n\nimport (\n\t\"io\"\n\t\"log\"\n\t\"os\"\n)\n\ntype DBReader interface {\n\tio.ReadCloser\n\tio.ReaderAt\n}\n\ntype DB struct {\n\tf DBReader\n}\n\nfunc main() {\n\tf, err := os.Open(os.DevNull)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\td := &DB{f}\n\tdata := make([]byte, 1)\n\t_, _ = d.f.ReadAt(data, 0)\n\tprintln(\"bye\")\n}\n\n// Output:\n// bye\n"
  },
  {
    "path": "_test/issue-1285.go",
    "content": "package main\n\ntype (\n\tT1 struct{ Path [12]int8 }\n\tT2 struct{ Path *[12]int8 }\n)\n\nvar (\n\tt11 = &T1{}\n\tt21 = &T2{}\n)\n\nfunc main() {\n\tb := [12]byte{}\n\tt12 := &T1{}\n\tt22 := &T2{}\n\tb11 := (*[len(t11.Path)]byte)(&b)\n\tb12 := (*[len(t12.Path)]byte)(&b)\n\tb21 := (*[len(t21.Path)]byte)(&b)\n\tb22 := (*[len(t22.Path)]byte)(&b)\n\tprintln(len(b11), len(b12), len(b21), len(b22))\n}\n\n// Output:\n// 12 12 12 12\n"
  },
  {
    "path": "_test/issue-1288.go",
    "content": "package main\n\nfunc main() {\n\tprintln(\"Hi\")\n\tgoto done\ndone:\n}\n\n// Output:\n// Hi\n"
  },
  {
    "path": "_test/issue-1300.go",
    "content": "package main\n\nconst buflen = 512\n\ntype T struct {\n\tbuf []byte\n}\n\nfunc f(t *T) { *t = T{buf: make([]byte, 0, buflen)} }\n\nfunc main() {\n\ts := T{}\n\tprintln(cap(s.buf))\n\tf(&s)\n\tprintln(cap(s.buf))\n}\n\n// Output:\n// 0\n// 512\n"
  },
  {
    "path": "_test/issue-1304.go",
    "content": "package main\n\ntype Node struct {\n\tName  string\n\tAlias *Node\n\tChild []*Node\n}\n\nfunc main() {\n\tn := &Node{Name: \"parent\"}\n\tn.Child = append(n.Child, &Node{Name: \"child\"})\n\tprintln(n.Name, n.Child[0].Name)\n}\n\n// Output:\n// parent child\n"
  },
  {
    "path": "_test/issue-1306.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc check() (result bool, err error) {\n\treturn true, nil\n}\n\nfunc main() {\n\tresult, error := check()\n\tfmt.Println(result, error)\n}\n\n// Output:\n// true <nil>\n"
  },
  {
    "path": "_test/issue-1308.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype test struct {\n\tv interface{}\n\ts string\n}\n\ntype T struct {\n\tname string\n}\n\nfunc main() {\n\tt := []test{\n\t\t{\n\t\t\tv: []interface{}{\n\t\t\t\tT{\"hello\"},\n\t\t\t},\n\t\t\ts: \"world\",\n\t\t},\n\t}\n\tfmt.Println(t)\n}\n\n// Output:\n// [{[{hello}] world}]\n"
  },
  {
    "path": "_test/issue-1311.go",
    "content": "package main\n\ntype T struct {\n\tv interface{}\n}\n\nfunc f() (ret int64, err error) {\n\tret += 2\n\treturn\n}\n\nfunc main() {\n\tt := &T{}\n\tt.v, _ = f()\n\tprintln(t.v.(int64))\n}\n\n// Output:\n// 2\n"
  },
  {
    "path": "_test/issue-1315.go",
    "content": "package main\n\ntype Intf interface {\n\tM()\n}\n\ntype T struct {\n\ts string\n}\n\nfunc (t *T) M() { println(\"in M\") }\n\nfunc f(i interface{}) {\n\tswitch j := i.(type) {\n\tcase Intf:\n\t\tj.M()\n\tdefault:\n\t\tprintln(\"default\")\n\t}\n}\n\nfunc main() {\n\tvar i Intf\n\tvar k interface{} = 1\n\ti = &T{\"hello\"}\n\tf(i)\n\tf(k)\n}\n\n// Output:\n// in M\n// default\n"
  },
  {
    "path": "_test/issue-1320.go",
    "content": "package main\n\ntype Pooler interface {\n\tGet() string\n}\n\ntype baseClient struct {\n\tconnPool Pooler\n}\n\ntype connPool struct {\n\tname string\n}\n\nfunc (c *connPool) Get() string { return c.name }\n\nfunc newBaseClient(i int, p Pooler) *baseClient {\n\treturn &baseClient{connPool: p}\n}\n\nfunc newConnPool() *connPool { return &connPool{name: \"connPool\"} }\n\nfunc main() {\n\tb := newBaseClient(0, newConnPool())\n\tprintln(b.connPool.(*connPool).name)\n}\n\n// Output:\n// connPool\n"
  },
  {
    "path": "_test/issue-1326.go",
    "content": "package main\n\ntype Option interface {\n\tapply(*T)\n}\n\ntype T struct {\n\ts string\n}\n\ntype opt struct {\n\tname string\n}\n\nfunc (o *opt) apply(t *T) {\n\tprintln(o.name)\n}\n\nfunc BuildOptions() []Option {\n\treturn []Option{\n\t\t&opt{\"opt1\"},\n\t\t&opt{\"opt2\"},\n\t}\n}\n\nfunc NewT(name string, options ...Option) *T {\n\tt := &T{name}\n\tfor _, opt := range options {\n\t\topt.apply(t)\n\t}\n\treturn t\n}\n\nfunc main() {\n\tt := NewT(\"hello\", BuildOptions()...)\n\tprintln(t.s)\n}\n\n// Output:\n// opt1\n// opt2\n// hello\n"
  },
  {
    "path": "_test/issue-1328.go",
    "content": "package main\n\nimport (\n\t\"crypto/sha1\"\n\t\"encoding/hex\"\n)\n\nfunc main() {\n\tscript := \"hello\"\n\tsumRaw := sha1.Sum([]byte(script))\n\tsum := hex.EncodeToString(sumRaw[:])\n\tprintln(sum)\n}\n\n// Output:\n// aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d\n"
  },
  {
    "path": "_test/issue-1330.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"net\"\n)\n\ntype wrappedConn struct {\n\tnet.Conn\n}\n\nfunc main() {\n\t_, err := net.Listen(\"tcp\", \"127.0.0.1:49153\")\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\tdialer := &net.Dialer{\n\t\tLocalAddr: &net.TCPAddr{\n\t\t\tIP:   net.ParseIP(\"127.0.0.1\"),\n\t\t\tPort: 0,\n\t\t},\n\t}\n\n\tconn, err := dialer.Dial(\"tcp\", \"127.0.0.1:49153\")\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tdefer conn.Close()\n\n\tt := &wrappedConn{conn}\n\tvar w io.Writer = t\n\tif n, err := w.Write([]byte(\"hello\")); err != nil {\n\t\tfmt.Println(err)\n\t} else {\n\t\tfmt.Println(n)\n\t}\n}\n\n// Output:\n// 5\n"
  },
  {
    "path": "_test/issue-1332.go",
    "content": "package main\n\nfunc run(fn func(name string)) { fn(\"test\") }\n\ntype T2 struct {\n\tname string\n}\n\nfunc (t *T2) f(s string) { println(s, t.name) }\n\nfunc main() {\n\tt2 := &T2{\"foo\"}\n\trun(t2.f)\n}\n\n// Output:\n// test foo\n"
  },
  {
    "path": "_test/issue-1333.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"net/http\"\n\t\"net/http/httptest\"\n)\n\nfunc mock(name string) http.HandlerFunc {\n\treturn func(rw http.ResponseWriter, req *http.Request) {\n\t\tfmt.Fprint(rw, \"Hello \", name)\n\t}\n}\n\nfunc client(uri string) {\n\tresp, err := http.Get(uri)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tbody, err := io.ReadAll(resp.Body)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tfmt.Println(string(body))\n}\n\nfunc main() {\n\tmux := http.NewServeMux()\n\tserver := httptest.NewServer(mux)\n\tdefer server.Close()\n\tmux.Handle(\"/\", mock(\"foo\"))\n\tclient(server.URL)\n}\n\n// Output:\n// Hello foo\n"
  },
  {
    "path": "_test/issue-1337.go",
    "content": "package main\n\nimport (\n\t\"io\"\n\t\"os\"\n)\n\nfunc f(i interface{}) {\n\tswitch at := i.(type) {\n\tcase int, int8:\n\t\tprintln(\"integer\", at)\n\tcase io.Reader:\n\t\tprintln(\"reader\")\n\t}\n\tprintln(\"bye\")\n}\n\nfunc main() {\n\tvar fd *os.File\n\tvar r io.Reader = fd\n\tf(r)\n}\n\n// Output:\n// reader\n// bye\n"
  },
  {
    "path": "_test/issue-1342.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar a interface{}\n\ta = \"a\"\n\tfmt.Println(a, a == \"a\")\n}\n\n// Output:\n// a true\n"
  },
  {
    "path": "_test/issue-1344.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar m = map[string]interface{}{\"a\": \"a\"}\n\ta, _ := m[\"a\"]\n\tb, ok := a.(string)\n\tfmt.Println(\"a:\", a, \", b:\", b, \", ok:\", ok)\n}\n\n// Output:\n// a: a , b: a , ok: true\n"
  },
  {
    "path": "_test/issue-1354.go",
    "content": "package main\n\nfunc main() {\n\tprintln(test()) // Go prints true, Yaegi false\n}\n\nfunc test() bool {\n\tif true {\n\t\tgoto label\n\t}\n\tgoto label\nlabel:\n\tprintln(\"Go continues here\")\n\treturn true\n\tprintln(\"Yaegi goes straight to this return (this line is never printed)\")\n\treturn false\n}\n\n// Output:\n// Go continues here\n// true\n"
  },
  {
    "path": "_test/issue-1355.go",
    "content": "package main\n\nimport \"github.com/traefik/yaegi/_test/p2\"\n\nfunc f(i interface{}) {\n\t_, ok := i.(p2.I)\n\tprintln(\"ok:\", ok)\n}\n\nfunc main() {\n\tvar v *p2.T\n\tvar i interface{}\n\n\ti = v\n\t_, ok := i.(p2.I)\n\tprintln(\"ok:\", ok)\n\tf(v)\n}\n\n// Output:\n// ok: true\n// ok: true\n"
  },
  {
    "path": "_test/issue-1360.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t. \"net\"\n)\n\nfunc main() {\n\tv := IP{}\n\tfmt.Println(v)\n}\n\n// Output:\n// <nil>\n"
  },
  {
    "path": "_test/issue-1361.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"math\"\n)\n\ntype obj struct {\n\tnum float64\n}\n\ntype Fun func(o *obj) (r *obj, err error)\n\nfunc numFun(fn func(f float64) float64) Fun {\n\treturn func(o *obj) (*obj, error) {\n\t\treturn &obj{fn(o.num)}, nil\n\t}\n}\n\nfunc main() {\n\tf := numFun(math.Cos)\n\tr, err := f(&obj{})\n\tfmt.Println(r, err)\n}\n\n// Output:\n// &{1} <nil>\n"
  },
  {
    "path": "_test/issue-1364.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"strconv\"\n)\n\nfunc main() {\n\tvar value interface{}\n\tvar err error\n\tvalue, err = strconv.ParseFloat(\"123\", 64)\n\tfmt.Println(value, err)\n}\n\n// Output:\n// 123 <nil>\n"
  },
  {
    "path": "_test/issue-1365.go",
    "content": "package main\n\nfunc genInt() (int, error) { return 3, nil }\n\nfunc getInt() (value int) {\n\tvalue, err := genInt()\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn\n}\n\nfunc main() {\n\tprintln(getInt())\n}\n\n// Output:\n// 3\n"
  },
  {
    "path": "_test/issue-1368.go",
    "content": "package main\n\nconst dollar byte = 36\n\nfunc main() {\n\tvar c byte = 36\n\tswitch true {\n\tcase c == dollar:\n\t\tprintln(\"ok\")\n\tdefault:\n\t\tprintln(\"not ok\")\n\t}\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/issue-1371.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype node struct {\n\tparent *node\n\tchild  []*node\n\tkey    string\n}\n\nfunc main() {\n\troot := &node{key: \"root\"}\n\troot.child = nil\n\tfmt.Println(\"root:\", root)\n}\n\n// Output:\n// root: &{<nil> [] root}\n"
  },
  {
    "path": "_test/issue-1373.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"go/ast\"\n)\n\nfunc NewBadExpr() ast.Expr {\n\treturn &ast.BadExpr{}\n}\n\nfunc main() {\n\tfmt.Printf(\"%T\\n\", NewBadExpr().(*ast.BadExpr))\n}\n\n// Output:\n// *ast.BadExpr\n"
  },
  {
    "path": "_test/issue-1375.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype Option func(*Struct)\n\nfunc WithOption(opt string) Option {\n\treturn func(s *Struct) {\n\t\ts.opt = opt\n\t}\n}\n\ntype Struct struct {\n\topt string\n}\n\nfunc New(opts ...Option) *Struct {\n\ts := new(Struct)\n\tfor _, opt := range opts {\n\t\topt(s)\n\t}\n\treturn s\n}\n\nfunc (s *Struct) ShowOption() {\n\tfmt.Println(s.opt)\n}\n\nfunc main() {\n\topts := []Option{\n\t\tWithOption(\"test\"),\n\t}\n\ts := New(opts...)\n\ts.ShowOption()\n}\n\n// Output:\n// test\n"
  },
  {
    "path": "_test/issue-1378.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\nfunc main() {\n\tt, err := time.Parse(time.RFC3339, \"2006-01-02T15:04:05Z\")\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tfn := func() error {\n\t\t_, err := t.GobEncode()\n\t\treturn err\n\t}\n\tfmt.Println(fn())\n}\n\n// Output:\n// <nil>\n"
  },
  {
    "path": "_test/issue-1381.go",
    "content": "package main\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n)\n\nfunc main() {\n\tvar bufPtrOne *bytes.Buffer\n\tvar bufPtrTwo *bytes.Buffer\n\tvar bufPtrThree *bytes.Buffer\n\tvar bufPtrFour *bytes.Buffer\n\n\tfor i := 0; i < 2; i++ {\n\t\tbufOne := bytes.Buffer{}\n\t\tbufTwo := &bytes.Buffer{}\n\t\tvar bufThree bytes.Buffer\n\t\tbufFour := new(bytes.Buffer)\n\n\t\tif bufPtrOne == nil {\n\t\t\tbufPtrOne = &bufOne\n\t\t} else if bufPtrOne == &bufOne {\n\t\t\tfmt.Println(\"bufOne was not properly redeclared\")\n\t\t} else {\n\t\t\tfmt.Println(\"bufOne is properly redeclared\")\n\t\t}\n\n\t\tif bufPtrTwo == nil {\n\t\t\tbufPtrTwo = bufTwo\n\t\t} else if bufPtrTwo == bufTwo {\n\t\t\tfmt.Println(\"bufTwo was not properly redeclared\")\n\t\t} else {\n\t\t\tfmt.Println(\"bufTwo is properly redeclared\")\n\t\t}\n\n\t\tif bufPtrThree == nil {\n\t\t\tbufPtrThree = &bufThree\n\t\t} else if bufPtrThree == &bufThree {\n\t\t\tfmt.Println(\"bufThree was not properly redeclared\")\n\t\t} else {\n\t\t\tfmt.Println(\"bufThree is properly redeclared\")\n\t\t}\n\n\t\tif bufPtrFour == nil {\n\t\t\tbufPtrFour = bufFour\n\t\t} else if bufPtrFour == bufFour {\n\t\t\tfmt.Println(\"bufFour was not properly redeclared\")\n\t\t} else {\n\t\t\tfmt.Println(\"bufFour is properly redeclared\")\n\t\t}\n\t}\n}\n\n// Output:\n// bufOne is properly redeclared\n// bufTwo is properly redeclared\n// bufThree is properly redeclared\n// bufFour is properly redeclared\n"
  },
  {
    "path": "_test/issue-1404.go",
    "content": "package main\n\ntype I interface {\n\tinI()\n}\n\ntype T struct {\n\tname string\n}\n\nfunc (t *T) inI() {}\n\nfunc main() {\n\tvar i I = &T{name: \"foo\"}\n\n\tif i, ok := i.(*T); ok {\n\t\tprintln(i.name)\n\t}\n}\n\n// Output:\n// foo\n"
  },
  {
    "path": "_test/issue-1408.go",
    "content": "package main\n\ntype (\n\tNumber  = int32\n\tNumber2 = Number\n)\n\nfunc f(n Number2) { println(n) }\n\nfunc main() {\n\tvar n Number = 5\n\tf(n)\n}\n\n// Output:\n// 5\n"
  },
  {
    "path": "_test/issue-1411.go",
    "content": "package main\n\ntype Number int32\n\nfunc (n Number) IsValid() bool { return true }\n\ntype Number1 = Number\n\ntype Number2 = Number1\n\nfunc main() {\n\ta := Number2(5)\n\tprintln(a.IsValid())\n}\n\n// Output: true\n"
  },
  {
    "path": "_test/issue-1416.go",
    "content": "package main\n\ntype Number int32\n\ntype Number1 = Number\n\ntype Number2 = Number1\n\nfunc (n Number2) IsValid() bool { return true }\n\nfunc main() {\n\ta := Number(5)\n\tprintln(a.IsValid())\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/issue-1421.go",
    "content": "package main\n\ntype Number = int\n\nfunc main() {\n\tprintln(Number(1) < int(2))\n}\n\n// Output: true\n"
  },
  {
    "path": "_test/issue-1425.go",
    "content": "package main\n\nimport (\n\t\"io\"\n\t\"log\"\n\t\"os\"\n\t\"strings\"\n)\n\ntype WrappedReader struct {\n\treader io.Reader\n}\n\nfunc (wr WrappedReader) Read(p []byte) (n int, err error) {\n\treturn wr.reader.Read(p)\n}\n\n// Of course, this implementation is completely stupid because it does not write\n// to the intended writer, as any honest WriteTo implementation should. its\n// implemtion is just to make obvious the divergence of behaviour with yaegi.\nfunc (wr WrappedReader) WriteTo(w io.Writer) (n int64, err error) {\n\t// Ignore w, send to Stdout to prove whether this WriteTo is used.\n\tdata, err := io.ReadAll(wr)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\tnn, err := os.Stdout.Write(data)\n\treturn int64(nn), err\n}\n\nfunc main() {\n\tf := strings.NewReader(\"hello world\")\n\twr := WrappedReader{reader: f}\n\n\t// behind the scenes, io.Copy is supposed to use wr.WriteTo if the implementation exists.\n\t// With Go, it works as expected, i.e. the output is sent to os.Stdout.\n\t// With Yaegi, it doesn't, i.e. the output is sent to io.Discard.\n\tif _, err := io.Copy(io.Discard, wr); err != nil {\n\t\tlog.Fatal(err)\n\t}\n}\n\n// Output:\n// hello world\n"
  },
  {
    "path": "_test/issue-1439.go",
    "content": "package main\n\ntype Transformer interface {\n\tReset()\n}\n\ntype Encoder struct {\n\tTransformer\n}\n\ntype nop struct{}\n\nfunc (nop) Reset() { println(\"Reset\") }\n\nfunc f(e Transformer) {\n\te.Reset()\n}\n\nfunc main() {\n\te := Encoder{Transformer: nop{}}\n\tf(e)\n}\n\n// Output:\n// Reset\n"
  },
  {
    "path": "_test/issue-1442.go",
    "content": "package main\n\nimport (\n\t\"context\"\n)\n\nfunc main() {\n\tctx, _ := context.WithCancel(context.Background())\n\tch := make(chan string, 20)\n\tdefer close(ch)\n\n\tgo func(ctx context.Context, ch <-chan string) {\n\t\tfor {\n\t\t\tselect {\n\t\t\tcase <-ctx.Done():\n\t\t\t\treturn\n\t\t\tcase tmp := <-ch:\n\t\t\t\t_ = tmp\n\t\t\t}\n\t\t}\n\t}(ctx, ch)\n\n\tfor _, i := range \"abcdef\" {\n\t\tfor _, j := range \"0123456789\" {\n\t\t\t// i, j := \"a\", \"0\"\n\t\t\tfor _, k := range \"ABCDEF\" {\n\t\t\t\tselect {\n\t\t\t\tcase <-ctx.Done():\n\t\t\t\t\treturn\n\t\t\t\tdefault:\n\t\t\t\t\ttmp := string(i) + string(j) + string(k)\n\t\t\t\t\tch <- tmp\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\treturn\n}\n\n// Output:\n//\n"
  },
  {
    "path": "_test/issue-1447.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype I interface {\n\tName() string\n}\n\ntype S struct {\n\tiMap map[string]I\n}\n\nfunc main() {\n\ts := S{}\n\ts.iMap = map[string]I{}\n\tfmt.Println(s)\n}\n\n// Output:\n// {map[]}\n"
  },
  {
    "path": "_test/issue-1451.go",
    "content": "package main\n\ntype t1 uint8\n\nconst (\n\tn1 t1 = iota\n\tn2\n)\n\ntype T struct {\n\telem [n2 + 1]int\n}\n\nfunc main() {\n\tprintln(len(T{}.elem))\n}\n\n// Output:\n// 2\n"
  },
  {
    "path": "_test/issue-1454.go",
    "content": "package main\n\ntype I2 interface {\n\tI2() string\n}\n\ntype I interface {\n\tI2\n}\n\ntype S struct{}\n\nfunc (*S) I2() string { return \"foo\" }\n\nfunc main() {\n\tvar i I\n\t_, ok := i.(*S)\n\tprintln(ok)\n}\n\n// Output:\n// false\n"
  },
  {
    "path": "_test/issue-1459.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype funclistItem func()\n\ntype funclist struct {\n\tlist []funclistItem\n}\n\nfunc main() {\n\tfuncs := funclist{}\n\n\tfuncs.list = append(funcs.list, func() { fmt.Println(\"first\") })\n\n\tfor _, f := range funcs.list {\n\t\tf()\n\t}\n}\n\n// Output:\n// first\n"
  },
  {
    "path": "_test/issue-1460.go",
    "content": "package main\n\nimport (\n\t\"bytes\"\n\t\"encoding/json\"\n\t\"errors\"\n\t\"net/netip\"\n\t\"reflect\"\n)\n\nfunc unmarshalJSON[T any](b []byte, x *[]T) error {\n\tif *x != nil {\n\t\treturn errors.New(\"already initialized\")\n\t}\n\tif len(b) == 0 {\n\t\treturn nil\n\t}\n\treturn json.Unmarshal(b, x)\n}\n\nfunc SliceOfViews[T ViewCloner[T, V], V StructView[T]](x []T) SliceView[T, V] {\n\treturn SliceView[T, V]{x}\n}\n\ntype StructView[T any] interface {\n\tValid() bool\n\tAsStruct() T\n}\n\ntype SliceView[T ViewCloner[T, V], V StructView[T]] struct {\n\tж []T\n}\n\ntype ViewCloner[T any, V StructView[T]] interface {\n\tView() V\n\tClone() T\n}\n\nfunc (v SliceView[T, V]) MarshalJSON() ([]byte, error) { return json.Marshal(v.ж) }\n\nfunc (v *SliceView[T, V]) UnmarshalJSON(b []byte) error { return unmarshalJSON(b, &v.ж) }\n\ntype Slice[T any] struct {\n\tж []T\n}\n\nfunc (v Slice[T]) MarshalJSON() ([]byte, error) { return json.Marshal(v.ж) }\n\nfunc (v *Slice[T]) UnmarshalJSON(b []byte) error { return unmarshalJSON(b, &v.ж) }\n\nfunc SliceOf[T any](x []T) Slice[T] {\n\treturn Slice[T]{x}\n}\n\ntype IPPrefixSlice struct {\n\tж Slice[netip.Prefix]\n}\n\ntype viewStruct struct {\n\tInt        int\n\tStrings    Slice[string]\n\tStringsPtr *Slice[string] `json:\",omitempty\"`\n}\n\nfunc main() {\n\tss := SliceOf([]string{\"bar\"})\n\tin := viewStruct{\n\t\tInt:        1234,\n\t\tStrings:    ss,\n\t\tStringsPtr: &ss,\n\t}\n\n\tvar buf bytes.Buffer\n\tencoder := json.NewEncoder(&buf)\n\tencoder.SetIndent(\"\", \"\")\n\terr1 := encoder.Encode(&in)\n\tb := buf.Bytes()\n\tvar got viewStruct\n\terr2 := json.Unmarshal(b, &got)\n\tprintln(err1 == nil, err2 == nil, reflect.DeepEqual(got, in))\n}\n\n// Output:\n// true true true\n"
  },
  {
    "path": "_test/issue-1465.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\nfunc SomeFunc[T int | string](defaultValue T) T {\n\tswitch v := any(&defaultValue).(type) {\n\tcase *string:\n\t\t*v = *v + \" abc\"\n\tcase *int:\n\t\t*v -= 234\n\t}\n\treturn defaultValue\n}\n\nfunc main() {\n\tfmt.Println(SomeFunc(\"test\"))\n\tfmt.Println(SomeFunc(1234))\n}\n\n// Output:\n// test abc\n// 1000\n"
  },
  {
    "path": "_test/issue-1466.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\nfunc SomeFunc(defaultValue interface{}) interface{} {\n\tswitch v := defaultValue.(type) {\n\tcase string:\n\t\treturn v + \" abc\"\n\tcase int:\n\t\treturn v - 234\n\t}\n\tpanic(\"whoops\")\n}\n\nfunc main() {\n\tfmt.Println(SomeFunc(1234))\n\tfmt.Println(SomeFunc(\"test\"))\n}\n\n// Output:\n// 1000\n// test abc\n"
  },
  {
    "path": "_test/issue-1470.go",
    "content": "package main\n\ntype T struct {\n\tnum [tnum + 2]int\n}\n\nconst tnum = 23\n\nfunc main() {\n\tt := T{}\n\tprintln(len(t.num))\n}\n\n// Output:\n// 25\n"
  },
  {
    "path": "_test/issue-1475.go",
    "content": "package main\n\ntype T uint16\n\nfunc f() T { return 0 }\n\nfunc main() {\n\tprintln(f())\n}\n\n// Output:\n// 0\n"
  },
  {
    "path": "_test/issue-1488.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype vector interface {\n\t[]int | [3]int\n}\n\nfunc sum[V vector](v V) (out int) {\n\tfor i := 0; i < len(v); i++ {\n\t\tout += v[i]\n\t}\n\treturn\n}\n\nfunc main() {\n\tva := [3]int{1, 2, 3}\n\tvs := []int{1, 2, 3}\n\tfmt.Println(sum[[3]int](va), sum[[]int](vs))\n}\n\n// Output:\n// 6 6\n"
  },
  {
    "path": "_test/issue-1496.go",
    "content": "package main\n\nfunc main() {\n\ta := []byte{} == nil\n\tb := nil == []byte{}\n\tc := nil == &struct{}{}\n\ti := 100\n\td := nil == &i\n\tvar v interface{}\n\tf := nil == v\n\tg := v == nil\n\tprintln(a, b, c, d, f, g)\n}\n\n// Output:\n// false false false false true true\n"
  },
  {
    "path": "_test/issue-1515.go",
    "content": "package main\n\ntype I1 interface {\n\tI2\n\tWrap() *S3\n}\n\ntype I2 interface {\n\tF()\n}\n\ntype S2 struct {\n\tI2\n}\n\nfunc newS2(i2 I2) I1 {\n\treturn &S2{i2}\n}\n\ntype S3 struct {\n\tbase *S2\n}\n\nfunc (s *S2) Wrap() *S3 {\n\ti2 := s\n\treturn &S3{i2}\n}\n\ntype T struct {\n\tname string\n}\n\nfunc (t *T) F() { println(\"in F\", t.name) }\n\nfunc main() {\n\tt := &T{\"test\"}\n\ts2 := newS2(t)\n\ts3 := s2.Wrap()\n\ts3.base.F()\n}\n\n// Output:\n// in F test\n"
  },
  {
    "path": "_test/issue-1536.go",
    "content": "package main\n\nvar a [len(prefix+path) + 2]int\n\nconst (\n\tprefix = \"/usr/\"\n\tpath   = prefix + \"local/bin\"\n)\n\nfunc main() {\n\tprintln(len(a))\n}\n\n// Output:\n// 21\n"
  },
  {
    "path": "_test/issue-1571.go",
    "content": "package main\n\ntype A struct {\n\t*B[string]\n}\n\ntype B[T any] struct {\n\tdata T\n}\n\nfunc main() {\n\t_ = &A{\n\t\tB: &B[string]{},\n\t}\n\n\tprintln(\"PASS\")\n}\n\n// Output:\n// PASS\n"
  },
  {
    "path": "_test/issue-1594.go",
    "content": "package main\n\nfunc main() {\n\tvar fns []func()\n\tfor _, v := range []int{1, 2, 3} {\n\t\tx := v*100 + v\n\t\tfns = append(fns, func() { println(x) })\n\t}\n\tfor _, fn := range fns {\n\t\tfn()\n\t}\n}\n\n// Output:\n// 101\n// 202\n// 303\n"
  },
  {
    "path": "_test/issue-1618.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"runtime\"\n\t\"sync\"\n)\n\nfunc humanizeBytes(bytes uint64) string {\n\tconst (\n\t\t_         = iota\n\t\tkB uint64 = 1 << (10 * iota)\n\t\tmB\n\t\tgB\n\t\ttB\n\t\tpB\n\t)\n\n\tswitch {\n\tcase bytes < kB:\n\t\treturn fmt.Sprintf(\"%dB\", bytes)\n\tcase bytes < mB:\n\t\treturn fmt.Sprintf(\"%.2fKB\", float64(bytes)/float64(kB))\n\tcase bytes < gB:\n\t\treturn fmt.Sprintf(\"%.2fMB\", float64(bytes)/float64(mB))\n\tcase bytes < tB:\n\t\treturn fmt.Sprintf(\"%.2fGB\", float64(bytes)/float64(gB))\n\tcase bytes < pB:\n\t\treturn fmt.Sprintf(\"%.2fTB\", float64(bytes)/float64(tB))\n\tdefault:\n\t\treturn fmt.Sprintf(\"%dB\", bytes)\n\t}\n}\n\nfunc main() {\n\ti := 0\n\twg := sync.WaitGroup{}\n\n\tfor {\n\t\tvar m runtime.MemStats\n\t\truntime.ReadMemStats(&m)\n\t\tfmt.Printf(\"#%d: alloc = %s, routines = %d, gc = %d\\n\", i, humanizeBytes(m.Alloc), runtime.NumGoroutine(), m.NumGC)\n\n\t\twg.Add(1)\n\t\tgo func() {\n\t\t\twg.Done()\n\t\t}()\n\t\twg.Wait()\n\t\ti = i + 1\n\t}\n}\n"
  },
  {
    "path": "_test/issue-1640.go",
    "content": "package main\n\nimport (\n\t\"errors\"\n)\n\nfunc ShortVariableDeclarations() (i int, err error) {\n\tr, err := 1, errors.New(\"test\")\n\ti = r\n\treturn\n}\n\nfunc main() {\n\t_, er := ShortVariableDeclarations()\n\tif er != nil {\n\t\tprintln(\"ShortVariableDeclarations ok\")\n\t} else {\n\t\tprintln(\"ShortVariableDeclarations not ok\")\n\t}\n}\n\n// Output:\n// ShortVariableDeclarations ok\n"
  },
  {
    "path": "_test/issue-1653.go",
    "content": "package main\n\nfunc f(b uint) uint {\n\treturn uint(1) + (0x1 >> b)\n}\n\nfunc main() {\n\tprintln(f(1))\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/issue-435.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"strconv\"\n)\n\ntype Foo int\n\nfunc (f Foo) String() string {\n\treturn \"foo-\" + strconv.Itoa(int(f))\n}\n\nfunc print1(arg interface{}) {\n\tfmt.Println(arg)\n}\n\nfunc main() {\n\tvar arg Foo = 3\n\tvar f = print1\n\tf(arg)\n}\n\n// Output:\n// foo-3\n"
  },
  {
    "path": "_test/issue-558.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"log\"\n\t\"strings\"\n)\n\ntype readAutoCloser struct {\n\tr io.ReadCloser\n}\n\nfunc (a readAutoCloser) Read(b []byte) (n int, err error) {\n\tif a.r == nil {\n\t\treturn 0, io.EOF\n\t}\n\tn, err = a.r.Read(b)\n\tif err == io.EOF {\n\t\ta.Close()\n\t}\n\treturn n, err\n}\n\nfunc (a readAutoCloser) Close() error {\n\tif a.r == nil {\n\t\treturn nil\n\t}\n\treturn a.r.(io.Closer).Close()\n}\n\ntype pipe struct {\n\tReader readAutoCloser\n}\n\nfunc newReadAutoCloser(r io.Reader) readAutoCloser {\n\tif _, ok := r.(io.Closer); !ok {\n\t\treturn readAutoCloser{io.NopCloser(r)}\n\t}\n\treturn readAutoCloser{r.(io.ReadCloser)}\n}\n\nfunc main() {\n\tp := &pipe{}\n\tp.Reader = newReadAutoCloser(strings.NewReader(\"test\"))\n\tb, err := io.ReadAll(p.Reader)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tfmt.Println(string(b))\n}\n\n// Output:\n// test\n"
  },
  {
    "path": "_test/issue-735.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"strconv\"\n)\n\nvar optionsG map[string]string\n\nvar roundG int = 30\n\nfunc strToInt(s string, defaultValue int) int {\n\tn, err := strconv.ParseInt(s, 10, 0)\n\tif err != nil {\n\t\treturn defaultValue\n\t}\n\treturn int(n)\n}\n\nfunc main() {\n\toptionsG := map[string]string{\"round\": \"12\", \"b\": \"one\"}\n\troundG = strToInt(optionsG[\"round\"], 50)\n\tfmt.Println(roundG)\n\tfmt.Println(optionsG)\n}\n\n// Output:\n// 12\n// map[b:one round:12]\n"
  },
  {
    "path": "_test/issue-770.go",
    "content": "package main\n\nimport \"reflect\"\n\ntype I interface {\n\tFoo() int\n}\n\ntype T struct {\n\tName string\n}\n\nfunc (t T) Foo() int { return 0 }\n\nfunc f(v reflect.Value) int {\n\ti := v.Interface().(I)\n\treturn i.Foo()\n}\n\nfunc main() {\n\tprintln(\"hello\")\n}\n\n// Output:\n// hello\n"
  },
  {
    "path": "_test/issue-772.go",
    "content": "package main\n\nimport (\n\t\"log\"\n\t\"os\"\n\t\"text/template\"\n)\n\ntype Message struct {\n\tData string\n}\n\nfunc main() {\n\ttmpl := template.New(\"name\")\n\n\t_, err := tmpl.Parse(\"{{.Data}}\")\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\terr = tmpl.Execute(os.Stdout, Message{\n\t\tData: \"Hello, World!!\",\n\t})\n\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n}\n\n// Output:\n// Hello, World!!\n"
  },
  {
    "path": "_test/issue-775.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http/httptest\"\n)\n\nfunc main() {\n\trecorder := httptest.NewRecorder()\n\trecorder.Header().Add(\"Foo\", \"Bar\")\n\n\tfor key, value := range recorder.Header() {\n\t\tfmt.Println(key, value)\n\t}\n}\n\n// Output:\n// Foo [Bar]\n"
  },
  {
    "path": "_test/issue-776.go",
    "content": "package main\n\nimport \"fmt\"\n\n// Filter is a filter\ntype Filter interface {\n\tFoo()\n}\n\n// GIFT is a gift\ntype GIFT struct {\n\tFilters []Filter\n}\n\n// New is a new filter list\nfunc New(filters ...Filter) *GIFT {\n\treturn &GIFT{\n\t\tFilters: filters,\n\t}\n}\n\n// List lists filters\nfunc (g *GIFT) List() {\n\tfmt.Printf(\"Hello from List!\\n\")\n}\n\n// MyFilter is one of the filters\ntype MyFilter struct{}\n\n// Foo is a foo\nfunc (f *MyFilter) Foo() {}\n\nfunc main() {\n\tg := New(&MyFilter{})\n\tg.List()\n}\n\n// Output:\n// Hello from List!\n"
  },
  {
    "path": "_test/issue-782.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := []int{1, 2, 3, 4, 5, 6, 7, 8, 9}\n\tfrom := uint32(2)\n\tto := uint32(4)\n\tb := a[from:to]\n\tfmt.Print(b)\n}\n\n// Output:\n// [3 4]\n"
  },
  {
    "path": "_test/issue-784.go",
    "content": "package main\n\nimport \"fmt\"\n\n// Filter is a filter interface\ntype Filter interface {\n\tBounds(srcBounds string) (dstBounds string)\n}\n\n// GIFT type\ntype GIFT struct {\n\tFilters []Filter\n}\n\n// New creates a new filter list and initializes it with the given slice of filters.\nfunc New(filters ...Filter) *GIFT {\n\treturn &GIFT{\n\t\tFilters: filters,\n\t}\n}\n\n// Bounds calculates the appropriate bounds for the result image after applying all the added filters.\nfunc (g *GIFT) Bounds(srcBounds string) (dstBounds string) {\n\tdstBounds = srcBounds\n\tfor _, f := range g.Filters {\n\t\tdstBounds = f.Bounds(dstBounds)\n\t}\n\treturn dstBounds\n}\n\nfunc main() {\n\tvar filters []Filter\n\tbounds := \"foo\"\n\tg := New(filters...)\n\tfmt.Println(g.Bounds(bounds))\n}\n\n// Output:\n// foo\n"
  },
  {
    "path": "_test/issue-880.go",
    "content": "package main\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n)\n\nfunc main() {\n\tvar buf1 = make([]byte, 1024)\n\tvar buf2 []byte\n\tbuf1 = []byte(\"Hallo\\nTest\\nLine3\")\n\n\ts := bufio.NewScanner(bytes.NewReader(buf1))\n\tfor s.Scan() {\n\t\tbuf2 = append(buf2, append(s.Bytes(), []byte(\"\\n\")...)...)\n\t}\n\tprint(string(buf2))\n}\n\n// Output:\n// Hallo\n// Test\n// Line3\n"
  },
  {
    "path": "_test/issue-981.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tdp := make(map[int]int)\n\tdp[0] = 1\n\tfor i := 1; i < 10; i++ {\n\t\tdp[i] = dp[i-1] + dp[i-2]\n\t}\n\tfmt.Printf(\"%v\\n\", dp)\n}\n\n// Output:\n// map[0:1 1:1 2:2 3:3 4:5 5:8 6:13 7:21 8:34 9:55]\n"
  },
  {
    "path": "_test/issue-993.go",
    "content": "package main\n\nvar m map[string]int64\n\nfunc initVar() {\n\tm = make(map[string]int64)\n}\n\nfunc main() {\n\tinitVar()\n\tprintln(len(m))\n}\n\n// Output:\n// 0\n"
  },
  {
    "path": "_test/l2.go",
    "content": "package main\n\nfunc main() {\n\tfor a := 0; a < 20000; a++ {\n\t\tif (a & 0x8ff) == 0x800 {\n\t\t\tprintln(a)\n\t\t}\n\t}\n}\n\n// Output:\n// 2048\n// 2304\n// 2560\n// 2816\n// 3072\n// 3328\n// 3584\n// 3840\n// 6144\n// 6400\n// 6656\n// 6912\n// 7168\n// 7424\n// 7680\n// 7936\n// 10240\n// 10496\n// 10752\n// 11008\n// 11264\n// 11520\n// 11776\n// 12032\n// 14336\n// 14592\n// 14848\n// 15104\n// 15360\n// 15616\n// 15872\n// 16128\n// 18432\n// 18688\n// 18944\n// 19200\n// 19456\n// 19712\n// 19968\n"
  },
  {
    "path": "_test/l3.go",
    "content": "package main\n\n//func myprint(i int) { println(i) }\n\nfunc main() {\n\tfor a := 0; a < 20000000; a++ {\n\t\tif a&0x8ffff == 0x80000 {\n\t\t\tprintln(a)\n\t\t\t//myprint(a)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "_test/l4.go",
    "content": "package main\n\nfunc main()       { println(f(5)) }\nfunc f(i int) int { return i + 1 }\n\n// Output:\n// 6\n"
  },
  {
    "path": "_test/l5.go",
    "content": "package main\n\n//func myprint(i int) { println(i) }\n\nfunc main() {\n\tfor a := 0; a < 20000000; {\n\t\tif a&0x8ffff == 0x80000 {\n\t\t\tprintln(a)\n\t\t}\n\t\ta = a + 1\n\t}\n}\n"
  },
  {
    "path": "_test/len0.go",
    "content": "package main\n\nfunc f(a []int) interface{} {\n\treturn len(a)\n}\n\nfunc main() {\n\ta := []int{1, 2}\n\tprintln(f(a).(int))\n}\n\n// Output:\n// 2\n"
  },
  {
    "path": "_test/m1/main.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"testing\"\n)\n\nfunc main() {\n\tfmt.Println(\"vim-go\")\n}\n\nfunc TestWeird(t *testing.T) {\n\tfmt.Println(\"in TestWeird\")\n}\n"
  },
  {
    "path": "_test/m1/main_test.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"math/rand\"\n\t\"testing\"\n)\n\nfunc TestMain(t *testing.T) {\n\tfmt.Println(\"in test\")\n}\n\nfunc BenchmarkMain(b *testing.B) {\n\tfor i := 0; i < b.N; i++ {\n\t\trand.Int()\n\t}\n}\n"
  },
  {
    "path": "_test/m2/m2_test.go",
    "content": "package m2\n\nimport \"testing\"\n\nfunc TestM2(t *testing.T) {\n\tt.Errorf(\"got %s, want %s\", \"AAA\", \"BBB\")\n}\n"
  },
  {
    "path": "_test/make.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n)\n\nfunc main() {\n\th := make(http.Header)\n\tfmt.Println(\"h:\", h)\n}\n\n// Output:\n// h: map[]\n"
  },
  {
    "path": "_test/make0.go",
    "content": "package main\n\nfunc f() interface{} {\n\treturn make([]int, 2)\n}\n\nfunc main() {\n\ta := f()\n\tprintln(len(a.([]int)))\n}\n\n// Output:\n// 2\n"
  },
  {
    "path": "_test/make1.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc f() interface{} {\n\treturn make(map[int]int)\n}\n\nfunc main() {\n\ta, ok := f().(map[int]int)\n\tfmt.Println(a, ok)\n}\n\n// Output:\n// map[] true\n"
  },
  {
    "path": "_test/make2.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar s uint = 4\n\tt := make([]int, s)\n\tfmt.Println(t)\n}\n\n// Output:\n// [0 0 0 0]\n"
  },
  {
    "path": "_test/map.go",
    "content": "package main\n\ntype Dict map[string]string\n\nfunc main() {\n\tdict := make(Dict)\n\tdict[\"truc\"] = \"machin\"\n\tprintln(dict[\"truc\"])\n}\n\n// Output:\n// machin\n"
  },
  {
    "path": "_test/map10.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"sort\"\n)\n\ntype Foo struct {\n\tName string\n}\n\nfunc main() {\n\tm := map[string][]Foo{\n\t\t\"hello\": {Foo{\"foo\"}, Foo{\"bar\"}},\n\t\t\"world\": {Foo{\"truc\"}, Foo{\"machin\"}},\n\t}\n\n\tvar content []string\n\n\tfor key, values := range m {\n\t\tfor _, value := range values {\n\t\t\tcontent = append(content, key+value.Name)\n\t\t}\n\t}\n\n\tsort.Strings(content)\n\tfmt.Println(content)\n}\n\n// Output:\n// [hellobar hellofoo worldmachin worldtruc]\n"
  },
  {
    "path": "_test/map11.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"sort\"\n)\n\ntype Foo struct {\n\tName string\n}\n\nfunc main() {\n\tm := map[string][]Foo{\n\t\t\"hello\": []Foo{{\"foo\"}, {\"bar\"}},\n\t\t\"world\": []Foo{{\"truc\"}, {\"machin\"}},\n\t}\n\n\tvar content []string\n\n\tfor key, values := range m {\n\t\tfor _, value := range values {\n\t\t\tcontent = append(content, key+value.Name)\n\t\t}\n\t}\n\n\tsort.Strings(content)\n\tfmt.Println(content)\n}\n\n// Output:\n// [hellobar hellofoo worldmachin worldtruc]\n"
  },
  {
    "path": "_test/map12.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"sort\"\n)\n\ntype Foo struct {\n\tName string\n}\n\nfunc main() {\n\tm := map[string]Foo{\n\t\t\"hello\": {Name: \"bar\"},\n\t\t\"world\": {Name: \"machin\"},\n\t}\n\n\tvar content []string\n\n\tfor key, value := range m {\n\t\tcontent = append(content, key+value.Name)\n\t}\n\n\tsort.Strings(content)\n\tfmt.Println(content)\n}\n\n// Output:\n// [hellobar worldmachin]\n"
  },
  {
    "path": "_test/map13.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n)\n\nconst acceptEncoding = \"Accept-Encoding\"\n\nfunc main() {\n\topts := &http.PushOptions{\n\t\tHeader: http.Header{\n\t\t\tacceptEncoding: []string{\"gzip\"},\n\t\t},\n\t}\n\tfmt.Println(opts)\n}\n\n// Output:\n// &{ map[Accept-Encoding:[gzip]]}\n"
  },
  {
    "path": "_test/map14.go",
    "content": "package main\n\nimport \"fmt\"\n\nvar m = map[string]float64{\"foo\": 1.0}\n\nfunc f(s string) bool { return m[s] > 0.0 }\n\nfunc main() {\n\tfmt.Println(f(\"foo\"), f(\"bar\"))\n}\n\n// Output:\n// true false\n"
  },
  {
    "path": "_test/map15.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tusers := make(map[string]string)\n\n\tv := users[\"a\"]\n\tfmt.Println(\"v:\", v)\n}\n\n// Output:\n// v:\n"
  },
  {
    "path": "_test/map16.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tusers := make(map[string]string)\n\n\tv, exists := users[\"a\"]\n\tfmt.Println(v, exists)\n\n\tif exists == true {\n\t\t//if exists {\n\t\tfmt.Println(\"exists\", v)\n\t} else {\n\t\tfmt.Println(\"not exists\")\n\t}\n}\n\n// Output:\n//  false\n// not exists\n"
  },
  {
    "path": "_test/map17.go",
    "content": "package main\n\nimport \"net/http\"\n\ntype T struct {\n\theader string\n}\n\nfunc (b *T) ServeHTTP(rw http.ResponseWriter, req *http.Request) {\n\tif b.header != \"\" {\n\t\treq.Header[b.header] = []string{\"hello\"}\n\t}\n}\n\nfunc main() {\n\tprintln(\"ok\")\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/map18.go",
    "content": "package main\n\nimport \"fmt\"\n\nvar foo = make([]int, 1)\n\nfunc main() {\n\tfor _, v := range foo {\n\t\tfmt.Println(v)\n\t}\n}\n\n// Output:\n// 0\n"
  },
  {
    "path": "_test/map19.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype cmap struct {\n\tservers map[int64]*server\n}\n\ntype server struct {\n\tcm *cmap\n}\n\nfunc main() {\n\tm := cmap{}\n\tfmt.Println(m)\n}\n\n// Output:\n// {map[]}\n"
  },
  {
    "path": "_test/map2.go",
    "content": "package main\n\nfunc main() {\n\tdict := make(map[string]string)\n\tdict[\"truc\"] = \"machin\"\n\tprintln(dict[\"truc\"])\n}\n\n// Output:\n// machin\n"
  },
  {
    "path": "_test/map20.go",
    "content": "package main\n\nvar a = map[int]bool{1: true, 2: true}\n\nfunc main() {\n\tprintln(a[1] && true)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/map21.go",
    "content": "package main\n\nvar m = map[int]string{\n\t1: \"foo\",\n}\n\nfunc main() {\n\tvar ok bool\n\tif _, ok = m[1]; ok {\n\t\tprintln(\"ok\")\n\t}\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/map22.go",
    "content": "package main\n\nvar m = map[int]string{\n\t1: \"foo\",\n}\n\nfunc main() {\n\tvar s string\n\ts, _ = m[1]\n\tprintln(s)\n}\n\n// Output:\n// foo\n"
  },
  {
    "path": "_test/map23.go",
    "content": "package main\n\nvar m = map[int]string{\n\t1: \"foo\",\n}\n\nfunc main() {\n\t_, _ = m[1]\n\tprintln(\"ok\")\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/map24.go",
    "content": "package main\n\nimport (\n\t\"encoding/json\"\n\t\"fmt\"\n)\n\nfunc main() {\n\tjb := []byte(`{\"property\": \"test\"}`)\n\tparams := map[string]interface{}{\"foo\": 1}\n\tif err := json.Unmarshal(jb, &params); err != nil {\n\t\tpanic(\"marshal failed.\")\n\t}\n\tfmt.Println(params[\"foo\"], params[\"property\"])\n}\n\n// Output:\n// 1 test\n"
  },
  {
    "path": "_test/map25.go",
    "content": "package main\n\nimport (\n\t\"encoding/json\"\n\t\"strconv\"\n)\n\nfunc main() {\n\tjb := []byte(`{\"num\": \"2\"}`)\n\tparams := map[string]interface{}{\"foo\": \"1\"}\n\tif err := json.Unmarshal(jb, &params); err != nil {\n\t\tpanic(err)\n\t}\n\tsum := 0\n\tfor _, v := range params {\n\t\ti, err := strconv.Atoi(v.(string))\n\t\tif err != nil {\n\t\t\tpanic(err)\n\t\t}\n\t\tsum += i\n\t}\n\tprintln(sum)\n}\n\n// Output:\n// 3\n"
  },
  {
    "path": "_test/map26.go",
    "content": "package main\n\nvar m = map[string]int{\"foo\": 1, \"bar\": 2}\n\nfunc main() {\n\tvar a interface{} = m[\"foo\"]\n\tprintln(a.(int))\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/map27.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"text/template\"\n)\n\ntype fm map[string]interface{}\n\ntype foo struct{}\n\nfunc main() {\n\ta := make(fm)\n\ta[\"foo\"] = &foo{}\n\tfmt.Println(a[\"foo\"])\n\n\tb := make(template.FuncMap) // type FuncMap map[string]interface{}\n\tb[\"foo\"] = &foo{}\n\tfmt.Println(b[\"foo\"])\n}\n\n// Output:\n// &{}\n// &{}\n"
  },
  {
    "path": "_test/map28.go",
    "content": "package main\n\nimport (\n\t\"net/url\"\n)\n\nfunc main() {\n\tvalue1 := url.Values{}\n\n\tvalue1.Set(\"first\", \"v1\")\n\tvalue1.Set(\"second\", \"v2\")\n\n\tl := 0\n\tfor k, v := range value1 {\n\t\tl += len(k) + len(v)\n\t}\n\tprintln(l)\n}\n\n// Output:\n// 13\n"
  },
  {
    "path": "_test/map29.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\ntype Item struct {\n\tObject interface{}\n\tExpiry time.Duration\n}\n\nfunc main() {\n\titems := map[string]Item{}\n\n\titems[\"test\"] = Item{\n\t\tObject: \"test\",\n\t\tExpiry: time.Second,\n\t}\n\n\titem := items[\"test\"]\n\tfmt.Println(item)\n}\n\n// Output:\n// {test 1s}\n"
  },
  {
    "path": "_test/map3.go",
    "content": "package main\n\nfunc main() {\n\tdict := map[string]string{}\n\tdict[\"truc\"] = \"machin\"\n\tprintln(dict[\"truc\"])\n}\n\n// Output:\n// machin\n"
  },
  {
    "path": "_test/map30.go",
    "content": "package main\n\nimport \"strings\"\n\nfunc f(s string) string { return \"hello \" + s }\n\nfunc g(s string) string { return \"hi \" + s }\n\nvar methods = map[string]func(string) string{\n\t\"f\": f,\n\t\"h\": strings.ToLower,\n}\n\nfunc main() {\n\tmethods[\"i\"] = strings.ToUpper\n\tmethods[\"g\"] = g\n\tprintln(methods[\"f\"](\"test\"))\n\tprintln(methods[\"g\"](\"test\"))\n\tprintln(methods[\"i\"](\"test\"))\n\tprintln(methods[\"h\"](\"TEST\"))\n}\n\n// Output:\n// hello test\n// hi test\n// TEST\n// test\n"
  },
  {
    "path": "_test/map31.go",
    "content": "package main\n\nfunc main() {\n\tmyMap := map[string]int{\"a\":2}\n\n\tfor s, _ := range myMap {\n\t\t_ = s\n\t}\n\tprintln(\"ok\")\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/map4.go",
    "content": "package main\n\nfunc main() {\n\tdict := map[string]string{\"bidule\": \"machin\", \"truc\": \"bidule\"}\n\tdict[\"hello\"] = \"bonjour\"\n\tprintln(dict[\"bidule\"])\n\tprintln(dict[\"hello\"])\n}\n\n// Output:\n// machin\n// bonjour\n"
  },
  {
    "path": "_test/map5.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tdict := map[string]string{\"bidule\": \"machin\", \"truc\": \"bidule\"}\n\tr, ok := dict[\"xxx\"]\n\tfmt.Println(r, ok)\n\tr, ok = dict[\"truc\"]\n\tfmt.Println(r, ok)\n}\n\n// Output:\n//  false\n// bidule true\n"
  },
  {
    "path": "_test/map6.go",
    "content": "package main\n\nfunc main() {\n\tdict := map[string]string{\"bidule\": \"machin\"}\n\tfor k, v := range dict {\n\t\tprintln(k, v)\n\t}\n}\n\n// Output:\n// bidule machin\n"
  },
  {
    "path": "_test/map7.go",
    "content": "package main\n\nfunc main() {\n\tdict := map[int32]int64{13: 733}\n\tfor k, v := range dict {\n\t\tprintln(k, v)\n\t}\n}\n\n// Output:\n// 13 733\n"
  },
  {
    "path": "_test/map8.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"sort\"\n)\n\nfunc main() {\n\tm := map[string][]string{\n\t\t\"hello\": {\"foo\", \"bar\"},\n\t\t\"world\": {\"truc\", \"machin\"},\n\t}\n\n\tvar content []string\n\n\tfor key, values := range m {\n\t\tfor _, value := range values {\n\t\t\tcontent = append(content, key+value)\n\t\t}\n\t}\n\n\tsort.Strings(content)\n\tfmt.Println(content)\n}\n\n// Output:\n// [hellobar hellofoo worldmachin worldtruc]\n"
  },
  {
    "path": "_test/map9.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"sort\"\n)\n\ntype Foo struct {\n\tName string\n}\n\nfunc main() {\n\tm := map[string][]Foo{\n\t\t\"hello\": {{\"foo\"}, {\"bar\"}},\n\t\t\"world\": {{\"truc\"}, {\"machin\"}},\n\t}\n\n\tvar content []string\n\n\tfor key, values := range m {\n\t\tfor _, value := range values {\n\t\t\tcontent = append(content, key+value.Name)\n\t\t}\n\t}\n\n\tsort.Strings(content)\n\tfmt.Println(content)\n}\n\n// Output:\n// [hellobar hellofoo worldmachin worldtruc]\n"
  },
  {
    "path": "_test/math0.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"math\"\n)\n\nfunc main() {\n\tfmt.Println(math.Cos(math.Pi))\n}\n\n// Output:\n// -1\n"
  },
  {
    "path": "_test/math1.go",
    "content": "package main\n\nimport \"math\"\n\nfunc main() {\n\tvar f float32\n\tif f < math.MaxFloat32 {\n\t\tprintln(\"ok\")\n\t}\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/math2.go",
    "content": "package main\n\nconst c uint64 = 2\n\nfunc main() {\n\tif c&(1<<(uint64(1))) > 0 {\n\t\tprintln(\"yes\")\n\t}\n}\n\n// Output:\n// yes\n"
  },
  {
    "path": "_test/math3.go",
    "content": "package main\n\nimport (\n\t\"crypto/md5\"\n\t\"fmt\"\n)\n\nfunc md5Crypt(password, salt, magic []byte) []byte {\n\td := md5.New()\n\td.Write(password)\n\td.Write(magic)\n\td.Write(salt)\n\n\td2 := md5.New()\n\td2.Write(password)\n\td2.Write(salt)\n\n\tfor i, mixin := 0, d2.Sum(nil); i < len(password); i++ {\n\t\td.Write([]byte{mixin[i%16]})\n\t}\n\n\treturn d.Sum(nil)\n}\n\nfunc main() {\n\tb := md5Crypt([]byte(\"1\"), []byte(\"2\"), []byte(\"3\"))\n\n\tfmt.Println(b)\n}\n\n// Output:\n// [187 141 73 89 101 229 33 106 226 63 117 234 117 149 230 21]\n"
  },
  {
    "path": "_test/method.go",
    "content": "package main\n\ntype Coord struct {\n\tx, y int\n}\n\nfunc (c Coord) dist() int { return c.x*c.x + c.y*c.y }\n\nfunc main() {\n\to := Coord{3, 4}\n\tprintln(o.dist())\n}\n\n// Output:\n// 25\n"
  },
  {
    "path": "_test/method0.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype Foo struct {\n}\n\nfunc (Foo) Call() {\n\tfmt.Println(\"Foo Called\")\n}\n\ntype Bar struct {\n\tFoo\n}\n\ntype Baz struct {\n\tFoo\n}\n\nfunc (Baz) Call() {\n\tfmt.Println(\"Baz Called\")\n}\n\nfunc main() {\n\tFoo{}.Call()\n\tBar{}.Call()\n\tBaz{}.Call()\n}\n\n// Output:\n// Foo Called\n// Foo Called\n// Baz Called\n"
  },
  {
    "path": "_test/method1.go",
    "content": "package main\n\ntype Sample struct {\n\tName string\n}\n\nfunc (s *Sample) foo(i int) {\n\tprintln(\"in foo\", s.Name, i)\n}\n\nfunc main() {\n\tsample := Sample{\"hello\"}\n\ts := &sample\n\ts.foo(3)\n}\n\n// Output:\n// in foo hello 3\n"
  },
  {
    "path": "_test/method10.go",
    "content": "package main\n\nconst BlockSize = 8\n\ntype Cipher struct{}\n\nfunc (c *Cipher) BlockSize() int { return BlockSize }\n\nfunc main() {\n\tprintln(BlockSize)\n\ts := Cipher{}\n\tprintln(s.BlockSize())\n}\n\n// Output:\n// 8\n// 8\n"
  },
  {
    "path": "_test/method11.go",
    "content": "package main\n\nfunc BlockSize() string { return \"func\" }\n\ntype Cipher struct{}\n\nfunc (c *Cipher) BlockSize() string { return \"method\" }\n\nfunc main() {\n\tprintln(BlockSize())\n\ts := Cipher{}\n\tprintln(s.BlockSize())\n}\n\n// Output:\n// func\n// method\n"
  },
  {
    "path": "_test/method12.go",
    "content": "package main\n\ntype Coord struct {\n\tx, y int\n}\n\nfunc (c Coord) dist() int { return c.x*c.x + c.y*c.y }\n\nfunc main() {\n\to := Coord{3, 4}\n\tf := o.dist\n\tprintln(f())\n}\n\n// Output:\n// 25\n"
  },
  {
    "path": "_test/method13.go",
    "content": "package main\n\ntype Coord struct {\n\tx, y int\n}\n\nfunc (c Coord) dist() int { return c.x*c.x + c.y*c.y }\n\ntype Point struct {\n\tCoord\n\tz int\n}\n\nfunc main() {\n\to := Point{Coord{3, 4}, 5}\n\tf := o.dist\n\tprintln(f())\n}\n\n// Output:\n// 25\n"
  },
  {
    "path": "_test/method14.go",
    "content": "package main\n\nfunc main() {\n\to := Coord{3, 4}\n\tprintln(o.dist())\n}\n\nfunc (c *Coord) dist() int { return c.x*c.x + c.y*c.y }\n\ntype Coord struct {\n\tx, y int\n}\n\n// Output:\n// 25\n"
  },
  {
    "path": "_test/method15.go",
    "content": "package main\n\ntype Coord struct {\n\tx, y int\n}\n\nfunc (c Coord) dist() int { return c.x*c.x + c.y*c.y }\n\nfunc main() {\n\to := &Coord{3, 4}\n\tprintln(o.dist())\n}\n\n// Output:\n// 25\n"
  },
  {
    "path": "_test/method16.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\ntype Cheese struct {\n\tproperty string\n}\n\nfunc (t *Cheese) Hello(param string) {\n\tfmt.Printf(\"%+v %+v\", t, param)\n}\n\nfunc main() {\n\t(*Cheese).Hello(&Cheese{property: \"value\"}, \"param\")\n}\n\n// Output:\n// &{Xproperty:value} param\n"
  },
  {
    "path": "_test/method17.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\ntype MyTime struct {\n\ttime.Time\n\tindex int\n}\n\nfunc (m MyTime) Foo() {\n\tminute := m.Minute()\n\tfmt.Println(\"minute:\", minute)\n}\n\nfunc (m *MyTime) Bar() {\n\tsecond := m.Second()\n\tfmt.Println(\"second:\", second)\n}\n\nfunc main() {\n\tt := MyTime{}\n\tt.Time = time.Date(2009, time.November, 10, 23, 4, 5, 0, time.UTC)\n\tt.Foo()\n\tt.Bar()\n\t(&t).Bar()\n}\n\n// Output:\n// minute: 4\n// second: 5\n// second: 5\n"
  },
  {
    "path": "_test/method18.go",
    "content": "package main\n\nimport (\n\t\"compress/gzip\"\n\t\"fmt\"\n\t\"net/http\"\n)\n\ntype GzipResponseWriter struct {\n\thttp.ResponseWriter\n\tindex int\n\tgw    *gzip.Writer\n}\n\ntype GzipResponseWriterWithCloseNotify struct {\n\t*GzipResponseWriter\n}\n\nfunc (w GzipResponseWriterWithCloseNotify) CloseNotify() <-chan bool {\n\treturn w.ResponseWriter.(http.CloseNotifier).CloseNotify()\n}\n\nfunc main() {\n\tfmt.Println(\"hello\")\n}\n\n// Output:\n// hello\n"
  },
  {
    "path": "_test/method19.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc f() (string, error) {\n\terr := fmt.Errorf(\"a nice error\")\n\treturn \"\", err\n}\n\nfunc main() {\n\t_, err := f()\n\tif err != nil {\n\t\tfmt.Println(err.Error())\n\t}\n}\n\n// Output:\n// a nice error\n"
  },
  {
    "path": "_test/method2.go",
    "content": "package main\n\ntype Coord struct {\n\tx, y int\n}\n\nfunc (c Coord) dist() int { return c.x*c.x + c.y*c.y }\n\ntype Point struct {\n\tCoord\n\tz int\n}\n\nfunc main() {\n\to := Point{Coord{3, 4}, 5}\n\tprintln(o.dist())\n}\n\n// Output:\n// 25\n"
  },
  {
    "path": "_test/method20.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"sync\"\n)\n\ntype Hello struct {\n\tmu sync.Mutex\n}\n\nfunc (h *Hello) Hi() string {\n\th.mu.Lock()\n\th.mu.Unlock()\n\treturn \"hi\"\n}\n\nfunc main() {\n\ta := &Hello{}\n\n\tfmt.Println(a.Hi())\n}\n\n// Output:\n// hi\n"
  },
  {
    "path": "_test/method21.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\ntype Hello struct{}\n\nfunc (*Hello) Hi() string {\n\tpanic(\"implement me\")\n}\n\nfunc main() {\n\tfmt.Println(&Hello{})\n}\n\n// Output:\n// &{}\n"
  },
  {
    "path": "_test/method22.go",
    "content": "package main\n\nfunc Bar() {\n\ts := Obj.Foo()\n\tprintln(s)\n}\n\nvar Obj = &T{}\n\ntype T struct{}\n\nfunc (t *T) Foo() bool { return t != nil }\n\nfunc main() {\n\tBar()\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/method23.go",
    "content": "package main\n\nfunc Bar() {\n\ts := Obj.Foo()\n\tprintln(s)\n}\n\nvar Obj = NewT()\n\nfunc NewT() *T { return &T{} }\n\ntype T struct{}\n\nfunc (t *T) Foo() bool { return t != nil }\n\nfunc main() {\n\tBar()\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/method24.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"sync\"\n)\n\ntype Pool struct {\n\tp *sync.Pool\n}\n\nfunc (p Pool) Get() *Buffer { return &Buffer{} }\n\nfunc NewPool() Pool { return Pool{} }\n\ntype Buffer struct {\n\tbs   []byte\n\tpool Pool\n}\n\nvar (\n\t_pool = NewPool()\n\tGet   = _pool.Get\n)\n\nfunc main() {\n\tfmt.Println(_pool)\n\tfmt.Println(Get())\n}\n\n// Output:\n// {<nil>}\n// &{[] {<nil>}}\n"
  },
  {
    "path": "_test/method25.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"sync\"\n)\n\nfunc (p Pool) Get() *Buffer { return &Buffer{} }\n\nfunc NewPool() Pool { return Pool{} }\n\ntype Buffer struct {\n\tbs   []byte\n\tpool Pool\n}\n\ntype Pool struct {\n\tp *sync.Pool\n}\n\nvar (\n\t_pool = NewPool()\n\tGet   = _pool.Get\n)\n\nfunc main() {\n\tfmt.Println(_pool)\n\tfmt.Println(Get())\n}\n\n// Output:\n// {<nil>}\n// &{[] {<nil>}}\n"
  },
  {
    "path": "_test/method26.go",
    "content": "package main\n\nfunc NewT(name string) *T { return &T{name} }\n\nvar C = NewT(\"test\")\n\nfunc (t *T) f() { println(t == C) }\n\ntype T struct {\n\tName string\n}\n\nfunc main() {\n\tC.f()\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/method27.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n)\n\ntype AuthenticatedRequest struct {\n\thttp.Request\n\tUsername string\n}\n\nfunc main() {\n\ta := &AuthenticatedRequest{}\n\tfmt.Println(\"ua:\", a.UserAgent())\n\n}\n\n// Output:\n// ua:\n"
  },
  {
    "path": "_test/method28.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype T struct {\n\tName string\n}\n\nfunc (T) create() *T {\n\treturn &T{\"Hello\"}\n}\n\nfunc main() {\n\tfmt.Println(T{}.create())\n}\n\n// Output:\n// &{Hello}\n"
  },
  {
    "path": "_test/method29.go",
    "content": "package main\n\nimport (\n\t\"context\"\n\t\"net\"\n)\n\nvar lookupHost = net.DefaultResolver.LookupHost\n\nfunc main() {\n\tres, err := lookupHost(context.Background(), \"localhost\")\n\tprintln(len(res) > 0, err == nil)\n}\n\n// Output:\n// true true\n"
  },
  {
    "path": "_test/method3.go",
    "content": "package main\n\ntype Coord struct {\n\tx, y int\n}\n\nfunc (c Coord) dist() int { return c.x*c.x + c.y*c.y }\n\ntype Point struct {\n\tCoord\n\tz int\n}\n\nfunc main() {\n\to := Point{Coord{3, 4}, 5}\n\tprintln(o.Coord.dist())\n}\n\n// Output:\n// 25\n"
  },
  {
    "path": "_test/method30.go",
    "content": "package main\n\ntype T struct {\n\tName string\n}\n\nfunc (t *T) foo(a string) string {\n\treturn t.Name + a\n}\n\nvar g = &T{\"global\"}\n\nvar f = g.foo\n\nfunc main() {\n\tprintln(f(\"-x\"))\n}\n\n// Output:\n// global-x\n"
  },
  {
    "path": "_test/method31.go",
    "content": "package main\n\nimport \"fmt\"\n\nvar db dbWrapper\n\ntype dbWrapper struct {\n\tDB *cmap\n}\n\nfunc (d *dbWrapper) get() *cmap {\n\treturn d.DB\n}\n\ntype cmap struct {\n\tname string\n}\n\nfunc (c *cmap) f() {\n\tfmt.Println(\"in f, c\", c)\n}\n\nfunc main() {\n\tdb.DB = &cmap{name: \"test\"}\n\tdb.get().f()\n}\n\n// Output:\n// in f, c &{test}\n"
  },
  {
    "path": "_test/method32.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\nfunc main() {\n\tvar a = []func(string){bar}\n\t b := a[0]\n\t b(\"bar\")\n}\n\nfunc bar(a string) {\n\tfmt.Println(a)\n}\n\n// Output:\n// bar\n"
  },
  {
    "path": "_test/method33.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\ntype T1 struct{}\n\nfunc (t1 T1) f() {\n\tfmt.Println(\"T1.f()\")\n}\n\nfunc (t1 T1) g() {\n\tfmt.Println(\"T1.g()\")\n}\n\ntype T2 struct {\n\tT1\n}\n\nfunc (t2 T2) f() {\n\tfmt.Println(\"T2.f()\")\n}\n\ntype I interface {\n\tf()\n}\n\nfunc printType(i I) {\n\tif t1, ok := i.(T1); ok {\n\t\tprintln(\"T1 ok\")\n\t\tt1.f()\n\t\tt1.g()\n\t}\n\n\tif t2, ok := i.(T2); ok {\n\t\tprintln(\"T2 ok\")\n\t\tt2.f()\n\t\tt2.g()\n\t}\n}\n\nfunc main() {\n\tprintln(\"T1\")\n\tprintType(T1{})\n\tprintln(\"T2\")\n\tprintType(T2{})\n}\n\n// Output:\n// T1\n// T1 ok\n// T1.f()\n// T1.g()\n// T2\n// T2 ok\n// T2.f()\n// T1.g()\n"
  },
  {
    "path": "_test/method34.go",
    "content": "package main\n\ntype Root struct {\n\tName string\n}\n\ntype One struct {\n\tRoot\n}\n\ntype Hi interface {\n\tHello() string\n}\n\ntype Hey interface {\n\tHello() string\n}\n\nfunc (r *Root) Hello() string { return \"Hello \" + r.Name }\n\nfunc main() {\n\t// TODO(mpl): restore when type assertions work again.\n\t// var one interface{} = &One{Root{Name: \"test2\"}}\n\tvar one Hey = &One{Root{Name: \"test2\"}}\n\tprintln(one.(Hi).Hello())\n}\n\n// Output:\n// Hello test2\n"
  },
  {
    "path": "_test/method35.go",
    "content": "package main\n\nimport \"strconv\"\n\nfunc main() {\n\tvar err error\n\t_, err = strconv.Atoi(\"erwer\")\n\tif _, ok := err.(*strconv.NumError); ok {\n\t\tprintln(\"here\")\n\t}\n}\n\n// Output:\n// here\n"
  },
  {
    "path": "_test/method36.go",
    "content": "package main\n\ntype I interface{ Hello() }\n\ntype T struct{ Name string }\n\nfunc (t *T) Hello() { println(\"Hello\", t.Name) }\n\ntype FT func(i I)\n\ntype ST struct{ Handler FT }\n\nfunc newF() FT {\n\treturn func(i I) {\n\t\ti.Hello()\n\t}\n}\n\nfunc main() {\n\tst := &ST{}\n\tst.Handler = newF()\n\tst.Handler(&T{\"test\"})\n}\n\n// Output:\n// Hello test\n"
  },
  {
    "path": "_test/method37.go",
    "content": "package main\n\nimport (\n\t\"net\"\n\t\"os\"\n)\n\nfunc writeBufs(bufs ...[]byte) error {\n\tb := net.Buffers(bufs)\n\t_, err := b.WriteTo(os.Stdout)\n\treturn err\n}\n\nfunc main() {\n\twriteBufs([]byte(\"hello\"))\n}\n\n// Output:\n// hello\n"
  },
  {
    "path": "_test/method38/a.go",
    "content": "package method38\n\nimport \"sync\"\n\nfunc NewPool() Pool { return Pool{} }\n\ntype Buffer struct {\n\tbs   []byte\n\tpool Pool\n}\n\ntype Pool struct {\n\tp *sync.Pool\n}\n\nvar (\n\t_pool = NewPool()\n\tGet   = _pool.Get\n)\n"
  },
  {
    "path": "_test/method38/b.go",
    "content": "package method38\n\nfunc (p Pool) Get() *Buffer { return &Buffer{} }\n"
  },
  {
    "path": "_test/method38.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/traefik/yaegi/_test/method38\"\n)\n\nfunc main() {\n\tfmt.Println(method38.Get())\n}\n\n// Output:\n// &{[] {<nil>}}\n"
  },
  {
    "path": "_test/method39.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"sync\"\n\n\t\"github.com/traefik/yaegi/_test/method38\"\n)\n\nfunc NewPool() Pool { return Pool{} }\n\ntype Buffer struct {\n\tbs   []byte\n\tpool Pool\n}\n\ntype Pool struct {\n\tp *sync.Pool\n}\n\nvar (\n\t_pool = NewPool()\n\tGet   = _pool.Get\n)\n\n\nfunc main() {\n\tfmt.Println(Get())\n}\n\n// Error:\n// 17:11: undefined selector Get\n"
  },
  {
    "path": "_test/method4.go",
    "content": "package main\n\ntype Coord struct {\n\tx, y int\n}\n\nfunc (c Coord) dist() int { return c.x*c.x + c.y*c.y }\n\ntype Point struct {\n\tCoord\n\tz int\n}\n\ntype Tpoint struct {\n\tt int\n\tPoint\n}\n\nfunc main() {\n\to := Tpoint{0, Point{Coord{3, 4}, 5}}\n\tprintln(o.dist())\n}\n\n// Output:\n// 25\n"
  },
  {
    "path": "_test/method40.go",
    "content": "package main\n\nimport (\n\t\"bytes\"\n\t\"io\"\n)\n\ntype TMemoryBuffer struct {\n\t*bytes.Buffer\n\tsize int\n}\n\nfunc newTMemoryBuffer() *TMemoryBuffer {\n\treturn &TMemoryBuffer{}\n}\n\nvar globalMemoryBuffer = newTMemoryBuffer()\n\ntype TTransport interface {\n\tio.ReadWriter\n}\n\nfunc check(t TTransport) {\n\tprintln(\"ok\")\n}\n\nfunc main() {\n\tcheck(globalMemoryBuffer)\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/method5.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype Foo struct {\n}\n\nfunc (Foo) Show() {\n\tfmt.Println(\"Foo Showed\")\n}\n\nfunc (f Foo) Call() {\n\tfmt.Println(\"Foo Called\")\n\tf.Show()\n}\n\ntype Bar struct {\n\tFoo\n}\n\ntype Baz struct {\n\tFoo\n}\n\nfunc (Baz) Call() {\n\tfmt.Println(\"Baz Called\")\n}\n\nfunc (Baz) Show() {\n\tfmt.Println(\"Baz Showed\")\n}\n\nfunc main() {\n\tFoo{}.Call()\n\tBar{}.Call()\n\tBaz{}.Call()\n}\n\n// Output:\n// Foo Called\n// Foo Showed\n// Foo Called\n// Foo Showed\n// Baz Called\n"
  },
  {
    "path": "_test/method6.go",
    "content": "package main\n\ntype Sample struct {\n\tName string\n}\n\nfunc (s Sample) foo(i int) {\n\tprintln(\"in foo\", s.Name, i)\n}\n\nvar samples = []Sample{\n\tSample{\"hello\"},\n}\n\nfunc main() {\n\tsamples[0].foo(3)\n}\n\n// Output:\n// in foo hello 3\n"
  },
  {
    "path": "_test/method7.go",
    "content": "package main\n\ntype Sample struct {\n\tName string\n}\n\nfunc (s *Sample) foo(i int) {\n\tprintln(\"in foo\", s.Name, i)\n}\n\nvar samples = []Sample{\n\tSample{\"hello\"},\n}\n\nfunc main() {\n\tsamples[0].foo(3)\n}\n\n// Output:\n// in foo hello 3\n"
  },
  {
    "path": "_test/method8.go",
    "content": "package main\n\ntype Sample struct {\n\tName string\n\tFoo  []string\n}\n\nfunc (s *Sample) foo(j int) {\n\tfor i, v := range s.Foo {\n\t\tprintln(i, v)\n\t}\n}\n\nvar samples = []Sample{\n\tSample{\"hello\", []string{\"world\"}},\n}\n\nfunc main() {\n\tsamples[0].foo(3)\n}\n\n// Output:\n// 0 world\n"
  },
  {
    "path": "_test/method9.go",
    "content": "package main\n\ntype Coord struct {\n\tx, y int\n}\n\nfunc main() {\n\to := Coord{3, 4}\n\tprintln(o.dist())\n}\n\nfunc (c Coord) dist() int { return c.x*c.x + c.y*c.y }\n\n// Output:\n// 25\n"
  },
  {
    "path": "_test/named0.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype Root struct {\n\tName string\n}\n\nfunc (r *Root) Hello() {\n\tfmt.Println(\"Hello\", r.Name)\n}\n\ntype One = Root\n\nfunc main() {\n\tone := &One{Name: \"one\"}\n\tdisplayOne(one)\n\tdisplayRoot(one)\n\n\troot := &Root{Name: \"root\"}\n\tdisplayOne(root)\n\tdisplayRoot(root)\n}\n\nfunc displayOne(val *One) {\n\tfmt.Println(val)\n}\n\nfunc displayRoot(val *Root) {\n\tfmt.Println(val)\n}\n\n// Output:\n// &{one}\n// &{one}\n// &{root}\n// &{root}\n"
  },
  {
    "path": "_test/named1.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype MyT T\n\ntype T struct {\n\tName string\n}\n\nfunc main() {\n\tfmt.Println(MyT{})\n}\n\n// Output:\n// {}\n"
  },
  {
    "path": "_test/named2.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc (t MyT) Test() string {\n\treturn \"hello\"\n}\n\ntype MyT int\n\nfunc main() {\n\tt := MyT(1)\n\n\tfmt.Println(t.Test())\n}\n\n// Output:\n// hello\n"
  },
  {
    "path": "_test/named3/named3.go",
    "content": "package named3\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n)\n\ntype T struct {\n\tA string\n}\n\nfunc (t *T) Print() {\n\tprintln(t.A)\n}\n\ntype A http.Header\n\nfunc (a A) ForeachKey() error {\n\tfor k, vals := range a {\n\t\tfor _, v := range vals {\n\t\t\tfmt.Println(k, v)\n\t\t}\n\n\t}\n\n\treturn nil\n}\n\nfunc (a A) Set(k string, v []string) {\n\ta[k] = v\n}\n"
  },
  {
    "path": "_test/named3.go",
    "content": "package main\n\nimport \"github.com/traefik/yaegi/_test/named3\"\n\nvar globalT *T\n\nfunc init() {\n\tglobalT = &T{A: \"test\"}\n}\n\ntype T named3.T\n\nfunc (t *T) PrintT() {\n\t(*named3.T)(t).Print()\n}\n\nfunc main() {\n\tglobalT.PrintT()\n}\n\n// Output:\n// test\n"
  },
  {
    "path": "_test/named4.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n)\n\ntype A http.Header\n\nfunc (a A) Test1() {\n\tfmt.Println(\"test1\")\n}\n\ntype B A\n\nfunc (b B) Test2() {\n\tfmt.Println(\"test2\")\n}\n\nfunc (b B) Test3() {\n\tfor k, vals := range b {\n\t\tfor _, v := range vals {\n\t\t\tfmt.Println(k, v)\n\t\t}\n\t}\n}\n\nfunc main() {\n\tb := B{}\n\n\tb.Test2()\n\tb[\"test\"] = []string{\"a\", \"b\"}\n\tb.Test3()\n}\n\n// Output:\n// test2\n// test a\n// test b\n"
  },
  {
    "path": "_test/neg0.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := -1\n\tfmt.Println(a)\n}\n\n// Output:\n// -1\n"
  },
  {
    "path": "_test/new0.go",
    "content": "package main\n\nfunc main() {\n\ta := new(int)\n\t*a = 3\n\tprintln(*a)\n}\n\n// Output:\n// 3\n"
  },
  {
    "path": "_test/new1.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := [1]*int{}\n\ta[0] = new(int)\n\t*a[0] = 2\n\tfmt.Println(*a[0])\n}\n\n// Output:\n// 2\n"
  },
  {
    "path": "_test/new2.go",
    "content": "package main\n\nfunc f() interface{} {\n\treturn new(int)\n}\n\nfunc main() {\n\ta := f()\n\tprintln(*(a.(*int)))\n}\n\n// Output:\n// 0\n"
  },
  {
    "path": "_test/nil0.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc f() (host, port string, err error) {\n\treturn \"\", \"\", nil\n}\n\nfunc main() {\n\th, p, err := f()\n\tfmt.Println(h, p, err)\n}\n\n// Output:\n//   <nil>\n"
  },
  {
    "path": "_test/nil1.go",
    "content": "package main\n\nfunc main() {\n\tvar a error = nil\n\n\tif a == nil || a.Error() == \"nil\" {\n\t\tprintln(\"a is nil\")\n\t}\n}\n\n// Output:\n// a is nil\n"
  },
  {
    "path": "_test/nil2.go",
    "content": "package main\n\nfunc test() error { return nil }\n\nfunc main() {\n\tif err := test(); nil == err {\n\t\tprintln(\"err is nil\")\n\t}\n}\n\n// Output:\n// err is nil\n"
  },
  {
    "path": "_test/nil3.go",
    "content": "package main\n\ntype I interface {\n\tHello()\n}\n\ntype T struct {\n\th I\n}\n\nfunc (t *T) Hello() { println(\"Hello\") }\n\nfunc main() {\n\tt := &T{}\n\tprintln(t.h != nil)\n\tprintln(t.h == nil)\n\tt.h = t\n\tprintln(t.h != nil)\n\tprintln(t.h == nil)\n\tt.h.Hello()\n}\n\n// Output:\n// false\n// true\n// true\n// false\n// Hello\n"
  },
  {
    "path": "_test/not0.go",
    "content": "package main\n\nfunc main() {\n\ta := 0\n\tb := true\n\tc := false\n\tif b && c {\n\t\ta = 1\n\t} else {\n\t\ta = -1\n\t}\n\tprintln(a)\n}\n\n// Output:\n// -1\n"
  },
  {
    "path": "_test/not1.go",
    "content": "package main\n\nfunc main() {\n        a := 0\n        b := true\n        if (!b) {\n                a = 1\n        } else {\n                a = -1\n        }\n        println(a)\n}\n\n// Output:\n// -1\n"
  },
  {
    "path": "_test/not2.go",
    "content": "package main\n\nfunc main() {\n\tvar b interface{} = !(1 == 2)\n\tprintln(b.(bool))\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/num0.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tfmt.Printf(\"%g\\n\", 1.0)\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/op0.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar a, b, c uint16\n\ta = 64\n\tb = 64\n\tc = a * b\n\tfmt.Printf(\"c: %v %T\", c, c)\n}\n\n// Output:\n// c: 4096 uint16\n"
  },
  {
    "path": "_test/op1.go",
    "content": "package main\n\nfunc main() {\n\tvar a int = 3\n\ta += 1.3\n\tprintln(a)\n}\n\n// Error:\n// 5:2: invalid operation: mismatched types int and untyped float\n"
  },
  {
    "path": "_test/op10.go",
    "content": "package main\n\nfunc main() {\n\t_ = 1 + 1\n\tprintln(\"ok\")\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/op11.go",
    "content": "package main\n\nfunc main() {\n\ta, b := 1, 2\n\t_ = a + b\n\tprintln(\"ok\")\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/op2.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := 64\n\ta += 64\n\tfmt.Printf(\"a: %v %T\", a, a)\n\tfmt.Println()\n\n\tb := 64\n\tb -= 64\n\tfmt.Printf(\"b: %v %T\", b, b)\n\tfmt.Println()\n\n\tc := 64\n\tc *= 64\n\tfmt.Printf(\"c: %v %T\", c, c)\n\tfmt.Println()\n\n\td := 64\n\td /= 64\n\tfmt.Printf(\"d: %v %T\", d, d)\n\tfmt.Println()\n\n\te := 64\n\te %= 64\n\tfmt.Printf(\"e: %v %T\", e, e)\n\tfmt.Println()\n}\n\n// Output:\n// a: 128 int\n// b: 0 int\n// c: 4096 int\n// d: 1 int\n// e: 0 int\n"
  },
  {
    "path": "_test/op3.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := -1.2\n\tfmt.Printf(\"a: %v %T\\n\", a, a)\n\tb := -(2 + 1i)\n\tfmt.Printf(\"b: %v %T\\n\", b, b)\n}\n\n// Output:\n// a: -1.2 float64\n// b: (-2-1i) complex128\n"
  },
  {
    "path": "_test/op4.go",
    "content": "package main\n\nfunc main() {\n\ti := 102\n\tprintln(i % -1e2)\n}\n\n// Output:\n// 2\n"
  },
  {
    "path": "_test/op5.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ti := 100\n\tj := i % 1e2\n\tfmt.Printf(\"%T %v\\n\", j, j)\n}\n\n// Output:\n// int 0\n"
  },
  {
    "path": "_test/op6.go",
    "content": "package main\n\ntype T int\n\nfunc (t T) Error() string { return \"T: error\" }\n\nvar invalidT T\n\nfunc main() {\n\tvar err error\n\tif err != invalidT {\n\t\tprintln(\"ok\")\n\t}\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/op7.go",
    "content": "package main\n\ntype T int\n\nfunc (t T) Error() string { return \"T: error\" }\n\nvar invalidT T\n\nfunc main() {\n\tvar err error\n\tif err > invalidT {\n\t\tprintln(\"ok\")\n\t}\n}\n\n// Error:\n// _test/op7.go:11:5: invalid operation: operator > not defined on error\n"
  },
  {
    "path": "_test/op8.go",
    "content": "package main\n\ntype I interface {\n\tGet() interface{}\n}\n\ntype T struct{}\n\nfunc (T) Get() interface{} {\n\treturn nil\n}\n\nfunc main() {\n\tvar i I = T{}\n\tvar ei interface{}\n\n\tprintln(i != ei)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/op9.go",
    "content": "package main\n\nfunc main() {\n\tvar i complex128 = 1i\n\tvar f complex128 = 0.4i\n\n\tprint(i > f)\n}\n\n// Error:\n// _test/op9.go:7:8: invalid operation: operator > not defined on complex128\n"
  },
  {
    "path": "_test/opfloat32.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar a float32 = 64\n\ta += 64\n\tfmt.Printf(\"a: %v %T\", a, a)\n\tfmt.Println()\n\n\tvar b float32 = 64\n\tb -= 64\n\tfmt.Printf(\"b: %v %T\", b, b)\n\tfmt.Println()\n\n\tvar c float32 = 64\n\tc *= 64\n\tfmt.Printf(\"c: %v %T\", c, c)\n\tfmt.Println()\n\n\tvar d float32 = 64\n\td /= 64\n\tfmt.Printf(\"d: %v %T\", d, d)\n\tfmt.Println()\n\n\t// FIXME expect an error\n\t// var e float32 = 64\n\t// e %= 64\n\t// fmt.Printf(\"e: %v %T\", e, e)\n\t// fmt.Println()\n\n\tfmt.Println(a > b)\n\tfmt.Println(a >= b)\n\tfmt.Println(a < b)\n\tfmt.Println(a <= b)\n\tfmt.Println(b == d)\n}\n\n// Output:\n// a: 128 float32\n// b: 0 float32\n// c: 4096 float32\n// d: 1 float32\n// true\n// true\n// false\n// false\n// false\n"
  },
  {
    "path": "_test/opfloat64.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar a float64 = 64\n\ta += 64\n\tfmt.Printf(\"a: %v %T\", a, a)\n\tfmt.Println()\n\n\tvar b float64 = 64\n\tb -= 64\n\tfmt.Printf(\"b: %v %T\", b, b)\n\tfmt.Println()\n\n\tvar c float64 = 64\n\tc *= 64\n\tfmt.Printf(\"c: %v %T\", c, c)\n\tfmt.Println()\n\n\tvar d float64 = 64\n\td /= 64\n\tfmt.Printf(\"d: %v %T\", d, d)\n\tfmt.Println()\n\n\t// FIXME expect an error\n\t// var e float64 = 64\n\t// e %= 64\n\t// fmt.Printf(\"e: %v %T\", e, e)\n\t// fmt.Println()\n\n\tfmt.Println(a > b)\n\tfmt.Println(a >= b)\n\tfmt.Println(a < b)\n\tfmt.Println(a <= b)\n\tfmt.Println(b == d)\n}\n\n// Output:\n// a: 128 float64\n// b: 0 float64\n// c: 4096 float64\n// d: 1 float64\n// true\n// true\n// false\n// false\n// false\n"
  },
  {
    "path": "_test/opint16.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar a int16 = 64\n\ta += 64\n\tfmt.Printf(\"a: %v %T\", a, a)\n\tfmt.Println()\n\n\tvar b int16 = 64\n\tb -= 64\n\tfmt.Printf(\"b: %v %T\", b, b)\n\tfmt.Println()\n\n\tvar c int16 = 64\n\tc *= 64\n\tfmt.Printf(\"c: %v %T\", c, c)\n\tfmt.Println()\n\n\tvar d int16 = 64\n\td /= 64\n\tfmt.Printf(\"d: %v %T\", d, d)\n\tfmt.Println()\n\n\tvar e int16 = 64\n\te %= 64\n\tfmt.Printf(\"e: %v %T\", e, e)\n\tfmt.Println()\n\n\tfmt.Println(a > b)\n\tfmt.Println(a >= b)\n\tfmt.Println(a < b)\n\tfmt.Println(a <= b)\n\tfmt.Println(b == e)\n}\n\n// Output:\n// a: 128 int16\n// b: 0 int16\n// c: 4096 int16\n// d: 1 int16\n// e: 0 int16\n// true\n// true\n// false\n// false\n// true\n"
  },
  {
    "path": "_test/opint32.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar a int32 = 64\n\ta += 64\n\tfmt.Printf(\"a: %v %T\", a, a)\n\tfmt.Println()\n\n\tvar b int32 = 64\n\tb -= 64\n\tfmt.Printf(\"b: %v %T\", b, b)\n\tfmt.Println()\n\n\tvar c int32 = 64\n\tc *= 64\n\tfmt.Printf(\"c: %v %T\", c, c)\n\tfmt.Println()\n\n\tvar d int32 = 64\n\td /= 64\n\tfmt.Printf(\"d: %v %T\", d, d)\n\tfmt.Println()\n\n\tvar e int32 = 64\n\te %= 64\n\tfmt.Printf(\"e: %v %T\", e, e)\n\tfmt.Println()\n\n\tfmt.Println(a > b)\n\tfmt.Println(a >= b)\n\tfmt.Println(a < b)\n\tfmt.Println(a <= b)\n\tfmt.Println(b == e)\n}\n\n// Output:\n// a: 128 int32\n// b: 0 int32\n// c: 4096 int32\n// d: 1 int32\n// e: 0 int32\n// true\n// true\n// false\n// false\n// true\n"
  },
  {
    "path": "_test/opint64.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar a int64 = 64\n\ta += 64\n\tfmt.Printf(\"a: %v %T\", a, a)\n\tfmt.Println()\n\n\tvar b int64 = 64\n\tb -= 64\n\tfmt.Printf(\"b: %v %T\", b, b)\n\tfmt.Println()\n\n\tvar c int64 = 64\n\tc *= 64\n\tfmt.Printf(\"c: %v %T\", c, c)\n\tfmt.Println()\n\n\tvar d int64 = 64\n\td /= 64\n\tfmt.Printf(\"d: %v %T\", d, d)\n\tfmt.Println()\n\n\tvar e int64 = 64\n\te %= 64\n\tfmt.Printf(\"e: %v %T\", e, e)\n\tfmt.Println()\n\n\tfmt.Println(a > b)\n\tfmt.Println(a >= b)\n\tfmt.Println(a < b)\n\tfmt.Println(a <= b)\n\tfmt.Println(b == e)\n}\n\n// Output:\n// a: 128 int64\n// b: 0 int64\n// c: 4096 int64\n// d: 1 int64\n// e: 0 int64\n// true\n// true\n// false\n// false\n// true\n"
  },
  {
    "path": "_test/opint8.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar a int8 = 6\n\ta += 6\n\tfmt.Printf(\"a: %v %T\", a, a)\n\tfmt.Println()\n\n\tvar b int8 = 6\n\tb -= 6\n\tfmt.Printf(\"b: %v %T\", b, b)\n\tfmt.Println()\n\n\tvar c int8 = 6\n\tc *= 6\n\tfmt.Printf(\"c: %v %T\", c, c)\n\tfmt.Println()\n\n\tvar d int8 = 6\n\td /= 6\n\tfmt.Printf(\"d: %v %T\", d, d)\n\tfmt.Println()\n\n\tvar e int8 = 6\n\te %= 6\n\tfmt.Printf(\"e: %v %T\", e, e)\n\tfmt.Println()\n\n\tfmt.Println(a > b)\n\tfmt.Println(a >= b)\n\tfmt.Println(a < b)\n\tfmt.Println(a <= b)\n\tfmt.Println(b == e)\n}\n\n// Output:\n// a: 12 int8\n// b: 0 int8\n// c: 36 int8\n// d: 1 int8\n// e: 0 int8\n// true\n// true\n// false\n// false\n// true\n"
  },
  {
    "path": "_test/opstring.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := \"hhh\"\n\ta += \"fff\"\n\tfmt.Printf(\"a: %v %T\", a, a)\n\tfmt.Println()\n\n\t// b := \"hhh\"\n\t// b -= \"fff\" // FIXME expect an error\n\t// fmt.Printf(\"b: %v %T\", b, b)\n\t// fmt.Println()\n\t//\n\t// c := \"hhh\"\n\t// c *= \"fff\" // FIXME expect an error\n\t// fmt.Printf(\"c: %v %T\", c, c)\n\t// fmt.Println()\n\t//\n\t// d := \"hhh\"\n\t// d /= \"fff\" // FIXME expect an error\n\t// fmt.Printf(\"d: %v %T\", d, d)\n\t// fmt.Println()\n\t//\n\t// e := \"hhh\"\n\t// e %= \"fff\" // FIXME expect an error\n\t// fmt.Printf(\"e: %v %T\", e, e)\n\t// fmt.Println()\n\n\t// FIXME panic\n\t// fmt.Println(a > \"ggg\")\n\t// fmt.Println(a >= \"ggg\")\n\t// fmt.Println(a < \"ggg\")\n\t// fmt.Println(a <= \"ggg\")\n\t// fmt.Println(a == \"hhhfff\")\n}\n\n// Output:\n// a: hhhfff string\n"
  },
  {
    "path": "_test/opuint16.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar a uint16 = 64\n\ta += 64\n\tfmt.Printf(\"a: %v %T\", a, a)\n\tfmt.Println()\n\n\tvar b uint16 = 64\n\tb -= 64\n\tfmt.Printf(\"b: %v %T\", b, b)\n\tfmt.Println()\n\n\tvar c uint16 = 64\n\tc *= 64\n\tfmt.Printf(\"c: %v %T\", c, c)\n\tfmt.Println()\n\n\tvar d uint16 = 64\n\td /= 64\n\tfmt.Printf(\"d: %v %T\", d, d)\n\tfmt.Println()\n\n\tvar e uint16 = 64\n\te %= 64\n\tfmt.Printf(\"e: %v %T\", e, e)\n\tfmt.Println()\n\n\tfmt.Println(a > b)\n\tfmt.Println(a >= b)\n\tfmt.Println(a < b)\n\tfmt.Println(a <= b)\n\tfmt.Println(b == e)\n}\n\n// Output:\n// a: 128 uint16\n// b: 0 uint16\n// c: 4096 uint16\n// d: 1 uint16\n// e: 0 uint16\n// true\n// true\n// false\n// false\n// true\n"
  },
  {
    "path": "_test/opuint32.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar a uint32 = 64\n\ta += 64\n\tfmt.Printf(\"a: %v %T\", a, a)\n\tfmt.Println()\n\n\tvar b uint32 = 64\n\tb -= 64\n\tfmt.Printf(\"b: %v %T\", b, b)\n\tfmt.Println()\n\n\tvar c uint32 = 64\n\tc *= 64\n\tfmt.Printf(\"c: %v %T\", c, c)\n\tfmt.Println()\n\n\tvar d uint32 = 64\n\td /= 64\n\tfmt.Printf(\"d: %v %T\", d, d)\n\tfmt.Println()\n\n\tvar e uint32 = 64\n\te %= 64\n\tfmt.Printf(\"e: %v %T\", e, e)\n\tfmt.Println()\n\n\tfmt.Println(a > b)\n\tfmt.Println(a >= b)\n\tfmt.Println(a < b)\n\tfmt.Println(a <= b)\n\tfmt.Println(b == e)\n}\n\n// Output:\n// a: 128 uint32\n// b: 0 uint32\n// c: 4096 uint32\n// d: 1 uint32\n// e: 0 uint32\n// true\n// true\n// false\n// false\n// true\n"
  },
  {
    "path": "_test/opuint64.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar a uint64 = 64\n\ta += 64\n\tfmt.Printf(\"a: %v %T\", a, a)\n\tfmt.Println()\n\n\tvar b uint64 = 64\n\tb -= 64\n\tfmt.Printf(\"b: %v %T\", b, b)\n\tfmt.Println()\n\n\tvar c uint64 = 64\n\tc *= 64\n\tfmt.Printf(\"c: %v %T\", c, c)\n\tfmt.Println()\n\n\tvar d uint64 = 64\n\td /= 64\n\tfmt.Printf(\"d: %v %T\", d, d)\n\tfmt.Println()\n\n\tvar e uint64 = 64\n\te %= 64\n\tfmt.Printf(\"e: %v %T\", e, e)\n\tfmt.Println()\n\n\tfmt.Println(a > b)\n\tfmt.Println(a >= b)\n\tfmt.Println(a < b)\n\tfmt.Println(a <= b)\n\tfmt.Println(b == e)\n}\n\n// Output:\n// a: 128 uint64\n// b: 0 uint64\n// c: 4096 uint64\n// d: 1 uint64\n// e: 0 uint64\n// true\n// true\n// false\n// false\n// true\n"
  },
  {
    "path": "_test/opuint8.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar a uint8 = 6\n\ta += 6\n\tfmt.Printf(\"a: %v %T\", a, a)\n\tfmt.Println()\n\n\tvar b uint8 = 6\n\tb -= 6\n\tfmt.Printf(\"b: %v %T\", b, b)\n\tfmt.Println()\n\n\tvar c uint8 = 6\n\tc *= 6\n\tfmt.Printf(\"c: %v %T\", c, c)\n\tfmt.Println()\n\n\tvar d uint8 = 6\n\td /= 6\n\tfmt.Printf(\"d: %v %T\", d, d)\n\tfmt.Println()\n\n\tvar e uint8 = 6\n\te %= 6\n\tfmt.Printf(\"e: %v %T\", e, e)\n\tfmt.Println()\n\n\tfmt.Println(a > b)\n\tfmt.Println(a >= b)\n\tfmt.Println(a < b)\n\tfmt.Println(a <= b)\n\tfmt.Println(b == e)\n}\n\n// Output:\n// a: 12 uint8\n// b: 0 uint8\n// c: 36 uint8\n// d: 1 uint8\n// e: 0 uint8\n// true\n// true\n// false\n// false\n// true\n"
  },
  {
    "path": "_test/or0.go",
    "content": "package main\n\nfunc main() {\n\tc := false\n\tprintln(c || !c)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/or1.go",
    "content": "package main\n\nfunc main() {\n\tc := false\n\tprintln(!c || c)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/or2.go",
    "content": "package main\n\nvar a = false || true\n\nfunc main() {\n\tprintln(a)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/os0.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"os\"\n)\n\nfunc main() {\n\t_, err := os.ReadFile(\"__NotExisting__\")\n\tif err != nil {\n\t\tfmt.Println(err.Error())\n\t}\n}\n\n// Output:\n// open __NotExisting__: no such file or directory\n"
  },
  {
    "path": "_test/p1/s1.go",
    "content": "package p1\n\nimport \"crypto/rand\"\n\nvar Prime = rand.Prime\n"
  },
  {
    "path": "_test/p1/s2.go",
    "content": "package p1\n\nimport \"math/rand\"\n\nvar Uint32 = rand.Uint32\n\nfunc init() { rand.Seed(1) }\n"
  },
  {
    "path": "_test/p2/p2.go",
    "content": "package p2\n\ntype I interface {\n\tisI()\n}\n\ntype T struct{}\n\nfunc (t *T) isI() {}\n"
  },
  {
    "path": "_test/p3/empty",
    "content": ""
  },
  {
    "path": "_test/p4/p4.go",
    "content": "package p4\n\nvar Value1 = \"value1\"\n"
  },
  {
    "path": "_test/p5/p5.go",
    "content": "package p5\n\nimport \"github.com/traefik/yaegi/_test/p4\"\n\nvar (\n\tValue1 = &val1\n\tval1   = p4.Value1\n)\n"
  },
  {
    "path": "_test/p5.go",
    "content": "package main\n\nimport \"github.com/traefik/yaegi/_test/p5\"\n\nfunc main() {\n\tprintln(*p5.Value1)\n}\n\n// Output:\n// value1\n"
  },
  {
    "path": "_test/p6/p6.go",
    "content": "package p6\n\nimport (\n\t\"encoding/json\"\n\t\"net/netip\"\n)\n\ntype Slice[T any] struct {\n\tx []T\n}\n\ntype IPPrefixSlice struct {\n\tx Slice[netip.Prefix]\n}\n\nfunc (v Slice[T]) MarshalJSON() ([]byte, error) { return json.Marshal(v.x) }\n\n// MarshalJSON implements json.Marshaler.\nfunc (v IPPrefixSlice) MarshalJSON() ([]byte, error) {\n\treturn v.x.MarshalJSON()\n}\n"
  },
  {
    "path": "_test/p6.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/traefik/yaegi/_test/p6\"\n)\n\nfunc main() {\n\tt := p6.IPPrefixSlice{}\n\tfmt.Println(t)\n\tb, e := t.MarshalJSON()\n\tfmt.Println(string(b), e)\n}\n"
  },
  {
    "path": "_test/panic0.go",
    "content": "package main\n\nfunc main() {\n\tfoo()\n}\n\nfunc foo() {\n\tbar()\n}\n\nfunc bar() {\n\tbaz()\n}\n\nfunc baz() {\n\tpanic(\"stop!\")\n}\n\n// Error:\n// stop!\n"
  },
  {
    "path": "_test/pkgname0.go",
    "content": "package main\n\nimport (\n\t\"guthib.com/bar\" // pkg name is actually quux\n\tbaz \"guthib.com/baz\" // pkg name is also quux, force it to baz.\n)\n\nfunc main() {\n\tprintln(\"Hello\", quux.Quux())\n\tprintln(\"Hello\", baz.Quux())\n}\n\n// GOPATH:testdata/redeclaration-global7\n// Output:\n// Hello bar\n// Hello baz\n"
  },
  {
    "path": "_test/pkgname1.go",
    "content": "package main\n\nimport (\n\t\"guthib.com/bar\" // pkg name is actually quux\n)\n\nfunc main() {\n\tprintln(\"Hello\", bar.Quux()) // bar should not be a known symbol.\n}\n\n// GOPATH:testdata/redeclaration-global7\n// Error:\n// ../_test/pkgname1.go:8:19: undefined: bar\n"
  },
  {
    "path": "_test/pkgname2.go",
    "content": "package main\n\nimport (\n\t\"guthib.com/toto\" // pkg name is actually titi\n)\n\nfunc main() {\n\tprintln(\"Hello\", titi.Quux())\n}\n\n// GOPATH:testdata/redeclaration-global7\n// Output:\n// Hello bar\n"
  },
  {
    "path": "_test/primes.go",
    "content": "package main\n\nfunc Primes(n int) int {\n\tvar xs []int\n\tfor i := 2; len(xs) < n; i++ {\n\t\tok := true\n\t\tfor _, x := range xs {\n\t\t\tif i%x == 0 {\n\t\t\t\tok = false\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tif !ok {\n\t\t\tcontinue\n\t\t}\n\t\txs = append(xs, i)\n\t}\n\treturn xs[n-1]\n}\n\nfunc main() {\n\tprintln(Primes(3))\n}\n\n// Output:\n// 5\n"
  },
  {
    "path": "_test/print0.go",
    "content": "package main\n\nfunc main() {\n\tprint(\"hello\")\n}\n\n// Output:\n// hello\n"
  },
  {
    "path": "_test/ptr0.go",
    "content": "package main\n\ntype myint int\n\nfunc main() {\n\tvar a myint = 2\n\tvar b *myint = &a\n\tprintln(*b)\n}\n\n// Output:\n// 2\n"
  },
  {
    "path": "_test/ptr1.go",
    "content": "package main\n\nfunc main() {\n\tvar a int = 2\n\tb := &a\n\tprintln(*b)\n}\n\n// Output:\n// 2\n"
  },
  {
    "path": "_test/ptr2.go",
    "content": "package main\n\nfunc f(i *int) {\n\t*i = *i + 3\n}\n\nfunc main() {\n\tvar a int = 2\n\tf(&a)\n\tprintln(a)\n}\n\n// Output:\n// 5\n"
  },
  {
    "path": "_test/ptr3.go",
    "content": "package main\n\nfunc f(i *int) {\n\t*i++\n}\n\nfunc main() {\n\tvar a int = 2\n\tf(&a)\n\tprintln(a)\n}\n\n// Output:\n// 3\n"
  },
  {
    "path": "_test/ptr4.go",
    "content": "package main\n\ntype Foo struct {\n\tval int\n}\n\nfunc f(p *Foo) {\n\tp.val = p.val + 2\n}\n\nfunc main() {\n\tvar a = Foo{3}\n\tf(&a)\n\tprintln(a.val)\n}\n\n// Output:\n// 5\n"
  },
  {
    "path": "_test/ptr5.go",
    "content": "package main\n\ntype Foo struct {\n\tval int\n}\n\nfunc main() {\n\tvar a = &Foo{3}\n\tprintln(a.val)\n}\n\n// Output:\n// 3\n"
  },
  {
    "path": "_test/ptr5a.go",
    "content": "package main\n\ntype Foo struct {\n\tval int\n}\n\nfunc main() {\n\tvar a = Foo{3}\n\tb := &a\n\tprintln(b.val)\n}\n\n// Output:\n// 3\n"
  },
  {
    "path": "_test/ptr6.go",
    "content": "package main\n\ntype Foo struct {\n\tval int\n}\n\nfunc main() {\n\tvar a = Foo{3}\n\tb := &a\n\tprintln(b.val)\n}\n\n// Output:\n// 3\n"
  },
  {
    "path": "_test/ptr7.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net\"\n\t\"strings\"\n)\n\ntype ipNetValue net.IPNet\n\nfunc (ipnet *ipNetValue) Set(value string) error {\n\t_, n, err := net.ParseCIDR(strings.TrimSpace(value))\n\tif err != nil {\n\t\treturn err\n\t}\n\t*ipnet = ipNetValue(*n)\n\treturn nil\n}\n\nfunc main() {\n\tv := ipNetValue{}\n\tfmt.Println(v)\n}\n\n// Output:\n// {<nil> <nil>}\n"
  },
  {
    "path": "_test/ptr8.go",
    "content": "package main\n\nvar a = func() *bool { b := true; return &b }()\n\nfunc main() {\n\tprintln(*a && true)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/ptr_array0.go",
    "content": "package main\n\ntype T [2]int\n\nfunc F0(t *T) int { return t[0] }\n\nfunc main() {\n\tt := &T{1, 2}\n\tprintln(F0(t))\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/ptr_array1.go",
    "content": "package main\n\ntype T [3]int\n\nfunc F0(t *T) {\n\tfor i, v := range t {\n\t\tprintln(i, v)\n\t}\n}\n\nfunc main() {\n\tt := &T{1, 2, 3}\n\tF0(t)\n}\n\n// Output:\n// 0 1\n// 1 2\n// 2 3\n"
  },
  {
    "path": "_test/ptr_array2.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype T [2]int\n\nfunc F1(t *T) { t[0] = 1 }\n\nfunc main() {\n\tt := &T{}\n\tF1(t)\n\tfmt.Println(t)\n}\n\n// Output:\n// &[1 0]\n"
  },
  {
    "path": "_test/ptr_array3.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := &[...]int{1, 2, 3}\n\tfmt.Println(a[:])\n}\n\n// Output:\n// [1 2 3]\n"
  },
  {
    "path": "_test/range0.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tv := []int{1, 2, 3}\n\tfor i := range v {\n\t\tv = append(v, i)\n\t}\n\tfmt.Println(v)\n}\n\n// Output:\n// [1 2 3 0 1 2]\n"
  },
  {
    "path": "_test/range1.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := [...]int{2, 1, 0}\n\tfor _, v := range a {\n\t\ta[v] = v\n\t}\n\tfmt.Println(a)\n}\n\n// Output:\n// [0 1 2]\n"
  },
  {
    "path": "_test/range2.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := [...]int{2, 1, 0}\n\tfor _, v := range &a {\n\t\ta[v] = v\n\t}\n\tfmt.Println(a)\n}\n\n// Output:\n// [2 1 2]\n"
  },
  {
    "path": "_test/range3.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tm := map[int]bool{1: true, 3: true, 5: true}\n\tfor k := range m {\n\t\tm[k*2] = true\n\t}\n\tfmt.Println(\"ok\")\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/range4.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tm := map[int]bool{1: true, 3: true, 5: true}\n\tfor _, v := range m {\n\t\tfmt.Println(v)\n\t}\n}\n\n// Output:\n// true\n// true\n// true\n"
  },
  {
    "path": "_test/range5.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tm := map[int]bool{1: true, 3: true, 5: true}\n\tvar n int\n\tfor range m {\n\t\tn++\n\t}\n\tfmt.Println(n)\n}\n\n// Output:\n// 3\n"
  },
  {
    "path": "_test/range6.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"math\"\n)\n\nfunc main() {\n\tm := map[float64]bool{math.NaN(): true, math.NaN(): true, math.NaN(): true}\n\tfor _, v := range m {\n\t\tfmt.Println(v)\n\t}\n}\n\n// Output:\n// true\n// true\n// true\n"
  },
  {
    "path": "_test/range7.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\nfunc someChan() <-chan struct{} {\n\tc := make(chan struct{}, 1)\n\tc <- struct{}{}\n\treturn c\n}\n\nfunc main() {\n\tfor _ = range someChan() {\n\t\tfmt.Println(\"success\")\n\t\treturn\n\t}\n}\n\n// Output:\n// success"
  },
  {
    "path": "_test/range8.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\nfunc main() {\n\tfor _ = range time.Tick(time.Millisecond) {\n\t\tfmt.Println(\"success\")\n\t\treturn\n\t}\n}\n\n// Output:\n// success\n"
  },
  {
    "path": "_test/range9.go",
    "content": "package main\n\nfunc main() {\n\tvar c chan<- struct{} = make(chan struct{})\n\n\tfor _ = range c {\n\t}\n}\n\n// Error:\n// _test/range9.go:6:16: invalid operation: range c receive from send-only channel\n"
  },
  {
    "path": "_test/real0.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc f(c complex128) interface{} { return real(c) }\n\nfunc main() {\n\tc := complex(3, 2)\n\ta := f(c)\n\tfmt.Println(a.(float64))\n}\n\n// Output:\n// 3\n"
  },
  {
    "path": "_test/recover0.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tprintln(\"hello\")\n\tdefer func() {\n\t\tr := recover()\n\t\tfmt.Println(\"recover:\", r)\n\t}()\n\tprintln(\"world\")\n}\n\n// Output:\n// hello\n// world\n// recover: <nil>\n"
  },
  {
    "path": "_test/recover1.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tprintln(\"hello\")\n\tdefer func() {\n\t\tr := recover()\n\t\tfmt.Println(\"recover:\", r)\n\t}()\n\tpanic(\"test panic\")\n\tprintln(\"world\")\n}\n\n// Output:\n// hello\n// recover: test panic\n"
  },
  {
    "path": "_test/recover2.go",
    "content": "package main\n\nfunc main() {\n\tprintln(\"hello\")\n\n\tvar r interface{} = 1\n\tr = recover()\n\tif r == nil {\n\t\tprintln(\"world\")\n\t}\n}\n\n// Output:\n// hello\n// world\n"
  },
  {
    "path": "_test/recover3.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tprintln(\"hello\")\n\n\tvar r interface{} = 1\n\tr = recover()\n\tfmt.Printf(\"%v\\n\", r)\n\tif r == nil {\n\t\tprintln(\"world\")\n\t}\n\tif r != nil {\n\t\tprintln(\"exception\")\n\t}\n}\n\n// Output:\n// hello\n// <nil>\n// world\n"
  },
  {
    "path": "_test/recover4.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc div(a, b int) (result int) {\n\tdefer func() {\n\t\tr := recover()\n\n\t\tfmt.Printf(\"r = %#v\\n\", r)\n\n\t\tif r != nil {\n\t\t\tresult = 0\n\t\t}\n\t}()\n\n\treturn a / b\n}\n\nfunc main() {\n\tprintln(div(30, 2))\n}\n\n// Output:\n// r = <nil>\n// 15\n"
  },
  {
    "path": "_test/recurse0.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype T struct {\n\ta []T\n\tb []*T\n\tc map[string]T\n\td map[string]*T\n\te chan T\n\tf chan *T\n\th *T\n\ti func(T) T\n\tj func(*T) *T\n\tU\n}\n\ntype U struct {\n\tk []T\n\tl []*T\n\tm map[string]T\n\tn map[string]*T\n\to chan T\n\tp chan *T\n\tq *T\n\tr func(T) T\n\ts func(*T) *T\n}\n\nfunc main() {\n\tt := T{}\n\tu := U{}\n\tfmt.Println(t)\n\tfmt.Println(u)\n}\n\n// Output:\n// {[] [] map[] map[] <nil> <nil> <nil> <nil> <nil> {[] [] map[] map[] <nil> <nil> <nil> <nil> <nil>}}\n// {[] [] map[] map[] <nil> <nil> <nil> <nil> <nil>}\n"
  },
  {
    "path": "_test/recurse1.go",
    "content": "package main\n\ntype F func(a *A)\n\ntype A struct {\n\tName string\n\tF\n}\n\nfunc main() {\n\ta := &A{\"Test\", func(a *A) { println(\"in f\", a.Name) }}\n\ta.F(a)\n}\n\n// Output:\n// in f Test\n"
  },
  {
    "path": "_test/recurse2.go",
    "content": "package main\n\ntype F func(a *A)\n\ntype A struct {\n\tB string\n\tD\n\tf F\n}\n\ntype D struct {\n\t*A\n\tE *A\n}\n\nfunc f1(a *A) { println(\"in f1\", a.B) }\n\nfunc main() {\n\ta := &A{B: \"b\", f: f1}\n\ta.D = D{E: a}\n\tprintln(a.D.E.B)\n\ta.f(a)\n}\n\n// Output:\n// b\n// in f1 b\n"
  },
  {
    "path": "_test/recurse3.go",
    "content": "package main\n\ntype F func(a *A)\n\ntype A struct {\n\tB string\n\tD\n}\n\ntype D struct {\n\t*A\n\tE *A\n\tf F\n}\n\nfunc f1(a *A) { println(\"in f1\", a.B) }\n\nfunc main() {\n\ta := &A{B: \"b\"}\n\ta.D = D{f: f1}\n\ta.f(a)\n}\n\n// Output:\n// in f1 b\n"
  },
  {
    "path": "_test/redeclaration-global0.go",
    "content": "package main\n\ntype time int\n\nvar time string\n\nfunc main() {\n\ttime = \"hello\"\n\tprintln(time)\n}\n\n// Error:\n// ../_test/redeclaration-global0.go:5:5: time redeclared in this block\n//\tprevious declaration at ../_test/redeclaration-global0.go:3:6\n"
  },
  {
    "path": "_test/redeclaration-global1.go",
    "content": "package main\n\nvar time int\n\ntype time string\n\nfunc main() {\n\tvar t time = \"hello\"\n\tprintln(t)\n}\n\n// TODO: expected redeclaration error.\n"
  },
  {
    "path": "_test/redeclaration-global2.go",
    "content": "package main\n\nimport (\n\t\"time\"\n\t\"time\"\n)\n\nfunc main() {\n\tvar t time.Time\n\tprintln(t.String())\n}\n\n// Error:\n// ../_test/redeclaration-global2.go:5:2: time/redeclaration-global2.go redeclared in this block\n"
  },
  {
    "path": "_test/redeclaration-global3.go",
    "content": "package main\n\nimport (\n\t\"time\"\n)\n\nvar time string\n\nfunc main() {\n\ttime = \"hello\"\n\tprintln(t)\n}\n\n// Error:\n// ../_test/redeclaration-global3.go:7:5: time redeclared in this block\n"
  },
  {
    "path": "_test/redeclaration-global4.go",
    "content": "package main\n\nimport (\n\t\"time\"\n)\n\ntype time string\n\nfunc main() {\n\tvar t time = \"hello\"\n\tprintln(t)\n}\n\n// Error:\n// ../_test/redeclaration-global4.go:7:6: time redeclared in this block\n"
  },
  {
    "path": "_test/redeclaration-global5.go",
    "content": "package main\n\nvar time int\n\nfunc time() string {\n\treturn \"hello\"\n}\n\nfunc main() {\n\tt := time()\n\tprintln(t)\n}\n\n// Error:\n// ../_test/redeclaration-global5.go:5:6: time redeclared in this block\n//\tprevious declaration at ../_test/redeclaration-global5.go:3:5\n"
  },
  {
    "path": "_test/redeclaration-global6.go",
    "content": "package main\n\nimport (\n\t\"time\"\n)\n\nfunc time() string {\n\treturn \"hello\"\n}\n\nfunc main() {\n\tt := time()\n\tprintln(t)\n}\n\n// Error:\n// ../_test/redeclaration-global6.go:7:1: time redeclared in this block\n"
  },
  {
    "path": "_test/redeclaration-global7.go",
    "content": "package main\n\nimport (\n\t\"guthib.com/bar\" // pkg name is actually quux\n\t\"guthib.com/baz\" // pkg name is also quux\n)\n\nfunc main() {\n\tprintln(\"Hello\", quux.Quux())\n}\n\n// GOPATH:testdata/redeclaration-global7\n// Error:\n// ../_test/redeclaration-global7.go:5:2: quux/redeclaration-global7.go redeclared as imported package name\n"
  },
  {
    "path": "_test/redeclaration0.go",
    "content": "package main\n\nfunc main() {\n\ttype foo struct {\n\t\tyolo string\n\t}\n\n\tvar foo int\n\tfoo = 2\n\tprintln(foo)\n}\n\n// Error:\n// ../_test/redeclaration0.go:8:6: foo redeclared in this block\n//\tprevious declaration at ../_test/redeclaration0.go:4:7\n"
  },
  {
    "path": "_test/redeclaration1.go",
    "content": "package main\n\nfunc main() {\n\tvar foo string\n\n\tvar foo int\n\tfoo = 2\n\tprintln(foo)\n}\n\n// Error:\n// ../_test/redeclaration1.go:6:6: foo redeclared in this block\n"
  },
  {
    "path": "_test/redeclaration2.go",
    "content": "package main\n\nfunc main() {\n\tvar foo struct {\n\t\tyolo string\n\t}\n\n\tvar foo int\n\tfoo = 2\n\tprintln(foo)\n}\n\n// Error:\n// ../_test/redeclaration2.go:8:6: foo redeclared in this block\n//\tprevious declaration at ../_test/redeclaration2.go:4:6\n"
  },
  {
    "path": "_test/redeclaration3.go",
    "content": "package main\n\nfunc main() {\n\tvar foo int\n\tfoo = 2\n\n\ttype foo struct{}\n\tvar bar foo\n\tprintln(bar)\n}\n\n// Error:\n// ../_test/redeclaration3.go:7:7: foo redeclared in this block\n"
  },
  {
    "path": "_test/redeclaration4.go",
    "content": "package main\n\nfunc main() {\n\tvar foo struct{\n\t\tyolo string\n\t}\n\n\ttype foo struct{}\n\tvar bar foo\n\tprintln(bar)\n}\n\n// Error:\n// ../_test/redeclaration4.go:8:7: foo redeclared in this block\n"
  },
  {
    "path": "_test/redeclaration5.go",
    "content": "package main\n\nfunc main() {\n\ttype foo struct{\n\t\tyolo string\n\t}\n\n\ttype foo struct{}\n\tvar bar foo\n\tprintln(bar)\n}\n\n// Error:\n// ../_test/redeclaration5.go:8:7: foo redeclared in this block\n"
  },
  {
    "path": "_test/restricted0.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"log\"\n)\n\nfunc main() {\n\tdefer func() {\n\t\tr := recover()\n\t\tfmt.Println(\"recover:\", r)\n\t}()\n\tlog.Fatal(\"log.Fatal does not exit\")\n\tprintln(\"not printed\")\n}\n\n// Output:\n// recover: log.Fatal does not exit\n"
  },
  {
    "path": "_test/restricted1.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"os\"\n)\n\nfunc main() {\n\tdefer func() {\n\t\tr := recover()\n\t\tfmt.Println(\"recover:\", r)\n\t}()\n\tos.Exit(1)\n\tprintln(\"not printed\")\n}\n\n// Output:\n// recover: os.Exit(1)\n"
  },
  {
    "path": "_test/restricted2.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"os\"\n)\n\nfunc main() {\n\tp, err := os.FindProcess(os.Getpid())\n\tfmt.Println(p, err)\n}\n\n// Output:\n// <nil> restricted\n"
  },
  {
    "path": "_test/restricted3.go",
    "content": "package main\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"log\"\n)\n\nvar (\n\tbuf    bytes.Buffer\n\tlogger = log.New(&buf, \"logger: \", log.Lshortfile)\n)\n\nfunc main() {\n\tdefer func() {\n\t\tr := recover()\n\t\tfmt.Println(\"recover:\", r, buf.String())\n\t}()\n\tlogger.Fatal(\"test log\")\n}\n\n// Output:\n// recover: test log logger: restricted.go:39: test log\n"
  },
  {
    "path": "_test/ret1.go",
    "content": "package main\n\nfunc f(i int) (o int) { o = i + 1; return }\n\nfunc main() { println(f(4)) }\n\n// Output:\n// 5\n"
  },
  {
    "path": "_test/ret2.go",
    "content": "package main\n\nfunc r2() (int, int) { return 1, 2 }\n\nfunc main() {\n\ta, b := r2()\n\tprintln(a, b)\n}\n\n// Output:\n// 1 2\n"
  },
  {
    "path": "_test/ret3.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc r2() (int, int) { return 1, 2 }\n\nfunc main() {\n\tfmt.Println(r2())\n}\n\n// Output:\n// 1 2\n"
  },
  {
    "path": "_test/ret4.go",
    "content": "package main\n\nfunc r() int { return 1 }\n\nfunc main() {\n\ta := r()\n\tprintln(a)\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/ret5.go",
    "content": "package main\n\nfunc r2() (int, int) { return 1, 2 }\n\nvar a, b int = r2()\n\nfunc main() { println(a, b) }\n\n// Output:\n// 1 2\n"
  },
  {
    "path": "_test/ret6.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype Foo struct{}\n\nfunc foo() *Foo { return nil }\n\nfunc main() {\n\tf := foo()\n\tfmt.Println(f)\n}\n\n// Output:\n// <nil>\n"
  },
  {
    "path": "_test/ret7.go",
    "content": "package main\n\nfunc one() uint {\n\treturn 1\n}\nfunc main() {\n\tprintln(one())\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/ret8.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype CustomError string\n\nfunc (s CustomError) Error() string {\n\treturn string(s)\n}\n\nfunc NewCustomError(errorText string) CustomError {\n\treturn CustomError(errorText)\n}\n\nfunc fail() (err error) {\n\treturn NewCustomError(\"Everything is going wrong!\")\n}\n\nfunc main() {\n\tfmt.Println(fail())\n\tvar myError error\n\tmyError = NewCustomError(\"ok\")\n\tfmt.Println(myError)\n}\n\n// Output:\n// Everything is going wrong!\n// ok\n"
  },
  {
    "path": "_test/run0.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc f() (int, int) { return 2, 3 }\n\nfunc main() {\n\tfmt.Println(f())\n}\n\n// Output:\n// 2 3\n"
  },
  {
    "path": "_test/run1.go",
    "content": "package main\n\nfunc f() (int, int) { return 2, 3 }\n\nfunc g(i, j int) int { return i + j }\n\nfunc main() {\n\tprintln(g(f()))\n}\n\n// Output:\n// 5\n"
  },
  {
    "path": "_test/run10.go",
    "content": "package main\n\nfunc main() {\n\tfunc() { println(\"hello\") }()\n}\n\n// Output:\n// hello\n"
  },
  {
    "path": "_test/run11.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tfmt.Println(f())\n}\n\nfunc f() (int, int) { return 2, 3 }\n\n// Output:\n// 2 3\n"
  },
  {
    "path": "_test/run12.go",
    "content": "package main\n\nfunc f(a int) (int, int) {\n\treturn a + 1, a + 2\n}\n\nfunc main() {\n\ta, b := f(3)\n\tprintln(a, b)\n}\n\n// Output:\n// 4 5\n"
  },
  {
    "path": "_test/run13.go",
    "content": "package main\n\nfunc main() {\n\ta, b := f(3)\n\tprintln(a, b)\n}\n\nfunc f(a int) (int, int) {\n\treturn a + 1, a + 2\n}\n\n// Output:\n// 4 5\n"
  },
  {
    "path": "_test/run4.go",
    "content": "package main\n\ntype fn func(int)\n\nfunc f1(i int) { println(\"f1\", i) }\n\nfunc test(f fn, v int) { f(v) }\n\nfunc main() { test(f1, 21) }\n\n// Output:\n// f1 21\n"
  },
  {
    "path": "_test/run5.go",
    "content": "package main\n\ntype fn func(int)\n\nfunc test(f fn, v int) { f(v) }\n\nfunc main() {\n\tf1 := func(i int) { println(\"f1\", i) }\n\ttest(f1, 21)\n}\n\n// Output:\n// f1 21\n"
  },
  {
    "path": "_test/run6.go",
    "content": "package main\n\ntype fn func(int)\n\nfunc test(f fn, v int) { f(v) }\n\nfunc main() {\n\ttest(func(i int) { println(\"f1\", i) }, 21)\n}\n\n// Output:\n// f1 21\n"
  },
  {
    "path": "_test/run7.go",
    "content": "package main\n\ntype fn func(int)\n\nfunc test(f fn, v int) { f(v) }\n\nfunc main() {\n\ta := 3\n\ttest(func(i int) { println(\"f1\", i, a) }, 21)\n}\n\n// Output:\n// f1 21 3\n"
  },
  {
    "path": "_test/run8.go",
    "content": "package main\n\nfunc main() {\n\ta := 3\n\tf := func(i int) { println(\"f1\", i, a) }\n\tf(21)\n}\n\n// Output:\n// f1 21 3\n"
  },
  {
    "path": "_test/run9.go",
    "content": "package main\n\nfunc main() {\n\ta := 3\n\tf := func(i int) int { println(\"f1\", i, a); return i + 1 }\n\tb := f(21)\n\tprintln(b)\n}\n\n// Output:\n// f1 21 3\n// 22\n"
  },
  {
    "path": "_test/rune0.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := 'r'\n\ta += 'g'\n\tfmt.Printf(\"a: %v %T\", a, a)\n\tfmt.Println()\n\n\tb := 'r'\n\tb -= 'g'\n\tfmt.Printf(\"b: %v %T\", b, b)\n\tfmt.Println()\n\n\tc := 'r'\n\tc *= 'g'\n\tfmt.Printf(\"c: %v %T\", c, c)\n\tfmt.Println()\n\n\td := 'r'\n\td /= 'g'\n\tfmt.Printf(\"d: %v %T\", d, d)\n\tfmt.Println()\n\n\te := 'r'\n\te %= 'g'\n\tfmt.Printf(\"e: %v %T\", e, e)\n\tfmt.Println()\n\n\tfmt.Println(a > b)\n\tfmt.Println(a >= b)\n\tfmt.Println(a < b)\n\tfmt.Println(a <= b)\n\tfmt.Println(b == d)\n}\n\n// Output:\n// a: 217 int32\n// b: 11 int32\n// c: 11742 int32\n// d: 1 int32\n// e: 11 int32\n// true\n// true\n// false\n// false\n// false\n"
  },
  {
    "path": "_test/rune1.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tt := make([]byte, 2)\n\tt[0] = '$'\n\tfmt.Println(t)\n}\n\n// Output:\n// [36 0]\n"
  },
  {
    "path": "_test/rune2.go",
    "content": "package main\n\nimport \"fmt\"\n\nconst majorVersion = '2'\n\ntype hashed struct {\n\tmajor byte\n}\n\nfunc main() {\n\tfmt.Println(majorVersion)\n\n\tp := new(hashed)\n\tp.major = majorVersion\n\n\tfmt.Println(p)\n}\n\n// Output:\n// 50\n// &{50}\n"
  },
  {
    "path": "_test/sample.plugin",
    "content": "package sample\n  \nimport (\n\t\"fmt\"\n\t\"net/http\"\n)\n\ntype Sample struct{}\n\nfunc (s *Sample) ServeHTTP(w http.ResponseWriter, r *http.Request, next http.HandlerFunc) {\n\tr.Header.Set(\"X-sample-test\", \"Hello\")\n\tif next != nil {\n\t\tnext(w, r)\n\t}\t\t\n}\n\nfunc Test() {\n        fmt.Println(\"Hello from toto.Test()\")\n}\n"
  },
  {
    "path": "_test/scope0.go",
    "content": "package main\n\nvar a int = 1\n\nfunc main() {\n\tprintln(a)\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/scope1.go",
    "content": "package main\n\nfunc f(a int) int {\n\treturn 2*a + 1\n}\n\nvar b int = f(3)\n\nfunc main() {\n\tprintln(b)\n}\n\n// Output:\n// 7\n"
  },
  {
    "path": "_test/scope2.go",
    "content": "package main\n\nvar a int = 1\n\nfunc f() { println(a) }\n\nfunc main() {\n\tprintln(a)\n\ta := 2\n\tprintln(a)\n\tf()\n}\n\n// Output:\n// 1\n// 2\n// 1\n"
  },
  {
    "path": "_test/scope3.go",
    "content": "package main\n\nfunc main() {\n\ta := 1\n\tif a := 2; a > 0 {\n\t\tprintln(a)\n\t}\n\tprintln(a)\n}\n\n// Output:\n// 2\n// 1\n"
  },
  {
    "path": "_test/scope4.go",
    "content": "package main\n\nfunc main() {\n\ta := 1\n\tif a := 2; a > 0 {\n\t\tprintln(a)\n\t}\n\t{\n\t\ta := 3\n\t\tprintln(a)\n\t}\n\tprintln(a)\n}\n\n// Output:\n// 2\n// 3\n// 1\n"
  },
  {
    "path": "_test/scope5.go",
    "content": "package main\n\nvar a int = 1\n\nfunc f() { println(a) }\n\nfunc main() {\n\tprintln(a)\n\ta = 2\n\tprintln(a)\n\tf()\n}\n\n// Output:\n// 1\n// 2\n// 2\n"
  },
  {
    "path": "_test/scope6.go",
    "content": "package main\n\nimport \"fmt\"\n\nvar a = [3]int{1, 2, 3}\n\nfunc f() { fmt.Println(a) }\n\nfunc main() {\n\tfmt.Println(a)\n\ta[1] = 5\n\tf()\n}\n\n// Output:\n// [1 2 3]\n// [1 5 3]\n"
  },
  {
    "path": "_test/scope7.go",
    "content": "package main\n\nimport \"fmt\"\n\nvar a = []int{1, 2, 3}\n\nfunc f() { fmt.Println(a) }\n\nfunc main() {\n\tfmt.Println(a)\n\ta = []int{6, 7}\n\tf()\n}\n\n// Output:\n// [1 2 3]\n// [6 7]\n"
  },
  {
    "path": "_test/secure.gi",
    "content": "package main\n\nimport (\n\t\"net/http\"\n\n\t\"github.com/unrolled/secure\" // or \"gopkg.in/unrolled/secure.v1\"\n)\n\nvar myHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {\n\tw.Write([]byte(\"hello world\"))\n})\n\nfunc main() {\n\tsecureMiddleware := secure.New(secure.Options{\n\t\tAllowedHosts:          []string{\"example.com\", \"ssl.example.com\"},\n\t\tHostsProxyHeaders:     []string{\"X-Forwarded-Host\"},\n\t\tSSLRedirect:           true,\n\t\tSSLHost:               \"ssl.example.com\",\n\t\tSSLProxyHeaders:       map[string]string{\"X-Forwarded-Proto\": \"https\"},\n\t\tSTSSeconds:            315360000,\n\t\tSTSIncludeSubdomains:  true,\n\t\tSTSPreload:            true,\n\t\tFrameDeny:             true,\n\t\tContentTypeNosniff:    true,\n\t\tBrowserXssFilter:      true,\n\t\tContentSecurityPolicy: \"script-src $NONCE\",\n\t\tPublicKey:             `pin-sha256=\"base64+primary==\"; pin-sha256=\"base64+backup==\"; max-age=5184000; includeSubdomains; report-uri=\"https://www.example.com/hpkp-report\"`,\n\t\tIsDevelopment: false,\n\t})\n\n\tapp := secureMiddleware.Handler(myHandler)\n\thttp.ListenAndServe(\"127.0.0.1:3000\", app)\n}\n"
  },
  {
    "path": "_test/select.go",
    "content": "package main\n\nimport \"time\"\nimport \"fmt\"\n\nfunc main() {\n\tc1 := make(chan string)\n\tc2 := make(chan string)\n\n\tgo func() {\n\t\ttime.Sleep(1e9)\n\t\tc1 <- \"one\"\n\t}()\n\tgo func() {\n\t\ttime.Sleep(2e9)\n\t\tc2 <- \"two\"\n\t}()\n\n\tfor i := 0; i < 2; i++ {\n\t\tfmt.Println(\"start for\")\n\t\tselect {\n\t\tcase msg1 := <-c1:\n\t\t\tfmt.Println(\"received\", msg1)\n\t\t\tfmt.Println(\"finish 1\")\n\t\tcase msg2 := <-c2:\n\t\t\tfmt.Println(\"received #2\", msg2)\n\t\t}\n\t\tfmt.Println(\"end for\")\n\t}\n\tfmt.Println(\"Bye\")\n}\n"
  },
  {
    "path": "_test/select0.go",
    "content": "package main\n\nimport \"time\"\n\nfunc forever() {\n\tselect {} // block forever\n\tprintln(\"end\")\n}\n\nfunc main() {\n\tgo forever()\n\ttime.Sleep(1e4)\n\tprintln(\"bye\")\n}\n\n// Output:\n// bye\n"
  },
  {
    "path": "_test/select1.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\nfunc main() {\n\tc1 := make(chan string)\n\tc2 := make(chan string)\n\n\tgo func() {\n\t\ttime.Sleep(1e8)\n\t\tc1 <- \"one\"\n\t}()\n\tgo func() {\n\t\ttime.Sleep(2e8)\n\t\tc2 <- \"two\"\n\t}()\n\n\tfor i := 0; i < 2; i++ {\n\t\tfmt.Println(\"start for\")\n\t\tselect {\n\t\tcase msg1 := <-c1:\n\t\t\tfmt.Println(\"received\", msg1)\n\t\t\tfmt.Println(\"finish 1\")\n\t\tcase msg2, ok := <-c2:\n\t\t\tfmt.Println(\"received #2\", msg2, ok)\n\t\t}\n\t\tfmt.Println(\"end for\")\n\t}\n\tfmt.Println(\"Bye\")\n}\n\n// Output:\n// start for\n// received one\n// finish 1\n// end for\n// start for\n// received #2 two true\n// end for\n// Bye\n"
  },
  {
    "path": "_test/select10.go",
    "content": "package main\n\nfunc main() {\n\tc := make(chan string)\n\tselect {\n\tcase <-c:\n\t\tprintln(\"unexpected\")\n\tdefault:\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// bye\n"
  },
  {
    "path": "_test/select11.go",
    "content": "package main\n\nfunc main() {\n\tc := make(chan string)\n\tselect {\n\tcase <-c:\n\t\tprintln(\"unexpected\")\n\tdefault:\n\t\tprintln(\"nothing received\")\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// nothing received\n// bye\n"
  },
  {
    "path": "_test/select12.go",
    "content": "package main\n\ntype S struct {\n\tq chan struct{}\n}\n\nfunc (s *S) Send() {\n\tselect {\n\tcase s.q <- struct{}{}:\n\t\tprintln(\"sent\")\n\tdefault:\n\t\tprintln(\"unexpected\")\n\t}\n}\nfunc main() {\n\ts := &S{q: make(chan struct{}, 1)}\n\ts.Send()\n\tprintln(\"bye\")\n}\n\n// Output:\n// sent\n// bye\n"
  },
  {
    "path": "_test/select13.go",
    "content": "package main\n\nfunc main() {\n\tvar c interface{} = int64(1)\n\tq := make(chan struct{})\n\tselect {\n\tcase q <- struct{}{}:\n\t\tprintln(\"unexpected\")\n\tdefault:\n\t\t_ = c.(int64)\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// bye\n"
  },
  {
    "path": "_test/select14.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\nconst (\n\tperiod    = 300 * time.Millisecond\n\tprecision = 30 * time.Millisecond\n)\n\nfunc main() {\n\tcounter := 0\n\tp := time.Now()\n\tticker := time.NewTicker(period)\n\tch := make(chan int)\n\n\tgo func() {\n\t\tfor i := 0; i < 3; i++ {\n\t\t\tselect {\n\t\t\tcase t := <-ticker.C:\n\t\t\t\tcounter = counter + 1\n\t\t\t\tch <- counter\n\t\t\t\tif d := t.Sub(p) - period; d < -precision || d > precision {\n\t\t\t\t\tfmt.Println(\"wrong delay\", d)\n\t\t\t\t}\n\t\t\t\tp = t\n\t\t\t}\n\t\t}\n\t\tch <- 0\n\t}()\n\tfor c := range ch {\n\t\tif c == 0 {\n\t\t\tbreak\n\t\t}\n\t\tprintln(c)\n\t}\n}\n\n// Output:\n// 1\n// 2\n// 3\n"
  },
  {
    "path": "_test/select15.go",
    "content": "package main\n\ntype T struct {\n\tc1 chan string\n\tc2 chan string\n}\n\nfunc main() {\n\tt := &T{}\n\tt.c2 = make(chan string)\n\n\tgo func(c chan string) { c <- \"done\" }(t.c2)\n\n\tselect {\n\tcase msg := <-t.c1:\n\t\tprintln(\"received from c1:\", msg)\n\tcase <-t.c2:\n\t}\n\tprintln(\"Bye\")\n}\n\n// Output:\n// Bye\n"
  },
  {
    "path": "_test/select2.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\nfunc main() {\n\tc1 := make(chan string)\n\tc2 := make(chan string)\n\ta := 0\n\n\tgo func() {\n\t\ttoSend := \"hello\"\n\t\tselect {\n\t\tcase c2 <- toSend:\n\t\t\ta++\n\t\t}\n\t\tc1 <- \"done\"\n\t}()\n\n\tfor i := 0; i < 2; i++ {\n\t\tselect {\n\t\tcase msg1 := <-c1:\n\t\t\tfmt.Println(\"received from c1:\", msg1)\n\t\tcase msg2 := <-c2:\n\t\t\tfmt.Println(\"received from c2:\", msg2)\n\t\t}\n\t}\n\tfmt.Println(\"Bye\", a)\n}\n\n// Output:\n// received from c2: hello\n// received from c1: done\n// Bye 1\n"
  },
  {
    "path": "_test/select3.go",
    "content": "package main\n\nfunc main() {\n\tselect {\n\tdefault:\n\t\tprintln(\"no comm\")\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// no comm\n// bye\n"
  },
  {
    "path": "_test/select4.go",
    "content": "package main\n\nfunc main() {\n\tc1 := make(chan string)\n\n\tgo func() { c1 <- \"done\" }()\n\n\tselect {\n\tcase msg1 := <-c1:\n\t\tprintln(\"received from c1:\", msg1)\n\t}\n\tprintln(\"Bye\")\n}\n\n// Output:\n// received from c1: done\n// Bye\n"
  },
  {
    "path": "_test/select5.go",
    "content": "package main\n\ntype T struct {\n\tc1 chan string\n}\n\nfunc main() {\n\tt := &T{}\n\tt.c1 = make(chan string)\n\n\tgo func(c chan string) { c <- \"done\" }(t.c1)\n\n\tselect {\n\tcase msg1 := <-t.c1:\n\t\tprintln(\"received from c1:\", msg1)\n\t}\n\tprintln(\"Bye\")\n}\n\n// Output:\n// received from c1: done\n// Bye\n"
  },
  {
    "path": "_test/select6.go",
    "content": "package main\n\ntype T struct {\n\tc1 chan string\n}\n\nfunc main() {\n\tt := &T{}\n\tt.c1 = make(chan string)\n\n\tgo func(c chan string) { c <- \"done\" }(t.c1)\n\n\tselect {\n\tcase <-t.c1:\n\t\tprintln(\"received from c1\")\n\t}\n\tprintln(\"Bye\")\n}\n\n// Output:\n// received from c1\n// Bye\n"
  },
  {
    "path": "_test/select7.go",
    "content": "package main\n\ntype T struct {\n\tc1 chan string\n}\n\nfunc main() {\n\tt := &T{}\n\tt.c1 = make(chan string)\n\ta := 0\n\n\tgo func() {\n\t\tselect {\n\t\tcase t.c1 <- \"done\":\n\t\t\ta++\n\t\t}\n\t}()\n\n\tmsg1 := <-t.c1\n\tprintln(\"received from c1:\", msg1)\n}\n\n// Output:\n// received from c1: done\n"
  },
  {
    "path": "_test/select8.go",
    "content": "package main\n\ntype T struct {\n\tc1 chan string\n\tc2 chan string\n}\n\nfunc main() {\n\tt := &T{}\n\tt.c1 = make(chan string)\n\n\tgo func(c chan string) { c <- \"done\" }(t.c1)\n\n\tselect {\n\tcase msg := <-t.c1:\n\t\tprintln(\"received from c1:\", msg)\n\tcase <-t.c2:\n\t}\n\tprintln(\"Bye\")\n}\n\n// Output:\n// received from c1: done\n// Bye\n"
  },
  {
    "path": "_test/select9.go",
    "content": "package main\n\ntype T struct {\n\tc1 chan string\n}\n\nfunc main() {\n\tt := &T{}\n\tt.c1 = make(chan string)\n\n\tgo func() {\n\t\tselect {\n\t\tcase t.c1 <- \"done\":\n\t\t}\n\t}()\n\n\tmsg1 := <-t.c1\n\tprintln(\"received from c1:\", msg1)\n}\n\n// Output:\n// received from c1: done\n"
  },
  {
    "path": "_test/selector-scope0.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\nfunc test(time string, t time.Time) string {\n\treturn time\n}\n\nvar zero = time.Time{}\n\nfunc test2(time string) time.Time {\n\treturn zero\n}\n\nfunc main() {\n\tstr := test(\"test\", time.Now())\n\tfmt.Println(str)\n\n\tstr2 := test2(\"test2\")\n\tfmt.Println(str2)\n}\n\n// Output:\n// test\n// 0001-01-01 00:00:00 +0000 UTC\n"
  },
  {
    "path": "_test/server.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n)\n\nvar v string = \"v1.0\"\n\nfunc main() {\n\ta := \"hello \"\n\thttp.HandleFunc(\"/\", func(w http.ResponseWriter, r *http.Request) {\n\t\tfmt.Fprint(w, \"Welcome to my website! \", a, v)\n\t})\n\n\thttp.ListenAndServe(\":8080\", nil)\n}\n"
  },
  {
    "path": "_test/server0.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n)\n\nvar v string = \"v1.0\"\n\nfunc myHandler(w http.ResponseWriter, r *http.Request) {\n\tfmt.Fprintln(w, \"Welcome to my website!\")\n}\n\nfunc main() {\n\thttp.HandleFunc(\"/\", myHandler)\n\thttp.ListenAndServe(\":8080\", nil)\n}\n"
  },
  {
    "path": "_test/server1.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n)\n\nvar version string = \"1.0\"\n\ntype Middleware struct {\n\tName string\n}\n\nfunc (m *Middleware) Handler(w http.ResponseWriter, r *http.Request) {\n\tfmt.Fprintln(w, \"Welcome to my website\", m.Name, version)\n}\n\nfunc main() {\n\tm := &Middleware{\"Test\"}\n\thttp.HandleFunc(\"/\", m.Handler)\n\thttp.ListenAndServe(\":8080\", nil)\n}\n"
  },
  {
    "path": "_test/server1a.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"log\"\n\t\"net/http\"\n)\n\nvar v string = \"v1.0\"\n\ntype Middleware struct {\n\tName string\n}\n\nfunc (m *Middleware) Handler(w http.ResponseWriter, r *http.Request) {\n\tlog.Println(r.Header.Get(\"User-Agent\"))\n\tw.Header().Set(\"test\", \"ok\")\n\tlog.Println(w.Header())\n\tfmt.Fprintln(w, \"Welcome to my website\", m.Name)\n}\n\nfunc main() {\n\tm := &Middleware{\"Test\"}\n\thttp.HandleFunc(\"/\", m.Handler)\n\thttp.ListenAndServe(\":8080\", nil)\n}\n"
  },
  {
    "path": "_test/server2.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n)\n\nvar v string = \"v1.0\"\n\nfunc main() {\n\n\tmyHandler := func(w http.ResponseWriter, r *http.Request) {\n\t\tfmt.Fprintln(w, \"Welcome to my website!\")\n\t}\n\n\thttp.HandleFunc(\"/\", myHandler)\n\thttp.ListenAndServe(\":8080\", nil)\n}\n"
  },
  {
    "path": "_test/server3.go",
    "content": "package main\n\nimport (\n\t\"net/http\"\n)\n\nvar myHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { w.Write([]byte(\"hello world\")) })\n\nfunc main() {\n\thttp.HandleFunc(\"/\", myHandler)\n\thttp.ListenAndServe(\":8080\", nil)\n}\n"
  },
  {
    "path": "_test/server4.go",
    "content": "package main\n\nimport (\n\t\"net/http\"\n)\n\nfunc main() {\n\thttp.HandleFunc(\"/\", func(w http.ResponseWriter, r *http.Request) {\n\t\tw.Write([]byte(\"Welcome to my website!\"))\n\t})\n\n\thttp.ListenAndServe(\":8080\", nil)\n}\n"
  },
  {
    "path": "_test/server5.go",
    "content": "package main\n\nimport (\n\t\"net/http\"\n)\n\nvar myHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {\n\tw.Write([]byte(\"hello world\"))\n})\n\nfunc main() {\n\thttp.ListenAndServe(\":8080\", myHandler)\n}\n"
  },
  {
    "path": "_test/server6.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n)\n\nvar myHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {\n\tw.Write([]byte(\"hello world\"))\n})\n\ntype T1 struct {\n\tName string\n}\n\nfunc (t *T1) Handler(h http.Handler) http.Handler {\n\tfmt.Println(\"#1\", t.Name)\n\treturn http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {\n\t\tfmt.Println(\"#2\", t.Name)\n\t\th.ServeHTTP(w, r)\n\t})\n}\n\nfunc main() {\n\tt := &T1{\"myName\"}\n\thandler := t.Handler(myHandler)\n\thttp.ListenAndServe(\":8080\", handler)\n}\n"
  },
  {
    "path": "_test/server7.go",
    "content": "package main\n\nimport (\n\t\"net/http\"\n)\n\nfunc main() {\n\thttp.DefaultServeMux.HandleFunc(\"/hello\", func(w http.ResponseWriter, r *http.Request) {})\n\thttp.DefaultServeMux = &http.ServeMux{}\n\thttp.DefaultServeMux.HandleFunc(\"/hello\", func(w http.ResponseWriter, r *http.Request) {})\n\thttp.DefaultServeMux = &http.ServeMux{}\n}\n"
  },
  {
    "path": "_test/shift0.go",
    "content": "package main\n\nfunc main() {\n\tvar rounds uint64\n\tvar cost uint32 = 2\n\trounds = 1 << cost\n\tprintln(rounds)\n}\n\n// Output:\n// 4\n"
  },
  {
    "path": "_test/shift1.go",
    "content": "package main\n\nimport \"fmt\"\n\nconst a1 = 0x7f8 >> 3\n\nfunc main() {\n\tfmt.Printf(\"%T %v\\n\", a1, a1)\n}\n\n// Output:\n// int 255\n"
  },
  {
    "path": "_test/shift2.go",
    "content": "package main\n\nfunc main() {\n\tvar u uint64\n\tvar v uint32\n\tprintln(u << v)\n}\n\n// Output:\n// 0\n"
  },
  {
    "path": "_test/shift3.go",
    "content": "package main\n\nconst a = 1.0\n\nconst b = a + 3\n\nfunc main() { println(b << (1)) }\n\n// Output:\n// 8\n"
  },
  {
    "path": "_test/sieve.go",
    "content": "// A concurrent prime sieve\n\npackage main\n\n// Send the sequence 2, 3, 4, ... to channel 'ch'.\nfunc Generate(ch chan<- int) {\n\tfor i := 2; ; i++ {\n\t\tch <- i // Send 'i' to channel 'ch'.\n\t}\n}\n\n// Copy the values from channel 'in' to channel 'out',\n// removing those divisible by 'prime'.\nfunc Filter(in <-chan int, out chan<- int, prime int) {\n\tfor {\n\t\ti := <-in // Receive value from 'in'.\n\t\tif i%prime != 0 {\n\t\t\tout <- i // Send 'i' to 'out'.\n\t\t}\n\t}\n}\n\n// The prime sieve: Daisy-chain Filter processes.\nfunc main() {\n\tch := make(chan int) // Create a new channel.\n\tgo Generate(ch)      // Launch Generate goroutine.\n\n\tfor i := 0; i < 10; i++ {\n\t\tprime := <-ch\n\t\tprintln(prime)\n\t\tch1 := make(chan int)\n\t\tgo Filter(ch, ch1, prime)\n\t\tch = ch1\n\t}\n}\n\n// Output:\n// 2\n// 3\n// 5\n// 7\n// 11\n// 13\n// 17\n// 19\n// 23\n// 29\n"
  },
  {
    "path": "_test/slice.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n    a := [2][2]int{{0, 1}, {2, 3}}\n    fmt.Println(a[0][0:])\n}\n\n// Output:\n// [0 1]\n"
  },
  {
    "path": "_test/str.go",
    "content": "package main\n\nfunc main() {\n\tprintln(\"hello world\")\n}\n\n// Output:\n// hello world\n"
  },
  {
    "path": "_test/str0.go",
    "content": "package main\n\nimport \"fmt\"\n\nconst itoa64 = \"./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\"\n\nfunc main() {\n\tfmt.Printf(\"%v %T\\n\", itoa64[2], itoa64[2])\n}\n\n// Output:\n// 48 uint8\n"
  },
  {
    "path": "_test/str1.go",
    "content": "package main\n\nconst itoa64 = \"./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\"\n\nfunc main() {\n\tfor i, r := range itoa64 {\n\t\tif r == '1' {\n\t\t\tprintln(i)\n\t\t}\n\t}\n}\n\n// Output:\n// 3\n"
  },
  {
    "path": "_test/str2.go",
    "content": "package main\n\nconst itoa64 = \"./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\"\n\nfunc main() {\n\tif itoa64[3] == '1' {\n\t\tprintln(\"ok\")\n\t}\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/str3.go",
    "content": "package main\n\nimport \"strconv\"\n\nfunc main() {\n\tstr := strconv.Itoa(101)\n\tprintln(str[0] == '1')\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/str4.go",
    "content": "package main\n\nimport \"unicode/utf8\"\n\nfunc main() {\n\tr, _ := utf8.DecodeRuneInString(\"Hello\")\n\tprintln(r < utf8.RuneSelf)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/struct.go",
    "content": "package main\n\ntype T struct {\n\tf int\n\tg int\n}\n\nfunc main() {\n\ta := T{7, 8}\n\tprintln(a.f, a.g)\n}\n\n// Output:\n// 7 8\n"
  },
  {
    "path": "_test/struct0.go",
    "content": "package main\n\ntype T struct {\n\tf int\n\tg int\n}\n\nfunc main() {\n\ta := T{}\n\tprintln(a.f, a.g)\n}\n\n// Output:\n// 0 0\n"
  },
  {
    "path": "_test/struct0a.go",
    "content": "package main\n\ntype T struct {\n\tf int\n}\n\nfunc main() {\n\ta := T{}\n\tprintln(a.f)\n\ta.f = 8\n\tprintln(a.f)\n}\n\n// Output:\n// 0\n// 8\n"
  },
  {
    "path": "_test/struct1.go",
    "content": "package main\n\ntype T struct {\n\tf int\n\tg struct {\n\t\th int\n\t}\n}\n\nfunc main() {\n\ta := T{}\n\ta.g.h = 3 + 2\n\tprintln(\"a.g.h\", a.g.h)\n}\n\n// Output:\n// a.g.h 5\n"
  },
  {
    "path": "_test/struct10.go",
    "content": "package main\n\ntype T struct {\n\tf int\n\tg int64\n}\n\nfunc main() {\n\ta := T{g: 8}\n\tprintln(a.f, a.g)\n}\n\n// Output:\n// 0 8\n"
  },
  {
    "path": "_test/struct11.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n)\n\ntype Fromage struct {\n\thttp.ResponseWriter\n}\n\nfunc main() {\n\ta := Fromage{}\n\tif a.ResponseWriter == nil {\n\t\tfmt.Println(\"nil\")\n\t} else {\n\t\tfmt.Println(\"not nil\")\n\t}\n}\n\n// Output:\n// nil\n"
  },
  {
    "path": "_test/struct12.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype S1 struct {\n\tName string\n}\n\ntype S2 struct {\n\t*S1\n}\n\nfunc main() {\n\tfmt.Println(S2{})\n}\n\n// Output:\n// {<nil>}\n"
  },
  {
    "path": "_test/struct13.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n)\n\ntype Fromage struct {\n\thttp.Server\n}\n\nfunc main() {\n\ta := Fromage{}\n\tfmt.Println(a.Server.WriteTimeout)\n}\n\n// Output:\n// 0s\n"
  },
  {
    "path": "_test/struct14.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n)\n\ntype Fromage struct {\n\t*http.Server\n}\n\nfunc main() {\n\ta := Fromage{}\n\tfmt.Println(a.Server)\n}\n\n// Output:\n// <nil>\n"
  },
  {
    "path": "_test/struct15.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n)\n\ntype GzipResponseWriter struct {\n\thttp.ResponseWriter\n\tindex int\n}\n\ntype GzipResponseWriterWithCloseNotify struct {\n\t*GzipResponseWriter\n}\n\nfunc (w GzipResponseWriterWithCloseNotify) CloseNotify() <-chan bool {\n\treturn w.ResponseWriter.(http.CloseNotifier).CloseNotify()\n}\n\nfunc main() {\n\tfmt.Println(\"hello\")\n}\n\n// Output:\n// hello\n"
  },
  {
    "path": "_test/struct16.go",
    "content": "package main\n\ntype S1 struct {\n\tName string\n}\n\ntype S2 struct {\n\t*S1\n}\n\nfunc main() {\n\ts1 := S1{\"foo\"}\n\ts2 := S2{&s1}\n\tprintln(s2.Name)\n}\n\n// Output:\n// foo\n"
  },
  {
    "path": "_test/struct17.go",
    "content": "package main\n\ntype S1 struct {\n\tName string\n}\n\ntype S2 struct {\n\t*S1\n}\n\nfunc main() {\n\ts1 := &S1{\"foo\"}\n\ts2 := S2{s1}\n\tprintln(s2.Name)\n}\n\n// Output:\n// foo\n"
  },
  {
    "path": "_test/struct18.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n)\n\ntype AuthenticatedRequest struct {\n\thttp.Request\n\tUsername string\n}\n\nfunc main() {\n\ta := &AuthenticatedRequest{}\n\n\tfmt.Printf(\"%v %T\\n\", a.Header, a.Header)\n}\n\n// Output:\n// map[] http.Header\n"
  },
  {
    "path": "_test/struct19.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype Config struct {\n\tUsers        `json:\"users,omitempty\" mapstructure:\",\"`\n\tUsersFile    string `json:\"usersFile,omitempty\"`\n\tRealm        string `json:\"realm,omitempty\"`\n\tRemoveHeader bool   `json:\"removeHeader,omitempty\"`\n\tHeaderField  string `json:\"headerField,omitempty\" export:\"true\"`\n}\n\n// Users holds a list of users\ntype Users []string\n\nfunc CreateConfig() *Config {\n\treturn &Config{}\n}\n\nfunc main() {\n\tc := CreateConfig()\n\tfmt.Println(c)\n}\n\n// Output:\n// &{[]   false }\n"
  },
  {
    "path": "_test/struct2.go",
    "content": "package main\n\ntype T struct {\n\tf int\n\tg int\n}\n\nfunc main() {\n\ta := T{g: 8, f: 7}\n\tprintln(a.f, a.g)\n}\n\n// Output:\n// 7 8\n"
  },
  {
    "path": "_test/struct20.go",
    "content": "package main\n\ntype SecretProvider func(user, realm string) string\n\ntype BasicAuth struct {\n\tRealm   string\n\tSecrets SecretProvider\n}\n\nfunc (a *BasicAuth) CheckAuth() string { return a.Secrets(\"me\", a.Realm) }\n\nfunc secretBasic(user, realm string) string { return user + \"-\" + realm }\n\nfunc main() {\n\tb := &BasicAuth{\"test\", secretBasic}\n\ts := b.CheckAuth()\n\tprintln(s)\n}\n\n// Output:\n// me-test\n"
  },
  {
    "path": "_test/struct21.go",
    "content": "package main\n\ntype SecretProvider func(user, realm string) string\n\ntype BasicAuth struct {\n\tRealm   string\n\tSecrets SecretProvider\n}\n\nfunc (a *BasicAuth) CheckAuth() string { return a.Secrets(\"me\", a.Realm) }\n\nfunc (a *BasicAuth) secretBasic(user, realm string) string { return a.Realm + \"-\" + user + \"-\" + realm }\n\nfunc main() {\n\tb := &BasicAuth{Realm: \"test\"}\n\tb.Secrets = b.secretBasic\n\ts := b.CheckAuth()\n\tprintln(s)\n}\n\n// Output:\n// test-me-test\n"
  },
  {
    "path": "_test/struct22.go",
    "content": "package main\n\ntype S struct {\n\tChild *S\n\tName  string\n}\n\nfunc main() {\n\ts := &S{Name: \"root\"}\n\ts.Child = &S{Name: \"child\"}\n\tprintln(s.Child.Name)\n}\n\n// Output:\n// child\n"
  },
  {
    "path": "_test/struct23.go",
    "content": "package main\n\nimport (\n\t\"encoding/json\"\n\t\"os\"\n)\n\ntype S struct {\n\tName  string\n\tChild []*S\n}\n\nfunc main() {\n\ta := S{Name: \"hello\"}\n\ta.Child = append(a.Child, &S{Name: \"world\"})\n\tjson.NewEncoder(os.Stdout).Encode(a)\n\ta.Child[0].Child = append([]*S{}, &S{Name: \"sunshine\"})\n\tjson.NewEncoder(os.Stdout).Encode(a)\n}\n\n// Output:\n// {\"Name\":\"hello\",\"Child\":[{\"Name\":\"world\",\"Child\":null}]}\n// {\"Name\":\"hello\",\"Child\":[{\"Name\":\"world\",\"Child\":[{\"Name\":\"sunshine\",\"Child\":null}]}]}\n"
  },
  {
    "path": "_test/struct24.go",
    "content": "package main\n\nvar a = &T{}\n\ntype T struct{}\n\nfunc main() {\n\tprintln(a != nil)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/struct25.go",
    "content": "package main\n\nimport \"fmt\"\n\nvar a = T{}\n\ntype T struct{}\n\nfunc main() {\n\tfmt.Println(a)\n}\n\n// Output:\n// {}\n"
  },
  {
    "path": "_test/struct26.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc newT2() *T2 { return &T2{} }\n\ntype T2 struct {\n\tT1\n}\n\ntype T1 struct {\n\tbs []byte\n}\n\nfunc main() {\n\tfmt.Println(newT2())\n}\n\n// Output:\n// &{{[]}}\n"
  },
  {
    "path": "_test/struct27.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc (f *Foo) Boo() { fmt.Println(f.name, \"Boo\") }\n\ntype Foo struct {\n\tname string\n\tfun  func(f *Foo)\n}\n\nfunc main() {\n\tt := &Foo{name: \"foo\"}\n\tt.Boo()\n}\n\n// Output:\n// foo Boo\n"
  },
  {
    "path": "_test/struct28.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype T1 struct {\n\tT2\n}\n\ntype T2 struct {\n\t*T1\n}\n\nfunc main() {\n\tt := T1{}\n\tfmt.Println(t)\n}\n\n// Output:\n// {{<nil>}}\n"
  },
  {
    "path": "_test/struct29.go",
    "content": "package main\n\ntype T1 struct {\n\tA []T2\n\tB []T2\n}\n\ntype T2 struct {\n\tname string\n}\n\nvar t = T1{}\n\nfunc main() {\n\tprintln(\"ok\")\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/struct3.go",
    "content": "package main\n\ntype T struct {\n\tf int\n\tg int\n\th struct {\n\t\tk int\n\t}\n}\n\nfunc f(i int) int { return i + 3 }\n\nfunc main() {\n\ta := T{}\n\ta.h.k = f(4)\n\tprintln(a.h.k)\n}\n\n// Output:\n// 7\n"
  },
  {
    "path": "_test/struct30.go",
    "content": "package main\n\ntype T1 struct {\n\tA []T2\n\tM map[uint64]T2\n}\n\ntype T2 struct {\n\tname string\n}\n\nvar t = T1{}\n\nfunc main() {\n\tprintln(\"ok\")\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/struct31.go",
    "content": "package main\n\ntype T struct {\n\tbool\n}\n\nvar t = T{true}\n\nfunc main() {\n\tprintln(t.bool && true)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/struct32.go",
    "content": "package main\n\ntype T0 struct {\n\tname string\n}\n\ntype lookupFunc func(s string) T0\n\ntype T1 struct {\n\tname string\n\tinfo lookupFunc\n}\n\nfunc (t T0) F1() bool { println(\"in F1\"); return true }\n\ntype T2 struct {\n\tt1 T1\n}\n\nfunc (t2 *T2) f() {\n\tinfo := t2.t1.info(\"foo\")\n\tprintln(info.F1())\n}\n\nvar t0 = T0{\"t0\"}\n\nfunc main() {\n\tt := &T2{T1{\n\t\t\"bar\", func(s string) T0 { return t0 },\n\t}}\n\n\tprintln(\"hello\")\n\tprintln(t.t1.info(\"foo\").F1())\n}\n\n// Output:\n// hello\n// in F1\n// true\n"
  },
  {
    "path": "_test/struct33.go",
    "content": "package main\n\ntype T0 struct {\n\tname string\n}\n\ntype lookupFunc func(s string) T0\n\ntype T1 struct {\n\tname string\n\tinfo lookupFunc\n}\n\nfunc (t T0) F1() bool { println(\"in F1\"); return true }\n\nvar t0 = T0{\"t0\"}\n\nfunc look(s string) T0 { println(\"in look\"); return t0 }\n\nvar table = []*T1{{\n\tname: \"bar\",\n\tinfo: look,\n},\n}\n\nfunc main() {\n\tinfo := table[0].info\n\tprintln(info(\"foo\").F1())\n}\n\n// Output:\n// in look\n// in F1\n// true\n"
  },
  {
    "path": "_test/struct34.go",
    "content": "package main\n\ntype T struct {\n\tf func(*T)\n}\n\nfunc f1(t *T) { t.f = f2 }\n\nfunc f2(t *T) { t.f = f1 }\n\nfunc main() {\n\tprintln(\"ok\")\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/struct35.go",
    "content": "package main\n\ntype T struct {\n\tf func(*T)\n}\n\nfunc f1(t *T) { t.f = f1 }\n\nfunc main() {\n\tt := &T{}\n\tf1(t)\n\tprintln(t.f != nil)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/struct36.go",
    "content": "package main\n\nimport (\n\t\"net/http\"\n\t\"strings\"\n)\n\ntype S struct {\n\thttp.Client\n}\n\nfunc main() {\n\tvar s S\n\tif _, err := s.Get(\"url\"); err != nil {\n\t\tprintln(strings.Contains(err.Error(), \"unsupported protocol scheme\"))\n\t}\n\treturn\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/struct37.go",
    "content": "package main\n\nimport (\n\t\"net/http\"\n\t\"strings\"\n)\n\ntype MyHttpClient struct {\n\t*http.Client\n}\n\nfunc main() {\n\tc := new(MyHttpClient)\n\tc.Client = new(http.Client)\n\t_, err := c.Get(\"url\")\n\tprintln(strings.Contains(err.Error(), \"unsupported protocol scheme\"))\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/struct38.go",
    "content": "package main\n\ntype T struct {\n\tf func(t *T1)\n\ty *xxx\n}\n\ntype T1 struct {\n\tT\n}\n\ntype xxx struct{}\n\nvar (\n\tx1 *T1 = x\n\tx      = &T1{}\n)\n\nfunc main() {\n\tprintln(\"ok\")\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/struct39.go",
    "content": "package main\n\ntype T struct {\n\tt *T1\n\ty *xxx\n}\n\ntype T1 struct {\n\tT\n}\n\nvar x = &T1{}\nvar t = &T{}\n\ntype xxx struct{}\n\nfunc main() {\n\tprintln(\"ok\")\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/struct4.go",
    "content": "package main\n\ntype T3 struct {\n\tk int\n}\n\ntype T2 struct {\n\th int\n\tT3\n}\n\ntype T struct {\n\tf int\n\tg int\n\tT2\n}\n\nfunc f(i int) int { return i * i }\n\nfunc main() {\n\ta := T{5, 7, T2{f(8), T3{9}}}\n\tprintln(a.f, a.g, a.h, a.k)\n}\n\n// Output:\n// 5 7 64 9\n"
  },
  {
    "path": "_test/struct40.go",
    "content": "package main\n\ntype T struct {\n\tt *T1\n\ty *xxx\n}\n\ntype T1 struct {\n\tT\n}\n\nfunc f(t *T) { println(\"in f\") }\n\nvar x = &T1{}\n\ntype xxx struct{}\n\nfunc main() {\n\tprintln(\"ok\")\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/struct41.go",
    "content": "package main\n\ntype Ti func(*T)\n\ntype T1 struct {\n\tt Ti\n}\n\ntype T struct {\n\tt Ti\n\ty *xxx\n}\n\nfunc f(t *T) { println(\"in f\") }\n\ntype xxx struct{}\n\nvar x = &T1{t: f}\n\nfunc main() {\n\tx.t = f\n\tprintln(\"ok\")\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/struct42.go",
    "content": "package main\n\ntype T struct {\n\tt func(*T)\n\ty *xxx\n}\n\nfunc f(t *T) { println(\"in f\") }\n\nvar x = &T{t: f}\n\ntype xxx struct{}\n\nfunc main() {\n\tprintln(\"ok\")\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/struct43.go",
    "content": "package main\n\ntype T struct {\n\tt func(*T)\n\ty *xxx\n}\n\nfunc f(t *T) { println(\"in f\") }\n\ntype xxx struct{}\n\nfunc main() {\n\tx := &T{}\n\tx.t = f\n\tprintln(\"ok\")\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/struct44.go",
    "content": "package main\n\ntype Ti func(*T) X\n\ntype T1 struct {\n\tt Ti\n}\n\ntype T struct {\n\tt Ti\n\ty *xxx\n}\n\nfunc f(t *T) X { println(\"in f\"); return X{} }\n\ntype X struct{ Name string }\n\ntype xxx struct{}\n\nvar x = &T1{t: f}\n\nfunc main() {\n\tprintln(\"ok\")\n}\n\n// Output:\n// ok\n"
  },
  {
    "path": "_test/struct45.go",
    "content": "package main\n\ntype T struct {\n\tb bool\n}\n\ntype T1 struct {\n\tT\n}\n\nfunc main() {\n\tt := &T1{}\n\tt.b = true\n\tprintln(t.b)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/struct46.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype A struct {\n\tB string\n\tC D\n}\n\ntype D struct {\n\tF *A\n\tE *A\n}\n\nfunc main() {\n\ta := &A{B: \"b\"}\n\ta.C = D{E: a}\n\tfmt.Println(a.C.E.B)\n}\n\n// Output:\n// b\n"
  },
  {
    "path": "_test/struct47.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype A struct {\n\tB string\n\tC D\n}\n\nfunc (a *A) Test() string {\n\treturn \"test\"\n}\n\ntype D struct {\n\tE *A\n}\n\nfunc main() {\n\ta := &A{B: \"b\"}\n\td := D{E: a}\n\ta.C = d\n\tfmt.Println(a.C.E.Test())\n}\n\n// Output:\n// test\n"
  },
  {
    "path": "_test/struct48.go",
    "content": "package main\n\ntype List struct {\n\tNext *List\n\tNum  int\n}\n\nfunc add(l *List, n int) *List {\n\tif l == nil {\n\t\treturn &List{Num: n}\n\t}\n\tl.Next = add(l.Next, n)\n\treturn l\n}\n\nfunc pr(l *List) {\n\tif l == nil {\n\t\tprintln(\"\")\n\t\treturn\n\t}\n\tprint(l.Num)\n\tpr(l.Next)\n}\n\nfunc main() {\n\ta := add(nil, 0)\n\tpr(a)\n\ta = add(a, 1)\n\tpr(a)\n\ta = add(a, 2)\n\tpr(a)\n}\n\n// Output:\n// 0\n// 01\n// 012\n"
  },
  {
    "path": "_test/struct49.go",
    "content": "package main\n\ntype S struct {\n\tts map[string][]*T\n}\n\ntype T struct {\n\ts *S\n}\n\nfunc (c *S) getT(addr string) (t *T, ok bool) {\n\tcns, ok := c.ts[addr]\n\tif !ok || len(cns) == 0 {\n\t\treturn nil, false\n\t}\n\n\tt = cns[len(cns)-1]\n\tc.ts[addr] = cns[:len(cns)-1]\n\treturn t, true\n}\n\nfunc main() {\n\ts := &S{\n\t\tts: map[string][]*T{},\n\t}\n\ts.ts[\"test\"] = append(s.ts[\"test\"], &T{s: s})\n\n\tt, ok := s.getT(\"test\")\n\tprintln(t != nil, ok)\n}\n\n// Output:\n// true true\n"
  },
  {
    "path": "_test/struct5.go",
    "content": "package main\n\ntype T struct {\n\tf int\n\tg int\n}\n\nfunc f(i int) int { return i * i }\n\nfunc main() {\n\ta := T{7, f(4)}\n\tprintln(a.f, a.g)\n}\n\n// Output:\n// 7 16\n"
  },
  {
    "path": "_test/struct50.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype Node struct {\n\tName  string\n\tChild []Node\n}\n\nfunc main() {\n\ta := Node{Name: \"hello\"}\n\ta.Child = append([]Node{}, Node{Name: \"world\"})\n\tfmt.Println(a)\n\ta.Child[0].Child = append([]Node{}, Node{Name: \"sunshine\"})\n\tfmt.Println(a)\n}\n\n// Output:\n// {hello [{world []}]}\n// {hello [{world [{sunshine []}]}]}\n"
  },
  {
    "path": "_test/struct51.go",
    "content": "package main\n\nimport (\n\t\"encoding/json\"\n\t\"os\"\n)\n\ntype Node struct {\n\tName  string\n\tChild [2]*Node\n}\n\nfunc main() {\n\ta := Node{Name: \"hello\"}\n\ta.Child[0] = &Node{Name: \"world\"}\n\tjson.NewEncoder(os.Stdout).Encode(a)\n\ta.Child[0].Child[0] = &Node{Name: \"sunshine\"}\n\tjson.NewEncoder(os.Stdout).Encode(a)\n}\n\n// Output:\n// {\"Name\":\"hello\",\"Child\":[{\"Name\":\"world\",\"Child\":[null,null]},null]}\n// {\"Name\":\"hello\",\"Child\":[{\"Name\":\"world\",\"Child\":[{\"Name\":\"sunshine\",\"Child\":[null,null]},null]},null]}\n"
  },
  {
    "path": "_test/struct52.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype Node struct {\n\tName  string\n\tChild map[string]Node\n}\n\nfunc main() {\n\ta := Node{Name: \"hello\", Child: map[string]Node{}}\n\ta.Child[\"1\"] = Node{Name: \"world\", Child: map[string]Node{}}\n\tfmt.Println(a)\n\ta.Child[\"1\"].Child[\"1\"] = Node{Name: \"sunshine\", Child: map[string]Node{}}\n\tfmt.Println(a)\n}\n\n// Output:\n// {hello map[1:{world map[]}]}\n// {hello map[1:{world map[1:{sunshine map[]}]}]}\n"
  },
  {
    "path": "_test/struct53.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype T1 struct {\n\tP []*T\n}\n\ntype T2 struct {\n\tP2 *T\n}\n\ntype T struct {\n\t*T1\n\tS1 *T\n}\n\nfunc main() {\n\tfmt.Println(T2{})\n}\n\n// Output:\n// {<nil>}\n"
  },
  {
    "path": "_test/struct54.go",
    "content": "package main\n\ntype S struct {\n\tt *T\n}\n\nfunc newS() *S {\n\treturn &S{\n\t\tt: &T{u: map[string]*U{}},\n\t}\n}\n\ntype T struct {\n\tu map[string]*U\n}\n\ntype U struct {\n\ta int\n}\n\nfunc main() {\n\ts := newS()\n\t_ = s\n\n\tprintln(\"ok\")\n}\n"
  },
  {
    "path": "_test/struct55.go",
    "content": "package main\n\nimport (\n\t\"log\"\n\t\"os\"\n)\n\ntype Logger struct {\n\tm []*log.Logger\n}\n\nfunc (l *Logger) Infof(format string, args ...interface{}) {\n\tl.m[0].Printf(format, args...)\n}\n\nfunc main() {\n\tl := &Logger{m: []*log.Logger{log.New(os.Stdout, \"\", log.Lmsgprefix)}}\n\tl.Infof(\"test %s\", \"test\")\n}\n\n// Output:\n// test test\n"
  },
  {
    "path": "_test/struct56.go",
    "content": "package main\n\nimport (\n\t\"encoding/json\"\n\t\"fmt\"\n)\n\ntype A struct {\n\tIA InnerA\n}\n\ntype InnerA struct {\n\tTimestamp int64\n}\n\nfunc main() {\n\ta := &A{}\n\tb, _ := json.Marshal(a)\n\tfmt.Println(string(b))\n}\n\n// Output:\n// {\"IA\":{\"Timestamp\":0}}\n"
  },
  {
    "path": "_test/struct57.go",
    "content": "package main\n\nimport (\n\t\"encoding/json\"\n\t\"fmt\"\n)\n\ntype A struct {\n\tInnerA\n}\n\ntype InnerA struct {\n\tTimestamp int64\n}\n\nfunc main() {\n\ta := &A{}\n\tb, _ := json.Marshal(a)\n\tfmt.Println(string(b))\n}\n\n// Output:\n// {\"Timestamp\":0}\n"
  },
  {
    "path": "_test/struct58.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"reflect\"\n)\n\ntype A struct {\n\tTest string `tag:\"test\"`\n}\n\nfunc main() {\n\ta := A{}\n\tt := reflect.TypeOf(a)\n\tf, ok := t.FieldByName(\"Test\")\n\tif !ok {\n\t\treturn\n\t}\n\n\tfmt.Println(f.Tag.Get(\"tag\"))\n}\n\n// Output:\n// test\n"
  },
  {
    "path": "_test/struct59.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\ntype A struct {\n\tB map[string]*B\n\tC map[string]*C\n}\n\ntype C struct {\n\tD *D\n\tE *E\n}\n\ntype D struct {\n\tF *F\n\tG []G\n}\n\ntype E struct {\n\tH []H\n\tF *F\n}\n\ntype B struct{}\ntype F struct{}\ntype G struct{}\ntype H struct{}\n\nfunc main() {\n\tconf := &A{\n\t\tB: make(map[string]*B),\n\t\tC: make(map[string]*C),\n\t}\n\tfmt.Println(conf)\n}\n\n// Output:\n// &{map[] map[]}\n"
  },
  {
    "path": "_test/struct6.go",
    "content": "package main\n\ntype T struct {\n\tf, g int\n}\n\nfunc main() {\n\ta := T{7, 8}\n\tprintln(a.f, a.g)\n}\n\n// Output:\n// 7 8\n"
  },
  {
    "path": "_test/struct60.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\ntype data struct {\n\tS string\n}\n\nfunc render(v interface{}) {\n\tfmt.Println(v)\n}\n\nfunc main() {\n\trender(data{})\n}\n\n// Output:\n// {}\n"
  },
  {
    "path": "_test/struct61.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype A struct {\n\tB string\n\tD\n}\n\ntype D struct {\n\t*A\n\tE *A\n}\n\nfunc main() {\n\ta := &A{B: \"b\"}\n\ta.D = D{E: a}\n\tfmt.Println(a.D.E.B)\n}\n\n// Output:\n// b\n"
  },
  {
    "path": "_test/struct62.go",
    "content": "package main\n\nfunc main() {\n\ttype A struct{ *A }\n\tv := &A{}\n\tv.A = v\n\tprintln(\"v.A.A = v\", v.A.A == v)\n}\n\n// Output:\n// v.A.A = v true\n"
  },
  {
    "path": "_test/struct7.go",
    "content": "package main\n\ntype Opt struct {\n\tb bool\n}\n\ntype T struct {\n\ti   int\n\topt Opt\n}\n\nfunc main() {\n\ta := T{}\n\tprintln(a.i, a.opt.b)\n}\n\n// Output:\n// 0 false\n"
  },
  {
    "path": "_test/struct8.go",
    "content": "package main\n\ntype T3 struct {\n\tk int\n}\n\ntype T2 struct {\n\th int\n\tT3\n}\n\ntype T struct {\n\tf int\n\tg int\n\tT2\n}\n\nfunc f(i int) int { return i * i }\n\nfunc main() {\n\ta := T{5, 7, T2{8, T3{9}}}\n\tprintln(a.f, a.g, a.T2.h, a.T2.T3.k)\n}\n\n// Output:\n// 5 7 8 9\n"
  },
  {
    "path": "_test/struct9.go",
    "content": "package main\n\ntype T struct {\n\tf int\n\tg int64\n}\n\nfunc main() {\n\ta := T{7, 8}\n\tprintln(a.f, a.g)\n}\n\n// Output:\n// 7 8\n"
  },
  {
    "path": "_test/switch.go",
    "content": "package main\n\nfunc main() {\n\ta := 3\n\tswitch a {\n\tcase 0:\n\t\tprintln(200)\n\tdefault:\n\t\tprintln(a)\n\tcase 3:\n\t\tprintln(100)\n\t}\n}\n\n// Output:\n// 100\n"
  },
  {
    "path": "_test/switch0.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc f(i int) bool {\n\tswitch i {\n\tcase 0:\n\t\tprintln(i)\n\t\treturn false\n\tdefault:\n\t\tprintln(\"not nul\")\n\t\treturn true\n\t}\n}\n\nfunc main() {\n\tr0 := f(0)\n\tfmt.Printf(\"%T %v\", r0, r0)\n\tfmt.Println()\n\tr1 := f(1)\n\tfmt.Printf(\"%T %v\", r1, r1)\n\tfmt.Println()\n}\n\n// Output:\n// 0\n// bool false\n// not nul\n// bool true\n"
  },
  {
    "path": "_test/switch1.go",
    "content": "package main\n\nfunc main() {\n\ti := 1\n\n\tswitch i {\n\tcase 0:\n\t\tprintln(i)\n\tdefault:\n\t\tprintln(\"not nul\")\n\t}\n}\n\n// Output:\n// not nul\n"
  },
  {
    "path": "_test/switch10.go",
    "content": "package main\n\nfunc main() {\n\tvar i interface{} = \"truc\"\n\n\tswitch a := i.(type) {\n\tcase string:\n\t\tprintln(\"string\", a+\" ok\")\n\tdefault:\n\t\tprintln(\"unknown\")\n\t}\n}\n\n// Output:\n// string truc ok\n"
  },
  {
    "path": "_test/switch11.go",
    "content": "package main\n\nfunc main() {\n\tvar i interface{} = \"truc\"\n\n\tswitch b := 2; a := i.(type) {\n\tcase string:\n\t\tprintln(\"string\", a+\" ok\")\n\tdefault:\n\t\tprintln(\"unknown\", b)\n\t}\n}\n\n// Output:\n// string truc ok\n"
  },
  {
    "path": "_test/switch12.go",
    "content": "package main\n\nfunc main() {\n\tvar i interface{}\n\n\tswitch a := i.(type) {\n\tcase string:\n\t\tprintln(\"string\", a+\" ok\")\n\tcase nil:\n\t\tprintln(\"i is nil\")\n\tdefault:\n\t\tprintln(\"unknown\")\n\t}\n}\n\n// Output:\n// i is nil\n"
  },
  {
    "path": "_test/switch13.go",
    "content": "package main\n\nfunc main() {\n\tvar i interface{}\n\n\tswitch a := i.(type) {\n\tcase string:\n\t\tprintln(\"string\", a+\" ok\")\n\tcase i:\n\t\tprintln(\"i is dummy\")\n\tdefault:\n\t\tprintln(\"unknown\")\n\t}\n}\n\n// Error:\n// 9:2: i is not a type\n"
  },
  {
    "path": "_test/switch14.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype fii interface {\n\tHello()\n}\n\ntype Boo struct {\n\tName string\n}\n\ntype Bir struct {\n\tBoo\n}\n\ntype Bar struct{}\n\nfunc (b Bar) Hello() { fmt.Println(\"b:\", b) }\n\nfunc (b Boo) Hello() {\n\tfmt.Println(\"Hello\", b)\n\tfmt.Println(b.Name)\n}\n\nfunc inCall(foo fii) {\n\tfmt.Println(\"inCall\")\n\tswitch a := foo.(type) {\n\tcase Boo:\n\t\ta.Hello()\n\tdefault:\n\t\tfmt.Println(\"a:\", a)\n\t}\n}\n\nfunc main() {\n\tboo := Bir{Boo{\"foo\"}}\n\tinCall(boo)\n\tinCall(Bar{})\n}\n\n// Output:\n// inCall\n// a: {{foo}}\n// inCall\n// a: {}\n"
  },
  {
    "path": "_test/switch15.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype fii interface {\n\tHello()\n}\n\ntype Boo struct {\n\tName string\n}\n\ntype Bir struct {\n\tBoo\n}\n\ntype Bar struct{}\n\nfunc (b Bar) Hello() { fmt.Println(\"b:\", b) }\n\nfunc (b Boo) Hello() {\n\tfmt.Println(\"Hello\", b)\n\tfmt.Println(b.Name)\n}\n\nfunc inCall(foo fii) {\n\tfmt.Println(\"inCall\")\n\tswitch a := foo.(type) {\n\tcase Boo, Bir:\n\t\ta.Hello()\n\tdefault:\n\t\tfmt.Println(\"a:\", a)\n\t}\n}\n\nfunc main() {\n\tboo := Bir{Boo{\"foo\"}}\n\tinCall(boo)\n\tinCall(Bar{})\n}\n\n// Output:\n// inCall\n// Hello {foo}\n// foo\n// inCall\n// a: {}\n"
  },
  {
    "path": "_test/switch16.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype fii interface {\n\tHello()\n}\n\ntype Boo struct {\n\tName string\n}\n\ntype Bir struct {\n\tBoo\n}\n\ntype Bar struct{}\n\nfunc (b Bar) Hello() { fmt.Println(\"b:\", b) }\n\nfunc (b Boo) Hello() {\n\tfmt.Println(\"Hello\", b)\n\tfmt.Println(b.Name)\n}\n\nfunc inCall(foo fii) {\n\tfmt.Println(\"inCall\")\n\tswitch a := foo.(type) {\n\tcase Boo, Bir:\n\t\ta.Hello()\n\tdefault:\n\t\tfmt.Println(\"a:\", a)\n\t}\n}\n\nfunc main() {\n\tboo := Boo{\"foo\"}\n\tinCall(boo)\n\tinCall(Bar{})\n}\n\n// Output:\n// inCall\n// Hello {foo}\n// foo\n// inCall\n// a: {}\n"
  },
  {
    "path": "_test/switch17.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype fii interface {\n\tHello()\n}\n\ntype Boo struct {\n\tName string\n}\n\ntype Bir struct {\n\tBoo\n}\n\ntype Bar struct{}\n\nfunc (b Bar) Hello() { fmt.Println(\"b:\", b) }\n\nfunc (b Boo) Hello() {\n\tfmt.Println(\"Hello\", b)\n\tfmt.Println(b.Name)\n}\n\nfunc inCall(foo fii) {\n\tfmt.Println(\"inCall\")\n\tswitch a := foo.(type) {\n\tcase Boo:\n\t\tfmt.Println(\"type Boo\")\n\t\ta.Hello()\n\tcase Bir:\n\t\tfmt.Println(\"type Bir\")\n\t\ta.Hello()\n\tdefault:\n\t\tfmt.Println(\"a:\", a)\n\t}\n}\n\nfunc main() {\n\tboo := Bir{Boo{\"foo\"}}\n\tinCall(boo)\n\tinCall(Bar{})\n}\n\n// Output:\n// inCall\n// type Bir\n// Hello {foo}\n// foo\n// inCall\n// a: {}\n"
  },
  {
    "path": "_test/switch18.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype fii interface {\n\tHello()\n}\n\ntype Bir struct{}\n\nfunc (b Bir) Yo() {\n\tfmt.Println(\"Yo\", b)\n}\n\nfunc (b Bir) Hello() {\n\tfmt.Println(\"Hello\", b)\n}\n\ntype Boo struct {\n\tName string\n}\n\nfunc (b Boo) Hello() {\n\tfmt.Println(\"Hello\", b)\n\tfmt.Println(b.Name)\n}\n\ntype Bar struct{}\n\nfunc (b Bar) Hello() { fmt.Println(\"b:\", b) }\n\nfunc inCall(foo fii) {\n\tfmt.Println(\"inCall\")\n\tswitch a := foo.(type) {\n\tcase Boo:\n\t\ta.Hello()\n\tcase Bir:\n\t\ta.Yo()\n\tdefault:\n\t\tfmt.Println(\"a:\", a)\n\t}\n}\n\nfunc main() {\n\tboo := Bir{}\n\tinCall(boo)\n\tinCall(Bar{})\n}\n\n// Output:\n// inCall\n// Yo {}\n// inCall\n// a: {}\n"
  },
  {
    "path": "_test/switch19.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype fii interface {\n\tHello()\n}\n\ntype Bir struct{}\n\nfunc (b Bir) Yo() {\n\tfmt.Println(\"Yo\", b)\n}\n\nfunc (b Bir) Hello() {\n\tfmt.Println(\"Hello\", b)\n}\n\ntype Boo struct {\n\tName string\n}\n\nfunc (b Boo) Hello() {\n\tfmt.Println(\"Hello\", b)\n\tfmt.Println(b.Name)\n}\n\ntype Bar struct{}\n\nfunc (b Bar) Hello() { fmt.Println(\"b:\", b) }\n\nfunc inCall(foo fii) {\n\tfmt.Println(\"inCall\")\n\tswitch a := foo.(type) {\n\tcase Boo, Bir:\n\t\ta.Hello()\n\tcase Bir:\n\t\ta.Yo()\n\tdefault:\n\t\tfmt.Println(\"a:\", a)\n\t}\n}\n\nfunc main() {\n\tboo := Bir{}\n\tinCall(boo)\n\tinCall(Bar{})\n}\n\n// Error:\n// 37:2: duplicate case Bir in type switch\n"
  },
  {
    "path": "_test/switch2.go",
    "content": "package main\n\nfunc main() {\n\ti := 1\n\n\tswitch i {\n\tcase 0, 1, 2:\n\t\tprintln(i)\n\tdefault:\n\t\tprintln(\"not nul\")\n\t}\n}\n\n// Output:\n// 1\n"
  },
  {
    "path": "_test/switch20.go",
    "content": "package main\n\nfunc main() {\n\ti := 1\n\n\tswitch i {\n\tcase 1:\n\t\t// nothing to do\n\tdefault:\n\t\tprintln(\"not run\")\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// bye\n"
  },
  {
    "path": "_test/switch21.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar err error\n\n\tswitch v := err.(type) {\n\tcase fmt.Formatter:\n\t\tprintln(\"formatter\")\n\tdefault:\n\t\tfmt.Println(v)\n\t}\n}\n\n// Output:\n// <nil>\n"
  },
  {
    "path": "_test/switch22.go",
    "content": "package main\n\ntype T struct {\n\tName string\n}\n\nfunc f(t interface{}) {\n\tswitch ext := t.(type) {\n\tcase *T:\n\t\tprintln(\"*T\", ext.Name)\n\tdefault:\n\t\tprintln(\"unknown\")\n\t}\n}\n\nfunc main() {\n\tf(&T{\"truc\"})\n}\n\n// Output:\n// *T truc\n"
  },
  {
    "path": "_test/switch23.go",
    "content": "package main\n\nfunc getType() string { return \"T1\" }\n\nfunc main() {\n\tswitch getType() {\n\tcase \"T1\":\n\t\tprintln(\"T1\")\n\tdefault:\n\t\tprintln(\"default\")\n\t}\n}\n\n// Output:\n// T1\n"
  },
  {
    "path": "_test/switch24.go",
    "content": "package main\n\nfunc main() {\n\ta := 3\n\tswitch a + 2 {\n\tcase 5:\n\t\tprintln(5)\n\tdefault:\n\t\tprintln(\"default\")\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// 5\n// bye\n"
  },
  {
    "path": "_test/switch25.go",
    "content": "package main\n\nfunc main() {\n\ta := 2\n\tswitch {\n\tcase a == 1:\n\t\tprintln(1)\n\tcase a == 2:\n\t\tprintln(2)\n\tdefault:\n\t\tprintln(\"default\")\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// 2\n// bye\n"
  },
  {
    "path": "_test/switch26.go",
    "content": "package main\n\nfunc main() {\n\ta := 1\n\tswitch a := 2; {\n\tcase a == 1:\n\t\tprintln(1)\n\tcase a == 2:\n\t\tprintln(2)\n\tdefault:\n\t\tprintln(\"default\")\n\t}\n\tprintln(a)\n}\n\n// Output:\n// 2\n// 1\n"
  },
  {
    "path": "_test/switch27.go",
    "content": "package main\n\nfunc main() {\n\t//a := false\n\tswitch false {\n\tcase true:\n\t\tprintln(\"true\")\n\tcase false:\n\t\tprintln(\"false\")\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// false\n// bye\n"
  },
  {
    "path": "_test/switch28.go",
    "content": "package main\n\nfunc main() {\n\tswitch {\n\tcase true:\n\t\tprintln(\"true\")\n\tcase false:\n\t\tprintln(\"false\")\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// true\n// bye\n"
  },
  {
    "path": "_test/switch29.go",
    "content": "package main\n\nfunc main() {\n\ta := 3\n\tswitch a {\n\tcase 3:\n\t\tprintln(\"three\")\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// three\n// bye\n"
  },
  {
    "path": "_test/switch3.go",
    "content": "package main\n\nfunc main() {\n\ta := 3\n\tswitch a {\n\tcase 0:\n\t\tprintln(200)\n\tcase 3:\n\t\tprintln(100)\n\t\tfallthrough\n\tdefault:\n\t\tprintln(a)\n\t}\n}\n\n// Output:\n// 100\n// 3\n"
  },
  {
    "path": "_test/switch30.go",
    "content": "package main\n\nfunc main() {\n\ta := 3\n\tswitch a {\n\tdefault:\n\t\t//println(\"default\")\n\tcase 3:\n\t\tprintln(\"three\")\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// three\n// bye\n"
  },
  {
    "path": "_test/switch31.go",
    "content": "package main\n\nfunc main() {\n\tswitch {\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// bye\n"
  },
  {
    "path": "_test/switch32.go",
    "content": "package main\n\nfunc main() {\n\ta := 1\n\tswitch a {\n\t}\n\tprintln(\"bye\", a)\n}\n\n// Output:\n// bye 1\n"
  },
  {
    "path": "_test/switch33.go",
    "content": "package main\n\nfunc main() {\n\tvar a interface{}\n\tswitch a.(type) {\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// bye\n"
  },
  {
    "path": "_test/switch34.go",
    "content": "package main\n\nfunc main() {\n\tvar a interface{}\n\ta = []int{3}\n\tswitch a.(type) {\n\tcase []int:\n\t\tprintln(\"a is []int\")\n\tcase []string:\n\t\tprintln(\"a is []string\")\n\t}\n\n\tvar b interface{}\n\tb = []string{\"hello\"}\n\tswitch b.(type) {\n\tcase []int:\n\t\tprintln(\"b is []int\")\n\tcase []string:\n\t\tprintln(\"b is []string\")\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// a is []int\n// b is []string\n// bye\n"
  },
  {
    "path": "_test/switch35.go",
    "content": "package main\n\nfunc main() {\n\ta := 2\n\tswitch {\n\tcase a == 1:\n\t\tprintln(1)\n\tcase a == 2:\n\t\tprintln(2)\n\tdefault:\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// 2\n// bye\n"
  },
  {
    "path": "_test/switch36.go",
    "content": "package main\n\nfunc main() {\n\ta := 2\n\tswitch {\n\tcase a == 1:\n\t\tprintln(1)\n\tcase a == 2:\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// bye\n"
  },
  {
    "path": "_test/switch37.go",
    "content": "package main\n\nfunc main() {\n\ta := 2\n\tswitch {\n\tcase a == 1:\n\t\tprintln(1)\n\tcase a == 3:\n\tdefault:\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// bye\n"
  },
  {
    "path": "_test/switch38.go",
    "content": "package main\n\nfunc isSeparator(c byte) bool {\n\tswitch c {\n\tcase '(', ')', '<', '>', '@', ',', ';', ':', '\\\\', '\"', '/', '[', ']', '?', '=', '{', '}', ' ', '\\t':\n\t\treturn true\n\t}\n\treturn false\n}\n\nfunc main() {\n\ts := \"max-age=20\"\n\tfor _, c := range []byte(s) {\n\t\tprintln(string(c), isSeparator(c))\n\t}\n}\n\n// Output:\n// m false\n// a false\n// x false\n// - false\n// a false\n// g false\n// e false\n// = true\n// 2 false\n// 0 false\n"
  },
  {
    "path": "_test/switch39.go",
    "content": "package main\n\nfunc f(params ...interface{}) {\n\tswitch p0 := params[0].(type) {\n\tcase string:\n\t\tprintln(\"string:\", p0)\n\tdefault:\n\t\tprintln(\"not a string\")\n\t}\n}\n\nfunc main() {\n\tf(\"Hello\")\n}\n\n// Output:\n// string: Hello\n"
  },
  {
    "path": "_test/switch4.go",
    "content": "package main\n\nfunc main() {\n\ta := 3\n\tswitch b := \"foo\"; a {\n\tcase 0:\n\t\tprintln(200)\n\tcase 3:\n\t\tprintln(100)\n\t\tfallthrough\n\tdefault:\n\t\tprintln(a, b)\n\t}\n}\n\n// Output:\n// 100\n// 3 foo\n"
  },
  {
    "path": "_test/switch40.go",
    "content": "package main\n\nfunc f(params ...interface{}) {\n\tswitch params[0].(type) {\n\tcase string:\n\t\tprintln(\"a string\")\n\tdefault:\n\t\tprintln(\"not a string\")\n\t}\n}\n\nfunc main() {\n\tf(\"Hello\")\n}\n\n// Output:\n// a string\n"
  },
  {
    "path": "_test/switch5.go",
    "content": "package main\n\nfunc main() {\n\ti := 1\n\n\tswitch i {\n\tcase 0, 1, 2:\n\t\tif i == 1 {\n\t\t\tprintln(\"one\")\n\t\t\tbreak\n\t\t}\n\t\tprintln(i)\n\tdefault:\n\t\tprintln(\"not nul\")\n\t}\n}\n\n// Output:\n// one\n"
  },
  {
    "path": "_test/switch6.go",
    "content": "package main\n\nfunc main() {\n\ta := 3\n\tswitch b := \"foo\"; {\n\tcase a == 0:\n\t\tprintln(200)\n\tcase a == 3:\n\t\tprintln(100)\n\t\tfallthrough\n\tdefault:\n\t\tprintln(a, b)\n\t}\n}\n\n// Output:\n// 100\n// 3 foo\n"
  },
  {
    "path": "_test/switch7.go",
    "content": "package main\n\nfunc main() {\n\tvar i interface{} = \"truc\"\n\n\tswitch i.(type) {\n\tcase string:\n\t\tprintln(\"string\")\n\tdefault:\n\t\tprintln(\"unknown\")\n\t}\n}\n\n// Output:\n// string\n"
  },
  {
    "path": "_test/switch8.go",
    "content": "package main\n\nfunc main() {\n\tprintln(\"hello\")\n\tfallthrough\n\tprintln(\"world\")\n}\n\n// Error:\n// 5:2: fallthrough statement out of place\n"
  },
  {
    "path": "_test/switch9.go",
    "content": "package main\n\nfunc main() {\n\tvar i interface{} = \"truc\"\n\n\tswitch i.(type) {\n\tcase string:\n\t\tprintln(\"string\")\n\t\tfallthrough\n\tdefault:\n\t\tprintln(\"unknown\")\n\t}\n}\n\n// Error:\n// 9:3: cannot fallthrough in type switch\n"
  },
  {
    "path": "_test/tag0.go",
    "content": "// The following comment line has the same effect as 'go run -tags=dummy'\n// yaegi:tags dummy\n\npackage main\n\nimport _ \"github.com/traefik/yaegi/_test/ct\"\n\nfunc main() {\n\tprintln(\"bye\")\n}\n\n// Output:\n// hello from ct1\n// hello from ct3\n// bye\n"
  },
  {
    "path": "_test/testdata/redeclaration-global7/src/guthib.com/bar/quux.go",
    "content": "package quux\n\nfunc Quux() string {\n\treturn \"bar\"\n}\n"
  },
  {
    "path": "_test/testdata/redeclaration-global7/src/guthib.com/baz/quux.go",
    "content": "package quux\n\nfunc Quux() string {\n\treturn \"baz\"\n}\n"
  },
  {
    "path": "_test/testdata/redeclaration-global7/src/guthib.com/tata/tutu.go",
    "content": "package tutu\n\nimport \"guthib.com/baz\"\n\nfunc Quux() string {\n\treturn quux.Quux()\n}\n"
  },
  {
    "path": "_test/testdata/redeclaration-global7/src/guthib.com/toto/titi.go",
    "content": "package titi\n\nimport \"guthib.com/bar\"\n\nfunc Quux() string {\n\treturn quux.Quux()\n}\n"
  },
  {
    "path": "_test/time0.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\nfunc main() {\n\tfmt.Println(time.Now())\n}\n"
  },
  {
    "path": "_test/time1.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\nfunc main() {\n\tt := time.Date(2009, time.November, 10, 23, 4, 5, 0, time.UTC)\n\tm := t.Minute()\n\tfmt.Println(t, m)\n}\n\n// Output:\n// 2009-11-10 23:04:05 +0000 UTC 4\n"
  },
  {
    "path": "_test/time10.go",
    "content": "package main\n\nimport \"time\"\n\nvar UnixTime func(int64, int64) time.Time\n\nfunc main() {\n\tUnixTime = time.Unix\n\tprintln(UnixTime(1e9, 0).In(time.UTC).Minute())\n}\n\n// Output:\n// 46\n"
  },
  {
    "path": "_test/time11.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\nconst df = time.Minute * 30\n\nfunc main() {\n\tfmt.Printf(\"df: %v %T\\n\", df, df)\n}\n\n// Output:\n// df: 30m0s time.Duration\n"
  },
  {
    "path": "_test/time12.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\nvar twentyFourHours = time.Duration(24 * time.Hour)\n\nfunc main() {\n\tfmt.Println(twentyFourHours.Hours())\n}\n\n// Output:\n// 24\n"
  },
  {
    "path": "_test/time13.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\nvar dummy = 1\n\nvar t time.Time = time.Date(2007, time.November, 10, 23, 4, 5, 0, time.UTC)\n\nfunc main() {\n\tt = time.Date(2009, time.November, 10, 23, 4, 5, 0, time.UTC)\n\tfmt.Println(t.Clock())\n}\n\n// Output:\n// 23 4 5\n"
  },
  {
    "path": "_test/time14.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\nvar t time.Time\n\nfunc f() time.Time {\n\ttime := t\n\treturn time\n}\n\nfunc main() {\n\tfmt.Println(f())\n}\n\n// Output:\n// 0001-01-01 00:00:00 +0000 UTC\n"
  },
  {
    "path": "_test/time15.go",
    "content": "package main\n\nimport \"time\"\n\ntype TimeValue time.Time\n\nfunc (v *TimeValue) decode() { println(\"in decode\") }\n\nfunc main() {\n\tvar tv TimeValue\n\ttv.decode()\n}\n\n// Output:\n// in decode\n"
  },
  {
    "path": "_test/time16.go",
    "content": "package main\n\nimport \"time\"\n\nfunc main() {\n\tlocalTime := time.ANSIC\n\tprintln(localTime)\n}\n\n// Output:\n// Mon Jan _2 15:04:05 2006\n"
  },
  {
    "path": "_test/time2.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\nfunc main() {\n\tt := time.Date(2009, time.November, 10, 23, 4, 5, 0, time.UTC)\n\th, m, s := t.Clock()\n\tfmt.Println(h, m, s)\n}\n\n// Output:\n// 23 4 5\n"
  },
  {
    "path": "_test/time3.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\n// FIXME related to named returns\nfunc main() {\n\tt := time.Date(2009, time.November, 10, 23, 4, 5, 0, time.UTC)\n\tfmt.Println(t.Clock())\n}\n\n// Output:\n// 23 4 5\n"
  },
  {
    "path": "_test/time4.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\nfunc main() {\n\tvar m time.Month\n\tm = 9\n\tfmt.Println(m)\n}\n\n// Output:\n// September\n"
  },
  {
    "path": "_test/time5.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\nfunc main() {\n\tt := time.Unix(1e9, 0).In(time.UTC)\n\tfmt.Println(t.Minute())\n}\n\n// Output:\n// 46\n"
  },
  {
    "path": "_test/time6.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\nfunc main() {\n\tt := &time.Time{}\n\tt.UnmarshalText([]byte(\"1985-04-12T23:20:50.52Z\"))\n\n\tfmt.Println(t)\n}\n\n// Output:\n// 1985-04-12 23:20:50.52 +0000 UTC\n"
  },
  {
    "path": "_test/time7.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\nvar d = 2 * time.Second\n\nfunc main() { fmt.Println(d) }\n\n// Output:\n// 2s\n"
  },
  {
    "path": "_test/time8.go",
    "content": "package main\n\nimport (\n\t\"time\"\n)\n\ntype durationValue time.Duration\n\nfunc (d *durationValue) String() string { return (*time.Duration)(d).String() }\n\nfunc main() {\n\tvar d durationValue\n\tprintln(d.String())\n}\n\n// Output:\n// 0s\n"
  },
  {
    "path": "_test/time9.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\nfunc main() {\n\tfmt.Println((5 * time.Minute).Seconds())\n}\n\n// Output:\n// 300\n"
  },
  {
    "path": "_test/type0.go",
    "content": "package main\n\ntype newInt int\n\nfunc main() {\n\tvar a newInt\n\tprintln(a)\n}\n\n// Output:\n// 0\n"
  },
  {
    "path": "_test/type1.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar i interface{} = \"hello\"\n\ts := i.(string)\n\tfmt.Println(s)\n}\n\n// Output:\n// hello\n"
  },
  {
    "path": "_test/type10.go",
    "content": "package main\n\nimport (\n\t\"compress/gzip\"\n\t\"fmt\"\n\t\"sync\"\n)\n\nvar gzipWriterPools [10]*sync.Pool = [10]*sync.Pool{}\n\nfunc main() {\n\tlevel := 9\n\tgzipWriterPools[level] = &sync.Pool{\n\t\tNew: func() interface{} {\n\t\t\tw, _ := gzip.NewWriterLevel(nil, level)\n\t\t\treturn w\n\t\t},\n\t}\n\tgzw := gzipWriterPools[level].Get().(*gzip.Writer)\n\tfmt.Printf(\"gzw: %T\\n\", gzw)\n}\n\n// Output:\n// gzw: *gzip.Writer\n"
  },
  {
    "path": "_test/type11.go",
    "content": "package main\n\nimport (\n\t\"compress/gzip\"\n\t\"fmt\"\n\t\"sync\"\n)\n\nvar gzipWriterPools [gzip.BestCompression - gzip.BestSpeed + 2]*sync.Pool\n\nfunc main() {\n\tfmt.Printf(\"%T\\n\", gzipWriterPools)\n}\n\n// Output:\n// [10]*sync.Pool\n"
  },
  {
    "path": "_test/type12.go",
    "content": "package main\n\ntype T1 struct {\n\tT2 *T2\n}\n\nfunc (t *T1) Get() string {\n\treturn t.T2.V().Name\n}\n\ntype T2 struct {\n\tName string\n}\n\nfunc (t *T2) V() *T2 {\n\tif t == nil {\n\t\treturn defaultT2\n\t}\n\treturn t\n}\n\nvar defaultT2 = &T2{\"no name\"}\n\nfunc main() {\n\tt := &T1{}\n\tprintln(t.Get())\n}\n\n// Output:\n// no name\n"
  },
  {
    "path": "_test/type13.go",
    "content": "package main\n\nvar a = &T{}\n\ntype T struct{}\n\nfunc main() {\n\tprintln(a != nil)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/type14.go",
    "content": "package main\n\nimport \"fmt\"\n\nvar a = T{}\n\ntype T struct{}\n\nfunc main() {\n\tfmt.Println(a)\n}\n\n// Output:\n// {}\n"
  },
  {
    "path": "_test/type15.go",
    "content": "package main\n\nfunc main() {\n\terr := error(nil)\n\tprintln(err == nil)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/type16.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := uint8(15) ^ byte(0)\n\tfmt.Printf(\"%T %v\\n\", a, a)\n}\n\n// Output:\n// uint8 15\n"
  },
  {
    "path": "_test/type17.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\ta := int32(15) ^ rune(0)\n\tfmt.Printf(\"%T %v\\n\", a, a)\n}\n\n// Output:\n// int32 15\n"
  },
  {
    "path": "_test/type18.go",
    "content": "package main\n\ntype T struct {\n\tname string\n\tsize int\n}\n\nvar table = []*T{{\n\tname: \"foo\",\n\tsize: 2,\n}}\n\nvar s = table[0].size\n\nfunc main() {\n\tprintln(s)\n}\n\n// Output:\n// 2\n"
  },
  {
    "path": "_test/type19.go",
    "content": "package main\n\ntype T struct {\n\tname string\n\tsize int\n}\n\nvar table = map[int]*T{\n\t0: {\n\t\tname: \"foo\",\n\t\tsize: 2,\n\t}}\n\nvar s = table[0].size\n\nfunc main() {\n\tprintln(s)\n}\n\n// Output:\n// 2\n"
  },
  {
    "path": "_test/type2.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\ntype Options struct {\n\tdebug bool\n}\n\ntype T1 struct {\n\topt  Options\n\ttime time.Time\n}\n\nfunc main() {\n\tt := T1{}\n\tt.time = time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC)\n\tfmt.Println(t.time)\n}\n\n// Output:\n// 2009-11-10 23:00:00 +0000 UTC\n"
  },
  {
    "path": "_test/type20.go",
    "content": "package main\n\nimport (\n\t\"io\"\n\t\"strings\"\n)\n\nfunc isCloser(r io.Reader) bool {\n\t_, ok := r.(io.Closer)\n\treturn ok\n}\n\nfunc main() {\n\tprintln(isCloser(strings.NewReader(\"test\")))\n}\n\n// Output:\n// false\n"
  },
  {
    "path": "_test/type21.go",
    "content": "package main\n\nimport (\n\t\"reflect\"\n\t\"time\"\n)\n\nfunc main() {\n\tt := time.Date(2009, time.November, 10, 23, 4, 5, 0, time.UTC)\n\tv := reflect.ValueOf(t.String)\n\tf := v.Interface().(func() string)\n\tprintln(f())\n}\n\n// Output:\n// 2009-11-10 23:04:05 +0000 UTC\n"
  },
  {
    "path": "_test/type22.go",
    "content": "package main\n\ntype T1 T\n\nfunc foo() T1 {\n\treturn T1(T{\"foo\"})\n}\n\ntype T struct {\n\tName string\n}\n\nfunc main() {\n\tprintln(foo().Name)\n}\n\n// Output:\n// foo\n"
  },
  {
    "path": "_test/type23.go",
    "content": "package main\n\nimport (\n\t\"net/http\"\n\t\"net/http/httptest\"\n)\n\nfunc main() {\n\tvar v1 interface{} = 1\n\tvar v2 interface{}\n\tvar v3 http.ResponseWriter = httptest.NewRecorder()\n\n\tif r1, ok := v1.(string); ok {\n\t\t_ = r1\n\t\tprintln(\"unexpected\")\n\t}\n\tif _, ok := v1.(string); ok {\n\t\tprintln(\"unexpected\")\n\t}\n\tif r2, ok := v2.(string); ok {\n\t\t_ = r2\n\t\tprintln(\"unexpected\")\n\t}\n\tif _, ok := v2.(string); ok {\n\t\tprintln(\"unexpected\")\n\t}\n\tif r3, ok := v3.(http.Pusher); ok {\n\t\t_ = r3\n\t\tprintln(\"unexpected\")\n\t}\n\tif _, ok := v3.(http.Pusher); ok {\n\t\tprintln(\"unexpected\")\n\t}\n\tprintln(\"bye\")\n}\n\n// Output:\n// bye\n"
  },
  {
    "path": "_test/type24.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n\t\"net/http/httptest\"\n)\n\nfunc main() {\n\tassertInt()\n\tassertNil()\n\tassertValue()\n}\n\nfunc assertInt() {\n\tdefer func() {\n\t\tr := recover()\n\t\tfmt.Println(r)\n\t}()\n\n\tvar v interface{} = 1\n\tprintln(v.(string))\n}\n\nfunc assertNil() {\n\tdefer func() {\n\t\tr := recover()\n\t\tfmt.Println(r)\n\t}()\n\n\tvar v interface{}\n\tprintln(v.(string))\n}\n\nfunc assertValue() {\n\tdefer func() {\n\t\tr := recover()\n\t\tfmt.Println(r)\n\t}()\n\n\tvar v http.ResponseWriter = httptest.NewRecorder()\n\tprintln(v.(http.Pusher))\n}\n\n// Output:\n// 22:10: interface conversion: interface {} is int, not string\n// 32:10: interface conversion: interface {} is nil, not string\n// 42:10: interface conversion: *httptest.ResponseRecorder is not http.Pusher: missing method Push\n"
  },
  {
    "path": "_test/type25.go",
    "content": "package main\n\nimport (\n\t\"errors\"\n\t\"sync/atomic\"\n)\n\ntype wrappedError struct {\n\twrapped error\n}\n\nfunc (e wrappedError) Error() string {\n\treturn \"some outer error\"\n}\n\nfunc (e wrappedError) Unwrap() error {\n\treturn e.wrapped\n}\n\nvar err atomic.Value\n\nfunc getWrapped() *wrappedError {\n\tif v := err.Load(); v != nil {\n\t\terr := v.(wrappedError)\n\t\tif err.wrapped != nil {\n\t\t\treturn &err\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc main() {\n\terr.Store(wrappedError{wrapped: errors.New(\"test\")})\n\n\te := getWrapped()\n\tif e != nil {\n\t\tprintln(e.Error())\n\t\tprintln(e.wrapped.Error())\n\t}\n}\n\n// Output:\n// some outer error\n// test\n"
  },
  {
    "path": "_test/type26.go",
    "content": "package main\n\nimport (\n\t\"errors\"\n\t\"sync/atomic\"\n)\n\ntype wrappedError struct {\n\twrapped error\n}\n\nfunc (e *wrappedError) Error() string {\n\treturn \"some outer error\"\n}\n\nfunc (e *wrappedError) Unwrap() error {\n\treturn e.wrapped\n}\n\nvar err atomic.Value\n\nfunc getWrapped() *wrappedError {\n\tif v := err.Load(); v != nil {\n\t\terr := v.(*wrappedError)\n\t\tif err.wrapped != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc main() {\n\terr.Store(&wrappedError{wrapped: errors.New(\"test\")})\n\n\te := getWrapped()\n\tif e != nil {\n\t\tprintln(e.Error())\n\t\tprintln(e.wrapped.Error())\n\t}\n}\n\n// Output:\n// some outer error\n// test\n"
  },
  {
    "path": "_test/type27.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype Foo = int\n\nfunc (f Foo) Bar() int {\n\treturn f * f\n}\n\nfunc main() {\n\tx := Foo(1)\n\tfmt.Println(x.Bar())\n}\n\n// Error:\n// 7:1: cannot define new methods on non-local type int\n"
  },
  {
    "path": "_test/type28.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype Foo = int\n\nfunc (f *Foo) Bar() int {\n\treturn *f * *f\n}\n\nfunc main() {\n\tx := Foo(1)\n\tfmt.Println(x.Bar())\n}\n\n// Error:\n// 7:1: cannot define new methods on non-local type int\n"
  },
  {
    "path": "_test/type29.go",
    "content": "package main\n\nvar Foo int\n\nfunc (f Foo) Bar() int {\n\treturn 1\n}\n\nfunc main() {}\n\n// Error:\n// 5:1: cannot define new methods on non-local type int\n"
  },
  {
    "path": "_test/type3.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype S1 string\n\nfunc main() {\n\ts := S1(\"Hello\")\n\tfmt.Println(s)\n}\n\n// Output:\n// Hello\n"
  },
  {
    "path": "_test/type30.go",
    "content": "package main\n\nvar Foo *int\n\nfunc (f Foo) Bar() int {\n\treturn 1\n}\n\nfunc main() {}\n\n// Error:\n// 5:1: cannot define new methods on non-local type int\n"
  },
  {
    "path": "_test/type31.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc (f Foo) Bar() int {\n\treturn f * f\n}\n\ntype Foo = int\n\nfunc main() {\n\tx := Foo(1)\n\tfmt.Println(x.Bar())\n}\n\n// Error:\n// 5:1: cannot define new methods on non-local type int\n"
  },
  {
    "path": "_test/type32.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc (f *Foo) Bar() int {\n\treturn *f * *f\n}\n\ntype Foo = int\n\nfunc main() {\n\tx := Foo(1)\n\tfmt.Println(x.Bar())\n}\n\n// Error:\n// 5:1: cannot define new methods on non-local type int\n"
  },
  {
    "path": "_test/type33.go",
    "content": "package main\n\nfunc (f *Foo) Bar() int {\n\treturn *f * *f\n}\n\nfunc main() {\n}\n\n// Error:\n// 3:1: undefined: Foo\n"
  },
  {
    "path": "_test/type34.go",
    "content": "package main\n\ntype original struct {\n\tField string\n}\n\nfunc main() {\n\ttype alias original\n\ttype alias2 alias\n\tvar a = &alias2{\n\t\tField: \"test\",\n\t}\n\tprintln(a.Field)\n}\n\n// Output:\n// test\n"
  },
  {
    "path": "_test/type4.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"reflect\"\n)\n\nfunc main() {\n\ta := int32(12)\n\tfmt.Println(reflect.TypeOf(a))\n}\n\n// Output:\n// int32\n"
  },
  {
    "path": "_test/type5.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"reflect\"\n)\n\ntype T int\n\nfunc main() {\n\ta := T(12)\n\tfmt.Println(reflect.TypeOf(a))\n}\n\n// Output:\n// int\n"
  },
  {
    "path": "_test/type6.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"reflect\"\n)\n\nfunc main() {\n\ta := T(12)\n\tfmt.Println(reflect.TypeOf(a))\n}\n\ntype T int\n\n// Output:\n// int\n"
  },
  {
    "path": "_test/type7.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar i interface{} = \"hello\"\n\tif s, ok := i.(string); ok {\n\t\tfmt.Println(s, ok)\n\t}\n}\n\n// Output:\n// hello true\n"
  },
  {
    "path": "_test/type8.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\nfunc main() {\n\tv := (*time.Time)(nil)\n\tfmt.Println(v)\n}\n\n// Output:\n// <nil>\n"
  },
  {
    "path": "_test/type9.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype Hello struct {\n\tGoodbye GoodbyeProvider\n}\n\nfunc main() {\n\ta := &Hello{}\n\n\tfmt.Println(a)\n}\n\ntype GoodbyeProvider func(message string) string\n\n// Output:\n// &{<nil>}\n"
  },
  {
    "path": "_test/unsafe0.go",
    "content": "package main\n\nimport \"unsafe\"\n\nfunc main() {\n\tstr := \"foobar\"\n\n\tp := unsafe.Pointer(&str)\n\tstr2 := *(*string)(p)\n\n\tprintln(str2)\n}\n\n// Output:\n// foobar\n"
  },
  {
    "path": "_test/unsafe1.go",
    "content": "package main\n\nimport \"unsafe\"\n\ntype S struct {\n\tName string\n}\n\nfunc main() {\n\ts := &S{Name: \"foobar\"}\n\n\tp := unsafe.Pointer(s)\n\n\ts2 := (*S)(p)\n\n\tprintln(s2.Name)\n}\n\n// Output:\n// foobar\n"
  },
  {
    "path": "_test/unsafe10.go",
    "content": "package main\n\nimport \"unsafe\"\n\ntype T struct {\n\tX uint64\n\tY uint64\n}\n\nfunc f(off uintptr) { println(off) }\n\nfunc main() {\n\tf(unsafe.Offsetof(T{}.Y))\n}\n\n// Output:\n// 8\n"
  },
  {
    "path": "_test/unsafe2.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"unsafe\"\n)\n\nfunc main() {\n\tstr := \"foobar\"\n\n\tptr := unsafe.Pointer(&str)\n\tp := uintptr(ptr)\n\n\ts1 := fmt.Sprintf(\"%x\", ptr)\n\ts2 := fmt.Sprintf(\"%x\", p)\n\tprintln(s1 == s2)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/unsafe3.go",
    "content": "package main\n\nimport (\n\t\"math/bits\"\n\t\"unsafe\"\n)\n\nconst (\n\tSSize = 16\n\tWSize = bits.UintSize / 8\n)\n\ntype S struct {\n\tX int\n\tY int\n}\n\nfunc main() {\n\tbigEndian := (*(*[2]uint8)(unsafe.Pointer(&[]uint16{1}[0])))[0] == 0\n\tvar sBuf [SSize]byte\n\ts := (*S)(unsafe.Pointer(&sBuf[0]))\n\n\ts.X = 2\n\ts.Y = 4\n\n\tif bigEndian {\n\t\tprintln(sBuf[0+WSize-1], sBuf[WSize+WSize-1])\n\t} else {\n\t\tprintln(sBuf[0], sBuf[WSize])\n\t}\n}\n\n// Output:\n// 2 4\n"
  },
  {
    "path": "_test/unsafe4.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"math/bits\"\n\t\"unsafe\"\n)\n\nconst WSize = bits.UintSize / 8\n\ntype S struct {\n\tX int\n\tY int\n\tZ int\n}\n\nfunc main() {\n\tarr := []S{\n\t\t{X: 1},\n\t\t{X: 2},\n\t\t{X: 3},\n\t}\n\taddr := unsafe.Pointer(&arr[0])\n\t// s := *(*S)(unsafe.Pointer(uintptr(addr) + SSize*2))\n\ts := *(*S)(unsafe.Pointer(uintptr(addr) + WSize*6))\n\n\tfmt.Println(s.X)\n}\n\n// Output:\n// 3\n"
  },
  {
    "path": "_test/unsafe5.go",
    "content": "package main\n\nimport (\n\t\"math/bits\"\n\t\"unsafe\"\n)\n\nconst WSize = bits.UintSize / 8\n\ntype S struct {\n\tX int\n\tY int\n\tZ int\n}\n\nfunc main() {\n\tx := S{}\n\tsize := unsafe.Sizeof(x) / WSize\n\talign := unsafe.Alignof(x.Y) / WSize\n\toffset := unsafe.Offsetof(x.Z) / WSize\n\n\tprintln(size, align, offset)\n}\n\n// Output:\n// 3 1 2\n"
  },
  {
    "path": "_test/unsafe6.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"unsafe\"\n)\n\ntype S struct {\n\tX int\n\tY int\n\tZ int\n}\n\nfunc main() {\n\tx := S{Z: 5}\n\tptr := unsafe.Pointer(&x)\n\toffset := int(unsafe.Offsetof(x.Z))\n\tp := unsafe.Add(ptr, offset)\n\n\ti := *(*int)(p)\n\n\tfmt.Println(i)\n}\n\n// Output:\n// 5\n"
  },
  {
    "path": "_test/unsafe7.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"unsafe\"\n)\n\ntype S struct {\n\tX int\n\tY int\n\tZ int\n}\n\nfunc main() {\n\tx := [2]S{{Z: 5}, {Z: 10}}\n\n\ts := unsafe.Slice(&x[0], 2)\n\n\tfmt.Println(s)\n}\n"
  },
  {
    "path": "_test/unsafe8.go",
    "content": "package main\n\nimport \"unsafe\"\n\ntype T struct {\n\ti uint64\n}\n\nvar d T\n\nvar b [unsafe.Sizeof(d)]byte\n\nfunc main() {\n\tprintln(len(b))\n}\n\n// Output:\n// 8\n"
  },
  {
    "path": "_test/var.go",
    "content": "package main\n\nfunc main() {\n\tvar a, b, c int\n\tprintln(a, b, c)\n}\n\n// Output:\n// 0 0 0\n"
  },
  {
    "path": "_test/var10.go",
    "content": "package main\n\nvar _ = true\nvar _ = \"hello\"\n\nfunc main() {\n\tprintln(\"hello\")\n}\n\n// Output:\n// hello\n"
  },
  {
    "path": "_test/var11.go",
    "content": "package main\n\nvar a, _, _, b = 1, true, \"foo\", 2\n\nfunc main() {\n\tprintln(a, b)\n}\n\n// Output:\n// 1 2\n"
  },
  {
    "path": "_test/var12.go",
    "content": "package main\n\nvar (\n\ta = b\n\tb = \"hello\"\n)\n\nfunc main() {\n\tprintln(a)\n}\n\n// Output:\n// hello\n"
  },
  {
    "path": "_test/var13.go",
    "content": "package main\n\nvar (\n\ta = concat(\"hello\", b)\n\tb = concat(\" \", c, \"!\")\n\tc = d\n\td = \"world\"\n)\n\nfunc concat(a ...string) string {\n\tvar s string\n\tfor _, ss := range a {\n\t\ts += ss\n\t}\n\treturn s\n}\n\nfunc main() {\n\tprintln(a)\n}\n\n// Output:\n// hello world!\n"
  },
  {
    "path": "_test/var14.go",
    "content": "package main\n\nimport \"github.com/traefik/yaegi/_test/vars\"\n\nfunc main() {\n\tprintln(vars.A)\n}\n\n// Output:\n// hello world!\n"
  },
  {
    "path": "_test/var15.go",
    "content": "package main\n\nvar a int = 2\n\nfunc inca() {\n\ta = a + 1\n}\n\nfunc main() {\n\tinca()\n\tprintln(a)\n}\n\n// Output:\n// 3\n"
  },
  {
    "path": "_test/var16.go",
    "content": "package main\n\nfunc getArray() ([]int, error) { println(\"getArray\"); return []int{1, 2}, nil }\n\nfunc getNum() (int, error) { println(\"getNum\"); return 3, nil }\n\nfunc main() {\n\tif a, err := getNum(); err != nil {\n\t\tprintln(\"#1\", a)\n\t} else if a, err := getArray(); err != nil {\n\t\tprintln(\"#2\", a)\n\t}\n\tprintln(\"#3\")\n}\n\n// Output:\n// getNum\n// getArray\n// #3\n"
  },
  {
    "path": "_test/var2.go",
    "content": "package main\n\nfunc main() {\n\tvar a int = 2\n\tprintln(a)\n}\n\n// Output:\n// 2\n"
  },
  {
    "path": "_test/var3.go",
    "content": "package main\n\nfunc main() {\n\tvar a, b int = 2, 3\n\tprintln(a, b)\n}\n\n// Output:\n// 2 3\n"
  },
  {
    "path": "_test/var4.go",
    "content": "package main\n\nfunc main() {\n\tvar a, b = 2, 3\n\tprintln(a, b)\n}\n\n// Output:\n// 2 3\n"
  },
  {
    "path": "_test/var5.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar a int64 = 64\n\tfmt.Printf(\"a: %v %T\", a, a)\n\tfmt.Println()\n}\n\n// Output:\n// a: 64 int64\n"
  },
  {
    "path": "_test/var6.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\ntype Foo struct {\n\tA string\n}\n\nvar f = Foo{\"world\"} // <-- the root cause\n\nfunc Hello() {\n\tfmt.Println(\"in\")\n}\n\nvar name = \"v1\" // <-- the root cause\n\nfunc main() {\n\tHello()\n\tfmt.Println(\"Hello\", f.A, name)\n}\n\n// Output:\n// in\n// Hello world v1\n"
  },
  {
    "path": "_test/var7.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\ntype T struct {\n\tName string\n}\n\nvar m = make(map[string]*T)\n\nfunc main() {\n\tfmt.Println(m)\n}\n\n// Output:\n// map[]\n"
  },
  {
    "path": "_test/var8.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"reflect\"\n)\n\ntype Message struct {\n\tName string\n}\n\nvar protoMessageType = reflect.TypeOf((*Message)(nil)).Elem()\n\nfunc main() {\n\tfmt.Println(protoMessageType.Kind())\n}\n\n// Output:\n// struct\n"
  },
  {
    "path": "_test/var9.go",
    "content": "package main\n\nvar a = \"sdofjsdfj\"\nvar z = a[0:2]\n\nfunc main() {\n\tprintln(z)\n}\n\n// Output:\n// sd\n"
  },
  {
    "path": "_test/variadic.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc f(a ...int) {\n\tfmt.Println(a)\n}\n\nfunc main() {\n\tf(1, 2, 3, 4)\n}\n\n// Output:\n// [1 2 3 4]\n"
  },
  {
    "path": "_test/variadic0.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc f(s string, a ...int) {\n\tfmt.Println(s, a)\n}\n\nfunc main() {\n\tf(\"hello\")\n}\n\n// Output:\n// hello []\n"
  },
  {
    "path": "_test/variadic1.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc f(s string, a ...int32) {\n\tfmt.Println(s, a)\n}\n\nfunc main() {\n\tf(\"hello\", 1, 2, 3)\n}\n\n// Output:\n// hello [1 2 3]\n"
  },
  {
    "path": "_test/variadic10.go",
    "content": "package main\n\nimport (\n\t\"log\"\n\t\"os\"\n)\n\nfunc main() {\n\tlogger := log.New(os.Stdout, \"test \", log.Lmsgprefix)\n\tlogger.Printf(\"args: %v %v\", 1, \"truc\")\n\tlogger.Printf(\"args: %v %v %v\", 1, \"truc\", 2)\n}\n\n// Output:\n// test args: 1 truc\n// test args: 1 truc 2\n"
  },
  {
    "path": "_test/variadic2.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc f(a ...int) {\n\tif len(a) > 2 {\n\t\tfmt.Println(a[2])\n\t}\n}\n\nfunc main() {\n\tf(1, 2, 3, 4)\n}\n\n// Output:\n// 3\n"
  },
  {
    "path": "_test/variadic3.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc f(a ...int) int {\n\tfmt.Println(a)\n\tres := 0\n\tfor _, v := range a {\n\t\tres += v\n\t}\n\treturn res\n}\n\nfunc main() {\n\tfmt.Println(f(1, 2, 3, 4))\n}\n\n// Output:\n// [1 2 3 4]\n// 10\n"
  },
  {
    "path": "_test/variadic4.go",
    "content": "package main\n\nfunc variadic(s ...string) {}\n\nfunc f(s string) { println(s + \"bar\") }\n\nfunc main() { f(\"foo\") }\n\n// Output:\n// foobar\n"
  },
  {
    "path": "_test/variadic5.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n)\n\ntype A struct {\n}\n\nfunc (a A) f(vals ...bool) {\n\tfor _, v := range vals {\n\t\tfmt.Println(v)\n\t}\n}\n\nfunc main() {\n\ta := A{}\n\ta.f(true)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/variadic6.go",
    "content": "package main\n\nimport \"fmt\"\n\ntype A struct {\n}\n\nfunc (a A) f(vals ...bool) {\n\tfor _, v := range vals {\n\t\tfmt.Println(v)\n\t}\n}\nfunc main() {\n\tbools := []bool{true}\n\ta := A{}\n\ta.f(bools...)\n}\n\n// Output:\n// true\n"
  },
  {
    "path": "_test/variadic7.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tvar a, b string\n\n\tpattern := \"%s %s\"\n\tdest := []interface{}{&a, &b}\n\n\tn, err := fmt.Sscanf(\"test1 test2\", pattern, dest...)\n\tif err != nil || n != len(dest) {\n\t\tprintln(\"error\")\n\t\treturn\n\t}\n\tprintln(a, b)\n}\n\n// Output:\n// test1 test2\n"
  },
  {
    "path": "_test/variadic8.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"time\"\n)\n\nfunc main() {\n\tfn1 := func(args ...*time.Duration) string {\n\t\treturn \"\"\n\t}\n\n\tfmt.Printf(\"%T\\n\", fn1)\n}\n\n// Output:\n// func(...*time.Duration) string\n"
  },
  {
    "path": "_test/variadic9.go",
    "content": "package main\n\nimport \"fmt\"\n\nfunc Sprintf(format string, a ...interface{}) string {\n\treturn fmt.Sprintf(format, a...)\n}\n\nfunc main() {\n\tfmt.Println(Sprintf(\"Hello %s\", \"World!\"))\n}\n\n// Output:\n// Hello World!\n"
  },
  {
    "path": "_test/vars/first.go",
    "content": "package vars\n\nvar (\n\tA = concat(\"hello\", B)\n\tC = D\n)\n\nfunc concat(a ...string) string {\n\tvar s string\n\tfor _, ss := range a {\n\t\ts += ss\n\t}\n\treturn s\n}\n"
  },
  {
    "path": "_test/vars/second.go",
    "content": "package vars\n\nvar (\n\tB = concat(\" \", C, \"!\")\n\tD = \"world\"\n)\n"
  },
  {
    "path": "cmd/yaegi/extract.go",
    "content": "package main\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n\t\"errors\"\n\t\"flag\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n\n\t\"github.com/traefik/yaegi/extract\"\n)\n\nfunc extractCmd(arg []string) error {\n\tvar licensePath string\n\tvar name string\n\tvar exclude string\n\tvar include string\n\tvar tag string\n\n\teflag := flag.NewFlagSet(\"run\", flag.ContinueOnError)\n\teflag.StringVar(&licensePath, \"license\", \"\", \"path to a LICENSE file\")\n\teflag.StringVar(&name, \"name\", \"\", \"the namespace for the extracted symbols\")\n\teflag.StringVar(&exclude, \"exclude\", \"\", \"comma separated list of regexp matching symbols to exclude\")\n\teflag.StringVar(&include, \"include\", \"\", \"comma separated list of regexp matching symbols to include\")\n\teflag.StringVar(&tag, \"tag\", \"\", \"comma separated list of build tags to be added to the created package\")\n\teflag.Usage = func() {\n\t\tfmt.Println(\"Usage: yaegi extract [options] packages...\")\n\t\tfmt.Println(\"Options:\")\n\t\teflag.PrintDefaults()\n\t}\n\n\tif err := eflag.Parse(arg); err != nil {\n\t\treturn err\n\t}\n\n\targs := eflag.Args()\n\tif len(args) == 0 {\n\t\treturn errors.New(\"missing package\")\n\t}\n\n\tlicense, err := genLicense(licensePath)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\twd, err := os.Getwd()\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tif name == \"\" {\n\t\tname = filepath.Base(wd)\n\t}\n\text := extract.Extractor{\n\t\tDest:    name,\n\t\tLicense: license,\n\t}\n\tif tag != \"\" {\n\t\text.Tag = strings.Split(tag, \",\")\n\t}\n\n\tif exclude != \"\" {\n\t\text.Exclude = strings.Split(exclude, \",\")\n\t}\n\tif include != \"\" {\n\t\text.Include = strings.Split(include, \",\")\n\t}\n\n\tr := strings.NewReplacer(\"/\", \"-\", \".\", \"_\", \"~\", \"_\")\n\n\tfor _, pkgIdent := range args {\n\t\tvar buf bytes.Buffer\n\t\timportPath, err := ext.Extract(pkgIdent, name, &buf)\n\t\tif err != nil {\n\t\t\tfmt.Fprintln(os.Stderr, err)\n\t\t\tcontinue\n\t\t}\n\n\t\toFile := r.Replace(importPath) + \".go\"\n\t\tf, err := os.Create(oFile)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tif _, err := io.Copy(f, &buf); err != nil {\n\t\t\t_ = f.Close()\n\t\t\treturn err\n\t\t}\n\n\t\tif err := f.Close(); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\treturn nil\n}\n\n// genLicense generates the correct LICENSE header text from the provided\n// path to a LICENSE file.\nfunc genLicense(fname string) (string, error) {\n\tif fname == \"\" {\n\t\treturn \"\", nil\n\t}\n\n\tf, err := os.Open(fname)\n\tif err != nil {\n\t\treturn \"\", fmt.Errorf(\"could not open LICENSE file: %w\", err)\n\t}\n\tdefer func() { _ = f.Close() }()\n\n\tlicense := new(strings.Builder)\n\tsc := bufio.NewScanner(f)\n\tfor sc.Scan() {\n\t\ttxt := sc.Text()\n\t\tif txt != \"\" {\n\t\t\ttxt = \" \" + txt\n\t\t}\n\t\tlicense.WriteString(\"//\" + txt + \"\\n\")\n\t}\n\n\tif err := sc.Err(); err != nil {\n\t\treturn \"\", fmt.Errorf(\"could not scan LICENSE file: %w\", err)\n\t}\n\n\treturn license.String(), nil\n}\n"
  },
  {
    "path": "cmd/yaegi/help.go",
    "content": "package main\n\nimport \"fmt\"\n\nconst usage = `Yaegi is a Go interpreter.\n\nUsage:\n\n    yaegi [command] [arguments]\n\nThe commands are:\n\n    extract     generate a wrapper file from a source package\n    help        print usage information\n    run         execute a Go program from source\n    test        execute test functions in a Go package\n    version     print version\n\nUse \"yaegi help <command>\" for more information about a command.\n\nIf no command is given or if the first argument is not a command, then\nthe run command is assumed.\n`\n\nfunc help(arg []string) error {\n\tvar cmd string\n\tif len(arg) > 0 {\n\t\tcmd = arg[0]\n\t}\n\n\tswitch cmd {\n\tcase Extract:\n\t\treturn extractCmd([]string{\"-h\"})\n\tcase Help, \"\", \"-h\", \"--help\":\n\t\tfmt.Print(usage)\n\t\treturn nil\n\tcase Run:\n\t\treturn run([]string{\"-h\"})\n\tcase Test:\n\t\treturn test([]string{\"-h\"})\n\tcase Version:\n\t\tfmt.Println(\"Usage: yaegi version\")\n\t\treturn nil\n\tdefault:\n\t\treturn fmt.Errorf(\"help: invalid yaegi command: %v\", cmd)\n\t}\n}\n"
  },
  {
    "path": "cmd/yaegi/run.go",
    "content": "package main\n\nimport (\n\t\"flag\"\n\t\"fmt\"\n\t\"go/build\"\n\t\"os\"\n\t\"reflect\"\n\t\"strconv\"\n\t\"strings\"\n\n\t\"github.com/traefik/yaegi/interp\"\n\t\"github.com/traefik/yaegi/stdlib\"\n\t\"github.com/traefik/yaegi/stdlib/syscall\"\n\t\"github.com/traefik/yaegi/stdlib/unrestricted\"\n\t\"github.com/traefik/yaegi/stdlib/unsafe\"\n)\n\nfunc run(arg []string) error {\n\tvar interactive bool\n\tvar noAutoImport bool\n\tvar tags string\n\tvar cmd string\n\tvar err error\n\n\t// The following flags are initialized from environment.\n\tuseSyscall, _ := strconv.ParseBool(os.Getenv(\"YAEGI_SYSCALL\"))\n\tuseUnrestricted, _ := strconv.ParseBool(os.Getenv(\"YAEGI_UNRESTRICTED\"))\n\tuseUnsafe, _ := strconv.ParseBool(os.Getenv(\"YAEGI_UNSAFE\"))\n\n\trflag := flag.NewFlagSet(\"run\", flag.ContinueOnError)\n\trflag.BoolVar(&interactive, \"i\", false, \"start an interactive REPL\")\n\trflag.BoolVar(&useSyscall, \"syscall\", useSyscall, \"include syscall symbols\")\n\trflag.BoolVar(&useUnrestricted, \"unrestricted\", useUnrestricted, \"include unrestricted symbols\")\n\trflag.StringVar(&tags, \"tags\", \"\", \"set a list of build tags\")\n\trflag.BoolVar(&useUnsafe, \"unsafe\", useUnsafe, \"include unsafe symbols\")\n\trflag.BoolVar(&noAutoImport, \"noautoimport\", false, \"do not auto import pre-compiled packages. Import names that would result in collisions (e.g. rand from crypto/rand and rand from math/rand) are automatically renamed (crypto_rand and math_rand)\")\n\trflag.StringVar(&cmd, \"e\", \"\", \"set the command to be executed (instead of script or/and shell)\")\n\trflag.Usage = func() {\n\t\tfmt.Println(\"Usage: yaegi run [options] [path] [args]\")\n\t\tfmt.Println(\"Options:\")\n\t\trflag.PrintDefaults()\n\t}\n\tif err = rflag.Parse(arg); err != nil {\n\t\treturn err\n\t}\n\targs := rflag.Args()\n\n\ti := interp.New(interp.Options{\n\t\tGoPath:       build.Default.GOPATH,\n\t\tBuildTags:    strings.Split(tags, \",\"),\n\t\tEnv:          os.Environ(),\n\t\tUnrestricted: useUnrestricted,\n\t})\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\treturn err\n\t}\n\tif err := i.Use(interp.Symbols); err != nil {\n\t\treturn err\n\t}\n\tif useSyscall {\n\t\tif err := i.Use(syscall.Symbols); err != nil {\n\t\t\treturn err\n\t\t}\n\t\t// Using a environment var allows a nested interpreter to import the syscall package.\n\t\tif err := os.Setenv(\"YAEGI_SYSCALL\", \"1\"); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\tif useUnsafe {\n\t\tif err := i.Use(unsafe.Symbols); err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif err := os.Setenv(\"YAEGI_UNSAFE\", \"1\"); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\tif useUnrestricted {\n\t\t// Use of unrestricted symbols should always follow stdlib and syscall symbols, to update them.\n\t\tif err := i.Use(unrestricted.Symbols); err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif err := os.Setenv(\"YAEGI_UNRESTRICTED\", \"1\"); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\tif cmd != \"\" {\n\t\tif !noAutoImport {\n\t\t\ti.ImportUsed()\n\t\t}\n\t\tvar v reflect.Value\n\t\tv, err = i.Eval(cmd)\n\t\tif len(args) == 0 && v.IsValid() {\n\t\t\tfmt.Println(v)\n\t\t}\n\t}\n\n\tif len(args) == 0 {\n\t\tif cmd == \"\" || interactive {\n\t\t\tshowError(err)\n\t\t\tif !noAutoImport {\n\t\t\t\ti.ImportUsed()\n\t\t\t}\n\t\t\t_, err = i.REPL()\n\t\t}\n\t\treturn err\n\t}\n\n\t// Skip first os arg to set command line as expected by interpreted main.\n\tpath := args[0]\n\tos.Args = arg\n\tflag.CommandLine = flag.NewFlagSet(path, flag.ExitOnError)\n\n\tif isFile(path) {\n\t\terr = runFile(i, path, noAutoImport)\n\t} else {\n\t\t_, err = i.EvalPath(path)\n\t}\n\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tif interactive {\n\t\t_, err = i.REPL()\n\t}\n\treturn err\n}\n\nfunc isFile(path string) bool {\n\tfi, err := os.Stat(path)\n\treturn err == nil && fi.Mode().IsRegular()\n}\n\nfunc runFile(i *interp.Interpreter, path string, noAutoImport bool) error {\n\tb, err := os.ReadFile(path)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tif s := string(b); strings.HasPrefix(s, \"#!\") {\n\t\t// Allow executable go scripts, Have the same behavior as in interactive mode.\n\t\ts = strings.Replace(s, \"#!\", \"//\", 1)\n\t\tif !noAutoImport {\n\t\t\ti.ImportUsed()\n\t\t}\n\t\t_, err = i.Eval(s)\n\t\treturn err\n\t}\n\n\t// Files not starting with \"#!\" are supposed to be pure Go, directly Evaled.\n\t_, err = i.EvalPath(path)\n\treturn err\n}\n\nfunc showError(err error) {\n\tif err == nil {\n\t\treturn\n\t}\n\tfmt.Fprintln(os.Stderr, err)\n\tif p, ok := err.(interp.Panic); ok {\n\t\tfmt.Fprintln(os.Stderr, string(p.Stack))\n\t}\n}\n"
  },
  {
    "path": "cmd/yaegi/test.go",
    "content": "package main\n\nimport (\n\t\"errors\"\n\t\"flag\"\n\t\"fmt\"\n\t\"go/build\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"regexp\"\n\t\"strconv\"\n\t\"strings\"\n\t\"testing\"\n\n\t\"github.com/traefik/yaegi/interp\"\n\t\"github.com/traefik/yaegi/stdlib\"\n\t\"github.com/traefik/yaegi/stdlib/syscall\"\n\t\"github.com/traefik/yaegi/stdlib/unrestricted\"\n\t\"github.com/traefik/yaegi/stdlib/unsafe\"\n)\n\nfunc test(arg []string) (err error) {\n\tvar (\n\t\tbench     string\n\t\tbenchmem  bool\n\t\tbenchtime string\n\t\tcount     string\n\t\tcpu       string\n\t\tfailfast  bool\n\t\trun       string\n\t\tshort     bool\n\t\ttags      string\n\t\ttimeout   string\n\t\tverbose   bool\n\t)\n\n\t// The following flags are initialized from environment.\n\tuseSyscall, _ := strconv.ParseBool(os.Getenv(\"YAEGI_SYSCALL\"))\n\tuseUnrestricted, _ := strconv.ParseBool(os.Getenv(\"YAEGI_UNRESTRICTED\"))\n\tuseUnsafe, _ := strconv.ParseBool(os.Getenv(\"YAEGI_UNSAFE\"))\n\n\ttflag := flag.NewFlagSet(\"test\", flag.ContinueOnError)\n\ttflag.StringVar(&bench, \"bench\", \"\", \"Run only those benchmarks matching a regular expression.\")\n\ttflag.BoolVar(&benchmem, \"benchmem\", false, \"Print memory allocation statistics for benchmarks.\")\n\ttflag.StringVar(&benchtime, \"benchtime\", \"\", \"Run enough iterations of each benchmark to take t.\")\n\ttflag.StringVar(&count, \"count\", \"\", \"Run each test and benchmark n times (default 1).\")\n\ttflag.StringVar(&cpu, \"cpu\", \"\", \"Specify a list of GOMAXPROCS values for which the tests or benchmarks should be executed.\")\n\ttflag.BoolVar(&failfast, \"failfast\", false, \"Do not start new tests after the first test failure.\")\n\ttflag.StringVar(&run, \"run\", \"\", \"Run only those tests matching a regular expression.\")\n\ttflag.BoolVar(&short, \"short\", false, \"Tell long-running tests to shorten their run time.\")\n\ttflag.StringVar(&tags, \"tags\", \"\", \"Set a list of build tags.\")\n\ttflag.StringVar(&timeout, \"timeout\", \"\", \"If a test binary runs longer than duration d, panic.\")\n\ttflag.BoolVar(&useUnrestricted, \"unrestricted\", useUnrestricted, \"Include unrestricted symbols.\")\n\ttflag.BoolVar(&useUnsafe, \"unsafe\", useUnsafe, \"Include usafe symbols.\")\n\ttflag.BoolVar(&useSyscall, \"syscall\", useSyscall, \"Include syscall symbols.\")\n\ttflag.BoolVar(&verbose, \"v\", false, \"Verbose output: log all tests as they are run.\")\n\ttflag.Usage = func() {\n\t\tfmt.Println(\"Usage: yaegi test [options] [path]\")\n\t\tfmt.Println(\"Options:\")\n\t\ttflag.PrintDefaults()\n\t}\n\tif err = tflag.Parse(arg); err != nil {\n\t\treturn err\n\t}\n\targs := tflag.Args()\n\tpath := \".\"\n\tif len(args) > 0 {\n\t\tpath = args[0]\n\t}\n\n\t// Overwrite os.Args with correct flags to setup testing.Init.\n\ttf := []string{\"\"}\n\tif bench != \"\" {\n\t\ttf = append(tf, \"-test.bench\", bench)\n\t}\n\tif benchmem {\n\t\ttf = append(tf, \"-test.benchmem\")\n\t}\n\tif benchtime != \"\" {\n\t\ttf = append(tf, \"-test.benchtime\", benchtime)\n\t}\n\tif count != \"\" {\n\t\ttf = append(tf, \"-test.count\", count)\n\t}\n\tif cpu != \"\" {\n\t\ttf = append(tf, \"-test.cpu\", cpu)\n\t}\n\tif failfast {\n\t\ttf = append(tf, \"-test.failfast\")\n\t}\n\tif run != \"\" {\n\t\ttf = append(tf, \"-test.run\", run)\n\t}\n\tif short {\n\t\ttf = append(tf, \"-test.short\")\n\t}\n\tif timeout != \"\" {\n\t\ttf = append(tf, \"-test.timeout\", timeout)\n\t}\n\tif verbose {\n\t\ttf = append(tf, \"-test.v\")\n\t}\n\ttesting.Init()\n\tos.Args = tf\n\tflag.Parse()\n\tpath += string(filepath.Separator)\n\tvar dir string\n\n\tswitch strings.Split(path, string(filepath.Separator))[0] {\n\tcase \".\", \"..\", string(filepath.Separator):\n\t\tdir = path\n\tdefault:\n\t\tdir = filepath.Join(build.Default.GOPATH, \"src\", path)\n\t}\n\tif err = os.Chdir(dir); err != nil {\n\t\treturn err\n\t}\n\n\ti := interp.New(interp.Options{\n\t\tGoPath:       build.Default.GOPATH,\n\t\tBuildTags:    strings.Split(tags, \",\"),\n\t\tEnv:          os.Environ(),\n\t\tUnrestricted: useUnrestricted,\n\t})\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\treturn err\n\t}\n\tif err := i.Use(interp.Symbols); err != nil {\n\t\treturn err\n\t}\n\tif useSyscall {\n\t\tif err := i.Use(syscall.Symbols); err != nil {\n\t\t\treturn err\n\t\t}\n\t\t// Using a environment var allows a nested interpreter to import the syscall package.\n\t\tif err := os.Setenv(\"YAEGI_SYSCALL\", \"1\"); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\tif useUnrestricted {\n\t\tif err := i.Use(unrestricted.Symbols); err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif err := os.Setenv(\"YAEGI_UNRESTRICTED\", \"1\"); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\tif useUnsafe {\n\t\tif err := i.Use(unsafe.Symbols); err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif err := os.Setenv(\"YAEGI_UNSAFE\", \"1\"); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\tif err = i.EvalTest(path); err != nil {\n\t\treturn err\n\t}\n\n\tbenchmarks := []testing.InternalBenchmark{}\n\ttests := []testing.InternalTest{}\n\tsyms, ok := i.Symbols(path)[path]\n\tif !ok {\n\t\treturn errors.New(\"no tests found\")\n\t}\n\tfor name, sym := range syms {\n\t\tswitch fun := sym.Interface().(type) {\n\t\tcase func(*testing.B):\n\t\t\tbenchmarks = append(benchmarks, testing.InternalBenchmark{name, fun})\n\t\tcase func(*testing.T):\n\t\t\ttests = append(tests, testing.InternalTest{name, fun})\n\t\t}\n\t}\n\n\ttesting.Main(regexp.MatchString, tests, benchmarks, nil)\n\treturn nil\n}\n"
  },
  {
    "path": "cmd/yaegi/yaegi.go",
    "content": "/*\nYaegi interprets Go programs.\n\nYaegi reads Go language programs from standard input, string\nparameters or files and run them.\n\nIf invoked with no arguments, it processes the standard input in\na Read-Eval-Print-Loop. A prompt is displayed if standard input is\na terminal.\n\nFile Mode\n\nIn file mode, as in a standard Go compiler, source files are read entirely\nbefore being parsed, then evaluated. It allows to handle forward\ndeclarations and to have package code split in multiple source files.\n\nGo specifications fully apply in this mode.\n\nAll files are interpreted in file mode except the initial file if it\nstarts with \"#!\" characters (the shebang pattern to allow executable\nscripts), for example \"#!/usr/bin/env yaegi\". In that case, the initial\nfile is interpreted in REPL mode.\n\nREPL mode\n\nIn REPL mode, the interpreter parses the code incrementally. As soon\nas a statement is complete, it evaluates it. This makes the interpreter\nsuitable for interactive command line and scripts.\n\nGo specifications apply with the following differences:\n\nAll local and global declarations (const, var, type, func) are allowed,\nincluding in short form, except that all identifiers must be defined\nbefore use (as declarations inside a standard Go function).\n\nThe statements are evaluated in the global space, within an implicit\n\"main\" package.\n\nIt is not necessary to have a package statement, or a main function in\nREPL mode. Import statements for preloaded binary packages can also\nbe avoided (i.e. all the standard library except the few packages\nwhere default names collide, as \"math/rand\" and \"crypto/rand\", for which\nan explicit import is still necessary).\n\nNote that the source packages are always interpreted in file mode,\neven if imported from REPL.\n\nThe following extract is a valid executable script:\n\n\t#!/usr/bin/env yaegi\n\thelloHandler := func(w http.ResponseWriter, req *http.Request) {\n\t   io.WriteString(w, \"Hello, world!\\n\")\n\t}\n\thttp.HandleFunc(\"/hello\", helloHandler)\n\tlog.Fatal(http.ListenAndServe(\":8080\", nil))\n\nExample of a one liner:\n\n\t$ yaegi -e 'println(reflect.TypeOf(fmt.Print))'\n\nOptions:\n\t-e string\n\t   evaluate the string and return.\n    -i\n\t   start an interactive REPL after file execution.\n\t-syscall\n\t   include syscall symbols.\n\t-tags tag,list\n\t   a comma-separated list of build tags to consider satisfied during\n\t   the interpretation.\n\t-unsafe\n\t  include unsafe symbols.\n\nEnvironment variables:\n  YAEGI_SYSCALL=1\n    Include syscall symbols (same as -syscall flag).\n  YAEGI_UNRESTRICTED=1\n    Include unrestricted symbols (same as -unrestricted flag).\n  YAEGI_UNSAFE=1\n    Include unsafe symbols (same as -unsafe flag).\n  YAEGI_PROMPT=1\n    Force enable the printing of the REPL prompt and the result of last instruction,\n    even if stdin is not a terminal.\n  YAEGI_AST_DOT=1\n    Generate and display graphviz dot of AST with dotty(1)\n  YAEGI_CFG_DOT=1\n    Generate and display graphviz dot of CFG with dotty(1)\n  YAEGI_DOT_CMD='dot -Tsvg -ofoo.svg'\n    Defines how to process the dot code generated whenever YAEGI_AST_DOT and/or\n    YAEGI_CFG_DOT is enabled. If any of YAEGI_AST_DOT or YAEGI_CFG_DOT is set,\n    but YAEGI_DOT_CMD is not defined, the default is to write to a .dot file\n    next to the Go source file.\n*/\npackage main\n\nimport (\n\t\"errors\"\n\t\"flag\"\n\t\"fmt\"\n\t\"log\"\n\t\"os\"\n\n\t\"github.com/traefik/yaegi/interp\"\n)\n\nconst (\n\tExtract = \"extract\"\n\tHelp    = \"help\"\n\tRun     = \"run\"\n\tTest    = \"test\"\n\tVersion = \"version\"\n)\n\nvar version = \"devel\" // This may be overwritten at build time.\n\nfunc main() {\n\tvar cmd string\n\tvar err error\n\tvar exitCode int\n\n\tlog.SetFlags(log.Lshortfile) // Ease debugging.\n\n\tif len(os.Args) > 1 {\n\t\tcmd = os.Args[1]\n\t}\n\n\tswitch cmd {\n\tcase Extract:\n\t\terr = extractCmd(os.Args[2:])\n\tcase Help, \"-h\", \"--help\":\n\t\terr = help(os.Args[2:])\n\tcase Run:\n\t\terr = run(os.Args[2:])\n\tcase Test:\n\t\terr = test(os.Args[2:])\n\tcase Version:\n\t\tfmt.Println(version)\n\tdefault:\n\t\t// If no command is given, fallback to default \"run\" command.\n\t\t// This allows scripts starting with \"#!/usr/bin/env yaegi\",\n\t\t// as passing more than 1 argument to #! executable may be not supported\n\t\t// on all platforms.\n\t\tcmd = Run\n\t\terr = run(os.Args[1:])\n\t}\n\n\tif err != nil && !errors.Is(err, flag.ErrHelp) {\n\t\tfmt.Fprintln(os.Stderr, fmt.Errorf(\"%s: %w\", cmd, err))\n\t\tif p, ok := err.(interp.Panic); ok {\n\t\t\tfmt.Fprintln(os.Stderr, string(p.Stack))\n\t\t}\n\t\texitCode = 1\n\t}\n\tos.Exit(exitCode)\n}\n"
  },
  {
    "path": "cmd/yaegi/yaegi_test.go",
    "content": "package main\n\nimport (\n\t\"bytes\"\n\t\"context\"\n\t\"os\"\n\t\"os/exec\"\n\t\"path/filepath\"\n\t\"runtime\"\n\t\"strconv\"\n\t\"strings\"\n\t\"testing\"\n\t\"time\"\n)\n\nconst (\n\t// CITimeoutMultiplier is the multiplier for all timeouts in the CI.\n\tCITimeoutMultiplier = 3\n)\n\n// Sleep pauses the current goroutine for at least the duration d.\nfunc Sleep(d time.Duration) {\n\td = applyCIMultiplier(d)\n\ttime.Sleep(d)\n}\n\nfunc applyCIMultiplier(timeout time.Duration) time.Duration {\n\tci := os.Getenv(\"CI\")\n\tif ci == \"\" {\n\t\treturn timeout\n\t}\n\tb, err := strconv.ParseBool(ci)\n\tif err != nil || !b {\n\t\treturn timeout\n\t}\n\treturn time.Duration(float64(timeout) * CITimeoutMultiplier)\n}\n\nfunc TestYaegiCmdCancel(t *testing.T) {\n\tif runtime.GOOS == \"windows\" {\n\t\tt.Skip(\"skipping cancel test since windows has no os.Interrupt signal\")\n\t}\n\ttmp := t.TempDir()\n\tyaegi := filepath.Join(tmp, \"yaegi\")\n\n\targs := []string{\"build\"}\n\tif raceDetectorSupported(runtime.GOOS, runtime.GOARCH) {\n\t\targs = append(args, \"-race\")\n\t}\n\targs = append(args, \"-o\", yaegi, \".\")\n\n\tbuild := exec.Command(\"go\", args...)\n\n\tout, err := build.CombinedOutput()\n\tif err != nil {\n\t\tt.Fatalf(\"failed to build yaegi command: %v: %s\", err, out)\n\t}\n\n\t// Test src must be terminated by a single newline.\n\ttests := []string{\n\t\t\"for {}\\n\",\n\t\t\"select {}\\n\",\n\t}\n\tfor _, src := range tests {\n\t\tcmd := exec.Command(yaegi)\n\t\tin, err := cmd.StdinPipe()\n\t\tif err != nil {\n\t\t\tt.Errorf(\"failed to get stdin pipe to yaegi command: %v\", err)\n\t\t}\n\t\tvar outBuf, errBuf bytes.Buffer\n\t\tcmd.Stdout = &outBuf\n\t\tcmd.Stderr = &errBuf\n\n\t\t// https://golang.org/doc/articles/race_detector.html#Options\n\t\tcmd.Env = []string{`GORACE=\"halt_on_error=1\"`}\n\n\t\terr = cmd.Start()\n\t\tif err != nil {\n\t\t\tt.Fatalf(\"failed to start yaegi command: %v\", err)\n\t\t}\n\n\t\t_, err = in.Write([]byte(src))\n\t\tif err != nil {\n\t\t\tt.Errorf(\"failed pipe test source to yaegi command: %v\", err)\n\t\t}\n\t\tSleep(500 * time.Millisecond)\n\t\terr = cmd.Process.Signal(os.Interrupt)\n\t\tif err != nil {\n\t\t\tt.Errorf(\"failed to send os.Interrupt to yaegi command: %v\", err)\n\t\t}\n\n\t\t_, err = in.Write([]byte(\"1+1\\n\"))\n\t\tif err != nil {\n\t\t\tt.Errorf(\"failed to probe race: %v\", err)\n\t\t}\n\t\terr = in.Close()\n\t\tif err != nil {\n\t\t\tt.Errorf(\"failed to close stdin pipe: %v\", err)\n\t\t}\n\n\t\terr = cmd.Wait()\n\t\tif err != nil {\n\t\t\tif cmd.ProcessState.ExitCode() == 66 { // See race_detector.html article.\n\t\t\t\tt.Errorf(\"race detected running yaegi command canceling %q: %v\", src, err)\n\t\t\t\tif testing.Verbose() {\n\t\t\t\t\tt.Log(&errBuf)\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tt.Errorf(\"error running yaegi command for %q: %v\", src, err)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\n\t\tif strings.TrimSuffix(errBuf.String(), \"\\n\") != context.Canceled.Error() {\n\t\t\tt.Errorf(\"unexpected error: %q\", &errBuf)\n\t\t}\n\t}\n}\n\nfunc raceDetectorSupported(goos, goarch string) bool {\n\tif strings.Contains(os.Getenv(\"GOFLAGS\"), \"-buildmode=pie\") {\n\t\t// The Go race detector is not compatible with position independent code (pie).\n\t\t// We read the conventional GOFLAGS env variable used for example on AlpineLinux\n\t\t// to build packages, as there is no way to get this information from the runtime.\n\t\treturn false\n\t}\n\tswitch goos {\n\tcase \"linux\":\n\t\treturn goarch == \"amd64\" || goarch == \"ppc64le\" || goarch == \"arm64\"\n\tcase \"darwin\":\n\t\treturn goarch == \"amd64\" || goarch == \"arm64\"\n\tcase \"freebsd\", \"netbsd\", \"openbsd\", \"windows\":\n\t\treturn goarch == \"amd64\"\n\tdefault:\n\t\treturn false\n\t}\n}\n"
  },
  {
    "path": "example/closure/_pkg/src/foo/bar/bar.go",
    "content": "package bar\n\nimport (\n\t\"fmt\"\n)\n\nvar version = \"v1\"\n\nfunc NewSample() func(string, string) func(string) string {\n\tfmt.Println(\"in NewSample\")\n\treturn func(val string, name string) func(string) string {\n\t\tfmt.Println(\"in function\", version, val, name)\n\t\treturn func(msg string) string {\n\t\t\treturn fmt.Sprint(\"here\", version, val, name, msg)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "example/closure/closure_test.go",
    "content": "package clos1\n\nimport (\n\t\"testing\"\n\n\t\"github.com/traefik/yaegi/interp\"\n\t\"github.com/traefik/yaegi/stdlib\"\n)\n\nfunc TestFunctionCall(t *testing.T) {\n\ti := interp.New(interp.Options{GoPath: \"./_pkg\"})\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t_, err := i.Eval(`import \"foo/bar\"`)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tfnv, err := i.Eval(`bar.NewSample()`)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tfn, ok := fnv.Interface().(func(string, string) func(string) string)\n\tif !ok {\n\t\tt.Fatal(\"conversion failed\")\n\t}\n\n\tfn2 := fn(\"hello\", \"world\")\n\tval := fn2(\"truc\")\n\n\texpected := \"herev1helloworldtruc\"\n\tif val != expected {\n\t\tt.Errorf(\"Got: %q, want: %q\", val, expected)\n\t}\n}\n"
  },
  {
    "path": "example/fs/fs_test.go",
    "content": "package fs1\n\nimport (\n\t\"testing\"\n\t\"testing/fstest\" // only available from 1.16.\n\n\t\"github.com/traefik/yaegi/interp\"\n\t\"github.com/traefik/yaegi/stdlib\"\n)\n\nvar testFilesystem = fstest.MapFS{\n\t\"main.go\": &fstest.MapFile{\n\t\tData: []byte(`package main\n\nimport (\n\t\"foo/bar\"\n\t\"./localfoo\"\n)\n\nfunc main() {\n\tbar.PrintSomething()\n\tlocalfoo.PrintSomethingElse()\n}\n`),\n\t},\n\t\"_pkg/src/foo/bar/bar.go\": &fstest.MapFile{\n\t\tData: []byte(`package bar\n\nimport (\n\t\"fmt\"\n)\n\nfunc PrintSomething() {\n\tfmt.Println(\"I am a virtual filesystem printing something from _pkg/src/foo/bar/bar.go!\")\n}\n`),\n\t},\n\t\"localfoo/foo.go\": &fstest.MapFile{\n\t\tData: []byte(`package localfoo\n\nimport (\n\t\"fmt\"\n)\n\nfunc PrintSomethingElse() {\n\tfmt.Println(\"I am virtual filesystem printing else from localfoo/foo.go!\")\n}\n`),\n\t},\n}\n\nfunc TestFilesystemMapFS(t *testing.T) {\n\ti := interp.New(interp.Options{\n\t\tGoPath:               \"./_pkg\",\n\t\tSourcecodeFilesystem: testFilesystem,\n\t})\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t_, err := i.EvalPath(`main.go`)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n}\n"
  },
  {
    "path": "example/getfunc/_gopath/src/github.com/foo/bar/foobar.go",
    "content": "package bar\n\ntype Foo struct {\n\tA string\n}\n\nfunc NewFoo() *Foo {\n\treturn &Foo{A: \"test\"}\n}\n"
  },
  {
    "path": "example/getfunc/getfunc_test.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"testing\"\n\n\t\"github.com/traefik/yaegi/interp\"\n\t\"github.com/traefik/yaegi/stdlib\"\n)\n\nfunc TestGetFunc(t *testing.T) {\n\ti := interp.New(interp.Options{GoPath: \"./_gopath/\"})\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tif _, err := i.Eval(`import \"github.com/foo/bar\"`); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tval, err := i.Eval(`bar.NewFoo`)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tfmt.Println(val.Call(nil))\n}\n"
  },
  {
    "path": "example/pkg/_pkg/src/github.com/foo/pkg/pkg.go",
    "content": "package pkg\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/traefik/fromage\"\n)\n\nfunc Here() string {\n\treturn \"root\"\n}\n\nfunc NewSample() func() string {\n\treturn func() string {\n\t\treturn fmt.Sprintf(\"%s %s\", Here(), fromage.Hello())\n\t}\n}\n"
  },
  {
    "path": "example/pkg/_pkg/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/fromage.go",
    "content": "package fromage\n\nimport \"fmt\"\n\nfunc Hello() string {\n\treturn fmt.Sprint(\"Fromage\")\n}\n"
  },
  {
    "path": "example/pkg/_pkg0/src/github.com/foo/pkg/fromage/cheese/cheese.go",
    "content": "package cheese\n\nimport \"fmt\"\n\nfunc Hello() string {\n\treturn fmt.Sprint(\"Cheese\")\n}\n"
  },
  {
    "path": "example/pkg/_pkg0/src/github.com/foo/pkg/fromage/fromage.go",
    "content": "package fromage\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/foo/pkg/fromage/cheese\"\n)\n\nfunc Hello() string {\n\treturn fmt.Sprintf(\"Fromage %s\", cheese.Hello())\n}\n"
  },
  {
    "path": "example/pkg/_pkg0/src/github.com/foo/pkg/pkg.go",
    "content": "package pkg\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/foo/pkg/fromage\"\n)\n\nfunc Here() string {\n\treturn \"root\"\n}\n\nfunc NewSample() func() string {\n\treturn func() string {\n\t\treturn fmt.Sprintf(\"%s %s\", Here(), fromage.Hello())\n\t}\n}\n"
  },
  {
    "path": "example/pkg/_pkg1/src/github.com/foo/pkg/fromage/fromage.go",
    "content": "package fromage\n\nimport \"fmt\"\n\nfunc Hello() string {\n\treturn fmt.Sprint(\"Fromage!\")\n}\n"
  },
  {
    "path": "example/pkg/_pkg1/src/github.com/foo/pkg/pkg.go",
    "content": "package pkg\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/foo/pkg/fromage\"\n)\n\nfunc Here() string {\n\treturn \"root\"\n}\n\nfunc NewSample() func() string {\n\treturn func() string {\n\t\treturn fmt.Sprintf(\"%s %s\", Here(), fromage.Hello())\n\t}\n}\n"
  },
  {
    "path": "example/pkg/_pkg10/src/github.com/foo/pkg.go",
    "content": "package pkg\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/traefik/fromage\"\n)\n\nfunc Here() string {\n\treturn \"root\"\n}\n\nfunc NewSample() func() string {\n\treturn func() string {\n\t\treturn fmt.Sprintf(\"%s %s\", Here(), fromage.Hello())\n\t}\n}\n"
  },
  {
    "path": "example/pkg/_pkg10/src/github.com/foo/vendor/guthib.com/traefik/fromage/fromage.go",
    "content": "package fromage\n\nimport \"fmt\"\n\nfunc Hello() string {\n\treturn fmt.Sprint(\"Fromage\")\n}\n"
  },
  {
    "path": "example/pkg/_pkg11/src/foo/foo.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/traefik/fromage\"\n)\n\nfunc main() {\n\tfmt.Print(fromage.Hello())\n}\n"
  },
  {
    "path": "example/pkg/_pkg11/src/foo/vendor/guthib.com/traefik/fromage/fromage.go",
    "content": "package fromage\n\nimport \"fmt\"\n\nfunc Hello() string {\n\treturn fmt.Sprint(\"Fromage\")\n}\n"
  },
  {
    "path": "example/pkg/_pkg12/src/guthib.com/foo/main.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/foo/pkg\"\n)\n\nfunc main() {\n\tfmt.Printf(\"%s\", pkg.NewSample()())\n}\n"
  },
  {
    "path": "example/pkg/_pkg12/src/guthib.com/foo/pkg/pkg.go",
    "content": "package pkg\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/bar\"\n)\n\nfunc Here() string {\n\treturn \"hello\"\n}\n\nfunc NewSample() func() string {\n\treturn func() string {\n\t\treturn fmt.Sprintf(\"%s %s\", bar.Bar(), Here())\n\t}\n}\n"
  },
  {
    "path": "example/pkg/_pkg12/src/guthib.com/foo/vendor/guthib.com/bar/bar.go",
    "content": "package bar\n\n// Bar is bar\nfunc Bar() string {\n\treturn \"Yo\"\n}\n"
  },
  {
    "path": "example/pkg/_pkg13/src/guthib.com/foo/bar/main.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/bat/baz\"\n)\n\nfunc main() {\n\tt := baz.NewT()\n\n\tfmt.Printf(\"%s\", t.A3)\n}\n"
  },
  {
    "path": "example/pkg/_pkg13/src/guthib.com/foo/bar/vendor/guthib.com/bat/baz/baz.go",
    "content": "package baz\n\nfunc NewT() *T {\n\treturn &T{\n\t\tA1: make([]U, 0),\n\t\tA3: \"foobar\",\n\t}\n}\n\ntype T struct {\n\tA1 []U\n\tA3 string\n}\n\ntype U struct {\n\tB1 V\n\tB2 V\n}\n\ntype V struct {\n\tC1 string\n}\n"
  },
  {
    "path": "example/pkg/_pkg2/src/github.com/foo/pkg/pkg.go",
    "content": "package pkg\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/traefik/fromage\"\n)\n\nfunc Here() string {\n\treturn \"root\"\n}\n\nfunc NewSample() func() string {\n\treturn func() string {\n\t\treturn fmt.Sprintf(\"%s %s\", Here(), fromage.Hello())\n\t}\n}\n"
  },
  {
    "path": "example/pkg/_pkg2/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/fromage.go",
    "content": "package fromage\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/traefik/cheese\"\n)\n\nfunc Hello() string {\n\treturn fmt.Sprintf(\"Fromage %s\", cheese.Hello())\n}\n"
  },
  {
    "path": "example/pkg/_pkg2/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendor/guthib.com/traefik/cheese/fromage.go",
    "content": "package cheese\n\nimport \"fmt\"\n\nfunc Hello() string {\n\treturn fmt.Sprint(\"Cheese!\")\n}"
  },
  {
    "path": "example/pkg/_pkg3/src/github.com/foo/pkg/pkg.go",
    "content": "package pkg\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/traefik/fromage\"\n)\n\nfunc Here() string {\n\treturn \"root\"\n}\n\nfunc NewSample() func() string {\n\treturn func() string {\n\t\treturn fmt.Sprintf(\"%s %s\", Here(), fromage.Hello())\n\t}\n}\n"
  },
  {
    "path": "example/pkg/_pkg3/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/couteau/couteau.go",
    "content": "package couteau\n\nimport \"fmt\"\n\nfunc Hello() string {\n\treturn fmt.Sprint(\"Couteau\")\n}"
  },
  {
    "path": "example/pkg/_pkg3/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/fromage.go",
    "content": "package fromage\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/traefik/cheese\"\n\t\"guthib.com/traefik/fromage/couteau\"\n)\n\nfunc Hello() string {\n\treturn fmt.Sprintf(\"Fromage %s %s\", couteau.Hello(), cheese.Hello())\n}\n"
  },
  {
    "path": "example/pkg/_pkg3/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendor/guthib.com/traefik/cheese/fromage.go",
    "content": "package cheese\n\nimport \"fmt\"\n\nfunc Hello() string {\n\treturn fmt.Sprint(\"Cheese!\")\n}"
  },
  {
    "path": "example/pkg/_pkg4/src/github.com/foo/pkg/pkg.go",
    "content": "package pkg\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/traefik/fromage\"\n)\n\nfunc Here() string {\n\treturn \"root\"\n}\n\nfunc NewSample() func() string {\n\treturn func() string {\n\t\treturn fmt.Sprintf(\"%s %s\", Here(), fromage.Hello())\n\t}\n}\n"
  },
  {
    "path": "example/pkg/_pkg4/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/couteau/couteau.go",
    "content": "package couteau\n\nimport \"fmt\"\n\nfunc Hello() string {\n\treturn fmt.Sprint(\"Couteau\")\n}\n"
  },
  {
    "path": "example/pkg/_pkg4/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/fromage.go",
    "content": "package fromage\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/traefik/cheese\"\n\t\"guthib.com/traefik/fromage/couteau\"\n)\n\nfunc Hello() string {\n\treturn fmt.Sprintf(\"Fromage %s %s\", cheese.Hello(), couteau.Hello())\n}\n"
  },
  {
    "path": "example/pkg/_pkg4/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendor/guthib.com/traefik/cheese/cheese.go",
    "content": "package cheese\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/traefik/cheese/vin\"\n)\n\nfunc Hello() string {\n\treturn fmt.Sprintf(\"Cheese %s\", vin.Hello())\n}\n"
  },
  {
    "path": "example/pkg/_pkg4/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendor/guthib.com/traefik/cheese/vin/vin.go",
    "content": "package vin\n\nimport \"fmt\"\n\nfunc Hello() string {\n\treturn fmt.Sprint(\"Vin!\")\n}\n"
  },
  {
    "path": "example/pkg/_pkg5/src/github.com/foo/pkg/pkg.go",
    "content": "package pkg\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/traefik/fromage\"\n)\n\nfunc Here() string {\n\treturn \"root\"\n}\n\nfunc NewSample() func() string {\n\treturn func() string {\n\t\treturn fmt.Sprintf(\"%s %s\", Here(), fromage.Hello())\n\t}\n}\n"
  },
  {
    "path": "example/pkg/_pkg5/src/github.com/foo/pkg/vendor/guthib.com/traefik/cheese/cheese.go",
    "content": "package cheese\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/traefik/cheese/vin\"\n)\n\nfunc Hello() string {\n\treturn fmt.Sprintf(\"Cheese %s\", vin.Hello())\n}\n"
  },
  {
    "path": "example/pkg/_pkg5/src/github.com/foo/pkg/vendor/guthib.com/traefik/cheese/vin/vin.go",
    "content": "package vin\n\nimport \"fmt\"\n\nfunc Hello() string {\n\treturn fmt.Sprint(\"Vin!\")\n}\n"
  },
  {
    "path": "example/pkg/_pkg5/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/couteau/couteau.go",
    "content": "package couteau\n\nimport \"fmt\"\n\nfunc Hello() string {\n\treturn fmt.Sprint(\"Couteau\")\n}\n"
  },
  {
    "path": "example/pkg/_pkg5/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/fromage.go",
    "content": "package fromage\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/traefik/cheese\"\n\t\"guthib.com/traefik/fromage/couteau\"\n)\n\nfunc Hello() string {\n\treturn fmt.Sprintf(\"Fromage %s %s\", cheese.Hello(), couteau.Hello())\n}\n"
  },
  {
    "path": "example/pkg/_pkg6/src/github.com/foo/pkg/pkg.go",
    "content": "package pkg\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/traefik/fromage\"\n)\n\nfunc Here() string {\n\treturn \"root\"\n}\n\nfunc NewSample() func() string {\n\treturn func() string {\n\t\treturn fmt.Sprintf(\"%s %s\", Here(), fromage.Hello())\n\t}\n}\n"
  },
  {
    "path": "example/pkg/_pkg6/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/couteau/couteau.go",
    "content": "package couteau\n\nimport \"fmt\"\n\nfunc Hello() string {\n\treturn fmt.Sprint(\"Couteau\")\n}\n"
  },
  {
    "path": "example/pkg/_pkg6/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/fromage.go",
    "content": "package fromage\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/traefik/cheese\"\n\t\"guthib.com/traefik/fromage/couteau\"\n)\n\nfunc Hello() string {\n\treturn fmt.Sprintf(\"Fromage %s %s\", cheese.Hello(), couteau.Hello())\n}\n"
  },
  {
    "path": "example/pkg/_pkg6/src/guthib.com/traefik/cheese/cheese.go",
    "content": "package cheese\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/traefik/cheese/vin\"\n)\n\nfunc Hello() string {\n\treturn fmt.Sprintf(\"Cheese %s\", vin.Hello())\n}\n"
  },
  {
    "path": "example/pkg/_pkg6/src/guthib.com/traefik/cheese/vin/vin.go",
    "content": "package vin\n\nimport \"fmt\"\n\nfunc Hello() string {\n\treturn fmt.Sprint(\"Vin!\")\n}\n"
  },
  {
    "path": "example/pkg/_pkg7/src/github.com/foo/pkg/pkg.go",
    "content": "package pkg\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/traefik/vin\"\n)\n\nfunc Here() string {\n\treturn \"root\"\n}\n\nfunc NewSample() func() string {\n\treturn func() string {\n\t\treturn fmt.Sprintf(\"%s %s\", Here(), vin.Hello())\n\t}\n}\n"
  },
  {
    "path": "example/pkg/_pkg7/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/fromage.go",
    "content": "package fromage\n\nimport \"fmt\"\n\nfunc Hello() string {\n\treturn fmt.Sprint(\"fromage\")\n}\n"
  },
  {
    "path": "example/pkg/_pkg7/src/github.com/foo/pkg/vendor/guthib.com/traefik/vin/vendor/guthib.com/traefik/cheese/cheese.go",
    "content": "package cheese\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/traefik/fromage\"\n)\n\nfunc Hello() string {\n\treturn fmt.Sprintf(\"cheese %s\", fromage.Hello())\n}\n"
  },
  {
    "path": "example/pkg/_pkg7/src/github.com/foo/pkg/vendor/guthib.com/traefik/vin/vin.go",
    "content": "package vin\n\nimport (\n\t\"fmt\"\n\n\t\"guthib.com/traefik/cheese\"\n)\n\nfunc Hello() string {\n\treturn fmt.Sprintf(\"vin %s\", cheese.Hello())\n}\n"
  },
  {
    "path": "example/pkg/_pkg8/src/github.com/foo/pkg/fromage/fromage.go",
    "content": "package fromage\n\nimport \"fmt\"\n\nfunc Hello() string {\n\treturn fmt.Sprint(\"Fromage!\")\n}\n"
  },
  {
    "path": "example/pkg/_pkg8/src/github.com/foo/pkg/pkg.go",
    "content": "package pkg\n\nimport (\n\t\"fmt\"\n\n\tfr \"github.com/foo/pkg/fromage\"\n)\n\nfunc Here() string {\n\treturn \"root\"\n}\n\nfunc NewSample() func() string {\n\treturn func() string {\n\t\treturn fmt.Sprintf(\"%s %s\", Here(), fr.Hello())\n\t}\n}\n"
  },
  {
    "path": "example/pkg/_pkg9/src/github.com/foo/pkg/fromage/fromage.go",
    "content": "package fromage\n\nimport \"fmt\"\n\nfunc Hello() string {\n\treturn fmt.Sprint(\"Fromage!\")\n}\n"
  },
  {
    "path": "example/pkg/_pkg9/src/github.com/foo/pkg/pkg.go",
    "content": "package pkg\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/foo/pkg/fromage\"\n)\n\nfunc Here() string {\n\treturn \"root\"\n}\n\nfunc NewSample() func() string {\n\treturn func() string {\n\t\treturn fmt.Sprintf(\"%s %s\", Here(), fromage.Hello())\n\t}\n}\n"
  },
  {
    "path": "example/pkg/_pkg9/src/github.com/foo/pkg/pkgfalse.go",
    "content": "package pkgfalse\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/foo/pkg/fromage\"\n)\n\nfunc HereNot() string {\n\treturn \"root\"\n}\n\nfunc NewSampleNot() func() string {\n\treturn func() string {\n\t\treturn fmt.Sprintf(\"%s %s\", HereNot(), fromage.Here())\n\t}\n}\n"
  },
  {
    "path": "example/pkg/pkg_test.go",
    "content": "package pkg\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"testing\"\n\n\t\"github.com/traefik/yaegi/interp\"\n\t\"github.com/traefik/yaegi/stdlib\"\n)\n\nfunc TestPackages(t *testing.T) {\n\ttestCases := []struct {\n\t\tdesc      string\n\t\tgoPath    string\n\t\texpected  string\n\t\ttopImport string\n\t\tevalFile  string\n\t}{\n\t\t{\n\t\t\tdesc:     \"vendor\",\n\t\t\tgoPath:   \"./_pkg/\",\n\t\t\texpected: \"root Fromage\",\n\t\t},\n\t\t{\n\t\t\tdesc:     \"sub-subpackage\",\n\t\t\tgoPath:   \"./_pkg0/\",\n\t\t\texpected: \"root Fromage Cheese\",\n\t\t},\n\t\t{\n\t\t\tdesc:     \"subpackage\",\n\t\t\tgoPath:   \"./_pkg1/\",\n\t\t\texpected: \"root Fromage!\",\n\t\t},\n\t\t{\n\t\t\tdesc:     \"multiple vendor folders\",\n\t\t\tgoPath:   \"./_pkg2/\",\n\t\t\texpected: \"root Fromage Cheese!\",\n\t\t},\n\t\t{\n\t\t\tdesc:     \"multiple vendor folders and subpackage in vendor\",\n\t\t\tgoPath:   \"./_pkg3/\",\n\t\t\texpected: \"root Fromage Couteau Cheese!\",\n\t\t},\n\t\t{\n\t\t\tdesc:     \"multiple vendor folders and multiple subpackages in vendor\",\n\t\t\tgoPath:   \"./_pkg4/\",\n\t\t\texpected: \"root Fromage Cheese Vin! Couteau\",\n\t\t},\n\t\t{\n\t\t\tdesc:     \"vendor flat\",\n\t\t\tgoPath:   \"./_pkg5/\",\n\t\t\texpected: \"root Fromage Cheese Vin! Couteau\",\n\t\t},\n\t\t{\n\t\t\tdesc:     \"fallback to GOPATH\",\n\t\t\tgoPath:   \"./_pkg6/\",\n\t\t\texpected: \"root Fromage Cheese Vin! Couteau\",\n\t\t},\n\t\t{\n\t\t\tdesc:     \"recursive vendor\",\n\t\t\tgoPath:   \"./_pkg7/\",\n\t\t\texpected: \"root vin cheese fromage\",\n\t\t},\n\t\t{\n\t\t\tdesc:     \"named subpackage\",\n\t\t\tgoPath:   \"./_pkg8/\",\n\t\t\texpected: \"root Fromage!\",\n\t\t},\n\t\t{\n\t\t\tdesc:      \"at the project root\",\n\t\t\tgoPath:    \"./_pkg10/\",\n\t\t\texpected:  \"root Fromage\",\n\t\t\ttopImport: \"github.com/foo\",\n\t\t},\n\t\t{\n\t\t\tdesc:     \"eval main that has vendored dep\",\n\t\t\tgoPath:   \"./_pkg11/\",\n\t\t\texpected: \"Fromage\",\n\t\t\tevalFile: \"./_pkg11/src/foo/foo.go\",\n\t\t},\n\t\t{\n\t\t\tdesc:      \"vendor dir is a sibling or an uncle\",\n\t\t\tgoPath:    \"./_pkg12/\",\n\t\t\texpected:  \"Yo hello\",\n\t\t\ttopImport: \"guthib.com/foo/pkg\",\n\t\t},\n\t\t{\n\t\t\tdesc:     \"eval main with vendor as a sibling\",\n\t\t\tgoPath:   \"./_pkg12/\",\n\t\t\texpected: \"Yo hello\",\n\t\t\tevalFile: \"./_pkg12/src/guthib.com/foo/main.go\",\n\t\t},\n\t\t{\n\t\t\tdesc:     \"eval main with vendor\",\n\t\t\tgoPath:   \"./_pkg13/\",\n\t\t\texpected: \"foobar\",\n\t\t\tevalFile: \"./_pkg13/src/guthib.com/foo/bar/main.go\",\n\t\t},\n\t}\n\n\tfor _, test := range testCases {\n\t\ttest := test\n\t\tt.Run(test.desc, func(t *testing.T) {\n\t\t\tgoPath, err := filepath.Abs(filepath.FromSlash(test.goPath))\n\t\t\tif err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\n\t\t\tvar stdout, stderr bytes.Buffer\n\t\t\ti := interp.New(interp.Options{GoPath: goPath, Stdout: &stdout, Stderr: &stderr})\n\t\t\t// Use binary standard library\n\t\t\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\n\t\t\tvar msg string\n\t\t\tif test.evalFile != \"\" {\n\t\t\t\tif _, err := i.EvalPath(filepath.FromSlash(test.evalFile)); err != nil {\n\t\t\t\t\tfatalStderrf(t, \"%v\", err)\n\t\t\t\t}\n\t\t\t\tmsg = stdout.String()\n\t\t\t} else {\n\t\t\t\t// Load pkg from sources\n\t\t\t\ttopImport := \"github.com/foo/pkg\"\n\t\t\t\tif test.topImport != \"\" {\n\t\t\t\t\ttopImport = test.topImport\n\t\t\t\t}\n\t\t\t\tif _, err = i.Eval(fmt.Sprintf(`import %q`, topImport)); err != nil {\n\t\t\t\t\tt.Fatal(err)\n\t\t\t\t}\n\t\t\t\tvalue, err := i.Eval(`pkg.NewSample()`)\n\t\t\t\tif err != nil {\n\t\t\t\t\tt.Fatal(err)\n\t\t\t\t}\n\n\t\t\t\tfn := value.Interface().(func() string)\n\n\t\t\t\tmsg = fn()\n\t\t\t}\n\n\t\t\tif msg != test.expected {\n\t\t\t\tfatalStderrf(t, \"Got %q, want %q\", msg, test.expected)\n\t\t\t}\n\t\t})\n\t}\n}\n\nfunc fatalStderrf(t *testing.T, format string, args ...interface{}) {\n\tt.Helper()\n\n\tfmt.Fprintf(os.Stderr, format+\"\\n\", args...)\n\tt.FailNow()\n}\n\nfunc TestPackagesError(t *testing.T) {\n\ttestCases := []struct {\n\t\tdesc     string\n\t\tgoPath   string\n\t\texpected string\n\t}{\n\t\t{\n\t\t\tdesc:     \"different packages in the same directory\",\n\t\t\tgoPath:   \"./_pkg9/\",\n\t\t\texpected: `1:21: import \"github.com/foo/pkg\" error: found packages pkg and pkgfalse in _pkg9/src/github.com/foo/pkg`,\n\t\t},\n\t}\n\n\tfor _, test := range testCases {\n\t\ttest := test\n\t\tt.Run(test.desc, func(t *testing.T) {\n\t\t\t// Init go interpreter\n\t\t\ti := interp.New(interp.Options{GoPath: test.goPath})\n\t\t\t// Use binary standard library\n\t\t\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\n\t\t\t// Load pkg from sources\n\t\t\t_, err := i.Eval(`import \"github.com/foo/pkg\"`)\n\t\t\tif err == nil {\n\t\t\t\tt.Fatalf(\"got no error, want %q\", test.expected)\n\t\t\t}\n\n\t\t\tif err.Error() != test.expected {\n\t\t\t\tt.Errorf(\"got %q, want %q\", err.Error(), test.expected)\n\t\t\t}\n\t\t})\n\t}\n}\n"
  },
  {
    "path": "extract/extract.go",
    "content": "/*\nPackage extract generates wrappers of package exported symbols.\n*/\npackage extract\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n\t\"errors\"\n\t\"fmt\"\n\t\"go/constant\"\n\t\"go/format\"\n\t\"go/importer\"\n\t\"go/token\"\n\t\"go/types\"\n\t\"io\"\n\t\"math/big\"\n\t\"os\"\n\t\"path\"\n\t\"path/filepath\"\n\t\"regexp\"\n\t\"runtime\"\n\t\"strconv\"\n\t\"strings\"\n\t\"text/template\"\n)\n\nconst model = `// Code generated by 'yaegi extract {{.ImportPath}}'. DO NOT EDIT.\n\n{{.License}}\n\n{{if .BuildTags}}// +build {{.BuildTags}}{{end}}\n\npackage {{.Dest}}\n\nimport (\n{{- range $key, $value := .Imports }}\n\t{{- if $value}}\n\t\"{{$key}}\"\n\t{{- end}}\n{{- end}}\n{{- if or .Val .Typ }}\n\t\"{{.ImportPath}}\"\n{{- end}}\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"{{.PkgName}}\"] = map[string]reflect.Value{\n\t\t{{- if .Val}}\n\t\t// function, constant and variable definitions\n\t\t{{range $key, $value := .Val -}}\n\t\t\t{{- if $value.Addr -}}\n\t\t\t\t\"{{$key}}\": reflect.ValueOf(&{{$value.Name}}).Elem(),\n\t\t\t{{else -}}\n\t\t\t\t\"{{$key}}\": reflect.ValueOf({{$value.Name}}),\n\t\t\t{{end -}}\n\t\t{{end}}\n\n\t\t{{- end}}\n\t\t{{- if .Typ}}\n\t\t// type definitions\n\t\t{{range $key, $value := .Typ -}}\n\t\t\t\"{{$key}}\": reflect.ValueOf((*{{$value}})(nil)),\n\t\t{{end}}\n\n\t\t{{- end}}\n\t\t{{- if .Wrap}}\n\t\t// interface wrapper definitions\n\t\t{{range $key, $value := .Wrap -}}\n\t\t\t\"_{{$key}}\": reflect.ValueOf((*{{$value.Name}})(nil)),\n\t\t{{end}}\n\t\t{{- end}}\n\t}\n}\n{{range $key, $value := .Wrap -}}\n\t// {{$value.Name}} is an interface wrapper for {{$key}} type\n\ttype {{$value.Name}} struct {\n\t\tIValue interface{}\n\t\t{{range $m := $value.Method -}}\n\t\tW{{$m.Name}} func{{$m.Param}} {{$m.Result}}\n\t\t{{end}}\n\t}\n\t{{range $m := $value.Method -}}\n\t\tfunc (W {{$value.Name}}) {{$m.Name}}{{$m.Param}} {{$m.Result}} {\n\t\t\t{{- if eq $m.Name \"String\"}}\n\t\t\tif W.WString == nil {\n\t\t\t\treturn \"\"\n\t\t\t}\n\t\t\t{{end}}\n\t\t\t{{- $m.Ret}} W.W{{$m.Name}}{{$m.Arg -}}\n\t\t}\n\t{{end}}\n{{end}}\n`\n\n// Val stores the value name and addressable status of symbols.\ntype Val struct {\n\tName string // \"package.name\"\n\tAddr bool   // true if symbol is a Var\n}\n\n// Method stores information for generating interface wrapper method.\ntype Method struct {\n\tName, Param, Result, Arg, Ret string\n}\n\n// Wrap stores information for generating interface wrapper.\ntype Wrap struct {\n\tName   string\n\tMethod []Method\n}\n\n// restricted map defines symbols for which a special implementation is provided.\nvar restricted = map[string]bool{\n\t\"osExit\":        true,\n\t\"osFindProcess\": true,\n\t\"logFatal\":      true,\n\t\"logFatalf\":     true,\n\t\"logFatalln\":    true,\n\t\"logLogger\":     true,\n\t\"logNew\":        true,\n}\n\nfunc matchList(name string, list []string) (match bool, err error) {\n\tfor _, re := range list {\n\t\tmatch, err = regexp.MatchString(re, name)\n\t\tif err != nil || match {\n\t\t\treturn\n\t\t}\n\t}\n\treturn\n}\n\n// Extractor creates a package with all the symbols from a dependency package.\ntype Extractor struct {\n\tDest    string   // The name of the created package.\n\tLicense string   // License text to be included in the created package, optional.\n\tExclude []string // Comma separated list of regexp matching symbols to exclude.\n\tInclude []string // Comma separated list of regexp matching symbols to include.\n\tTag     []string // Comma separated of build tags to be added to the created package.\n}\n\nfunc (e *Extractor) genContent(importPath string, p *types.Package) ([]byte, error) {\n\tprefix := \"_\" + importPath + \"_\"\n\tprefix = strings.NewReplacer(\"/\", \"_\", \"-\", \"_\", \".\", \"_\", \"~\", \"_\").Replace(prefix)\n\n\ttyp := map[string]string{}\n\tval := map[string]Val{}\n\twrap := map[string]Wrap{}\n\timports := map[string]bool{}\n\tsc := p.Scope()\n\n\tfor _, pkg := range p.Imports() {\n\t\timports[pkg.Path()] = false\n\t}\n\tqualify := func(pkg *types.Package) string {\n\t\tif pkg.Path() != importPath {\n\t\t\timports[pkg.Path()] = true\n\t\t}\n\t\treturn pkg.Name()\n\t}\n\n\tfor _, name := range sc.Names() {\n\t\to := sc.Lookup(name)\n\t\tif !o.Exported() {\n\t\t\tcontinue\n\t\t}\n\n\t\tif len(e.Include) > 0 {\n\t\t\tmatch, err := matchList(name, e.Include)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tif !match {\n\t\t\t\t// Explicitly defined include expressions force non matching symbols to be skipped.\n\t\t\t\tcontinue\n\t\t\t}\n\t\t}\n\n\t\tmatch, err := matchList(name, e.Exclude)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tif match {\n\t\t\tcontinue\n\t\t}\n\n\t\tpname := p.Name() + \".\" + name\n\t\tif rname := p.Name() + name; restricted[rname] {\n\t\t\t// Restricted symbol, locally provided by stdlib wrapper.\n\t\t\tpname = rname\n\t\t}\n\n\t\tswitch o := o.(type) {\n\t\tcase *types.Const:\n\t\t\tif b, ok := o.Type().(*types.Basic); ok && (b.Info()&types.IsUntyped) != 0 {\n\t\t\t\t// Convert untyped constant to right type to avoid overflow.\n\t\t\t\tval[name] = Val{fixConst(pname, o.Val(), imports), false}\n\t\t\t} else {\n\t\t\t\tval[name] = Val{pname, false}\n\t\t\t}\n\t\tcase *types.Func:\n\t\t\t// Skip generic functions and methods.\n\t\t\tif s := o.Type().(*types.Signature); s.TypeParams().Len() > 0 || s.RecvTypeParams().Len() > 0 {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tval[name] = Val{pname, false}\n\t\tcase *types.Var:\n\t\t\tval[name] = Val{pname, true}\n\t\tcase *types.TypeName:\n\t\t\t// Skip type if it is generic.\n\t\t\tif t, ok := o.Type().(*types.Named); ok && t.TypeParams().Len() > 0 {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\ttyp[name] = pname\n\t\t\tif t, ok := o.Type().Underlying().(*types.Interface); ok {\n\t\t\t\tif t.NumMethods() == 0 && t.NumEmbeddeds() != 0 {\n\t\t\t\t\t// Skip interfaces used to implement constraints for generics.\n\t\t\t\t\tdelete(typ, name)\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tvar methods []Method\n\t\t\t\tfor i := 0; i < t.NumMethods(); i++ {\n\t\t\t\t\tf := t.Method(i)\n\t\t\t\t\tif !f.Exported() {\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\n\t\t\t\t\tsign := f.Type().(*types.Signature)\n\t\t\t\t\targs := make([]string, sign.Params().Len())\n\t\t\t\t\tparams := make([]string, len(args))\n\t\t\t\t\tfor j := range args {\n\t\t\t\t\t\tv := sign.Params().At(j)\n\t\t\t\t\t\tif args[j] = v.Name(); args[j] == \"\" {\n\t\t\t\t\t\t\targs[j] = fmt.Sprintf(\"a%d\", j)\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// process interface method variadic parameter\n\t\t\t\t\t\tif sign.Variadic() && j == len(args)-1 { // check is last arg\n\t\t\t\t\t\t\t// only replace the first \"[]\" to \"...\"\n\t\t\t\t\t\t\tat := types.TypeString(v.Type(), qualify)[2:]\n\t\t\t\t\t\t\tparams[j] = args[j] + \" ...\" + at\n\t\t\t\t\t\t\targs[j] += \"...\"\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tparams[j] = args[j] + \" \" + types.TypeString(v.Type(), qualify)\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\targ := \"(\" + strings.Join(args, \", \") + \")\"\n\t\t\t\t\tparam := \"(\" + strings.Join(params, \", \") + \")\"\n\n\t\t\t\t\tresults := make([]string, sign.Results().Len())\n\t\t\t\t\tfor j := range results {\n\t\t\t\t\t\tv := sign.Results().At(j)\n\t\t\t\t\t\tresults[j] = v.Name() + \" \" + types.TypeString(v.Type(), qualify)\n\t\t\t\t\t}\n\t\t\t\t\tresult := \"(\" + strings.Join(results, \", \") + \")\"\n\n\t\t\t\t\tret := \"\"\n\t\t\t\t\tif sign.Results().Len() > 0 {\n\t\t\t\t\t\tret = \"return\"\n\t\t\t\t\t}\n\n\t\t\t\t\tmethods = append(methods, Method{f.Name(), param, result, arg, ret})\n\t\t\t\t}\n\t\t\t\twrap[name] = Wrap{prefix + name, methods}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Generate buildTags with Go version only for stdlib packages.\n\t// Third party packages do not depend on Go compiler version by default.\n\tvar buildTags string\n\tif isInStdlib(importPath) {\n\t\tvar err error\n\t\tbuildTags, err = genBuildTags()\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\tbase := template.New(\"extract\")\n\tparse, err := base.Parse(model)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"template parsing error: %w\", err)\n\t}\n\n\tif importPath == \"log/syslog\" {\n\t\tbuildTags += \",!windows,!nacl,!plan9\"\n\t}\n\n\tif importPath == \"syscall\" {\n\t\t// As per https://golang.org/cmd/go/#hdr-Build_constraints,\n\t\t// using GOOS=android also matches tags and files for GOOS=linux,\n\t\t// so exclude it explicitly to avoid collisions (issue #843).\n\t\t// Also using GOOS=illumos matches tags and files for GOOS=solaris.\n\t\tswitch os.Getenv(\"GOOS\") {\n\t\tcase \"android\":\n\t\t\tbuildTags += \",!linux\"\n\t\tcase \"illumos\":\n\t\t\tbuildTags += \",!solaris\"\n\t\t}\n\t}\n\n\tfor _, t := range e.Tag {\n\t\tif t != \"\" {\n\t\t\tbuildTags += \",\" + t\n\t\t}\n\t}\n\tif buildTags != \"\" && buildTags[0] == ',' {\n\t\tbuildTags = buildTags[1:]\n\t}\n\n\tb := new(bytes.Buffer)\n\tdata := map[string]interface{}{\n\t\t\"Dest\":       e.Dest,\n\t\t\"Imports\":    imports,\n\t\t\"ImportPath\": importPath,\n\t\t\"PkgName\":    path.Join(importPath, p.Name()),\n\t\t\"Val\":        val,\n\t\t\"Typ\":        typ,\n\t\t\"Wrap\":       wrap,\n\t\t\"BuildTags\":  buildTags,\n\t\t\"License\":    e.License,\n\t}\n\terr = parse.Execute(b, data)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"template error: %w\", err)\n\t}\n\n\t// gofmt\n\tsource, err := format.Source(b.Bytes())\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"failed to format source: %w: %s\", err, b.Bytes())\n\t}\n\treturn source, nil\n}\n\n// fixConst checks untyped constant value, converting it if necessary to avoid overflow.\nfunc fixConst(name string, val constant.Value, imports map[string]bool) string {\n\tvar (\n\t\ttok string\n\t\tstr string\n\t)\n\tswitch val.Kind() {\n\tcase constant.String:\n\t\ttok = \"STRING\"\n\t\tstr = val.ExactString()\n\tcase constant.Int:\n\t\ttok = \"INT\"\n\t\tstr = val.ExactString()\n\tcase constant.Float:\n\t\tv := constant.Val(val) // v is *big.Rat or *big.Float\n\t\tf, ok := v.(*big.Float)\n\t\tif !ok {\n\t\t\tf = new(big.Float).SetRat(v.(*big.Rat))\n\t\t}\n\n\t\ttok = \"FLOAT\"\n\t\tstr = f.Text('g', int(f.Prec()))\n\tcase constant.Complex:\n\t\t// TODO: not sure how to parse this case\n\t\tfallthrough //nolint:gocritic // Empty Fallthrough is expected.\n\tdefault:\n\t\treturn name\n\t}\n\n\timports[\"go/constant\"] = true\n\timports[\"go/token\"] = true\n\n\treturn fmt.Sprintf(\"constant.MakeFromLiteral(%q, token.%s, 0)\", str, tok)\n}\n\n// importPath checks whether pkgIdent is an existing directory relative to\n// e.WorkingDir. If yes, it returns the actual import path of the Go package\n// located in the directory. If it is definitely a relative path, but it does not\n// exist, an error is returned. Otherwise, it is assumed to be an import path, and\n// pkgIdent is returned.\nfunc (e *Extractor) importPath(pkgIdent, importPath string) (string, error) {\n\twd, err := os.Getwd()\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\n\tdirPath := filepath.Join(wd, pkgIdent)\n\t_, err = os.Stat(dirPath)\n\tif err != nil && !os.IsNotExist(err) {\n\t\treturn \"\", err\n\t}\n\tif err != nil {\n\t\tif pkgIdent != \"\" && pkgIdent[0] == '.' {\n\t\t\t// pkgIdent is definitely a relative path, not a package name, and it does not exist\n\t\t\treturn \"\", err\n\t\t}\n\t\t// pkgIdent might be a valid stdlib package name. So we leave that responsibility to the caller now.\n\t\treturn pkgIdent, nil\n\t}\n\n\t// local import\n\tif importPath != \"\" {\n\t\treturn importPath, nil\n\t}\n\n\tmodPath := filepath.Join(dirPath, \"go.mod\")\n\t_, err = os.Stat(modPath)\n\tif os.IsNotExist(err) {\n\t\treturn \"\", errors.New(\"no go.mod found, and no import path specified\")\n\t}\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\tf, err := os.Open(modPath)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\tdefer func() {\n\t\t_ = f.Close()\n\t}()\n\tsc := bufio.NewScanner(f)\n\tvar l string\n\tfor sc.Scan() {\n\t\tl = sc.Text()\n\t\tbreak\n\t}\n\tif sc.Err() != nil {\n\t\treturn \"\", err\n\t}\n\tparts := strings.Fields(l)\n\tif len(parts) < 2 {\n\t\treturn \"\", errors.New(`invalid first line syntax in go.mod`)\n\t}\n\tif parts[0] != \"module\" {\n\t\treturn \"\", errors.New(`invalid first line in go.mod, no \"module\" found`)\n\t}\n\n\treturn parts[1], nil\n}\n\n// Extract writes to rw a Go package with all the symbols found at pkgIdent.\n// pkgIdent can be an import path, or a local path, relative to e.WorkingDir. In\n// the latter case, Extract returns the actual import path of the package found at\n// pkgIdent, otherwise it just returns pkgIdent.\n// If pkgIdent is an import path, it is looked up in GOPATH. Vendoring is not\n// supported yet, and the behavior is only defined for GO111MODULE=off.\nfunc (e *Extractor) Extract(pkgIdent, importPath string, rw io.Writer) (string, error) {\n\tipp, err := e.importPath(pkgIdent, importPath)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\n\tpkg, err := importer.ForCompiler(token.NewFileSet(), \"source\", nil).Import(pkgIdent)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\n\tcontent, err := e.genContent(ipp, pkg)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\n\tif _, err := rw.Write(content); err != nil {\n\t\treturn \"\", err\n\t}\n\n\treturn ipp, nil\n}\n\n// GetMinor returns the minor part of the version number.\nfunc GetMinor(part string) string {\n\tminor := part\n\tindex := strings.Index(minor, \"beta\")\n\tif index < 0 {\n\t\tindex = strings.Index(minor, \"rc\")\n\t}\n\tif index > 0 {\n\t\tminor = minor[:index]\n\t}\n\n\treturn minor\n}\n\nconst defaultMinorVersion = 22\n\nfunc genBuildTags() (string, error) {\n\tversion := runtime.Version()\n\tif strings.HasPrefix(version, \"devel\") {\n\t\treturn \"\", fmt.Errorf(\"extracting only supported with stable releases of Go, not %v\", version)\n\t}\n\tparts := strings.Split(version, \".\")\n\n\tminorRaw := GetMinor(parts[1])\n\n\tcurrentGoVersion := parts[0] + \".\" + minorRaw\n\n\tminor, err := strconv.Atoi(minorRaw)\n\tif err != nil {\n\t\treturn \"\", fmt.Errorf(\"failed to parse version: %w\", err)\n\t}\n\n\t// Only append an upper bound if we are not on the latest go\n\tif minor >= defaultMinorVersion {\n\t\treturn currentGoVersion, nil\n\t}\n\n\tnextGoVersion := parts[0] + \".\" + strconv.Itoa(minor+1)\n\n\treturn currentGoVersion + \",!\" + nextGoVersion, nil\n}\n\nfunc isInStdlib(path string) bool { return !strings.Contains(path, \".\") }\n"
  },
  {
    "path": "extract/extract_test.go",
    "content": "package extract\n\nimport (\n\t\"bytes\"\n\t\"os\"\n\t\"path\"\n\t\"strings\"\n\t\"testing\"\n)\n\nvar expectedOutput = `// Code generated by 'yaegi extract guthib.com/baz'. DO NOT EDIT.\n\npackage bar\n\nimport (\n\t\"guthib.com/baz\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"guthib.com/baz/baz\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Hello\": reflect.ValueOf(baz.Hello),\n\t}\n}\n`\n\nfunc TestPackages(t *testing.T) {\n\ttestCases := []struct {\n\t\tdesc       string\n\t\tmoduleOn   string\n\t\twd         string\n\t\targ        string\n\t\timportPath string\n\t\texpected   string\n\t\tcontains   string\n\t\tdest       string\n\t}{\n\t\t{\n\t\t\tdesc: \"stdlib math pkg, using go/importer\",\n\t\t\tdest: \"math\",\n\t\t\targ:  \"math\",\n\t\t\t// We check this one because it shows both defects when we break it: the value\n\t\t\t// gets corrupted, and the type becomes token.INT\n\t\t\t// TODO(mpl): if the ident between key and value becomes annoying, be smarter about it.\n\t\t\tcontains: `\"MaxFloat32\":             reflect.ValueOf(constant.MakeFromLiteral(\"340282346638528859811704183484516925440\", token.FLOAT, 0)),`,\n\t\t},\n\t\t{\n\t\t\tdesc:     \"using relative path, using go.mod\",\n\t\t\twd:       \"./testdata/1/src/guthib.com/bar\",\n\t\t\targ:      \"../baz\",\n\t\t\texpected: expectedOutput,\n\t\t},\n\t\t{\n\t\t\tdesc:       \"using relative path, manual import path\",\n\t\t\twd:         \"./testdata/2/src/guthib.com/bar\",\n\t\t\targ:        \"../baz\",\n\t\t\timportPath: \"guthib.com/baz\",\n\t\t\texpected:   expectedOutput,\n\t\t},\n\t\t{\n\t\t\tdesc:       \"using relative path, go.mod is ignored, because manual path\",\n\t\t\twd:         \"./testdata/3/src/guthib.com/bar\",\n\t\t\targ:        \"../baz\",\n\t\t\timportPath: \"guthib.com/baz\",\n\t\t\texpected:   expectedOutput,\n\t\t},\n\t\t{\n\t\t\tdesc:     \"using relative path, dep in vendor, using go.mod\",\n\t\t\twd:       \"./testdata/4/src/guthib.com/bar\",\n\t\t\targ:      \"./vendor/guthib.com/baz\",\n\t\t\texpected: expectedOutput,\n\t\t},\n\t\t{\n\t\t\tdesc:       \"using relative path, dep in vendor, manual import path\",\n\t\t\twd:         \"./testdata/5/src/guthib.com/bar\",\n\t\t\targ:        \"./vendor/guthib.com/baz\",\n\t\t\timportPath: \"guthib.com/baz\",\n\t\t\texpected:   expectedOutput,\n\t\t},\n\t\t{\n\t\t\tdesc:       \"using relative path, package name is not same as import path\",\n\t\t\twd:         \"./testdata/6/src/guthib.com/bar\",\n\t\t\targ:        \"../baz-baz\",\n\t\t\timportPath: \"guthib.com/baz\",\n\t\t\texpected:   expectedOutput,\n\t\t},\n\t\t{\n\t\t\tdesc:       \"using relative path, interface method parameter is variadic\",\n\t\t\twd:         \"./testdata/7/src/guthib.com/variadic\",\n\t\t\targ:        \"../variadic\",\n\t\t\timportPath: \"guthib.com/variadic\",\n\t\t\texpected: `\n// Code generated by 'yaegi extract guthib.com/variadic'. DO NOT EDIT.\n\npackage variadic\n\nimport (\n\t\"guthib.com/variadic\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"guthib.com/variadic/variadic\"] = map[string]reflect.Value{\n\t\t// type definitions\n\t\t\"Variadic\": reflect.ValueOf((*variadic.Variadic)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Variadic\": reflect.ValueOf((*_guthib_com_variadic_Variadic)(nil)),\n\t}\n}\n\n// _guthib_com_variadic_Variadic is an interface wrapper for Variadic type\ntype _guthib_com_variadic_Variadic struct {\n\tIValue interface{}\n\tWCall  func(method string, args ...[]interface{}) (interface{}, error)\n}\n\nfunc (W _guthib_com_variadic_Variadic) Call(method string, args ...[]interface{}) (interface{}, error) {\n\treturn W.WCall(method, args...)\n}\n`[1:],\n\t\t},\n\t}\n\n\tfor _, test := range testCases {\n\t\ttest := test\n\t\tt.Run(test.desc, func(t *testing.T) {\n\t\t\tcwd, err := os.Getwd()\n\t\t\tif err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\t\t\twd := test.wd\n\t\t\tif wd == \"\" {\n\t\t\t\twd = cwd\n\t\t\t} else {\n\t\t\t\tif err := os.Chdir(wd); err != nil {\n\t\t\t\t\tt.Fatal(err)\n\t\t\t\t}\n\t\t\t\tdefer func() {\n\t\t\t\t\tif err := os.Chdir(cwd); err != nil {\n\t\t\t\t\t\tt.Fatal(err)\n\t\t\t\t\t}\n\t\t\t\t}()\n\t\t\t}\n\n\t\t\tdest := path.Base(wd)\n\t\t\tif test.dest != \"\" {\n\t\t\t\tdest = test.dest\n\t\t\t}\n\t\t\text := Extractor{\n\t\t\t\tDest: dest,\n\t\t\t}\n\n\t\t\tvar out bytes.Buffer\n\t\t\tif _, err := ext.Extract(test.arg, test.importPath, &out); err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\n\t\t\tif test.expected != \"\" {\n\t\t\t\tif out.String() != test.expected {\n\t\t\t\t\tt.Fatalf(\"\\nGot:\\n%q\\nWant: \\n%q\", out.String(), test.expected)\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif test.contains != \"\" {\n\t\t\t\tif !strings.Contains(out.String(), test.contains) {\n\t\t\t\t\tt.Fatalf(\"Missing expected part: %s in %s\", test.contains, out.String())\n\t\t\t\t}\n\t\t\t}\n\t\t})\n\t}\n}\n"
  },
  {
    "path": "extract/testdata/1/src/guthib.com/bar/main.go",
    "content": "package main\n\nimport (\n\t\"guthib.com/baz\"\n)\n\nfunc main() {\n\tbaz.Hello()\n}\n"
  },
  {
    "path": "extract/testdata/1/src/guthib.com/baz/baz.go",
    "content": "package baz\n\nfunc Hello() {\n\tprintln(\"HELLO\")\n}\n"
  },
  {
    "path": "extract/testdata/1/src/guthib.com/baz/go.mod",
    "content": "module guthib.com/baz\n\ngo 1.14\n"
  },
  {
    "path": "extract/testdata/2/src/guthib.com/bar/main.go",
    "content": "package main\n\nimport (\n\t\"guthib.com/baz\"\n)\n\nfunc main() {\n\tbaz.Hello()\n}\n"
  },
  {
    "path": "extract/testdata/2/src/guthib.com/baz/baz.go",
    "content": "package baz\n\nfunc Hello() {\n\tprintln(\"HELLO\")\n}\n"
  },
  {
    "path": "extract/testdata/3/src/guthib.com/bar/main.go",
    "content": "package main\n\nimport (\n\t\"guthib.com/baz\"\n)\n\nfunc main() {\n\tbaz.Hello()\n}\n"
  },
  {
    "path": "extract/testdata/3/src/guthib.com/baz/baz.go",
    "content": "package baz\n\nfunc Hello() {\n\tprintln(\"HELLO\")\n}\n"
  },
  {
    "path": "extract/testdata/3/src/guthib.com/baz/go.mod",
    "content": "module should.not/be/used\n\ngo 1.14\n"
  },
  {
    "path": "extract/testdata/4/src/guthib.com/bar/main.go",
    "content": "package main\n\nimport (\n\t\"guthib.com/baz\"\n)\n\nfunc main() {\n\tbaz.Hello()\n}\n"
  },
  {
    "path": "extract/testdata/4/src/guthib.com/bar/vendor/guthib.com/baz/baz.go",
    "content": "package baz\n\nfunc Hello() {\n\tprintln(\"HELLO\")\n}\n"
  },
  {
    "path": "extract/testdata/4/src/guthib.com/bar/vendor/guthib.com/baz/go.mod",
    "content": "module guthib.com/baz\n\ngo 1.14\n"
  },
  {
    "path": "extract/testdata/5/src/guthib.com/bar/main.go",
    "content": "package main\n\nimport (\n\t\"guthib.com/baz\"\n)\n\nfunc main() {\n\tbaz.Hello()\n}\n"
  },
  {
    "path": "extract/testdata/5/src/guthib.com/bar/vendor/guthib.com/baz/baz.go",
    "content": "package baz\n\nfunc Hello() {\n\tprintln(\"HELLO\")\n}\n"
  },
  {
    "path": "extract/testdata/6/src/guthib.com/bar/main.go",
    "content": "package main\n\nimport (\n\t\"guthib.com/baz\"\n)\n\nfunc main() {\n\tbaz.Hello()\n}\n"
  },
  {
    "path": "extract/testdata/6/src/guthib.com/baz-baz/baz.go",
    "content": "package baz\n\nfunc Hello() {\n\tprintln(\"HELLO\")\n}\n"
  },
  {
    "path": "extract/testdata/6/src/guthib.com/baz-baz/go.mod",
    "content": "module guthib.com/baz-baz"
  },
  {
    "path": "extract/testdata/7/src/guthib.com/variadic/go.mod",
    "content": "module guthib.com/baz-baz/variadic"
  },
  {
    "path": "extract/testdata/7/src/guthib.com/variadic/variadic.go",
    "content": "package variadic\n\ntype Variadic interface {\n\tCall(method string, args ...[]interface{}) (interface{}, error)\n}\n"
  },
  {
    "path": "generate.go",
    "content": "// Package yaegi provides a Go interpreter.\npackage yaegi\n\n//go:generate go generate github.com/traefik/yaegi/internal/cmd/extract\n//go:generate go generate github.com/traefik/yaegi/interp\n//go:generate go generate github.com/traefik/yaegi/stdlib\n//go:generate go generate github.com/traefik/yaegi/stdlib/syscall\n//go:generate go generate github.com/traefik/yaegi/stdlib/unsafe\n"
  },
  {
    "path": "go.mod",
    "content": "module github.com/traefik/yaegi\n\ngo 1.21\n"
  },
  {
    "path": "install.sh",
    "content": "#!/bin/sh\nset -e\n# Code generated by godownloader on 2020-09-27T12:53:27Z. DO NOT EDIT.\n#\n\nusage() {\n  this=$1\n  cat <<EOF\n$this: download go binaries for traefik/yaegi\n\nUsage: $this [-b] bindir [-d] [tag]\n  -b sets bindir or installation directory, Defaults to ./bin\n  -d turns on debug logging\n   [tag] is a tag from\n   https://github.com/traefik/yaegi/releases\n   If tag is missing, then the latest will be used.\n\n Generated by godownloader\n  https://github.com/goreleaser/godownloader\n\nEOF\n  exit 2\n}\n\nparse_args() {\n  #BINDIR is ./bin unless set be ENV\n  # over-ridden by flag below\n\n  BINDIR=${BINDIR:-./bin}\n  while getopts \"b:dh?x\" arg; do\n    case \"$arg\" in\n      b) BINDIR=\"$OPTARG\" ;;\n      d) log_set_priority 10 ;;\n      h | \\?) usage \"$0\" ;;\n      x) set -x ;;\n    esac\n  done\n  shift $((OPTIND - 1))\n  TAG=$1\n}\n# this function wraps all the destructive operations\n# if a curl|bash cuts off the end of the script due to\n# network, either nothing will happen or will syntax error\n# out preventing half-done work\nexecute() {\n  tmpdir=$(mktemp -d)\n  log_debug \"downloading files into ${tmpdir}\"\n  http_download \"${tmpdir}/${TARBALL}\" \"${TARBALL_URL}\"\n  http_download \"${tmpdir}/${CHECKSUM}\" \"${CHECKSUM_URL}\"\n  hash_sha256_verify \"${tmpdir}/${TARBALL}\" \"${tmpdir}/${CHECKSUM}\"\n  srcdir=\"${tmpdir}\"\n  (cd \"${tmpdir}\" && untar \"${TARBALL}\")\n  test ! -d \"${BINDIR}\" && install -d \"${BINDIR}\"\n  for binexe in $BINARIES; do\n    if [ \"$OS\" = \"windows\" ]; then\n      binexe=\"${binexe}.exe\"\n    fi\n    install \"${srcdir}/${binexe}\" \"${BINDIR}/\"\n    log_info \"installed ${BINDIR}/${binexe}\"\n  done\n  rm -rf \"${tmpdir}\"\n}\nget_binaries() {\n  case \"$PLATFORM\" in\n    darwin/amd64) BINARIES=\"yaegi\" ;;\n    darwin/arm64) BINARIES=\"yaegi\" ;;\n    darwin/armv5) BINARIES=\"yaegi\" ;;\n    darwin/armv6) BINARIES=\"yaegi\" ;;\n    darwin/armv7) BINARIES=\"yaegi\" ;;\n    freebsd/386) BINARIES=\"yaegi\" ;;\n    freebsd/amd64) BINARIES=\"yaegi\" ;;\n    freebsd/arm64) BINARIES=\"yaegi\" ;;\n    freebsd/armv5) BINARIES=\"yaegi\" ;;\n    freebsd/armv6) BINARIES=\"yaegi\" ;;\n    freebsd/armv7) BINARIES=\"yaegi\" ;;\n    linux/386) BINARIES=\"yaegi\" ;;\n    linux/amd64) BINARIES=\"yaegi\" ;;\n    linux/arm64) BINARIES=\"yaegi\" ;;\n    linux/armv5) BINARIES=\"yaegi\" ;;\n    linux/armv6) BINARIES=\"yaegi\" ;;\n    linux/armv7) BINARIES=\"yaegi\" ;;\n    openbsd/386) BINARIES=\"yaegi\" ;;\n    openbsd/amd64) BINARIES=\"yaegi\" ;;\n    openbsd/arm64) BINARIES=\"yaegi\" ;;\n    openbsd/armv5) BINARIES=\"yaegi\" ;;\n    openbsd/armv6) BINARIES=\"yaegi\" ;;\n    openbsd/armv7) BINARIES=\"yaegi\" ;;\n    solaris/386) BINARIES=\"yaegi\" ;;\n    solaris/amd64) BINARIES=\"yaegi\" ;;\n    solaris/arm64) BINARIES=\"yaegi\" ;;\n    solaris/armv5) BINARIES=\"yaegi\" ;;\n    solaris/armv6) BINARIES=\"yaegi\" ;;\n    solaris/armv7) BINARIES=\"yaegi\" ;;\n    *)\n      log_crit \"platform $PLATFORM is not supported.  Make sure this script is up-to-date and file request at https://github.com/${PREFIX}/issues/new\"\n      exit 1\n      ;;\n  esac\n}\ntag_to_version() {\n  if [ -z \"${TAG}\" ]; then\n    log_info \"checking GitHub for latest tag\"\n  else\n    log_info \"checking GitHub for tag '${TAG}'\"\n  fi\n  REALTAG=$(github_release \"$OWNER/$REPO\" \"${TAG}\") && true\n  if test -z \"$REALTAG\"; then\n    log_crit \"unable to find '${TAG}' - use 'latest' or see https://github.com/${PREFIX}/releases for details\"\n    exit 1\n  fi\n  # if version starts with 'v', remove it\n  TAG=\"$REALTAG\"\n  VERSION=${TAG#v}\n}\nadjust_format() {\n  # change format (tar.gz or zip) based on OS\n  case ${OS} in\n    windows) FORMAT=zip ;;\n  esac\n  true\n}\nadjust_os() {\n  # adjust archive name based on OS\n  true\n}\nadjust_arch() {\n  # adjust archive name based on ARCH\n  true\n}\n\ncat /dev/null <<EOF\n------------------------------------------------------------------------\nhttps://github.com/client9/shlib - portable posix shell functions\nPublic domain - http://unlicense.org\nhttps://github.com/client9/shlib/blob/master/LICENSE.md\nbut credit (and pull requests) appreciated.\n------------------------------------------------------------------------\nEOF\nis_command() {\n  command -v \"$1\" >/dev/null\n}\nechoerr() {\n  echo \"$@\" 1>&2\n}\nlog_prefix() {\n  echo \"$0\"\n}\n_logp=6\nlog_set_priority() {\n  _logp=\"$1\"\n}\nlog_priority() {\n  if test -z \"$1\"; then\n    echo \"$_logp\"\n    return\n  fi\n  [ \"$1\" -le \"$_logp\" ]\n}\nlog_tag() {\n  case $1 in\n    0) echo \"emerg\" ;;\n    1) echo \"alert\" ;;\n    2) echo \"crit\" ;;\n    3) echo \"err\" ;;\n    4) echo \"warning\" ;;\n    5) echo \"notice\" ;;\n    6) echo \"info\" ;;\n    7) echo \"debug\" ;;\n    *) echo \"$1\" ;;\n  esac\n}\nlog_debug() {\n  log_priority 7 || return 0\n  echoerr \"$(log_prefix)\" \"$(log_tag 7)\" \"$@\"\n}\nlog_info() {\n  log_priority 6 || return 0\n  echoerr \"$(log_prefix)\" \"$(log_tag 6)\" \"$@\"\n}\nlog_err() {\n  log_priority 3 || return 0\n  echoerr \"$(log_prefix)\" \"$(log_tag 3)\" \"$@\"\n}\nlog_crit() {\n  log_priority 2 || return 0\n  echoerr \"$(log_prefix)\" \"$(log_tag 2)\" \"$@\"\n}\nuname_os() {\n  os=$(uname -s | tr '[:upper:]' '[:lower:]')\n  case \"$os\" in\n    cygwin_nt*) os=\"windows\" ;;\n    mingw*) os=\"windows\" ;;\n    msys_nt*) os=\"windows\" ;;\n  esac\n  echo \"$os\"\n}\nuname_arch() {\n  arch=$(uname -m)\n  case $arch in\n    x86_64) arch=\"amd64\" ;;\n    x86) arch=\"386\" ;;\n    i686) arch=\"386\" ;;\n    i386) arch=\"386\" ;;\n    aarch64) arch=\"arm64\" ;;\n    armv5*) arch=\"armv5\" ;;\n    armv6*) arch=\"armv6\" ;;\n    armv7*) arch=\"armv7\" ;;\n  esac\n  echo ${arch}\n}\nuname_os_check() {\n  os=$(uname_os)\n  case \"$os\" in\n    darwin) return 0 ;;\n    dragonfly) return 0 ;;\n    freebsd) return 0 ;;\n    linux) return 0 ;;\n    android) return 0 ;;\n    nacl) return 0 ;;\n    netbsd) return 0 ;;\n    openbsd) return 0 ;;\n    plan9) return 0 ;;\n    solaris) return 0 ;;\n    windows) return 0 ;;\n  esac\n  log_crit \"uname_os_check '$(uname -s)' got converted to '$os' which is not a GOOS value. Please file bug at https://github.com/client9/shlib\"\n  return 1\n}\nuname_arch_check() {\n  arch=$(uname_arch)\n  case \"$arch\" in\n    386) return 0 ;;\n    amd64) return 0 ;;\n    arm64) return 0 ;;\n    armv5) return 0 ;;\n    armv6) return 0 ;;\n    armv7) return 0 ;;\n    ppc64) return 0 ;;\n    ppc64le) return 0 ;;\n    mips) return 0 ;;\n    mipsle) return 0 ;;\n    mips64) return 0 ;;\n    mips64le) return 0 ;;\n    s390x) return 0 ;;\n    amd64p32) return 0 ;;\n  esac\n  log_crit \"uname_arch_check '$(uname -m)' got converted to '$arch' which is not a GOARCH value.  Please file bug report at https://github.com/client9/shlib\"\n  return 1\n}\nuntar() {\n  tarball=$1\n  case \"${tarball}\" in\n    *.tar.gz | *.tgz) tar --no-same-owner -xzf \"${tarball}\" ;;\n    *.tar) tar --no-same-owner -xf \"${tarball}\" ;;\n    *.zip) unzip \"${tarball}\" ;;\n    *)\n      log_err \"untar unknown archive format for ${tarball}\"\n      return 1\n      ;;\n  esac\n}\nhttp_download_curl() {\n  local_file=$1\n  source_url=$2\n  header=$3\n  if [ -z \"$header\" ]; then\n    code=$(curl -w '%{http_code}' -sL -o \"$local_file\" \"$source_url\")\n  else\n    code=$(curl -w '%{http_code}' -sL -H \"$header\" -o \"$local_file\" \"$source_url\")\n  fi\n  if [ \"$code\" != \"200\" ]; then\n    log_debug \"http_download_curl received HTTP status $code\"\n    return 1\n  fi\n  return 0\n}\nhttp_download_wget() {\n  local_file=$1\n  source_url=$2\n  header=$3\n  if [ -z \"$header\" ]; then\n    wget -q -O \"$local_file\" \"$source_url\"\n  else\n    wget -q --header \"$header\" -O \"$local_file\" \"$source_url\"\n  fi\n}\nhttp_download() {\n  log_debug \"http_download $2\"\n  if is_command curl; then\n    http_download_curl \"$@\"\n    return\n  elif is_command wget; then\n    http_download_wget \"$@\"\n    return\n  fi\n  log_crit \"http_download unable to find wget or curl\"\n  return 1\n}\nhttp_copy() {\n  tmp=$(mktemp)\n  http_download \"${tmp}\" \"$1\" \"$2\" || return 1\n  body=$(cat \"$tmp\")\n  rm -f \"${tmp}\"\n  echo \"$body\"\n}\ngithub_release() {\n  owner_repo=$1\n  version=$2\n  test -z \"$version\" && version=\"latest\"\n  giturl=\"https://github.com/${owner_repo}/releases/${version}\"\n  json=$(http_copy \"$giturl\" \"Accept:application/json\")\n  test -z \"$json\" && return 1\n  version=$(echo \"$json\" | tr -s '\\n' ' ' | sed 's/.*\"tag_name\":\"//' | sed 's/\".*//')\n  test -z \"$version\" && return 1\n  echo \"$version\"\n}\nhash_sha256() {\n  TARGET=${1:-/dev/stdin}\n  if is_command gsha256sum; then\n    hash=$(gsha256sum \"$TARGET\") || return 1\n    echo \"$hash\" | cut -d ' ' -f 1\n  elif is_command sha256sum; then\n    hash=$(sha256sum \"$TARGET\") || return 1\n    echo \"$hash\" | cut -d ' ' -f 1\n  elif is_command shasum; then\n    hash=$(shasum -a 256 \"$TARGET\" 2>/dev/null) || return 1\n    echo \"$hash\" | cut -d ' ' -f 1\n  elif is_command openssl; then\n    hash=$(openssl -dst openssl dgst -sha256 \"$TARGET\") || return 1\n    echo \"$hash\" | cut -d ' ' -f a\n  else\n    log_crit \"hash_sha256 unable to find command to compute sha-256 hash\"\n    return 1\n  fi\n}\nhash_sha256_verify() {\n  TARGET=$1\n  checksums=$2\n  if [ -z \"$checksums\" ]; then\n    log_err \"hash_sha256_verify checksum file not specified in arg2\"\n    return 1\n  fi\n  BASENAME=${TARGET##*/}\n  want=$(grep \"${BASENAME}\" \"${checksums}\" 2>/dev/null | tr '\\t' ' ' | cut -d ' ' -f 1)\n  if [ -z \"$want\" ]; then\n    log_err \"hash_sha256_verify unable to find checksum for '${TARGET}' in '${checksums}'\"\n    return 1\n  fi\n  got=$(hash_sha256 \"$TARGET\")\n  if [ \"$want\" != \"$got\" ]; then\n    log_err \"hash_sha256_verify checksum for '$TARGET' did not verify ${want} vs $got\"\n    return 1\n  fi\n}\ncat /dev/null <<EOF\n------------------------------------------------------------------------\nEnd of functions from https://github.com/client9/shlib\n------------------------------------------------------------------------\nEOF\n\nPROJECT_NAME=\"yaegi\"\nOWNER=traefik\nREPO=\"yaegi\"\nBINARY=yaegi\nFORMAT=tar.gz\nOS=$(uname_os)\nARCH=$(uname_arch)\nPREFIX=\"$OWNER/$REPO\"\n\n# use in logging routines\nlog_prefix() {\n\techo \"$PREFIX\"\n}\nPLATFORM=\"${OS}/${ARCH}\"\nGITHUB_DOWNLOAD=https://github.com/${OWNER}/${REPO}/releases/download\n\nuname_os_check \"$OS\"\nuname_arch_check \"$ARCH\"\n\nparse_args \"$@\"\n\nget_binaries\n\ntag_to_version\n\nadjust_format\n\nadjust_os\n\nadjust_arch\n\nlog_info \"found version: ${VERSION} for ${TAG}/${OS}/${ARCH}\"\n\nNAME=${PROJECT_NAME}_v${VERSION}_${OS}_${ARCH}\nTARBALL=${NAME}.${FORMAT}\nTARBALL_URL=${GITHUB_DOWNLOAD}/${TAG}/${TARBALL}\nCHECKSUM=${PROJECT_NAME}_${VERSION}_checksums.txt\nCHECKSUM_URL=${GITHUB_DOWNLOAD}/${TAG}/${CHECKSUM}\n\n\nexecute\n"
  },
  {
    "path": "internal/cmd/extract/extract.go",
    "content": "//go:generate go build\n\n/*\nextract generates wrappers of stdlib package exported symbols. This command\nis reserved for internal use in yaegi project.\n\nFor a similar purpose with third party packages, see the yaegi extract subcommand,\nbased on the same code.\n\nOutput files are written in the current directory, and prefixed with the go version.\n\nUsage:\n\n\textract package...\n\nThe same program is used for all target operating systems and architectures.\nThe GOOS and GOARCH environment variables set the desired target.\n*/\npackage main\n\nimport (\n\t\"bytes\"\n\t\"flag\"\n\t\"io\"\n\t\"log\"\n\t\"os\"\n\t\"path\"\n\t\"runtime\"\n\t\"strings\"\n\n\t\"github.com/traefik/yaegi/extract\"\n)\n\nvar (\n\texclude = flag.String(\"exclude\", \"\", \"comma separated list of regexp matching symbols to exclude\")\n\tinclude = flag.String(\"include\", \"\", \"comma separated list of regexp matching symbols to include\")\n)\n\nfunc main() {\n\tflag.Parse()\n\n\tif flag.NArg() == 0 {\n\t\tflag.Usage()\n\t\tlog.Fatalf(\"missing package path\")\n\t}\n\n\twd, err := os.Getwd()\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\text := extract.Extractor{\n\t\tDest: path.Base(wd),\n\t}\n\n\tgoos, goarch := os.Getenv(\"GOOS\"), os.Getenv(\"GOARCH\")\n\n\tif *exclude != \"\" {\n\t\text.Exclude = strings.Split(*exclude, \",\")\n\t}\n\n\tif *include != \"\" {\n\t\text.Include = strings.Split(*include, \",\")\n\t}\n\n\tfor _, pkgIdent := range flag.Args() {\n\t\tvar buf bytes.Buffer\n\n\t\tif pkgIdent == \"syscall\" && goos == \"solaris\" {\n\t\t\t// Syscall6 is broken on solaris (https://github.com/golang/go/issues/24357),\n\t\t\t// it breaks build, skip related symbols.\n\t\t\text.Exclude = append(ext.Exclude, \"Syscall6\")\n\t\t}\n\n\t\timportPath, err := ext.Extract(pkgIdent, \"\", &buf)\n\t\tif err != nil {\n\t\t\tlog.Fatal(err)\n\t\t}\n\n\t\tvar oFile string\n\t\tif pkgIdent == \"syscall\" {\n\t\t\toFile = strings.ReplaceAll(importPath, \"/\", \"_\") + \"_\" + goos + \"_\" + goarch + \".go\"\n\t\t} else {\n\t\t\toFile = strings.ReplaceAll(importPath, \"/\", \"_\") + \".go\"\n\t\t}\n\n\t\tversion := runtime.Version()\n\t\tif strings.HasPrefix(version, \"devel\") {\n\t\t\tlog.Fatalf(\"extracting only supported with stable releases of Go, not %v\", version)\n\t\t}\n\t\tparts := strings.Split(version, \".\")\n\t\tprefix := parts[0] + \"_\" + extract.GetMinor(parts[1])\n\n\t\tf, err := os.Create(prefix + \"_\" + oFile)\n\t\tif err != nil {\n\t\t\tlog.Fatal(err)\n\t\t}\n\n\t\tif _, err := io.Copy(f, &buf); err != nil {\n\t\t\t_ = f.Close()\n\t\t\tlog.Fatal(err)\n\t\t}\n\n\t\tif err := f.Close(); err != nil {\n\t\t\tlog.Fatal(err)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/cmd/genop/genop.go",
    "content": "package main\n\nimport (\n\t\"bytes\"\n\t\"go/format\"\n\t\"log\"\n\t\"os\"\n\t\"strings\"\n\t\"text/template\"\n)\n\nconst model = `package interp\n\n// Code generated by 'go run ../internal/cmd/genop/genop.go'. DO NOT EDIT.\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\n// Arithmetic operators\n{{range $name, $op := .Arithmetic}}\nfunc {{$name}}(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\tdest := genValueOutput(n, typ)\n\tc0, c1 := n.child[0], n.child[1]\n\n\tswitch typ.Kind() {\n\t{{- if $op.Str}}\n\tcase reflect.String:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).Set(reflect.ValueOf(v0(f).String() {{$op.Name}} v1(f).String()).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vString(c0.rval)\n\t\t\tv1 := genValue(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetString(s0 {{$op.Name}} v1(f).String())\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tv0 := genValue(c0)\n\t\t\ts1 :=  vString(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetString(v0(f).String() {{$op.Name}} s1)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetString(v0(f).String() {{$op.Name}} v1(f).String())\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t{{- end}}\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueInt(c0)\n\t\t\t{{- if $op.Shift}}\n\t\t\tv1 := genValueUint(c1)\n\t\t\t{{else}}\n\t\t\tv1 := genValueInt(c1)\n\t\t\t{{end -}}\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i {{$op.Name}} j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vInt(c0.rval)\n\t\t\t{{- if $op.Shift}}\n\t\t\tv1 := genValueUint(c1)\n\t\t\t{{else}}\n\t\t\tv1 := genValueInt(c1)\n\t\t\t{{end -}}\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i {{$op.Name}} j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tv0 := genValueInt(c0)\n\t\t\t{{- if $op.Shift}}\n\t\t\tj := vUint(c1.rval)\n\t\t\t{{else}}\n\t\t\tj := vInt(c1.rval)\n\t\t\t{{end -}}\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetInt(i {{$op.Name}} j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueInt(c0)\n\t\t\t{{- if $op.Shift}}\n\t\t\tv1 := genValueUint(c1)\n\t\t\t{{else}}\n\t\t\tv1 := genValueInt(c1)\n\t\t\t{{end -}}\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i {{$op.Name}} j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i {{$op.Name}} j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vUint(c0.rval)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i {{$op.Name}} j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tj := vUint(c1.rval)\n\t\t\tv0 := genValueUint(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetUint(i {{$op.Name}} j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i {{$op.Name}} j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t{{- if $op.Float}}\n\tcase reflect.Float32, reflect.Float64:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i {{$op.Name}} j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vFloat(c0.rval)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetFloat(i {{$op.Name}} j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tj := vFloat(c1.rval)\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetFloat(i {{$op.Name}} j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetFloat(i {{$op.Name}} j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Complex64, reflect.Complex128:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genComplex(c0)\n\t\t\tv1 := genComplex(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).Set(reflect.ValueOf(v0(f) {{$op.Name}} v1(f)).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\tr0 := vComplex(c0.rval)\n\t\t\tv1 := genComplex(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetComplex(r0 {{$op.Name}} v1(f))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tr1 := vComplex(c1.rval)\n\t\t\tv0 := genComplex(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetComplex(v0(f) {{$op.Name}} r1)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genComplex(c0)\n\t\t\tv1 := genComplex(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetComplex(v0(f) {{$op.Name}} v1(f))\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t{{- end}}\n\t}\n}\n\nfunc {{$name}}Const(n *node) {\n\tv0, v1 := n.child[0].rval, n.child[1].rval\n\t{{- if $op.Shift}}\n\tisConst := (v0.IsValid() && isConstantValue(v0.Type()))\n\t{{- else}}\n\tisConst := (v0.IsValid() && isConstantValue(v0.Type())) && (v1.IsValid() && isConstantValue(v1.Type()))\n\t{{- end}}\n\tt := n.typ.rtype\n\tif isConst {\n\t\tt = constVal\n\t}\n\tn.rval = reflect.New(t).Elem()\n\tswitch {\n\tcase isConst:\n\t\t{{- if $op.Shift}}\n\t\tv := constant.Shift(vConstantValue(v0), token.{{tokenFromName $name}}, uint(vUint(v1)))\n\t\tn.rval.Set(reflect.ValueOf(v))\n\t\t{{- else if (eq $op.Name \"/\")}}\n\t\tvar operator token.Token\n\t\t// When the result of the operation is expected to be an int (because both\n\t\t// operands are ints), we want to force the type of the whole expression to be an\n\t\t// int (and not a float), which is achieved by using the QUO_ASSIGN operator.\n\t\tif n.typ.untyped && isInt(n.typ.rtype) {\n\t\t\toperator = token.QUO_ASSIGN\n\t\t} else {\n\t\t\toperator = token.QUO\n\t\t}\n\t\tv := constant.BinaryOp(vConstantValue(v0), operator, vConstantValue(v1))\n\t\tn.rval.Set(reflect.ValueOf(v))\n\t\t{{- else}}\n\t\t{{- if $op.Int}}\n\t\tv := constant.BinaryOp(constant.ToInt(vConstantValue(v0)), token.{{tokenFromName $name}}, constant.ToInt(vConstantValue(v1)))\n\t\t{{- else}}\n\t\tv := constant.BinaryOp(vConstantValue(v0), token.{{tokenFromName $name}}, vConstantValue(v1))\n\t\t{{- end}}\n\t\tn.rval.Set(reflect.ValueOf(v))\n\t\t{{- end}}\n\t{{- if $op.Str}}\n\tcase isString(t):\n\t\tn.rval.SetString(vString(v0) {{$op.Name}} vString(v1))\n\t{{- end}}\n\t{{- if $op.Float}}\n\tcase isComplex(t):\n\t\tn.rval.SetComplex(vComplex(v0) {{$op.Name}} vComplex(v1))\n\tcase isFloat(t):\n\t\tn.rval.SetFloat(vFloat(v0) {{$op.Name}} vFloat(v1))\n\t{{- end}}\n\tcase isUint(t):\n\t\tn.rval.SetUint(vUint(v0) {{$op.Name}} vUint(v1))\n\tcase isInt(t):\n\t\t{{- if $op.Shift}}\n\t\tn.rval.SetInt(vInt(v0) {{$op.Name}} vUint(v1))\n\t\t{{- else}}\n\t\tn.rval.SetInt(vInt(v0) {{$op.Name}} vInt(v1))\n\t\t{{- end}}\n\t}\n}\n{{end}}\n// Assign operators\n{{range $name, $op := .Arithmetic}}\nfunc {{$name}}Assign(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.TypeOf()\n\tc0, c1 := n.child[0], n.child[1]\n\tsetMap := isMapEntry(c0)\n\tvar mapValue, indexValue func(*frame) reflect.Value\n\n\tif setMap {\n        mapValue = genValue(c0.child[0])\n        indexValue = genValue(c0.child[1])\n    }\n\n\tif c1.rval.IsValid() {\n\t\tswitch typ.Kind() {\n\t\t{{- if $op.Str}}\n\t\tcase reflect.String:\n\t\t\tv0 := genValueString(c0)\n\t\t\tv1 := vString(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, s := v0(f)\n\t\t\t\tv.SetString(s {{$op.Name}} v1)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t{{- end}}\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\t{{- if $op.Shift}}\n\t\t\tj := vUint(c1.rval)\n\t\t\t{{else}}\n\t\t\tj := vInt(c1.rval)\n\t\t\t{{end -}}\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetInt(i {{$op.Name}} j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tj := vUint(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetUint(i {{$op.Name}} j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t{{- if $op.Float}}\n\t\tcase reflect.Float32, reflect.Float64:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tj := vFloat(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetFloat(i {{$op.Name}} j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Complex64, reflect.Complex128:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := vComplex(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv := v0(f)\n\t\t\t\tv.SetComplex(v.Complex() {{$op.Name}} v1)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t{{- end}}\n\t\t}\n\t} else {\n\t\tswitch typ.Kind() {\n\t\t{{- if $op.Str}}\n\t\tcase reflect.String:\n\t\t\tv0 := genValueString(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, s := v0(f)\n\t\t\t\tv.SetString(s {{$op.Name}} v1(f).String())\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t{{- end}}\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\t{{- if $op.Shift}}\n\t\t\tv1 := genValueUint(c1)\n\t\t\t{{else}}\n\t\t\tv1 := genValueInt(c1)\n\t\t\t{{end -}}\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetInt(i {{$op.Name}} j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetUint(i {{$op.Name}} j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t{{- if $op.Float}}\n\t\tcase reflect.Float32, reflect.Float64:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetFloat(i {{$op.Name}} j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Complex64, reflect.Complex128:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv := v0(f)\n\t\t\t\tv.SetComplex(v.Complex() {{$op.Name}} v1(f).Complex())\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t{{- end}}\n\t\t}\n\t}\n}\n{{end}}\n{{range $name, $op := .IncDec}}\nfunc {{$name}}(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.TypeOf()\n\tc0 := n.child[0]\n\tsetMap := isMapEntry(c0)\n\tvar mapValue, indexValue func(*frame) reflect.Value\n\n\tif setMap {\n        mapValue = genValue(c0.child[0])\n        indexValue = genValue(c0.child[1])\n    }\n\n\tswitch typ.Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tv0 := genValueInt(c0)\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tv, i := v0(f)\n\t\t\tv.SetInt(i {{$op.Name}} 1)\n\t\t\tif setMap {\n                mapValue(f).SetMapIndex(indexValue(f), v)\n            }\n\t\t\treturn next\n\t\t}\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:\n\t\tv0 := genValueUint(c0)\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tv, i := v0(f)\n\t\t\tv.SetUint(i {{$op.Name}} 1)\n\t\t\tif setMap {\n                mapValue(f).SetMapIndex(indexValue(f), v)\n            }\n\t\t\treturn next\n\t\t}\n\tcase reflect.Float32, reflect.Float64:\n\t\tv0 := genValueFloat(c0)\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tv, i := v0(f)\n\t\t\tv.SetFloat(i {{$op.Name}} 1)\n\t\t\tif setMap {\n                mapValue(f).SetMapIndex(indexValue(f), v)\n            }\n\t\t\treturn next\n\t\t}\n\tcase reflect.Complex64, reflect.Complex128:\n\t\tv0 := genValue(c0)\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tv := v0(f)\n\t\t\tv.SetComplex(v.Complex() {{$op.Name}} 1)\n\t\t\tif setMap {\n                mapValue(f).SetMapIndex(indexValue(f), v)\n            }\n\t\t\treturn next\n\t\t}\n\t}\n}\n{{end}}\n{{range $name, $op := .Unary}}\nfunc {{$name}}Const(n *node) {\n\tv0 := n.child[0].rval\n\tisConst := v0.IsValid() && isConstantValue(v0.Type())\n\tt := n.typ.rtype\n\tif isConst {\n\t\tt = constVal\n\t}\n\tn.rval = reflect.New(t).Elem()\n\n\t{{- if $op.Bool}}\n\tif isConst {\n\t\tv := constant.UnaryOp(token.{{tokenFromName $name}}, vConstantValue(v0), 0)\n\t\tn.rval.Set(reflect.ValueOf(v))\n\t} else {\n\t\tn.rval.SetBool({{$op.Name}} v0.Bool())\n\t}\n\t{{- else}}\n\tswitch {\n\tcase isConst:\n\t\tv := constant.UnaryOp(token.{{tokenFromName $name}}, vConstantValue(v0), 0)\n\t\tn.rval.Set(reflect.ValueOf(v))\n\tcase isUint(t):\n\t\tn.rval.SetUint({{$op.Name}} v0.Uint())\n\tcase isInt(t):\n\t\tn.rval.SetInt({{$op.Name}} v0.Int())\n\t{{- if $op.Float}}\n\tcase isFloat(t):\n\t\tn.rval.SetFloat({{$op.Name}} v0.Float())\n\tcase isComplex(t):\n\t\tn.rval.SetComplex({{$op.Name}} v0.Complex())\n\t{{- end}}\n\t}\n\t{{- end}}\n}\n{{end}}\n{{range $name, $op := .Comparison}}\nfunc {{$name}}(n *node) {\n\ttnext := getExec(n.tnext)\n\tdest := genValueOutput(n, reflect.TypeOf(true))\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\tc0, c1 := n.child[0], n.child[1]\n\tt0, t1 := c0.typ.TypeOf(), c1.typ.TypeOf()\n\n\t{{- if or (eq $op.Name \"==\") (eq $op.Name \"!=\") }}\n\n\tif c0.typ.cat == linkedT || c1.typ.cat == linkedT {\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tdest := genValue(n)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\tdest(f).Set(reflect.ValueOf(i0 {{$op.Name}} i1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti0 := c0.rval.Interface()\n\t\t\tv1 := genValue(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tif i0 {{$op.Name}} i1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tdest(f).SetBool(i0 {{$op.Name}} i1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ti1 := c1.rval.Interface()\n\t\t\tv0 := genValue(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\tif i0 {{$op.Name}} i1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\tdest(f).SetBool(i0 {{$op.Name}} i1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tif i0 {{$op.Name}} i1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tdest(f).SetBool(i0 {{$op.Name}} i1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn\n\t}\n\n\t// Do not attempt to optimize '==' or '!=' if an operand is an interface.\n\t// This will preserve proper dynamic type checking at runtime. For static types,\n\t// type checks are already performed, so bypass them if possible.\n\tif t0.Kind() == reflect.Interface || t1.Kind() == reflect.Interface {\n\t\tv0 := genValue(c0)\n\t\tv1 := genValue(c1)\n\t\tif n.fnext != nil {\n\t\t\tfnext := getExec(n.fnext)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\tif i0 {{$op.Name}} i1 {\n\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t\tdest(f).SetBool(false)\n\t\t\t\treturn fnext\n\t\t\t}\n\t\t} else {\n\t\t\tdest := genValue(n)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\tdest(f).SetBool(i0 {{$op.Name}} i1)\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t}\n\t\treturn\n\t}\n\t{{- end}}\n\n\tswitch {\n\tcase isString(t0) || isString(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueString(c0)\n\t\t\tv1 := genValueString(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 {{$op.Name}} s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 :=  vString(c0.rval)\n\t\t\tv1 := genValueString(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 {{$op.Name}} s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 {{$op.Name}} s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 :=  vString(c1.rval)\n\t\t\tv0 := genValueString(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 {{$op.Name}} s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 {{$op.Name}} s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueString(c0)\n\t\t\tv1 := genValueString(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 {{$op.Name}} s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 {{$op.Name}} s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isFloat(t0) || isFloat(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 {{$op.Name}} s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vFloat(c0.rval)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 {{$op.Name}} s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 {{$op.Name}} s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vFloat(c1.rval)\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 {{$op.Name}} s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 {{$op.Name}} s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 {{$op.Name}} s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 {{$op.Name}} s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isUint(t0) || isUint(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 {{$op.Name}} s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vUint(c0.rval)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 {{$op.Name}} s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 {{$op.Name}} s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vUint(c1.rval)\n\t\t\tv0 := genValueUint(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 {{$op.Name}} s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 {{$op.Name}} s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 {{$op.Name}} s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 {{$op.Name}} s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isInt(t0) || isInt(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 {{$op.Name}} s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vInt(c0.rval)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 {{$op.Name}} s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 {{$op.Name}} s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vInt(c1.rval)\n\t\t\tv0 := genValueInt(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 {{$op.Name}} s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 {{$op.Name}} s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 {{$op.Name}} s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 {{$op.Name}} s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t{{- if $op.Complex}}\n\tcase isComplex(t0) || isComplex(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genComplex(c0)\n\t\t\tv1 := genComplex(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\ts0 := v0(f)\n\t\t\t\ts1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 {{$op.Name}} s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vComplex(c0.rval)\n\t\t\tv1 := genComplex(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ts1 := v1(f)\n\t\t\t\t\tif s0 {{$op.Name}} s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ts1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 {{$op.Name}} s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vComplex(c1.rval)\n\t\t\tv0 := genComplex(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ts0 := v0(f)\n\t\t\t\t\tif s0 {{$op.Name}} s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ts0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 {{$op.Name}} s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genComplex(c0)\n\t\t\tv1 := genComplex(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ts0 := v0(f)\n\t\t\t\t\ts1 := v1(f)\n\t\t\t\t\tif s0 {{$op.Name}} s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ts0 := v0(f)\n\t\t\t\t\ts1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 {{$op.Name}} s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tdefault:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\tdest(f).Set(reflect.ValueOf(i0 {{$op.Name}} i1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti0 := c0.rval.Interface()\n\t\t\tv1 := genValue(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tif i0 {{$op.Name}} i1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tdest(f).SetBool(i0 {{$op.Name}} i1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ti1 := c1.rval.Interface()\n\t\t\tv0 := genValue(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\tif i0 {{$op.Name}} i1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\tdest(f).SetBool(i0 {{$op.Name}} i1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tif i0 {{$op.Name}} i1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tdest(f).SetBool(i0 {{$op.Name}} i1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t{{- end}}\n\t}\n}\n{{end}}\n`\n\n// Op define operator name and properties.\ntype Op struct {\n\tName    string // +, -, ...\n\tStr     bool   // true if operator applies to string\n\tFloat   bool   // true if operator applies to float\n\tComplex bool   // true if operator applies to complex\n\tShift   bool   // true if operator is a shift operation\n\tBool    bool   // true if operator applies to bool\n\tInt     bool   // true if operator applies to int only\n}\n\nfunc main() {\n\tbase := template.New(\"genop\")\n\tbase.Funcs(template.FuncMap{\n\t\t\"tokenFromName\": func(name string) string {\n\t\t\tswitch name {\n\t\t\tcase \"andNot\":\n\t\t\t\treturn \"AND_NOT\"\n\t\t\tcase \"neg\":\n\t\t\t\treturn \"SUB\"\n\t\t\tcase \"pos\":\n\t\t\t\treturn \"ADD\"\n\t\t\tcase \"bitNot\":\n\t\t\t\treturn \"XOR\"\n\t\t\tdefault:\n\t\t\t\treturn strings.ToUpper(name)\n\t\t\t}\n\t\t},\n\t})\n\tparse, err := base.Parse(model)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\tb := &bytes.Buffer{}\n\tdata := map[string]interface{}{\n\t\t\"Arithmetic\": map[string]Op{\n\t\t\t\"add\":    {\"+\", true, true, true, false, false, false},\n\t\t\t\"sub\":    {\"-\", false, true, true, false, false, false},\n\t\t\t\"mul\":    {\"*\", false, true, true, false, false, false},\n\t\t\t\"quo\":    {\"/\", false, true, true, false, false, false},\n\t\t\t\"rem\":    {\"%\", false, false, false, false, false, true},\n\t\t\t\"shl\":    {\"<<\", false, false, false, true, false, true},\n\t\t\t\"shr\":    {\">>\", false, false, false, true, false, true},\n\t\t\t\"and\":    {\"&\", false, false, false, false, false, true},\n\t\t\t\"or\":     {\"|\", false, false, false, false, false, true},\n\t\t\t\"xor\":    {\"^\", false, false, false, false, false, true},\n\t\t\t\"andNot\": {\"&^\", false, false, false, false, false, true},\n\t\t},\n\t\t\"IncDec\": map[string]Op{\n\t\t\t\"inc\": {Name: \"+\"},\n\t\t\t\"dec\": {Name: \"-\"},\n\t\t},\n\t\t\"Comparison\": map[string]Op{\n\t\t\t\"equal\":        {Name: \"==\", Complex: true},\n\t\t\t\"greater\":      {Name: \">\", Complex: false},\n\t\t\t\"greaterEqual\": {Name: \">=\", Complex: false},\n\t\t\t\"lower\":        {Name: \"<\", Complex: false},\n\t\t\t\"lowerEqual\":   {Name: \"<=\", Complex: false},\n\t\t\t\"notEqual\":     {Name: \"!=\", Complex: true},\n\t\t},\n\t\t\"Unary\": map[string]Op{\n\t\t\t\"not\":    {Name: \"!\", Float: false, Bool: true},\n\t\t\t\"neg\":    {Name: \"-\", Float: true, Bool: false},\n\t\t\t\"pos\":    {Name: \"+\", Float: true, Bool: false},\n\t\t\t\"bitNot\": {Name: \"^\", Float: false, Bool: false, Int: true},\n\t\t},\n\t}\n\tif err = parse.Execute(b, data); err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\t// gofmt\n\tsource, err := format.Source(b.Bytes())\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\tif err = os.WriteFile(\"op.go\", source, 0o666); err != nil {\n\t\tlog.Fatal(err)\n\t}\n}\n"
  },
  {
    "path": "internal/unsafe2/go1_20_unsafe.go",
    "content": "//go:build !go1.21\n// +build !go1.21\n\n// Package unsafe2 provides helpers to generate recursive struct types.\npackage unsafe2\n\nimport (\n\t\"reflect\"\n\t\"unsafe\"\n)\n\ntype dummy struct{}\n\n// DummyType represents a stand-in for a recursive type.\nvar DummyType = reflect.TypeOf(dummy{})\n\n// the following type sizes must match their original definition in Go src/reflect/type.go.\n\ntype rtype struct {\n\t_ uintptr\n\t_ uintptr\n\t_ uint32\n\t_ uint32\n\t_ uintptr\n\t_ uintptr\n\t_ uint32\n\t_ uint32\n}\n\ntype emptyInterface struct {\n\ttyp *rtype\n\t_   unsafe.Pointer\n}\n\ntype structField struct {\n\t_   uintptr\n\ttyp *rtype\n\t_   uintptr\n}\n\ntype structType struct {\n\trtype\n\t_      uintptr\n\tfields []structField\n}\n\n// SetFieldType sets the type of the struct field at the given index, to the given type.\n//\n// The struct type must have been created at runtime. This is very unsafe.\nfunc SetFieldType(s reflect.Type, idx int, t reflect.Type) {\n\tif s.Kind() != reflect.Struct || idx >= s.NumField() {\n\t\treturn\n\t}\n\n\trtyp := unpackType(s)\n\tstyp := (*structType)(unsafe.Pointer(rtyp))\n\tf := styp.fields[idx]\n\tf.typ = unpackType(t)\n\tstyp.fields[idx] = f\n}\n\nfunc unpackType(t reflect.Type) *rtype {\n\tv := reflect.New(t).Elem().Interface()\n\treturn (*emptyInterface)(unsafe.Pointer(&v)).typ\n}\n"
  },
  {
    "path": "internal/unsafe2/go1_21_unsafe.go",
    "content": "//go:build go1.21\n// +build go1.21\n\n// Package unsafe2 provides helpers to generate recursive struct types.\npackage unsafe2\n\nimport (\n\t\"reflect\"\n\t\"unsafe\"\n)\n\ntype dummy struct{}\n\n// DummyType represents a stand-in for a recursive type.\nvar DummyType = reflect.TypeOf(dummy{})\n\n// The following type sizes must match their original definition in Go src/internal/abi/type.go.\ntype abiType struct {\n\t_ uintptr\n\t_ uintptr\n\t_ uint32\n\t_ uint8\n\t_ uint8\n\t_ uint8\n\t_ uint8\n\t_ uintptr\n\t_ uintptr\n\t_ int32\n\t_ int32\n}\n\ntype abiName struct {\n\tBytes *byte\n}\n\ntype abiStructField struct {\n\tName   abiName\n\tTyp    *abiType\n\tOffset uintptr\n}\n\ntype abiStructType struct {\n\tabiType\n\tPkgPath abiName\n\tFields  []abiStructField\n}\n\ntype emptyInterface struct {\n\ttyp *abiType\n\t_   unsafe.Pointer\n}\n\n// SetFieldType sets the type of the struct field at the given index, to the given type.\n//\n// The struct type must have been created at runtime. This is very unsafe.\nfunc SetFieldType(s reflect.Type, idx int, t reflect.Type) {\n\tif s.Kind() != reflect.Struct || idx >= s.NumField() {\n\t\treturn\n\t}\n\n\trtyp := unpackType(s)\n\tstyp := (*abiStructType)(unsafe.Pointer(rtyp))\n\tf := styp.Fields[idx]\n\tf.Typ = unpackType(t)\n\tstyp.Fields[idx] = f\n}\n\nfunc unpackType(t reflect.Type) *abiType {\n\tv := reflect.New(t).Elem().Interface()\n\teface := *(*emptyInterface)(unsafe.Pointer(&v))\n\treturn eface.typ\n}\n"
  },
  {
    "path": "internal/unsafe2/unsafe_test.go",
    "content": "package unsafe2_test\n\nimport (\n\t\"reflect\"\n\t\"testing\"\n\n\t\"github.com/traefik/yaegi/internal/unsafe2\"\n)\n\nfunc TestSwapFieldType(t *testing.T) {\n\tf := []reflect.StructField{\n\t\t{\n\t\t\tName: \"A\",\n\t\t\tType: reflect.TypeOf(int(0)),\n\t\t},\n\t\t{\n\t\t\tName: \"B\",\n\t\t\tType: reflect.PtrTo(unsafe2.DummyType),\n\t\t},\n\t\t{\n\t\t\tName: \"C\",\n\t\t\tType: reflect.TypeOf(int64(0)),\n\t\t},\n\t}\n\ttyp := reflect.StructOf(f)\n\tntyp := reflect.PtrTo(typ)\n\n\tunsafe2.SetFieldType(typ, 1, ntyp)\n\n\tif typ.Field(1).Type != ntyp {\n\t\tt.Fatalf(\"unexpected field type: want %s; got %s\", ntyp, typ.Field(1).Type)\n\t}\n}\n"
  },
  {
    "path": "interp/ast.go",
    "content": "package interp\n\nimport (\n\t\"fmt\"\n\t\"go/ast\"\n\t\"go/constant\"\n\t\"go/parser\"\n\t\"go/scanner\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"strconv\"\n\t\"strings\"\n\t\"sync/atomic\"\n)\n\n// nkind defines the kind of AST, i.e. the grammar category.\ntype nkind uint\n\n// Node kinds for the go language.\nconst (\n\tundefNode nkind = iota\n\taddressExpr\n\tarrayType\n\tassignStmt\n\tassignXStmt\n\tbasicLit\n\tbinaryExpr\n\tblockStmt\n\tbranchStmt\n\tbreakStmt\n\tcallExpr\n\tcaseBody\n\tcaseClause\n\tchanType\n\tchanTypeSend\n\tchanTypeRecv\n\tcommClause\n\tcommClauseDefault\n\tcompositeLitExpr\n\tconstDecl\n\tcontinueStmt\n\tdeclStmt\n\tdeferStmt\n\tdefineStmt\n\tdefineXStmt\n\tellipsisExpr\n\texprStmt\n\tfallthroughtStmt\n\tfieldExpr\n\tfieldList\n\tfileStmt\n\tforStmt0     // for {}\n\tforStmt1     // for init; ; {}\n\tforStmt2     // for cond {}\n\tforStmt3     // for init; cond; {}\n\tforStmt4     // for ; ; post {}\n\tforStmt5     // for ; cond; post {}\n\tforStmt6     // for init; ; post {}\n\tforStmt7     // for init; cond; post {}\n\tforRangeStmt // for range {}\n\tfuncDecl\n\tfuncLit\n\tfuncType\n\tgoStmt\n\tgotoStmt\n\tidentExpr\n\tifStmt0 // if cond {}\n\tifStmt1 // if cond {} else {}\n\tifStmt2 // if init; cond {}\n\tifStmt3 // if init; cond {} else {}\n\timportDecl\n\timportSpec\n\tincDecStmt\n\tindexExpr\n\tindexListExpr\n\tinterfaceType\n\tkeyValueExpr\n\tlabeledStmt\n\tlandExpr\n\tlorExpr\n\tmapType\n\tparenExpr\n\trangeStmt\n\treturnStmt\n\tselectStmt\n\tselectorExpr\n\tselectorImport\n\tsendStmt\n\tsliceExpr\n\tstarExpr\n\tstructType\n\tswitchStmt\n\tswitchIfStmt\n\ttypeAssertExpr\n\ttypeDecl\n\ttypeSpec       // type A int\n\ttypeSpecAssign // type A = int\n\ttypeSwitch\n\tunaryExpr\n\tvalueSpec\n\tvarDecl\n)\n\nvar kinds = [...]string{\n\tundefNode:         \"undefNode\",\n\taddressExpr:       \"addressExpr\",\n\tarrayType:         \"arrayType\",\n\tassignStmt:        \"assignStmt\",\n\tassignXStmt:       \"assignXStmt\",\n\tbasicLit:          \"basicLit\",\n\tbinaryExpr:        \"binaryExpr\",\n\tblockStmt:         \"blockStmt\",\n\tbranchStmt:        \"branchStmt\",\n\tbreakStmt:         \"breakStmt\",\n\tcallExpr:          \"callExpr\",\n\tcaseBody:          \"caseBody\",\n\tcaseClause:        \"caseClause\",\n\tchanType:          \"chanType\",\n\tchanTypeSend:      \"chanTypeSend\",\n\tchanTypeRecv:      \"chanTypeRecv\",\n\tcommClause:        \"commClause\",\n\tcommClauseDefault: \"commClauseDefault\",\n\tcompositeLitExpr:  \"compositeLitExpr\",\n\tconstDecl:         \"constDecl\",\n\tcontinueStmt:      \"continueStmt\",\n\tdeclStmt:          \"declStmt\",\n\tdeferStmt:         \"deferStmt\",\n\tdefineStmt:        \"defineStmt\",\n\tdefineXStmt:       \"defineXStmt\",\n\tellipsisExpr:      \"ellipsisExpr\",\n\texprStmt:          \"exprStmt\",\n\tfallthroughtStmt:  \"fallthroughStmt\",\n\tfieldExpr:         \"fieldExpr\",\n\tfieldList:         \"fieldList\",\n\tfileStmt:          \"fileStmt\",\n\tforStmt0:          \"forStmt0\",\n\tforStmt1:          \"forStmt1\",\n\tforStmt2:          \"forStmt2\",\n\tforStmt3:          \"forStmt3\",\n\tforStmt4:          \"forStmt4\",\n\tforStmt5:          \"forStmt5\",\n\tforStmt6:          \"forStmt6\",\n\tforStmt7:          \"forStmt7\",\n\tforRangeStmt:      \"forRangeStmt\",\n\tfuncDecl:          \"funcDecl\",\n\tfuncType:          \"funcType\",\n\tfuncLit:           \"funcLit\",\n\tgoStmt:            \"goStmt\",\n\tgotoStmt:          \"gotoStmt\",\n\tidentExpr:         \"identExpr\",\n\tifStmt0:           \"ifStmt0\",\n\tifStmt1:           \"ifStmt1\",\n\tifStmt2:           \"ifStmt2\",\n\tifStmt3:           \"ifStmt3\",\n\timportDecl:        \"importDecl\",\n\timportSpec:        \"importSpec\",\n\tincDecStmt:        \"incDecStmt\",\n\tindexExpr:         \"indexExpr\",\n\tindexListExpr:     \"indexListExpr\",\n\tinterfaceType:     \"interfaceType\",\n\tkeyValueExpr:      \"keyValueExpr\",\n\tlabeledStmt:       \"labeledStmt\",\n\tlandExpr:          \"landExpr\",\n\tlorExpr:           \"lorExpr\",\n\tmapType:           \"mapType\",\n\tparenExpr:         \"parenExpr\",\n\trangeStmt:         \"rangeStmt\",\n\treturnStmt:        \"returnStmt\",\n\tselectStmt:        \"selectStmt\",\n\tselectorExpr:      \"selectorExpr\",\n\tselectorImport:    \"selectorImport\",\n\tsendStmt:          \"sendStmt\",\n\tsliceExpr:         \"sliceExpr\",\n\tstarExpr:          \"starExpr\",\n\tstructType:        \"structType\",\n\tswitchStmt:        \"switchStmt\",\n\tswitchIfStmt:      \"switchIfStmt\",\n\ttypeAssertExpr:    \"typeAssertExpr\",\n\ttypeDecl:          \"typeDecl\",\n\ttypeSpec:          \"typeSpec\",\n\ttypeSpecAssign:    \"typeSpecAssign\",\n\ttypeSwitch:        \"typeSwitch\",\n\tunaryExpr:         \"unaryExpr\",\n\tvalueSpec:         \"valueSpec\",\n\tvarDecl:           \"varDecl\",\n}\n\nfunc (k nkind) String() string {\n\tif k < nkind(len(kinds)) {\n\t\treturn kinds[k]\n\t}\n\treturn \"nKind(\" + strconv.Itoa(int(k)) + \")\"\n}\n\n// astError represents an error during AST build stage.\ntype astError error\n\n// action defines the node action to perform at execution.\ntype action uint\n\n// Node actions for the go language.\n// It is important for type checking that *Assign directly\n// follows it non-assign counterpart.\nconst (\n\taNop action = iota\n\taAddr\n\taAssign\n\taAssignX\n\taAdd\n\taAddAssign\n\taAnd\n\taAndAssign\n\taAndNot\n\taAndNotAssign\n\taBitNot\n\taBranch\n\taCall\n\taCallSlice\n\taCase\n\taCompositeLit\n\taConvert\n\taDec\n\taEqual\n\taGreater\n\taGreaterEqual\n\taGetFunc\n\taGetIndex\n\taGetMethod\n\taGetSym\n\taInc\n\taLand\n\taLor\n\taLower\n\taLowerEqual\n\taMethod\n\taMul\n\taMulAssign\n\taNeg\n\taNot\n\taNotEqual\n\taOr\n\taOrAssign\n\taPos\n\taQuo\n\taQuoAssign\n\taRange\n\taRecv\n\taRem\n\taRemAssign\n\taReturn\n\taSend\n\taShl\n\taShlAssign\n\taShr\n\taShrAssign\n\taSlice\n\taSlice0\n\taStar\n\taSub\n\taSubAssign\n\taTypeAssert\n\taXor\n\taXorAssign\n)\n\nvar actions = [...]string{\n\taNop:          \"nop\",\n\taAddr:         \"&\",\n\taAssign:       \"=\",\n\taAssignX:      \"X=\",\n\taAdd:          \"+\",\n\taAddAssign:    \"+=\",\n\taAnd:          \"&\",\n\taAndAssign:    \"&=\",\n\taAndNot:       \"&^\",\n\taAndNotAssign: \"&^=\",\n\taBitNot:       \"^\",\n\taBranch:       \"branch\",\n\taCall:         \"call\",\n\taCallSlice:    \"callSlice\",\n\taCase:         \"case\",\n\taCompositeLit: \"compositeLit\",\n\taConvert:      \"convert\",\n\taDec:          \"--\",\n\taEqual:        \"==\",\n\taGreater:      \">\",\n\taGreaterEqual: \">=\",\n\taGetFunc:      \"getFunc\",\n\taGetIndex:     \"getIndex\",\n\taGetMethod:    \"getMethod\",\n\taGetSym:       \".\",\n\taInc:          \"++\",\n\taLand:         \"&&\",\n\taLor:          \"||\",\n\taLower:        \"<\",\n\taLowerEqual:   \"<=\",\n\taMethod:       \"Method\",\n\taMul:          \"*\",\n\taMulAssign:    \"*=\",\n\taNeg:          \"-\",\n\taNot:          \"!\",\n\taNotEqual:     \"!=\",\n\taOr:           \"|\",\n\taOrAssign:     \"|=\",\n\taPos:          \"+\",\n\taQuo:          \"/\",\n\taQuoAssign:    \"/=\",\n\taRange:        \"range\",\n\taRecv:         \"<-\",\n\taRem:          \"%\",\n\taRemAssign:    \"%=\",\n\taReturn:       \"return\",\n\taSend:         \"<~\",\n\taShl:          \"<<\",\n\taShlAssign:    \"<<=\",\n\taShr:          \">>\",\n\taShrAssign:    \">>=\",\n\taSlice:        \"slice\",\n\taSlice0:       \"slice0\",\n\taStar:         \"*\",\n\taSub:          \"-\",\n\taSubAssign:    \"-=\",\n\taTypeAssert:   \"TypeAssert\",\n\taXor:          \"^\",\n\taXorAssign:    \"^=\",\n}\n\nfunc (a action) String() string {\n\tif a < action(len(actions)) {\n\t\treturn actions[a]\n\t}\n\treturn \"Action(\" + strconv.Itoa(int(a)) + \")\"\n}\n\nfunc isAssignAction(a action) bool {\n\tswitch a {\n\tcase aAddAssign, aAndAssign, aAndNotAssign, aMulAssign, aOrAssign,\n\t\taQuoAssign, aRemAssign, aShlAssign, aShrAssign, aSubAssign, aXorAssign:\n\t\treturn true\n\t}\n\treturn false\n}\n\nfunc (interp *Interpreter) firstToken(src string) token.Token {\n\tvar s scanner.Scanner\n\tfile := interp.fset.AddFile(\"\", interp.fset.Base(), len(src))\n\ts.Init(file, []byte(src), nil, 0)\n\n\t_, tok, _ := s.Scan()\n\treturn tok\n}\n\nfunc ignoreError(err error, src string) bool {\n\tse, ok := err.(scanner.ErrorList)\n\tif !ok {\n\t\treturn false\n\t}\n\tif len(se) == 0 {\n\t\treturn false\n\t}\n\treturn ignoreScannerError(se[0], src)\n}\n\nfunc wrapInMain(src string) string {\n\treturn fmt.Sprintf(\"package main; func main() {%s\\n}\", src)\n}\n\nfunc (interp *Interpreter) parse(src, name string, inc bool) (node ast.Node, err error) {\n\tmode := parser.DeclarationErrors\n\n\t// Allow incremental parsing of declarations or statements, by inserting\n\t// them in a pseudo file package or function. Those statements or\n\t// declarations will be always evaluated in the global scope.\n\tvar tok token.Token\n\tvar inFunc bool\n\tif inc {\n\t\ttok = interp.firstToken(src)\n\t\tswitch tok {\n\t\tcase token.PACKAGE:\n\t\t\t// nothing to do.\n\t\tcase token.CONST, token.FUNC, token.IMPORT, token.TYPE, token.VAR:\n\t\t\tsrc = \"package main;\" + src\n\t\tdefault:\n\t\t\tinFunc = true\n\t\t\tsrc = wrapInMain(src)\n\t\t}\n\t\t// Parse comments in REPL mode, to allow tag setting.\n\t\tmode |= parser.ParseComments\n\t}\n\n\tif ok, err := interp.buildOk(&interp.context, name, src); !ok || err != nil {\n\t\treturn nil, err // skip source not matching build constraints\n\t}\n\n\tf, err := parser.ParseFile(interp.fset, name, src, mode)\n\tif err != nil {\n\t\t// only retry if we're on an expression/statement about a func\n\t\tif !inc || tok != token.FUNC {\n\t\t\treturn nil, err\n\t\t}\n\t\t// do not bother retrying if we know it's an error we're going to ignore later on.\n\t\tif ignoreError(err, src) {\n\t\t\treturn nil, err\n\t\t}\n\t\t// do not lose initial error, in case retrying fails.\n\t\tinitialError := err\n\t\t// retry with default source code \"wrapping\", in the main function scope.\n\t\tsrc := wrapInMain(strings.TrimPrefix(src, \"package main;\"))\n\t\tf, err = parser.ParseFile(interp.fset, name, src, mode)\n\t\tif err != nil {\n\t\t\treturn nil, initialError\n\t\t}\n\t}\n\n\tif inFunc {\n\t\t// return the body of the wrapper main function\n\t\treturn f.Decls[0].(*ast.FuncDecl).Body, nil\n\t}\n\n\tsetYaegiTags(&interp.context, f.Comments)\n\treturn f, nil\n}\n\n// Note: no type analysis is performed at this stage, it is done in pre-order\n// processing of CFG, in order to accommodate forward type declarations.\n\n// ast parses src string containing Go code and generates the corresponding AST.\n// The package name and the AST root node are returned.\n// The given name is used to set the filename of the relevant source file in the\n// interpreter's FileSet.\nfunc (interp *Interpreter) ast(f ast.Node) (string, *node, error) {\n\tvar err error\n\tvar root *node\n\tvar anc astNode\n\tvar st nodestack\n\tpkgName := \"main\"\n\n\taddChild := func(root **node, anc astNode, pos token.Pos, kind nkind, act action) *node {\n\t\tvar i interface{}\n\t\tnindex := atomic.AddInt64(&interp.nindex, 1)\n\t\tn := &node{anc: anc.node, interp: interp, index: nindex, pos: pos, kind: kind, action: act, val: &i, gen: builtin[act]}\n\t\tn.start = n\n\t\tif anc.node == nil {\n\t\t\t*root = n\n\t\t} else {\n\t\t\tanc.node.child = append(anc.node.child, n)\n\t\t\tif anc.node.action == aCase {\n\t\t\t\tancAst := anc.ast.(*ast.CaseClause)\n\t\t\t\tif len(ancAst.List)+len(ancAst.Body) == len(anc.node.child) {\n\t\t\t\t\t// All case clause children are collected.\n\t\t\t\t\t// Split children in condition and body nodes to desambiguify the AST.\n\t\t\t\t\tnindex = atomic.AddInt64(&interp.nindex, 1)\n\t\t\t\t\tbody := &node{anc: anc.node, interp: interp, index: nindex, pos: pos, kind: caseBody, action: aNop, val: &i, gen: nop}\n\n\t\t\t\t\tif ts := anc.node.anc.anc; ts.kind == typeSwitch && ts.child[1].action == aAssign {\n\t\t\t\t\t\t// In type switch clause, if a switch guard is assigned, duplicate the switch guard symbol\n\t\t\t\t\t\t// in each clause body, so a different guard type can be set in each clause\n\t\t\t\t\t\tname := ts.child[1].child[0].ident\n\t\t\t\t\t\tnindex = atomic.AddInt64(&interp.nindex, 1)\n\t\t\t\t\t\tgn := &node{anc: body, interp: interp, ident: name, index: nindex, pos: pos, kind: identExpr, action: aNop, val: &i, gen: nop}\n\t\t\t\t\t\tbody.child = append(body.child, gn)\n\t\t\t\t\t}\n\n\t\t\t\t\t// Add regular body children\n\t\t\t\t\tbody.child = append(body.child, anc.node.child[len(ancAst.List):]...)\n\t\t\t\t\tfor i := range body.child {\n\t\t\t\t\t\tbody.child[i].anc = body\n\t\t\t\t\t}\n\t\t\t\t\tanc.node.child = append(anc.node.child[:len(ancAst.List)], body)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn n\n\t}\n\n\t// Populate our own private AST from Go parser AST.\n\t// A stack of ancestor nodes is used to keep track of current ancestor for each depth level\n\tast.Inspect(f, func(nod ast.Node) bool {\n\t\tanc = st.top()\n\t\tvar pos token.Pos\n\t\tif nod != nil {\n\t\t\tpos = nod.Pos()\n\t\t}\n\t\tswitch a := nod.(type) {\n\t\tcase nil:\n\t\t\tanc = st.pop()\n\n\t\tcase *ast.ArrayType:\n\t\t\tst.push(addChild(&root, anc, pos, arrayType, aNop), nod)\n\n\t\tcase *ast.AssignStmt:\n\t\t\tvar act action\n\t\t\tvar kind nkind\n\t\t\tif len(a.Lhs) > 1 && len(a.Rhs) == 1 {\n\t\t\t\tif a.Tok == token.DEFINE {\n\t\t\t\t\tkind = defineXStmt\n\t\t\t\t} else {\n\t\t\t\t\tkind = assignXStmt\n\t\t\t\t}\n\t\t\t\tact = aAssignX\n\t\t\t} else {\n\t\t\t\tkind = assignStmt\n\t\t\t\tswitch a.Tok {\n\t\t\t\tcase token.ASSIGN:\n\t\t\t\t\tact = aAssign\n\t\t\t\tcase token.ADD_ASSIGN:\n\t\t\t\t\tact = aAddAssign\n\t\t\t\tcase token.AND_ASSIGN:\n\t\t\t\t\tact = aAndAssign\n\t\t\t\tcase token.AND_NOT_ASSIGN:\n\t\t\t\t\tact = aAndNotAssign\n\t\t\t\tcase token.DEFINE:\n\t\t\t\t\tkind = defineStmt\n\t\t\t\t\tact = aAssign\n\t\t\t\tcase token.SHL_ASSIGN:\n\t\t\t\t\tact = aShlAssign\n\t\t\t\tcase token.SHR_ASSIGN:\n\t\t\t\t\tact = aShrAssign\n\t\t\t\tcase token.MUL_ASSIGN:\n\t\t\t\t\tact = aMulAssign\n\t\t\t\tcase token.OR_ASSIGN:\n\t\t\t\t\tact = aOrAssign\n\t\t\t\tcase token.QUO_ASSIGN:\n\t\t\t\t\tact = aQuoAssign\n\t\t\t\tcase token.REM_ASSIGN:\n\t\t\t\t\tact = aRemAssign\n\t\t\t\tcase token.SUB_ASSIGN:\n\t\t\t\t\tact = aSubAssign\n\t\t\t\tcase token.XOR_ASSIGN:\n\t\t\t\t\tact = aXorAssign\n\t\t\t\t}\n\t\t\t}\n\t\t\tn := addChild(&root, anc, pos, kind, act)\n\t\t\tn.nleft = len(a.Lhs)\n\t\t\tn.nright = len(a.Rhs)\n\t\t\tst.push(n, nod)\n\n\t\tcase *ast.BasicLit:\n\t\t\tn := addChild(&root, anc, pos, basicLit, aNop)\n\t\t\tn.ident = a.Value\n\t\t\tswitch a.Kind {\n\t\t\tcase token.CHAR:\n\t\t\t\t// Char cannot be converted to a const here as we cannot tell the type.\n\t\t\t\tv, _, _, _ := strconv.UnquoteChar(a.Value[1:len(a.Value)-1], '\\'')\n\t\t\t\tn.rval = reflect.ValueOf(v)\n\t\t\tcase token.FLOAT, token.IMAG, token.INT, token.STRING:\n\t\t\t\tv := constant.MakeFromLiteral(a.Value, a.Kind, 0)\n\t\t\t\tn.rval = reflect.ValueOf(v)\n\t\t\t}\n\t\t\tst.push(n, nod)\n\n\t\tcase *ast.BinaryExpr:\n\t\t\tkind := binaryExpr\n\t\t\tact := aNop\n\t\t\tswitch a.Op {\n\t\t\tcase token.ADD:\n\t\t\t\tact = aAdd\n\t\t\tcase token.AND:\n\t\t\t\tact = aAnd\n\t\t\tcase token.AND_NOT:\n\t\t\t\tact = aAndNot\n\t\t\tcase token.EQL:\n\t\t\t\tact = aEqual\n\t\t\tcase token.GEQ:\n\t\t\t\tact = aGreaterEqual\n\t\t\tcase token.GTR:\n\t\t\t\tact = aGreater\n\t\t\tcase token.LAND:\n\t\t\t\tkind = landExpr\n\t\t\t\tact = aLand\n\t\t\tcase token.LOR:\n\t\t\t\tkind = lorExpr\n\t\t\t\tact = aLor\n\t\t\tcase token.LEQ:\n\t\t\t\tact = aLowerEqual\n\t\t\tcase token.LSS:\n\t\t\t\tact = aLower\n\t\t\tcase token.MUL:\n\t\t\t\tact = aMul\n\t\t\tcase token.NEQ:\n\t\t\t\tact = aNotEqual\n\t\t\tcase token.OR:\n\t\t\t\tact = aOr\n\t\t\tcase token.REM:\n\t\t\t\tact = aRem\n\t\t\tcase token.SUB:\n\t\t\t\tact = aSub\n\t\t\tcase token.SHL:\n\t\t\t\tact = aShl\n\t\t\tcase token.SHR:\n\t\t\t\tact = aShr\n\t\t\tcase token.QUO:\n\t\t\t\tact = aQuo\n\t\t\tcase token.XOR:\n\t\t\t\tact = aXor\n\t\t\t}\n\t\t\tst.push(addChild(&root, anc, pos, kind, act), nod)\n\n\t\tcase *ast.BlockStmt:\n\t\t\tb := addChild(&root, anc, pos, blockStmt, aNop)\n\t\t\tst.push(b, nod)\n\t\t\tvar kind nkind\n\t\t\tif anc.node != nil {\n\t\t\t\tkind = anc.node.kind\n\t\t\t}\n\t\t\tswitch kind {\n\t\t\tcase rangeStmt:\n\t\t\t\tk := addChild(&root, astNode{b, nod}, pos, identExpr, aNop)\n\t\t\t\tk.ident = \"_\"\n\t\t\t\tv := addChild(&root, astNode{b, nod}, pos, identExpr, aNop)\n\t\t\t\tv.ident = \"_\"\n\t\t\tcase forStmt7:\n\t\t\t\tk := addChild(&root, astNode{b, nod}, pos, identExpr, aNop)\n\t\t\t\tk.ident = \"_\"\n\t\t\t}\n\n\t\tcase *ast.BranchStmt:\n\t\t\tvar kind nkind\n\t\t\tswitch a.Tok {\n\t\t\tcase token.BREAK:\n\t\t\t\tkind = breakStmt\n\t\t\tcase token.CONTINUE:\n\t\t\t\tkind = continueStmt\n\t\t\tcase token.FALLTHROUGH:\n\t\t\t\tkind = fallthroughtStmt\n\t\t\tcase token.GOTO:\n\t\t\t\tkind = gotoStmt\n\t\t\t}\n\t\t\tst.push(addChild(&root, anc, pos, kind, aNop), nod)\n\n\t\tcase *ast.CallExpr:\n\t\t\taction := aCall\n\t\t\tif a.Ellipsis != token.NoPos {\n\t\t\t\taction = aCallSlice\n\t\t\t}\n\n\t\t\tst.push(addChild(&root, anc, pos, callExpr, action), nod)\n\n\t\tcase *ast.CaseClause:\n\t\t\tst.push(addChild(&root, anc, pos, caseClause, aCase), nod)\n\n\t\tcase *ast.ChanType:\n\t\t\tswitch a.Dir {\n\t\t\tcase ast.SEND | ast.RECV:\n\t\t\t\tst.push(addChild(&root, anc, pos, chanType, aNop), nod)\n\t\t\tcase ast.SEND:\n\t\t\t\tst.push(addChild(&root, anc, pos, chanTypeSend, aNop), nod)\n\t\t\tcase ast.RECV:\n\t\t\t\tst.push(addChild(&root, anc, pos, chanTypeRecv, aNop), nod)\n\t\t\t}\n\n\t\tcase *ast.CommClause:\n\t\t\tkind := commClause\n\t\t\tif a.Comm == nil {\n\t\t\t\tkind = commClauseDefault\n\t\t\t}\n\t\t\tst.push(addChild(&root, anc, pos, kind, aNop), nod)\n\n\t\tcase *ast.CommentGroup, *ast.EmptyStmt:\n\t\t\treturn false\n\n\t\tcase *ast.CompositeLit:\n\t\t\tst.push(addChild(&root, anc, pos, compositeLitExpr, aCompositeLit), nod)\n\n\t\tcase *ast.DeclStmt:\n\t\t\tst.push(addChild(&root, anc, pos, declStmt, aNop), nod)\n\n\t\tcase *ast.DeferStmt:\n\t\t\tst.push(addChild(&root, anc, pos, deferStmt, aNop), nod)\n\n\t\tcase *ast.Ellipsis:\n\t\t\tst.push(addChild(&root, anc, pos, ellipsisExpr, aNop), nod)\n\n\t\tcase *ast.ExprStmt:\n\t\t\tst.push(addChild(&root, anc, pos, exprStmt, aNop), nod)\n\n\t\tcase *ast.Field:\n\t\t\tst.push(addChild(&root, anc, pos, fieldExpr, aNop), nod)\n\n\t\tcase *ast.FieldList:\n\t\t\tst.push(addChild(&root, anc, pos, fieldList, aNop), nod)\n\n\t\tcase *ast.File:\n\t\t\tpkgName = a.Name.Name\n\t\t\tst.push(addChild(&root, anc, pos, fileStmt, aNop), nod)\n\n\t\tcase *ast.ForStmt:\n\t\t\t// Disambiguate variants of FOR statements with a node kind per variant\n\t\t\tvar kind nkind\n\t\t\tswitch {\n\t\t\tcase a.Cond == nil && a.Init == nil && a.Post == nil:\n\t\t\t\tkind = forStmt0\n\t\t\tcase a.Cond == nil && a.Init != nil && a.Post == nil:\n\t\t\t\tkind = forStmt1\n\t\t\tcase a.Cond != nil && a.Init == nil && a.Post == nil:\n\t\t\t\tkind = forStmt2\n\t\t\tcase a.Cond != nil && a.Init != nil && a.Post == nil:\n\t\t\t\tkind = forStmt3\n\t\t\tcase a.Cond == nil && a.Init == nil && a.Post != nil:\n\t\t\t\tkind = forStmt4\n\t\t\tcase a.Cond != nil && a.Init == nil && a.Post != nil:\n\t\t\t\tkind = forStmt5\n\t\t\tcase a.Cond == nil && a.Init != nil && a.Post != nil:\n\t\t\t\tkind = forStmt6\n\t\t\tcase a.Cond != nil && a.Init != nil && a.Post != nil:\n\t\t\t\tkind = forStmt7\n\t\t\t}\n\t\t\tst.push(addChild(&root, anc, pos, kind, aNop), nod)\n\n\t\tcase *ast.FuncDecl:\n\t\t\tn := addChild(&root, anc, pos, funcDecl, aNop)\n\t\t\tn.val = n\n\t\t\tif a.Recv == nil {\n\t\t\t\t// Function is not a method, create an empty receiver list.\n\t\t\t\taddChild(&root, astNode{n, nod}, pos, fieldList, aNop)\n\t\t\t}\n\t\t\tst.push(n, nod)\n\n\t\tcase *ast.FuncLit:\n\t\t\tn := addChild(&root, anc, pos, funcLit, aGetFunc)\n\t\t\taddChild(&root, astNode{n, nod}, pos, fieldList, aNop)\n\t\t\taddChild(&root, astNode{n, nod}, pos, undefNode, aNop)\n\t\t\tst.push(n, nod)\n\n\t\tcase *ast.FuncType:\n\t\t\tn := addChild(&root, anc, pos, funcType, aNop)\n\t\t\tn.val = n\n\t\t\tif a.TypeParams == nil {\n\t\t\t\t// Function has no type parameters, create an empty fied list.\n\t\t\t\taddChild(&root, astNode{n, nod}, pos, fieldList, aNop)\n\t\t\t}\n\t\t\tst.push(n, nod)\n\n\t\tcase *ast.GenDecl:\n\t\t\tvar kind nkind\n\t\t\tswitch a.Tok {\n\t\t\tcase token.CONST:\n\t\t\t\tkind = constDecl\n\t\t\tcase token.IMPORT:\n\t\t\t\tkind = importDecl\n\t\t\tcase token.TYPE:\n\t\t\t\tkind = typeDecl\n\t\t\tcase token.VAR:\n\t\t\t\tkind = varDecl\n\t\t\t}\n\t\t\tst.push(addChild(&root, anc, pos, kind, aNop), nod)\n\n\t\tcase *ast.GoStmt:\n\t\t\tst.push(addChild(&root, anc, pos, goStmt, aNop), nod)\n\n\t\tcase *ast.Ident:\n\t\t\tn := addChild(&root, anc, pos, identExpr, aNop)\n\t\t\tn.ident = a.Name\n\t\t\tst.push(n, nod)\n\t\t\tif n.anc.kind == defineStmt && n.anc.anc.kind == constDecl && n.anc.nright == 0 {\n\t\t\t\t// Implicit assign expression (in a ConstDecl block).\n\t\t\t\t// Clone assign source and type from previous\n\t\t\t\ta := n.anc\n\t\t\t\tpa := a.anc.child[childPos(a)-1]\n\n\t\t\t\tif len(pa.child) > pa.nleft+pa.nright {\n\t\t\t\t\t// duplicate previous type spec\n\t\t\t\t\ta.child = append(a.child, interp.dup(pa.child[a.nleft], a))\n\t\t\t\t}\n\n\t\t\t\t// duplicate previous assign right hand side\n\t\t\t\ta.child = append(a.child, interp.dup(pa.lastChild(), a))\n\t\t\t\ta.nright++\n\t\t\t}\n\n\t\tcase *ast.IfStmt:\n\t\t\t// Disambiguate variants of IF statements with a node kind per variant\n\t\t\tvar kind nkind\n\t\t\tswitch {\n\t\t\tcase a.Init == nil && a.Else == nil:\n\t\t\t\tkind = ifStmt0\n\t\t\tcase a.Init == nil && a.Else != nil:\n\t\t\t\tkind = ifStmt1\n\t\t\tcase a.Else == nil:\n\t\t\t\tkind = ifStmt2\n\t\t\tdefault:\n\t\t\t\tkind = ifStmt3\n\t\t\t}\n\t\t\tst.push(addChild(&root, anc, pos, kind, aNop), nod)\n\n\t\tcase *ast.ImportSpec:\n\t\t\tst.push(addChild(&root, anc, pos, importSpec, aNop), nod)\n\n\t\tcase *ast.IncDecStmt:\n\t\t\tvar act action\n\t\t\tswitch a.Tok {\n\t\t\tcase token.INC:\n\t\t\t\tact = aInc\n\t\t\tcase token.DEC:\n\t\t\t\tact = aDec\n\t\t\t}\n\t\t\tst.push(addChild(&root, anc, pos, incDecStmt, act), nod)\n\n\t\tcase *ast.IndexExpr:\n\t\t\tst.push(addChild(&root, anc, pos, indexExpr, aGetIndex), nod)\n\n\t\tcase *ast.IndexListExpr:\n\t\t\tst.push(addChild(&root, anc, pos, indexListExpr, aNop), nod)\n\n\t\tcase *ast.InterfaceType:\n\t\t\tst.push(addChild(&root, anc, pos, interfaceType, aNop), nod)\n\n\t\tcase *ast.KeyValueExpr:\n\t\t\tst.push(addChild(&root, anc, pos, keyValueExpr, aNop), nod)\n\n\t\tcase *ast.LabeledStmt:\n\t\t\tst.push(addChild(&root, anc, pos, labeledStmt, aNop), nod)\n\n\t\tcase *ast.MapType:\n\t\t\tst.push(addChild(&root, anc, pos, mapType, aNop), nod)\n\n\t\tcase *ast.ParenExpr:\n\t\t\tst.push(addChild(&root, anc, pos, parenExpr, aNop), nod)\n\n\t\tcase *ast.RangeStmt:\n\t\t\t// Insert a missing ForRangeStmt for AST correctness\n\t\t\tn := addChild(&root, anc, pos, forRangeStmt, aNop)\n\t\t\tr := addChild(&root, astNode{n, nod}, pos, rangeStmt, aRange)\n\t\t\tst.push(r, nod)\n\t\t\tif a.Key == nil {\n\t\t\t\t// range not in an assign expression: insert a \"_\" key variable to store iteration index\n\t\t\t\tk := addChild(&root, astNode{r, nod}, pos, identExpr, aNop)\n\t\t\t\tk.ident = \"_\"\n\t\t\t}\n\n\t\tcase *ast.ReturnStmt:\n\t\t\tst.push(addChild(&root, anc, pos, returnStmt, aReturn), nod)\n\n\t\tcase *ast.SelectStmt:\n\t\t\tst.push(addChild(&root, anc, pos, selectStmt, aNop), nod)\n\n\t\tcase *ast.SelectorExpr:\n\t\t\tst.push(addChild(&root, anc, pos, selectorExpr, aGetIndex), nod)\n\n\t\tcase *ast.SendStmt:\n\t\t\tst.push(addChild(&root, anc, pos, sendStmt, aSend), nod)\n\n\t\tcase *ast.SliceExpr:\n\t\t\tif a.Low == nil {\n\t\t\t\tst.push(addChild(&root, anc, pos, sliceExpr, aSlice0), nod)\n\t\t\t} else {\n\t\t\t\tst.push(addChild(&root, anc, pos, sliceExpr, aSlice), nod)\n\t\t\t}\n\n\t\tcase *ast.StarExpr:\n\t\t\tst.push(addChild(&root, anc, pos, starExpr, aStar), nod)\n\n\t\tcase *ast.StructType:\n\t\t\tst.push(addChild(&root, anc, pos, structType, aNop), nod)\n\n\t\tcase *ast.SwitchStmt:\n\t\t\tif a.Tag == nil {\n\t\t\t\tst.push(addChild(&root, anc, pos, switchIfStmt, aNop), nod)\n\t\t\t} else {\n\t\t\t\tst.push(addChild(&root, anc, pos, switchStmt, aNop), nod)\n\t\t\t}\n\n\t\tcase *ast.TypeAssertExpr:\n\t\t\tst.push(addChild(&root, anc, pos, typeAssertExpr, aTypeAssert), nod)\n\n\t\tcase *ast.TypeSpec:\n\t\t\tif a.Assign.IsValid() {\n\t\t\t\tst.push(addChild(&root, anc, pos, typeSpecAssign, aNop), nod)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tst.push(addChild(&root, anc, pos, typeSpec, aNop), nod)\n\n\t\tcase *ast.TypeSwitchStmt:\n\t\t\tn := addChild(&root, anc, pos, typeSwitch, aNop)\n\t\t\tst.push(n, nod)\n\t\t\tif a.Init == nil {\n\t\t\t\t// add an empty init node to disambiguate AST\n\t\t\t\taddChild(&root, astNode{n, nil}, pos, fieldList, aNop)\n\t\t\t}\n\n\t\tcase *ast.UnaryExpr:\n\t\t\tkind := unaryExpr\n\t\t\tvar act action\n\t\t\tswitch a.Op {\n\t\t\tcase token.ADD:\n\t\t\t\tact = aPos\n\t\t\tcase token.AND:\n\t\t\t\tkind = addressExpr\n\t\t\t\tact = aAddr\n\t\t\tcase token.ARROW:\n\t\t\t\tact = aRecv\n\t\t\tcase token.NOT:\n\t\t\t\tact = aNot\n\t\t\tcase token.SUB:\n\t\t\t\tact = aNeg\n\t\t\tcase token.XOR:\n\t\t\t\tact = aBitNot\n\t\t\t}\n\t\t\tst.push(addChild(&root, anc, pos, kind, act), nod)\n\n\t\tcase *ast.ValueSpec:\n\t\t\tkind := valueSpec\n\t\t\tact := aNop\n\t\t\tswitch {\n\t\t\tcase a.Values != nil:\n\t\t\t\tif len(a.Names) > 1 && len(a.Values) == 1 {\n\t\t\t\t\tif anc.node.kind == constDecl || anc.node.kind == varDecl {\n\t\t\t\t\t\tkind = defineXStmt\n\t\t\t\t\t} else {\n\t\t\t\t\t\tkind = assignXStmt\n\t\t\t\t\t}\n\t\t\t\t\tact = aAssignX\n\t\t\t\t} else {\n\t\t\t\t\tif anc.node.kind == constDecl || anc.node.kind == varDecl {\n\t\t\t\t\t\tkind = defineStmt\n\t\t\t\t\t} else {\n\t\t\t\t\t\tkind = assignStmt\n\t\t\t\t\t}\n\t\t\t\t\tact = aAssign\n\t\t\t\t}\n\t\t\tcase anc.node.kind == constDecl:\n\t\t\t\tkind, act = defineStmt, aAssign\n\t\t\tcase anc.node.kind == varDecl && anc.node.anc.kind != fileStmt:\n\t\t\t\tkind, act = defineStmt, aAssign\n\t\t\t}\n\t\t\tn := addChild(&root, anc, pos, kind, act)\n\t\t\tn.nleft = len(a.Names)\n\t\t\tn.nright = len(a.Values)\n\t\t\tst.push(n, nod)\n\n\t\tdefault:\n\t\t\terr = astError(fmt.Errorf(\"ast: %T not implemented, line %s\", a, interp.fset.Position(pos)))\n\t\t\treturn false\n\t\t}\n\t\treturn true\n\t})\n\n\tinterp.roots = append(interp.roots, root)\n\treturn pkgName, root, err\n}\n\ntype astNode struct {\n\tnode *node\n\tast  ast.Node\n}\n\ntype nodestack []astNode\n\nfunc (s *nodestack) push(n *node, a ast.Node) {\n\t*s = append(*s, astNode{n, a})\n}\n\nfunc (s *nodestack) pop() astNode {\n\tl := len(*s) - 1\n\tres := (*s)[l]\n\t*s = (*s)[:l]\n\treturn res\n}\n\nfunc (s *nodestack) top() astNode {\n\tl := len(*s)\n\tif l > 0 {\n\t\treturn (*s)[l-1]\n\t}\n\treturn astNode{}\n}\n\n// dup returns a duplicated node subtree.\nfunc (interp *Interpreter) dup(nod, anc *node) *node {\n\tnindex := atomic.AddInt64(&interp.nindex, 1)\n\tn := *nod\n\tn.index = nindex\n\tn.anc = anc\n\tn.start = &n\n\tn.pos = anc.pos\n\tn.child = nil\n\tfor _, c := range nod.child {\n\t\tn.child = append(n.child, interp.dup(c, &n))\n\t}\n\treturn &n\n}\n"
  },
  {
    "path": "interp/build.go",
    "content": "package interp\n\nimport (\n\t\"go/ast\"\n\t\"go/build\"\n\t\"go/parser\"\n\t\"path\"\n\t\"strconv\"\n\t\"strings\"\n)\n\n// buildOk returns true if a file or script matches build constraints\n// as specified in https://golang.org/pkg/go/build/#hdr-Build_Constraints.\n// An error from parser is returned as well.\nfunc (interp *Interpreter) buildOk(ctx *build.Context, name, src string) (bool, error) {\n\t// Extract comments before the first clause\n\tf, err := parser.ParseFile(interp.fset, name, src, parser.PackageClauseOnly|parser.ParseComments)\n\tif err != nil {\n\t\treturn false, err\n\t}\n\tfor _, g := range f.Comments {\n\t\t// in file, evaluate the AND of multiple line build constraints\n\t\tfor _, line := range strings.Split(strings.TrimSpace(g.Text()), \"\\n\") {\n\t\t\tif !buildLineOk(ctx, line) {\n\t\t\t\treturn false, nil\n\t\t\t}\n\t\t}\n\t}\n\tsetYaegiTags(ctx, f.Comments)\n\treturn true, nil\n}\n\n// buildLineOk returns true if line is not a build constraint or\n// if build constraint is satisfied.\nfunc buildLineOk(ctx *build.Context, line string) (ok bool) {\n\tif len(line) < 7 || line[:7] != \"+build \" {\n\t\treturn true\n\t}\n\t// In line, evaluate the OR of space-separated options\n\toptions := strings.Split(strings.TrimSpace(line[6:]), \" \")\n\tfor _, o := range options {\n\t\tif ok = buildOptionOk(ctx, o); ok {\n\t\t\tbreak\n\t\t}\n\t}\n\treturn ok\n}\n\n// buildOptionOk return true if all comma separated tags match, false otherwise.\nfunc buildOptionOk(ctx *build.Context, tag string) bool {\n\t// in option, evaluate the AND of individual tags\n\tfor _, t := range strings.Split(tag, \",\") {\n\t\tif !buildTagOk(ctx, t) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\n// buildTagOk returns true if a build tag matches, false otherwise\n// if first character is !, result is negated.\nfunc buildTagOk(ctx *build.Context, s string) (r bool) {\n\tnot := s[0] == '!'\n\tif not {\n\t\ts = s[1:]\n\t}\n\tswitch {\n\tcase contains(ctx.BuildTags, s):\n\t\tr = true\n\tcase s == ctx.GOOS:\n\t\tr = true\n\tcase s == ctx.GOARCH:\n\t\tr = true\n\tcase len(s) > 4 && s[:4] == \"go1.\":\n\t\tif n, err := strconv.Atoi(s[4:]); err != nil {\n\t\t\tr = false\n\t\t} else {\n\t\t\tr = goMinorVersion(ctx) >= n\n\t\t}\n\t}\n\tif not {\n\t\tr = !r\n\t}\n\treturn\n}\n\n// setYaegiTags scans a comment group for \"yaegi:tags tag1 tag2 ...\" lines\n// and adds the corresponding tags to the interpreter build tags.\nfunc setYaegiTags(ctx *build.Context, comments []*ast.CommentGroup) {\n\tfor _, g := range comments {\n\t\tfor _, line := range strings.Split(strings.TrimSpace(g.Text()), \"\\n\") {\n\t\t\tif len(line) < 11 || line[:11] != \"yaegi:tags \" {\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\ttags := strings.Split(strings.TrimSpace(line[10:]), \" \")\n\t\t\tfor _, tag := range tags {\n\t\t\t\tif !contains(ctx.BuildTags, tag) {\n\t\t\t\t\tctx.BuildTags = append(ctx.BuildTags, tag)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc contains(tags []string, tag string) bool {\n\tfor _, t := range tags {\n\t\tif t == tag {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\n// goMinorVersion returns the go minor version number.\nfunc goMinorVersion(ctx *build.Context) int {\n\tcurrent := ctx.ReleaseTags[len(ctx.ReleaseTags)-1]\n\n\tv := strings.Split(current, \".\")\n\tif len(v) < 2 {\n\t\tpanic(\"unsupported Go version: \" + current)\n\t}\n\n\tm, err := strconv.Atoi(v[1])\n\tif err != nil {\n\t\tpanic(\"unsupported Go version: \" + current)\n\t}\n\treturn m\n}\n\n// skipFile returns true if file should be skipped.\nfunc skipFile(ctx *build.Context, p string, skipTest bool) bool {\n\tif !strings.HasSuffix(p, \".go\") {\n\t\treturn true\n\t}\n\tp = strings.TrimSuffix(path.Base(p), \".go\")\n\tif pp := path.Base(p); strings.HasPrefix(pp, \"_\") || strings.HasPrefix(pp, \".\") {\n\t\treturn true\n\t}\n\tif skipTest && strings.HasSuffix(p, \"_test\") {\n\t\treturn true\n\t}\n\ti := strings.Index(p, \"_\")\n\tif i < 0 {\n\t\treturn false\n\t}\n\ta := strings.Split(p[i+1:], \"_\")\n\tlast := len(a) - 1\n\tif last-1 >= 0 {\n\t\tswitch x, y := a[last-1], a[last]; {\n\t\tcase x == ctx.GOOS:\n\t\t\tif knownArch[y] {\n\t\t\t\treturn y != ctx.GOARCH\n\t\t\t}\n\t\t\treturn false\n\t\tcase knownOs[x] && knownArch[y]:\n\t\t\treturn true\n\t\tcase knownArch[y] && y != ctx.GOARCH:\n\t\t\treturn true\n\t\tdefault:\n\t\t\treturn false\n\t\t}\n\t}\n\tif x := a[last]; knownOs[x] && x != ctx.GOOS || knownArch[x] && x != ctx.GOARCH {\n\t\treturn true\n\t}\n\treturn false\n}\n\nvar knownOs = map[string]bool{\n\t\"aix\":       true,\n\t\"android\":   true,\n\t\"darwin\":    true,\n\t\"dragonfly\": true,\n\t\"freebsd\":   true,\n\t\"illumos\":   true,\n\t\"ios\":       true,\n\t\"js\":        true,\n\t\"linux\":     true,\n\t\"netbsd\":    true,\n\t\"openbsd\":   true,\n\t\"plan9\":     true,\n\t\"solaris\":   true,\n\t\"wasip1\":    true,\n\t\"windows\":   true,\n}\n\nvar knownArch = map[string]bool{\n\t\"386\":      true,\n\t\"amd64\":    true,\n\t\"arm\":      true,\n\t\"arm64\":    true,\n\t\"loong64\":  true,\n\t\"mips\":     true,\n\t\"mips64\":   true,\n\t\"mips64le\": true,\n\t\"mipsle\":   true,\n\t\"ppc64\":    true,\n\t\"ppc64le\":  true,\n\t\"s390x\":    true,\n\t\"wasm\":     true,\n}\n"
  },
  {
    "path": "interp/build_test.go",
    "content": "package interp\n\nimport (\n\t\"go/build\"\n\t\"testing\"\n)\n\ntype testBuild struct {\n\tsrc string\n\tres bool\n}\n\nfunc TestBuildTag(t *testing.T) {\n\t// Assume a specific OS, arch and go version no matter the real underlying system\n\tctx := build.Context{\n\t\tGOARCH:      \"amd64\",\n\t\tGOOS:        \"linux\",\n\t\tBuildTags:   []string{\"foo\"},\n\t\tReleaseTags: []string{\"go1.11\"},\n\t}\n\n\ttests := []testBuild{\n\t\t{\"// +build linux\", true},\n\t\t{\"// +build windows\", false},\n\t\t{\"// +build go1.9\", true},\n\t\t{\"// +build go1.11\", true},\n\t\t{\"// +build go1.12\", false},\n\t\t{\"// +build !go1.10\", false},\n\t\t{\"// +build !go1.12\", true},\n\t\t{\"// +build ignore\", false},\n\t\t{\"// +build linux,amd64\", true},\n\t\t{\"// +build linux,i386\", false},\n\t\t{\"// +build linux,i386 go1.11\", true},\n\t\t{\"// +build linux\\n// +build amd64\", true},\n\t\t{\"// +build linux\\n\\n\\n// +build amd64\", true},\n\t\t{\"// +build linux\\n// +build i386\", false},\n\t\t{\"// +build foo\", true},\n\t\t{\"// +build !foo\", false},\n\t\t{\"// +build bar\", false},\n\t}\n\n\ti := New(Options{})\n\tfor _, test := range tests {\n\t\ttest := test\n\t\tsrc := test.src + \"\\npackage x\"\n\t\tt.Run(test.src, func(t *testing.T) {\n\t\t\tif r, _ := i.buildOk(&ctx, \"\", src); r != test.res {\n\t\t\t\tt.Errorf(\"got %v, want %v\", r, test.res)\n\t\t\t}\n\t\t})\n\t}\n}\n\nfunc TestSkipFile(t *testing.T) {\n\t// Assume a specific OS, arch and go pattern no matter the real underlying system\n\tctx := build.Context{\n\t\tGOARCH: \"amd64\",\n\t\tGOOS:   \"linux\",\n\t}\n\n\ttests := []testBuild{\n\t\t{\"foo/bar_linux_amd64.go\", false},\n\t\t{\"foo/bar.go\", false},\n\t\t{\"bar.go\", false},\n\t\t{\"bar_linux.go\", false},\n\t\t{\"bar_maix.go\", false},\n\t\t{\"bar_mlinux.go\", false},\n\n\t\t{\"bar_aix_foo.go\", false},\n\t\t{\"bar_linux_foo.go\", false},\n\t\t{\"bar_foo_amd64.go\", false},\n\t\t{\"bar_foo_arm.go\", true},\n\n\t\t{\"bar_aix_s390x.go\", true},\n\t\t{\"bar_aix_amd64.go\", true},\n\t\t{\"bar_linux_arm.go\", true},\n\n\t\t{\"bar_amd64.go\", false},\n\t\t{\"bar_arm.go\", true},\n\t}\n\n\tfor _, test := range tests {\n\t\ttest := test\n\t\tt.Run(test.src, func(t *testing.T) {\n\t\t\tif r := skipFile(&ctx, test.src, NoTest); r != test.res {\n\t\t\t\tt.Errorf(\"got %v, want %v\", r, test.res)\n\t\t\t}\n\t\t})\n\t}\n}\n\nfunc Test_goMinorVersion(t *testing.T) {\n\ttests := []struct {\n\t\tdesc     string\n\t\tcontext  build.Context\n\t\texpected int\n\t}{\n\t\t{\n\t\t\tdesc: \"stable\",\n\t\t\tcontext: build.Context{ReleaseTags: []string{\n\t\t\t\t\"go1.1\", \"go1.2\", \"go1.3\", \"go1.4\", \"go1.5\", \"go1.6\", \"go1.7\", \"go1.8\", \"go1.9\", \"go1.10\", \"go1.11\", \"go1.12\",\n\t\t\t}},\n\t\t\texpected: 12,\n\t\t},\n\t\t{\n\t\t\tdesc: \"devel/beta/rc\",\n\t\t\tcontext: build.Context{ReleaseTags: []string{\n\t\t\t\t\"go1.1\", \"go1.2\", \"go1.3\", \"go1.4\", \"go1.5\", \"go1.6\", \"go1.7\", \"go1.8\", \"go1.9\", \"go1.10\", \"go1.11\", \"go1.12\", \"go1.13\",\n\t\t\t}},\n\t\t\texpected: 13,\n\t\t},\n\t}\n\n\tfor _, test := range tests {\n\t\ttest := test\n\t\tt.Run(test.desc, func(t *testing.T) {\n\t\t\tminor := goMinorVersion(&test.context)\n\n\t\t\tif minor != test.expected {\n\t\t\t\tt.Errorf(\"got %v, want %v\", minor, test.expected)\n\t\t\t}\n\t\t})\n\t}\n}\n"
  },
  {
    "path": "interp/cfg.go",
    "content": "package interp\n\nimport (\n\t\"fmt\"\n\t\"go/constant\"\n\t\"log\"\n\t\"math\"\n\t\"path\"\n\t\"reflect\"\n\t\"strings\"\n\t\"unicode\"\n)\n\n// A cfgError represents an error during CFG build stage.\ntype cfgError struct {\n\t*node\n\terror\n}\n\nfunc (c *cfgError) Error() string { return c.error.Error() }\n\nvar constOp = map[action]func(*node){\n\taAdd:    addConst,\n\taSub:    subConst,\n\taMul:    mulConst,\n\taQuo:    quoConst,\n\taRem:    remConst,\n\taAnd:    andConst,\n\taOr:     orConst,\n\taShl:    shlConst,\n\taShr:    shrConst,\n\taAndNot: andNotConst,\n\taXor:    xorConst,\n\taNot:    notConst,\n\taBitNot: bitNotConst,\n\taNeg:    negConst,\n\taPos:    posConst,\n}\n\nvar constBltn = map[string]func(*node){\n\tbltnComplex: complexConst,\n\tbltnImag:    imagConst,\n\tbltnReal:    realConst,\n}\n\nconst nilIdent = \"nil\"\n\nfunc init() {\n\t// Use init() to avoid initialization cycles for the following constant builtins.\n\tconstBltn[bltnAlignof] = alignof\n\tconstBltn[bltnOffsetof] = offsetof\n\tconstBltn[bltnSizeof] = sizeof\n}\n\n// cfg generates a control flow graph (CFG) from AST (wiring successors in AST)\n// and pre-compute frame sizes and indexes for all un-named (temporary) and named\n// variables. A list of nodes of init functions is returned.\n// Following this pass, the CFG is ready to run.\nfunc (interp *Interpreter) cfg(root *node, sc *scope, importPath, pkgName string) ([]*node, error) {\n\tif sc == nil {\n\t\tsc = interp.initScopePkg(importPath, pkgName)\n\t}\n\tcheck := typecheck{scope: sc}\n\tvar initNodes []*node\n\tvar err error\n\n\tbaseName := path.Base(interp.fset.Position(root.pos).Filename)\n\n\troot.Walk(func(n *node) bool {\n\t\t// Pre-order processing\n\t\tif err != nil {\n\t\t\treturn false\n\t\t}\n\t\tif n.scope == nil {\n\t\t\tn.scope = sc\n\t\t}\n\t\ttracePrintln(n)\n\n\t\tswitch n.kind {\n\t\tcase binaryExpr, unaryExpr, parenExpr:\n\t\t\tif isBoolAction(n) {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\t// Gather assigned type if set, to give context for type propagation at post-order.\n\t\t\tswitch n.anc.kind {\n\t\t\tcase assignStmt, defineStmt:\n\t\t\t\ta := n.anc\n\t\t\t\ti := childPos(n) - a.nright\n\t\t\t\tif i < 0 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tif len(a.child) > a.nright+a.nleft {\n\t\t\t\t\ti--\n\t\t\t\t}\n\t\t\t\tdest := a.child[i]\n\t\t\t\tif dest.typ == nil {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tif dest.typ.incomplete {\n\t\t\t\t\terr = n.cfgErrorf(\"invalid type declaration\")\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\tif !isInterface(dest.typ) {\n\t\t\t\t\t// Interface type are not propagated, and will be resolved at post-order.\n\t\t\t\t\tn.typ = dest.typ\n\t\t\t\t}\n\t\t\tcase binaryExpr, unaryExpr, parenExpr:\n\t\t\t\tn.typ = n.anc.typ\n\t\t\t}\n\n\t\tcase defineStmt:\n\t\t\t// Determine type of variables initialized at declaration, so it can be propagated.\n\t\t\tif n.nleft+n.nright == len(n.child) {\n\t\t\t\t// No type was specified on the left hand side, it will resolved at post-order.\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tn.typ, err = nodeType(interp, sc, n.child[n.nleft])\n\t\t\tif err != nil {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tfor i := 0; i < n.nleft; i++ {\n\t\t\t\tn.child[i].typ = n.typ\n\t\t\t}\n\n\t\tcase blockStmt:\n\t\t\tvar rangek, rangev *node\n\t\t\tif n.anc != nil && n.anc.kind == rangeStmt {\n\t\t\t\t// For range block: ensure that array or map type is propagated to iterators\n\t\t\t\t// prior to process block. We cannot perform this at RangeStmt pre-order because\n\t\t\t\t// type of array like value is not yet known. This could be fixed in ast structure\n\t\t\t\t// by setting array/map node as 1st child of ForRangeStmt instead of 3rd child of\n\t\t\t\t// RangeStmt. The following workaround is less elegant but ok.\n\t\t\t\tc := n.anc.child[1]\n\t\t\t\tif c != nil && c.typ != nil && isSendChan(c.typ) {\n\t\t\t\t\terr = c.cfgErrorf(\"invalid operation: range %s receive from send-only channel\", c.ident)\n\t\t\t\t\treturn false\n\t\t\t\t}\n\n\t\t\t\tif t := sc.rangeChanType(n.anc); t != nil {\n\t\t\t\t\t// range over channel\n\t\t\t\t\te := n.anc.child[0]\n\t\t\t\t\tindex := sc.add(t.val)\n\t\t\t\t\tsc.sym[e.ident] = &symbol{index: index, kind: varSym, typ: t.val}\n\t\t\t\t\te.typ = t.val\n\t\t\t\t\te.findex = index\n\t\t\t\t\tn.anc.gen = rangeChan\n\t\t\t\t} else {\n\t\t\t\t\t// range over array or map\n\t\t\t\t\tvar ktyp, vtyp *itype\n\t\t\t\t\tvar k, v, o *node\n\t\t\t\t\tif len(n.anc.child) == 4 {\n\t\t\t\t\t\tk, v, o = n.anc.child[0], n.anc.child[1], n.anc.child[2]\n\t\t\t\t\t\tif v.ident == \"_\" {\n\t\t\t\t\t\t\tv = nil // Do not assign to _ value.\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tk, o = n.anc.child[0], n.anc.child[1]\n\t\t\t\t\t}\n\n\t\t\t\t\tswitch o.typ.cat {\n\t\t\t\t\tcase valueT, linkedT:\n\t\t\t\t\t\ttyp := o.typ.rtype\n\t\t\t\t\t\tif o.typ.cat == linkedT {\n\t\t\t\t\t\t\ttyp = o.typ.val.TypeOf()\n\t\t\t\t\t\t}\n\t\t\t\t\t\tswitch typ.Kind() {\n\t\t\t\t\t\tcase reflect.Map:\n\t\t\t\t\t\t\tn.anc.gen = rangeMap\n\t\t\t\t\t\t\tityp := valueTOf(reflect.TypeOf((*reflect.MapIter)(nil)))\n\t\t\t\t\t\t\tsc.add(ityp)\n\t\t\t\t\t\t\tktyp = valueTOf(typ.Key())\n\t\t\t\t\t\t\tvtyp = valueTOf(typ.Elem())\n\t\t\t\t\t\tcase reflect.String:\n\t\t\t\t\t\t\tsc.add(sc.getType(\"int\")) // Add a dummy type to store array shallow copy for range\n\t\t\t\t\t\t\tsc.add(sc.getType(\"int\")) // Add a dummy type to store index for range\n\t\t\t\t\t\t\tktyp = sc.getType(\"int\")\n\t\t\t\t\t\t\tvtyp = sc.getType(\"rune\")\n\t\t\t\t\t\tcase reflect.Array, reflect.Slice:\n\t\t\t\t\t\t\tsc.add(sc.getType(\"int\")) // Add a dummy type to store array shallow copy for range\n\t\t\t\t\t\t\tktyp = sc.getType(\"int\")\n\t\t\t\t\t\t\tvtyp = valueTOf(typ.Elem())\n\t\t\t\t\t\t}\n\t\t\t\t\tcase mapT:\n\t\t\t\t\t\tn.anc.gen = rangeMap\n\t\t\t\t\t\tityp := valueTOf(reflect.TypeOf((*reflect.MapIter)(nil)))\n\t\t\t\t\t\tsc.add(ityp)\n\t\t\t\t\t\tktyp = o.typ.key\n\t\t\t\t\t\tvtyp = o.typ.val\n\t\t\t\t\tcase ptrT:\n\t\t\t\t\t\tktyp = sc.getType(\"int\")\n\t\t\t\t\t\tvtyp = o.typ.val\n\t\t\t\t\t\tif vtyp.cat == valueT {\n\t\t\t\t\t\t\tvtyp = valueTOf(vtyp.rtype.Elem())\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tvtyp = vtyp.val\n\t\t\t\t\t\t}\n\t\t\t\t\tcase stringT:\n\t\t\t\t\t\tsc.add(sc.getType(\"int\")) // Add a dummy type to store array shallow copy for range\n\t\t\t\t\t\tsc.add(sc.getType(\"int\")) // Add a dummy type to store index for range\n\t\t\t\t\t\tktyp = sc.getType(\"int\")\n\t\t\t\t\t\tvtyp = sc.getType(\"rune\")\n\t\t\t\t\tcase arrayT, sliceT, variadicT:\n\t\t\t\t\t\tsc.add(sc.getType(\"int\")) // Add a dummy type to store array shallow copy for range\n\t\t\t\t\t\tktyp = sc.getType(\"int\")\n\t\t\t\t\t\tvtyp = o.typ.val\n\t\t\t\t\tcase intT:\n\t\t\t\t\t\tn.anc.gen = rangeInt\n\t\t\t\t\t\tsc.add(sc.getType(\"int\"))\n\t\t\t\t\t\tktyp = sc.getType(\"int\")\n\t\t\t\t\t}\n\n\t\t\t\t\tkindex := sc.add(ktyp)\n\t\t\t\t\tsc.sym[k.ident] = &symbol{index: kindex, kind: varSym, typ: ktyp}\n\t\t\t\t\tk.typ = ktyp\n\t\t\t\t\tk.findex = kindex\n\t\t\t\t\trangek = k\n\n\t\t\t\t\tif v != nil {\n\t\t\t\t\t\tvindex := sc.add(vtyp)\n\t\t\t\t\t\tsc.sym[v.ident] = &symbol{index: vindex, kind: varSym, typ: vtyp}\n\t\t\t\t\t\tv.typ = vtyp\n\t\t\t\t\t\tv.findex = vindex\n\t\t\t\t\t\trangev = v\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tn.findex = -1\n\t\t\tn.val = nil\n\t\t\tsc = sc.pushBloc()\n\n\t\t\tif n.anc != nil && n.anc.kind == rangeStmt {\n\t\t\t\tlk := n.child[0]\n\t\t\t\tif rangek != nil {\n\t\t\t\t\tlk.ident = rangek.ident\n\t\t\t\t\tlk.typ = rangek.typ\n\t\t\t\t\tkindex := sc.add(lk.typ)\n\t\t\t\t\tsc.sym[lk.ident] = &symbol{index: kindex, kind: varSym, typ: lk.typ}\n\t\t\t\t\tlk.findex = kindex\n\t\t\t\t\tlk.gen = loopVarKey\n\t\t\t\t}\n\t\t\t\tlv := n.child[1]\n\t\t\t\tif rangev != nil {\n\t\t\t\t\tlv.ident = rangev.ident\n\t\t\t\t\tlv.typ = rangev.typ\n\t\t\t\t\tvindex := sc.add(lv.typ)\n\t\t\t\t\tsc.sym[lv.ident] = &symbol{index: vindex, kind: varSym, typ: lv.typ}\n\t\t\t\t\tlv.findex = vindex\n\t\t\t\t\tlv.gen = loopVarVal\n\t\t\t\t}\n\t\t\t}\n\t\t\tif n.anc != nil && n.anc.kind == forStmt7 {\n\t\t\t\tlv := n.child[0]\n\t\t\t\tinit := n.anc.child[0]\n\t\t\t\tif init.kind == defineStmt && len(init.child) >= 2 && init.child[0].kind == identExpr {\n\t\t\t\t\tfi := init.child[0]\n\t\t\t\t\tlv.ident = fi.ident\n\t\t\t\t\tlv.typ = fi.typ\n\t\t\t\t\tvindex := sc.add(lv.typ)\n\t\t\t\t\tsc.sym[lv.ident] = &symbol{index: vindex, kind: varSym, typ: lv.typ}\n\t\t\t\t\tlv.findex = vindex\n\t\t\t\t\tlv.gen = loopVarFor\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Pre-define symbols for labels defined in this block, so we are sure that\n\t\t\t// they are already defined when met.\n\t\t\t// TODO(marc): labels must be stored outside of symbols to avoid collisions.\n\t\t\tfor _, c := range n.child {\n\t\t\t\tif c.kind != labeledStmt {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tlabel := c.child[0].ident\n\t\t\t\tsym := &symbol{kind: labelSym, node: c, index: -1}\n\t\t\t\tsc.sym[label] = sym\n\t\t\t\tc.sym = sym\n\t\t\t}\n\t\t\t// If block is the body of a function, get declared variables in current scope.\n\t\t\t// This is done in order to add the func signature symbols into sc.sym,\n\t\t\t// as we will need them in post-processing.\n\t\t\tif n.anc != nil && n.anc.kind == funcDecl {\n\t\t\t\tfor k, v := range sc.anc.sym {\n\t\t\t\t\tsc.sym[k] = v\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase breakStmt, continueStmt, gotoStmt:\n\t\t\tif len(n.child) == 0 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\t// Handle labeled statements.\n\t\t\tlabel := n.child[0].ident\n\t\t\tif sym, _, ok := sc.lookup(label); ok {\n\t\t\t\tif sym.kind != labelSym {\n\t\t\t\t\terr = n.child[0].cfgErrorf(\"label %s not defined\", label)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tn.sym = sym\n\t\t\t} else {\n\t\t\t\tn.sym = &symbol{kind: labelSym, index: -1}\n\t\t\t\tsc.sym[label] = n.sym\n\t\t\t}\n\t\t\tif n.kind == gotoStmt {\n\t\t\t\tn.sym.from = append(n.sym.from, n) // To allow forward goto statements.\n\t\t\t}\n\n\t\tcase caseClause:\n\t\t\tsc = sc.pushBloc()\n\t\t\tif sn := n.anc.anc; sn.kind == typeSwitch && sn.child[1].action == aAssign {\n\t\t\t\t// Type switch clause with a var defined in switch guard.\n\t\t\t\tvar typ *itype\n\t\t\t\tif len(n.child) == 2 {\n\t\t\t\t\t// 1 type in clause: define the var with this type in the case clause scope.\n\t\t\t\t\tswitch {\n\t\t\t\t\tcase n.child[0].ident == nilIdent:\n\t\t\t\t\t\ttyp = sc.getType(\"interface{}\")\n\t\t\t\t\tcase !n.child[0].isType(sc):\n\t\t\t\t\t\terr = n.cfgErrorf(\"%s is not a type\", n.child[0].ident)\n\t\t\t\t\tdefault:\n\t\t\t\t\t\ttyp, err = nodeType(interp, sc, n.child[0])\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t// Define the var with the type in the switch guard expression.\n\t\t\t\t\ttyp = sn.child[1].child[1].child[0].typ\n\t\t\t\t}\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\tnod := n.lastChild().child[0]\n\t\t\t\tindex := sc.add(typ)\n\t\t\t\tsc.sym[nod.ident] = &symbol{index: index, kind: varSym, typ: typ}\n\t\t\t\tnod.findex = index\n\t\t\t\tnod.typ = typ\n\t\t\t}\n\n\t\tcase commClauseDefault:\n\t\t\tsc = sc.pushBloc()\n\n\t\tcase commClause:\n\t\t\tsc = sc.pushBloc()\n\t\t\tif len(n.child) > 0 && n.child[0].action == aAssign {\n\t\t\t\tch := n.child[0].child[1].child[0]\n\t\t\t\tvar typ *itype\n\t\t\t\tif typ, err = nodeType(interp, sc, ch); err != nil {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\tif !isChan(typ) {\n\t\t\t\t\terr = n.cfgErrorf(\"invalid operation: receive from non-chan type\")\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\telem := chanElement(typ)\n\t\t\t\tassigned := n.child[0].child[0]\n\t\t\t\tindex := sc.add(elem)\n\t\t\t\tsc.sym[assigned.ident] = &symbol{index: index, kind: varSym, typ: elem}\n\t\t\t\tassigned.findex = index\n\t\t\t\tassigned.typ = elem\n\t\t\t}\n\n\t\tcase compositeLitExpr:\n\t\t\tif len(n.child) > 0 && n.child[0].isType(sc) {\n\t\t\t\t// Get type from 1st child.\n\t\t\t\tif n.typ, err = nodeType(interp, sc, n.child[0]); err != nil {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\t// Indicate that the first child is the type.\n\t\t\t\tn.nleft = 1\n\t\t\t} else {\n\t\t\t\t// Get type from ancestor (implicit type).\n\t\t\t\tif n.anc.kind == keyValueExpr && n == n.anc.child[0] {\n\t\t\t\t\tn.typ = n.anc.typ.key\n\t\t\t\t} else if atyp := n.anc.typ; atyp != nil {\n\t\t\t\t\tif atyp.cat == valueT && hasElem(atyp.rtype) {\n\t\t\t\t\t\tn.typ = valueTOf(atyp.rtype.Elem())\n\t\t\t\t\t} else {\n\t\t\t\t\t\tn.typ = atyp.val\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif n.typ == nil {\n\t\t\t\t\t// A nil type indicates either an error or a generic type.\n\t\t\t\t\t// A child indexExpr or indexListExpr is used for type parameters,\n\t\t\t\t\t// it indicates an instanciated generic.\n\t\t\t\t\tif n.child[0].kind != indexExpr && n.child[0].kind != indexListExpr {\n\t\t\t\t\t\terr = n.cfgErrorf(\"undefined type\")\n\t\t\t\t\t\treturn false\n\t\t\t\t\t}\n\t\t\t\t\tt0, err1 := nodeType(interp, sc, n.child[0].child[0])\n\t\t\t\t\tif err1 != nil {\n\t\t\t\t\t\treturn false\n\t\t\t\t\t}\n\t\t\t\t\tif t0.cat != genericT {\n\t\t\t\t\t\terr = n.cfgErrorf(\"undefined type\")\n\t\t\t\t\t\treturn false\n\t\t\t\t\t}\n\t\t\t\t\t// We have a composite literal of generic type, instantiate it.\n\t\t\t\t\tlt := []*itype{}\n\t\t\t\t\tfor _, n1 := range n.child[0].child[1:] {\n\t\t\t\t\t\tt1, err1 := nodeType(interp, sc, n1)\n\t\t\t\t\t\tif err1 != nil {\n\t\t\t\t\t\t\treturn false\n\t\t\t\t\t\t}\n\t\t\t\t\t\tlt = append(lt, t1)\n\t\t\t\t\t}\n\t\t\t\t\tvar g *node\n\t\t\t\t\tg, _, err = genAST(sc, t0.node.anc, lt)\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn false\n\t\t\t\t\t}\n\t\t\t\t\tn.child[0] = g.lastChild()\n\t\t\t\t\tn.typ, err = nodeType(interp, sc, n.child[0])\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn false\n\t\t\t\t\t}\n\t\t\t\t\t// Generate methods if any.\n\t\t\t\t\tfor _, nod := range t0.method {\n\t\t\t\t\t\tgm, _, err2 := genAST(nod.scope, nod, lt)\n\t\t\t\t\t\tif err2 != nil {\n\t\t\t\t\t\t\terr = err2\n\t\t\t\t\t\t\treturn false\n\t\t\t\t\t\t}\n\t\t\t\t\t\tgm.typ, err = nodeType(interp, nod.scope, gm.child[2])\n\t\t\t\t\t\tif err != nil {\n\t\t\t\t\t\t\treturn false\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif _, err = interp.cfg(gm, sc, sc.pkgID, sc.pkgName); err != nil {\n\t\t\t\t\t\t\treturn false\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif err = genRun(gm); err != nil {\n\t\t\t\t\t\t\treturn false\n\t\t\t\t\t\t}\n\t\t\t\t\t\tn.typ.addMethod(gm)\n\t\t\t\t\t}\n\t\t\t\t\tn.nleft = 1 // Indictate the type of composite literal.\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tchild := n.child\n\t\t\tif n.nleft > 0 {\n\t\t\t\tn.child[0].typ = n.typ\n\t\t\t\tchild = n.child[1:]\n\t\t\t}\n\t\t\t// Propagate type to children, to handle implicit types\n\t\t\tfor _, c := range child {\n\t\t\t\tif isBlank(c) {\n\t\t\t\t\terr = n.cfgErrorf(\"cannot use _ as value\")\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\tswitch c.kind {\n\t\t\t\tcase binaryExpr, unaryExpr, compositeLitExpr:\n\t\t\t\t\t// Do not attempt to propagate composite type to operator expressions,\n\t\t\t\t\t// it breaks constant folding.\n\t\t\t\tcase keyValueExpr, typeAssertExpr, indexExpr:\n\t\t\t\t\tc.typ = n.typ\n\t\t\t\tdefault:\n\t\t\t\t\tif c.ident == nilIdent {\n\t\t\t\t\t\tc.typ = sc.getType(nilIdent)\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tif c.typ, err = nodeType(interp, sc, c); err != nil {\n\t\t\t\t\t\treturn false\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase forStmt0, forStmt1, forStmt2, forStmt3, forStmt4, forStmt5, forStmt6, forStmt7, forRangeStmt:\n\t\t\tsc = sc.pushBloc()\n\t\t\tsc.loop, sc.loopRestart = n, n.lastChild()\n\n\t\tcase funcLit:\n\t\t\tn.typ = nil // to force nodeType to recompute the type\n\t\t\tif n.typ, err = nodeType(interp, sc, n); err != nil {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tn.findex = sc.add(n.typ)\n\t\t\tfallthrough\n\n\t\tcase funcDecl:\n\t\t\t// Do not allow function declarations without body.\n\t\t\tif len(n.child) < 4 {\n\t\t\t\terr = n.cfgErrorf(\"missing function body\")\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tn.val = n\n\n\t\t\t// Skip substree in case of a generic function.\n\t\t\tif len(n.child[2].child[0].child) > 0 {\n\t\t\t\treturn false\n\t\t\t}\n\n\t\t\t// Skip subtree if the function is a method with a generic receiver.\n\t\t\tif len(n.child[0].child) > 0 {\n\t\t\t\trecvTypeNode := n.child[0].child[0].lastChild()\n\t\t\t\ttyp, err := nodeType(interp, sc, recvTypeNode)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\tif typ.cat == genericT || (typ.val != nil && typ.val.cat == genericT) {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\tif typ.cat == ptrT {\n\t\t\t\t\trc0 := recvTypeNode.child[0]\n\t\t\t\t\trt0, err := nodeType(interp, sc, rc0)\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn false\n\t\t\t\t\t}\n\t\t\t\t\tif rc0.kind == indexExpr && rt0.cat == structT {\n\t\t\t\t\t\treturn false\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Compute function type before entering local scope to avoid\n\t\t\t// possible collisions with function argument names.\n\t\t\tn.child[2].typ, err = nodeType(interp, sc, n.child[2])\n\t\t\tif err != nil {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tn.typ = n.child[2].typ\n\n\t\t\t// Add a frame indirection level as we enter in a func.\n\t\t\tsc = sc.pushFunc()\n\t\t\tsc.def = n\n\n\t\t\t// Allocate frame space for return values, define output symbols.\n\t\t\tif len(n.child[2].child) == 3 {\n\t\t\t\tfor _, c := range n.child[2].child[2].child {\n\t\t\t\t\tvar typ *itype\n\t\t\t\t\tif typ, err = nodeType(interp, sc, c.lastChild()); err != nil {\n\t\t\t\t\t\treturn false\n\t\t\t\t\t}\n\t\t\t\t\tif len(c.child) > 1 {\n\t\t\t\t\t\tfor _, cc := range c.child[:len(c.child)-1] {\n\t\t\t\t\t\t\tsc.sym[cc.ident] = &symbol{index: sc.add(typ), kind: varSym, typ: typ}\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsc.add(typ)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Define receiver symbol.\n\t\t\tif len(n.child[0].child) > 0 {\n\t\t\t\tvar typ *itype\n\t\t\t\tfr := n.child[0].child[0]\n\t\t\t\trecvTypeNode := fr.lastChild()\n\t\t\t\tif typ, err = nodeType(interp, sc, recvTypeNode); err != nil {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\tif typ.cat == nilT {\n\t\t\t\t\t// This may happen when instantiating generic methods.\n\t\t\t\t\ts2, _, ok := sc.lookup(typ.id())\n\t\t\t\t\tif !ok {\n\t\t\t\t\t\terr = n.cfgErrorf(\"type not found: %s\", typ.id())\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t\ttyp = s2.typ\n\t\t\t\t\tif typ.cat == nilT {\n\t\t\t\t\t\terr = n.cfgErrorf(\"nil type: %s\", typ.id())\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\trecvTypeNode.typ = typ\n\t\t\t\tn.child[2].typ.recv = typ\n\t\t\t\tn.typ.recv = typ\n\t\t\t\tindex := sc.add(typ)\n\t\t\t\tif len(fr.child) > 1 {\n\t\t\t\t\tsc.sym[fr.child[0].ident] = &symbol{index: index, kind: varSym, typ: typ}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Define input parameter symbols.\n\t\t\tfor _, c := range n.child[2].child[1].child {\n\t\t\t\tvar typ *itype\n\t\t\t\tif typ, err = nodeType(interp, sc, c.lastChild()); err != nil {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\tfor _, cc := range c.child[:len(c.child)-1] {\n\t\t\t\t\tsc.sym[cc.ident] = &symbol{index: sc.add(typ), kind: varSym, typ: typ}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif n.child[1].ident == \"init\" && len(n.child[0].child) == 0 {\n\t\t\t\tinitNodes = append(initNodes, n)\n\t\t\t}\n\n\t\tcase ifStmt0, ifStmt1, ifStmt2, ifStmt3:\n\t\t\tsc = sc.pushBloc()\n\n\t\tcase switchStmt, switchIfStmt, typeSwitch:\n\t\t\t// Make sure default clause is in last position.\n\t\t\tc := n.lastChild().child\n\t\t\tif i, l := getDefault(n), len(c)-1; i >= 0 && i != l {\n\t\t\t\tc[i], c[l] = c[l], c[i]\n\t\t\t}\n\t\t\tsc = sc.pushBloc()\n\t\t\tsc.loop = n\n\n\t\tcase importSpec:\n\t\t\t// Already all done in GTA.\n\t\t\treturn false\n\n\t\tcase typeSpec:\n\t\t\t// Processing already done in GTA pass for global types, only parses inlined types.\n\t\t\tif sc.def == nil {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\ttypeName := n.child[0].ident\n\t\t\tvar typ *itype\n\t\t\tif typ, err = nodeType(interp, sc, n.child[1]); err != nil {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tif typ.incomplete {\n\t\t\t\t// Type may still be incomplete in case of a local recursive struct declaration.\n\t\t\t\tif typ, err = typ.finalize(); err != nil {\n\t\t\t\t\terr = n.cfgErrorf(\"invalid type declaration\")\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tswitch n.child[1].kind {\n\t\t\tcase identExpr, selectorExpr:\n\t\t\t\tn.typ = namedOf(typ, pkgName, typeName)\n\t\t\tdefault:\n\t\t\t\tn.typ = typ\n\t\t\t\tn.typ.name = typeName\n\t\t\t}\n\t\t\tsc.sym[typeName] = &symbol{kind: typeSym, typ: n.typ}\n\t\t\treturn false\n\n\t\tcase constDecl:\n\t\t\t// Early parse of constDecl subtrees, to compute all constant\n\t\t\t// values which may be used in further declarations.\n\t\t\tif !sc.global {\n\t\t\t\tfor _, c := range n.child {\n\t\t\t\t\tif _, err = interp.cfg(c, sc, importPath, pkgName); err != nil {\n\t\t\t\t\t\t// No error processing here, to allow recovery in subtree nodes.\n\t\t\t\t\t\terr = nil\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase arrayType, basicLit, chanType, chanTypeRecv, chanTypeSend, funcType, interfaceType, mapType, structType:\n\t\t\tn.typ, err = nodeType(interp, sc, n)\n\t\t\treturn false\n\t\t}\n\t\treturn true\n\t}, func(n *node) {\n\t\t// Post-order processing\n\t\tif err != nil {\n\t\t\treturn\n\t\t}\n\n\t\tdefer func() {\n\t\t\tif r := recover(); r != nil {\n\t\t\t\t// Display the exact location in input source which triggered the panic\n\t\t\t\tpanic(n.cfgErrorf(\"CFG post-order panic: %v\", r))\n\t\t\t}\n\t\t}()\n\n\t\tswitch n.kind {\n\t\tcase addressExpr:\n\t\t\tif isBlank(n.child[0]) {\n\t\t\t\terr = n.cfgErrorf(\"cannot use _ as value\")\n\t\t\t\tbreak\n\t\t\t}\n\t\t\twireChild(n)\n\n\t\t\terr = check.addressExpr(n)\n\t\t\tif err != nil {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tn.typ = ptrOf(n.child[0].typ)\n\t\t\tn.findex = sc.add(n.typ)\n\n\t\tcase assignStmt, defineStmt:\n\t\t\tif n.anc.kind == typeSwitch && n.anc.child[1] == n {\n\t\t\t\t// type switch guard assignment: assign dest to concrete value of src\n\t\t\t\tn.gen = nop\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tvar atyp *itype\n\t\t\tif n.nleft+n.nright < len(n.child) {\n\t\t\t\tif atyp, err = nodeType(interp, sc, n.child[n.nleft]); err != nil {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tvar sbase int\n\t\t\tif n.nright > 0 {\n\t\t\t\tsbase = len(n.child) - n.nright\n\t\t\t}\n\n\t\t\t// If len(RHS) > 1, each node must be single-valued, and the nth expression\n\t\t\t// on the right is assigned to the nth operand on the left, so the number of\n\t\t\t// nodes on the left and right sides must be equal\n\t\t\tif n.nright > 1 && n.nright != n.nleft {\n\t\t\t\terr = n.cfgErrorf(\"cannot assign %d values to %d variables\", n.nright, n.nleft)\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\twireChild(n)\n\t\t\tfor i := 0; i < n.nleft; i++ {\n\t\t\t\tdest, src := n.child[i], n.child[sbase+i]\n\t\t\t\tupdateSym := false\n\t\t\t\tvar sym *symbol\n\t\t\t\tvar level int\n\n\t\t\t\tif dest.rval.IsValid() && !dest.rval.CanSet() && isConstType(dest.typ) {\n\t\t\t\t\terr = n.cfgErrorf(\"cannot assign to %s (%s constant)\", dest.rval, dest.typ.str)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tif isBlank(src) {\n\t\t\t\t\terr = n.cfgErrorf(\"cannot use _ as value\")\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tif n.kind == defineStmt || (n.kind == assignStmt && dest.ident == \"_\") {\n\t\t\t\t\tif atyp != nil {\n\t\t\t\t\t\tdest.typ = atyp\n\t\t\t\t\t} else {\n\t\t\t\t\t\tif src.typ, err = nodeType(interp, sc, src); err != nil {\n\t\t\t\t\t\t\treturn\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif src.typ.isBinMethod {\n\t\t\t\t\t\t\tdest.typ = valueTOf(src.typ.methodCallType())\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// In a new definition, propagate the source type to the destination\n\t\t\t\t\t\t\t// type. If the source is an untyped constant, make sure that the\n\t\t\t\t\t\t\t// type matches a default type.\n\t\t\t\t\t\t\tdest.typ = sc.fixType(src.typ)\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif dest.typ.incomplete {\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tif sc.global || sc.isRedeclared(dest) {\n\t\t\t\t\t\tif n.anc != nil && n.anc.anc != nil && (n.anc.anc.kind == forStmt7 || n.anc.anc.kind == rangeStmt) {\n\t\t\t\t\t\t\t// check for redefine of for loop variables, which are now auto-defined in go1.22\n\t\t\t\t\t\t\tinit := n.anc.anc.child[0]\n\t\t\t\t\t\t\tvar fi *node // for ident\n\t\t\t\t\t\t\tif n.anc.anc.kind == forStmt7 {\n\t\t\t\t\t\t\t\tif init.kind == defineStmt && len(init.child) >= 2 && init.child[0].kind == identExpr {\n\t\t\t\t\t\t\t\t\tfi = init.child[0]\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else { // range\n\t\t\t\t\t\t\t\tfi = init\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif fi != nil && dest.ident == fi.ident {\n\t\t\t\t\t\t\t\tn.gen = nop\n\t\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// Do not overload existing symbols (defined in GTA) in global scope.\n\t\t\t\t\t\tsym, _, _ = sc.lookup(dest.ident)\n\t\t\t\t\t}\n\t\t\t\t\tif sym == nil {\n\t\t\t\t\t\tsym = &symbol{index: sc.add(dest.typ), kind: varSym, typ: dest.typ}\n\t\t\t\t\t\tsc.sym[dest.ident] = sym\n\t\t\t\t\t}\n\t\t\t\t\tdest.val = src.val\n\t\t\t\t\tdest.recv = src.recv\n\t\t\t\t\tdest.findex = sym.index\n\t\t\t\t\tupdateSym = true\n\t\t\t\t} else {\n\t\t\t\t\tsym, level, _ = sc.lookup(dest.ident)\n\t\t\t\t}\n\n\t\t\t\terr = check.assignExpr(n, dest, src)\n\t\t\t\tif err != nil {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\n\t\t\t\tif updateSym {\n\t\t\t\t\tsym.typ = dest.typ\n\t\t\t\t\tsym.rval = src.rval\n\t\t\t\t\t// As we are updating the sym type, we need to update the sc.type\n\t\t\t\t\t// when the sym has an index.\n\t\t\t\t\tif sym.index >= 0 {\n\t\t\t\t\t\tsc.types[sym.index] = sym.typ.frameType()\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tn.findex = dest.findex\n\t\t\t\tn.level = dest.level\n\n\t\t\t\t// In the following, we attempt to optimize by skipping the assign\n\t\t\t\t// operation and setting the source location directly to the destination\n\t\t\t\t// location in the frame.\n\t\t\t\t//\n\t\t\t\tswitch {\n\t\t\t\tcase n.action != aAssign:\n\t\t\t\t\t// Do not skip assign operation if it is combined with another operator.\n\t\t\t\tcase src.rval.IsValid():\n\t\t\t\t\t// Do not skip assign operation if setting from a constant value.\n\t\t\t\tcase isMapEntry(dest):\n\t\t\t\t\t// Setting a map entry requires an additional step, do not optimize.\n\t\t\t\t\t// As we only write, skip the default useless getIndexMap dest action.\n\t\t\t\t\tdest.gen = nop\n\t\t\t\tcase isFuncField(dest):\n\t\t\t\t\t// Setting a struct field of function type requires an extra step. Do not optimize.\n\t\t\t\tcase isCall(src) && !isInterfaceSrc(dest.typ) && n.kind != defineStmt:\n\t\t\t\t\t// Call action may perform the assignment directly.\n\t\t\t\t\tif dest.typ.id() != src.typ.id() {\n\t\t\t\t\t\t// Skip optimitization if returned type doesn't match assigned one.\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t\tn.gen = nop\n\t\t\t\t\tsrc.level = level\n\t\t\t\t\tsrc.findex = dest.findex\n\t\t\t\t\tif src.typ.untyped && !dest.typ.untyped {\n\t\t\t\t\t\tsrc.typ = dest.typ\n\t\t\t\t\t}\n\t\t\t\tcase src.action == aRecv:\n\t\t\t\t\t// Assign by reading from a receiving channel.\n\t\t\t\t\tn.gen = nop\n\t\t\t\t\tsrc.findex = dest.findex // Set recv address to LHS.\n\t\t\t\t\tdest.typ = src.typ\n\t\t\t\tcase src.action == aCompositeLit:\n\t\t\t\t\tif dest.typ.cat == valueT && dest.typ.rtype.Kind() == reflect.Interface {\n\t\t\t\t\t\t// Skip optimisation for assigned interface.\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t\tif dest.action == aGetIndex || dest.action == aStar {\n\t\t\t\t\t\t// Skip optimization, as it does not work when assigning to a struct field or a dereferenced pointer.\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t\tn.gen = nop\n\t\t\t\t\tsrc.findex = dest.findex\n\t\t\t\t\tsrc.level = level\n\t\t\t\tcase len(n.child) < 4 && n.kind != defineStmt && isArithmeticAction(src) && !isInterface(dest.typ):\n\t\t\t\t\t// Optimize single assignments from some arithmetic operations.\n\t\t\t\t\tsrc.typ = dest.typ\n\t\t\t\t\tsrc.findex = dest.findex\n\t\t\t\t\tsrc.level = level\n\t\t\t\t\tn.gen = nop\n\t\t\t\tcase src.kind == basicLit:\n\t\t\t\t\t// Assign to nil.\n\t\t\t\t\tsrc.rval = reflect.New(dest.typ.TypeOf()).Elem()\n\t\t\t\tcase n.nright == 0:\n\t\t\t\t\tn.gen = reset\n\t\t\t\t}\n\n\t\t\t\tn.typ = dest.typ\n\t\t\t\tif sym != nil {\n\t\t\t\t\tsym.typ = n.typ\n\t\t\t\t\tsym.recv = src.recv\n\t\t\t\t}\n\n\t\t\t\tn.level = level\n\n\t\t\t\tif n.anc.kind == constDecl {\n\t\t\t\t\tn.gen = nop\n\t\t\t\t\tn.findex = notInFrame\n\t\t\t\t\tif sym, _, ok := sc.lookup(dest.ident); ok {\n\t\t\t\t\t\tsym.kind = constSym\n\t\t\t\t\t}\n\t\t\t\t\tif childPos(n) == len(n.anc.child)-1 {\n\t\t\t\t\t\tsc.iota = 0\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsc.iota++\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase incDecStmt:\n\t\t\terr = check.unaryExpr(n)\n\t\t\tif err != nil {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\twireChild(n)\n\t\t\tn.findex = n.child[0].findex\n\t\t\tn.level = n.child[0].level\n\t\t\tn.typ = n.child[0].typ\n\t\t\tif sym, level, ok := sc.lookup(n.child[0].ident); ok {\n\t\t\t\tsym.typ = n.typ\n\t\t\t\tn.level = level\n\t\t\t}\n\n\t\tcase assignXStmt:\n\t\t\twireChild(n)\n\t\t\tl := len(n.child) - 1\n\t\t\tswitch lc := n.child[l]; lc.kind {\n\t\t\tcase callExpr:\n\t\t\t\tif n.child[l-1].isType(sc) {\n\t\t\t\t\tl--\n\t\t\t\t}\n\t\t\t\tif r := lc.child[0].typ.numOut(); r != l {\n\t\t\t\t\terr = n.cfgErrorf(\"assignment mismatch: %d variables but %s returns %d values\", l, lc.child[0].name(), r)\n\t\t\t\t}\n\t\t\t\tif isBinCall(lc, sc) {\n\t\t\t\t\tn.gen = nop\n\t\t\t\t} else {\n\t\t\t\t\t// TODO (marc): skip if no conversion or wrapping is needed.\n\t\t\t\t\tn.gen = assignFromCall\n\t\t\t\t}\n\t\t\tcase indexExpr:\n\t\t\t\tlc.gen = getIndexMap2\n\t\t\t\tn.gen = nop\n\t\t\tcase typeAssertExpr:\n\t\t\t\tif n.child[0].ident == \"_\" {\n\t\t\t\t\tlc.gen = typeAssertStatus\n\t\t\t\t} else {\n\t\t\t\t\tlc.gen = typeAssertLong\n\t\t\t\t}\n\t\t\t\tn.gen = nop\n\t\t\tcase unaryExpr:\n\t\t\t\tif lc.action == aRecv {\n\t\t\t\t\tlc.gen = recv2\n\t\t\t\t\tn.gen = nop\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase defineXStmt:\n\t\t\twireChild(n)\n\t\t\tif sc.def == nil {\n\t\t\t\t// In global scope, type definition already handled by GTA.\n\t\t\t\tbreak\n\t\t\t}\n\t\t\terr = compDefineX(sc, n)\n\n\t\tcase binaryExpr:\n\t\t\twireChild(n)\n\t\t\tnilSym := interp.universe.sym[nilIdent]\n\t\t\tc0, c1 := n.child[0], n.child[1]\n\n\t\t\terr = check.binaryExpr(n)\n\t\t\tif err != nil {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tswitch n.action {\n\t\t\tcase aRem:\n\t\t\t\tn.typ = c0.typ\n\t\t\tcase aShl, aShr:\n\t\t\t\tif c0.typ.untyped {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tn.typ = c0.typ\n\t\t\tcase aEqual, aNotEqual:\n\t\t\t\tn.typ = sc.getType(\"bool\")\n\t\t\t\tif c0.sym == nilSym || c1.sym == nilSym {\n\t\t\t\t\tif n.action == aEqual {\n\t\t\t\t\t\tif c1.sym == nilSym {\n\t\t\t\t\t\t\tn.gen = isNilChild(0)\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tn.gen = isNilChild(1)\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tn.gen = isNotNil\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\tcase aGreater, aGreaterEqual, aLower, aLowerEqual:\n\t\t\t\tn.typ = sc.getType(\"bool\")\n\t\t\t}\n\t\t\tif err != nil {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tif n.typ == nil {\n\t\t\t\tif n.typ, err = nodeType(interp, sc, n); err != nil {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif c0.rval.IsValid() && c1.rval.IsValid() && (!isInterface(n.typ)) && constOp[n.action] != nil {\n\t\t\t\tn.typ.TypeOf()       // Force compute of reflection type.\n\t\t\t\tconstOp[n.action](n) // Compute a constant result now rather than during exec.\n\t\t\t}\n\t\t\tswitch {\n\t\t\tcase n.rval.IsValid():\n\t\t\t\t// This operation involved constants, and the result is already computed\n\t\t\t\t// by constOp and available in n.rval. Nothing else to do at execution.\n\t\t\t\tn.gen = nop\n\t\t\t\tn.findex = notInFrame\n\t\t\tcase n.anc.kind == assignStmt && n.anc.action == aAssign && n.anc.nleft == 1:\n\t\t\t\t// To avoid a copy in frame, if the result is to be assigned, store it directly\n\t\t\t\t// at the frame location of destination.\n\t\t\t\tdest := n.anc.child[childPos(n)-n.anc.nright]\n\t\t\t\tn.typ = dest.typ\n\t\t\t\tn.findex = dest.findex\n\t\t\t\tn.level = dest.level\n\t\t\tcase n.anc.kind == returnStmt:\n\t\t\t\t// To avoid a copy in frame, if the result is to be returned, store it directly\n\t\t\t\t// at the frame location reserved for output arguments.\n\t\t\t\tn.findex = childPos(n)\n\t\t\tdefault:\n\t\t\t\t// Allocate a new location in frame, and store the result here.\n\t\t\t\tn.findex = sc.add(n.typ)\n\t\t\t}\n\t\t\tif n.typ != nil && !n.typ.untyped {\n\t\t\t\tfixUntyped(n, sc)\n\t\t\t}\n\n\t\tcase indexExpr:\n\t\t\tif isBlank(n.child[0]) {\n\t\t\t\terr = n.cfgErrorf(\"cannot use _ as value\")\n\t\t\t\tbreak\n\t\t\t}\n\t\t\twireChild(n)\n\t\t\tt := n.child[0].typ\n\t\t\tfor t.cat == linkedT {\n\t\t\t\tt = t.val\n\t\t\t}\n\t\t\tswitch t.cat {\n\t\t\tcase ptrT:\n\t\t\t\tn.typ = t.val\n\t\t\t\tif t.val.cat == valueT {\n\t\t\t\t\tn.typ = valueTOf(t.val.rtype.Elem())\n\t\t\t\t} else {\n\t\t\t\t\tn.typ = t.val.val\n\t\t\t\t}\n\t\t\tcase stringT:\n\t\t\t\tn.typ = sc.getType(\"byte\")\n\t\t\tcase valueT:\n\t\t\t\tif t.rtype.Kind() == reflect.String {\n\t\t\t\t\tn.typ = sc.getType(\"byte\")\n\t\t\t\t} else {\n\t\t\t\t\tn.typ = valueTOf(t.rtype.Elem())\n\t\t\t\t}\n\t\t\tcase funcT:\n\t\t\t\t// A function indexed by a type means an instantiated generic function.\n\t\t\t\tc1 := n.child[1]\n\t\t\t\tif !c1.isType(sc) {\n\t\t\t\t\tn.typ = t\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tg, found, err := genAST(sc, t.node.anc, []*itype{c1.typ})\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tif !found {\n\t\t\t\t\tif _, err = interp.cfg(g, t.node.anc.scope, importPath, pkgName); err != nil {\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\t// Generate closures for function body.\n\t\t\t\t\tif err = genRun(g.child[3]); err != nil {\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// Replace generic func node by instantiated one.\n\t\t\t\tn.anc.child[childPos(n)] = g\n\t\t\t\tn.typ = g.typ\n\t\t\t\treturn\n\t\t\tcase genericT:\n\t\t\t\tname := t.id() + \"[\" + n.child[1].typ.id() + \"]\"\n\t\t\t\tsym, _, ok := sc.lookup(name)\n\t\t\t\tif !ok {\n\t\t\t\t\terr = n.cfgErrorf(\"type not found: %s\", name)\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tn.gen = nop\n\t\t\t\tn.typ = sym.typ\n\t\t\t\treturn\n\t\t\tcase structT:\n\t\t\t\t// A struct indexed by a Type means an instantiated generic struct.\n\t\t\t\tname := t.name + \"[\" + n.child[1].ident + \"]\"\n\t\t\t\tsym, _, ok := sc.lookup(name)\n\t\t\t\tif ok {\n\t\t\t\t\tn.typ = sym.typ\n\t\t\t\t\tn.findex = sc.add(n.typ)\n\t\t\t\t\tn.gen = nop\n\t\t\t\t\treturn\n\t\t\t\t}\n\n\t\t\tdefault:\n\t\t\t\tn.typ = t.val\n\t\t\t}\n\t\t\tn.findex = sc.add(n.typ)\n\t\t\ttyp := t.TypeOf()\n\t\t\tif typ.Kind() == reflect.Map {\n\t\t\t\terr = check.assignment(n.child[1], t.key, \"map index\")\n\t\t\t\tn.gen = getIndexMap\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tl := -1\n\t\t\tswitch k := typ.Kind(); k {\n\t\t\tcase reflect.Array:\n\t\t\t\tl = typ.Len()\n\t\t\t\tfallthrough\n\t\t\tcase reflect.Slice, reflect.String:\n\t\t\t\tn.gen = getIndexArray\n\t\t\tcase reflect.Ptr:\n\t\t\t\tif typ2 := typ.Elem(); typ2.Kind() == reflect.Array {\n\t\t\t\t\tl = typ2.Len()\n\t\t\t\t\tn.gen = getIndexArray\n\t\t\t\t} else {\n\t\t\t\t\terr = n.cfgErrorf(\"type %v does not support indexing\", typ)\n\t\t\t\t}\n\t\t\tdefault:\n\t\t\t\terr = n.cfgErrorf(\"type is not an array, slice, string or map: %v\", t.id())\n\t\t\t}\n\n\t\t\terr = check.index(n.child[1], l)\n\n\t\tcase blockStmt:\n\t\t\twireChild(n)\n\t\t\tif len(n.child) > 0 {\n\t\t\t\tl := n.lastChild()\n\t\t\t\tn.findex = l.findex\n\t\t\t\tn.level = l.level\n\t\t\t\tn.val = l.val\n\t\t\t\tn.sym = l.sym\n\t\t\t\tn.typ = l.typ\n\t\t\t\tn.rval = l.rval\n\t\t\t}\n\t\t\tsc = sc.pop()\n\n\t\tcase constDecl:\n\t\t\twireChild(n)\n\n\t\tcase varDecl:\n\t\t\t// Global varDecl do not need to be wired as this\n\t\t\t// will be handled after cfg.\n\t\t\tif n.anc.kind == fileStmt {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\twireChild(n)\n\n\t\tcase sendStmt:\n\t\t\tif !isChan(n.child[0].typ) {\n\t\t\t\terr = n.cfgErrorf(\"invalid operation: cannot send to non-channel %s\", n.child[0].typ.id())\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tfallthrough\n\n\t\tcase declStmt, exprStmt:\n\t\t\twireChild(n)\n\t\t\tl := n.lastChild()\n\t\t\tn.findex = l.findex\n\t\t\tn.level = l.level\n\t\t\tn.val = l.val\n\t\t\tn.sym = l.sym\n\t\t\tn.typ = l.typ\n\t\t\tn.rval = l.rval\n\n\t\tcase breakStmt:\n\t\t\tif len(n.child) == 0 {\n\t\t\t\tn.tnext = sc.loop\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tif !n.hasAnc(n.sym.node) {\n\t\t\t\terr = n.cfgErrorf(\"invalid break label %s\", n.child[0].ident)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tn.tnext = n.sym.node\n\n\t\tcase continueStmt:\n\t\t\tif len(n.child) == 0 {\n\t\t\t\tn.tnext = sc.loopRestart\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tif !n.hasAnc(n.sym.node) {\n\t\t\t\terr = n.cfgErrorf(\"invalid continue label %s\", n.child[0].ident)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tn.tnext = n.sym.node.child[1].lastChild().start\n\n\t\tcase gotoStmt:\n\t\t\tif n.sym.node == nil {\n\t\t\t\t// It can be only due to a forward goto, to be resolved at labeledStmt.\n\t\t\t\t// Invalid goto labels are catched at AST parsing.\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tn.tnext = n.sym.node.start\n\n\t\tcase labeledStmt:\n\t\t\twireChild(n)\n\t\t\tif len(n.child) > 1 {\n\t\t\t\tn.start = n.child[1].start\n\t\t\t}\n\t\t\tfor _, c := range n.sym.from {\n\t\t\t\tc.tnext = n.start // Resolve forward goto.\n\t\t\t}\n\n\t\tcase callExpr:\n\t\t\tfor _, c := range n.child {\n\t\t\t\tif isBlank(c) {\n\t\t\t\t\terr = n.cfgErrorf(\"cannot use _ as value\")\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t}\n\t\t\twireChild(n)\n\t\t\tswitch c0 := n.child[0]; {\n\t\t\tcase c0.kind == indexListExpr:\n\t\t\t\t// Instantiate a generic function then call it.\n\t\t\t\tfun := c0.child[0].sym.node\n\t\t\t\tlt := []*itype{}\n\t\t\t\tfor _, c := range c0.child[1:] {\n\t\t\t\t\tlt = append(lt, c.typ)\n\t\t\t\t}\n\t\t\t\tg, found, err := genAST(sc, fun, lt)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tif !found {\n\t\t\t\t\t_, err = interp.cfg(g, fun.scope, importPath, pkgName)\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\terr = genRun(g.child[3]) // Generate closures for function body.\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tn.child[0] = g\n\t\t\t\tc0 = n.child[0]\n\t\t\t\twireChild(n)\n\t\t\t\tif typ := c0.typ; len(typ.ret) > 0 {\n\t\t\t\t\tn.typ = typ.ret[0]\n\t\t\t\t\tif n.anc.kind == returnStmt && n.typ.id() == sc.def.typ.ret[0].id() {\n\t\t\t\t\t\t// Store the result directly to the return value area of frame.\n\t\t\t\t\t\t// It can be done only if no type conversion at return is involved.\n\t\t\t\t\t\tn.findex = childPos(n)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tn.findex = sc.add(n.typ)\n\t\t\t\t\t\tfor _, t := range typ.ret[1:] {\n\t\t\t\t\t\t\tsc.add(t)\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tn.findex = notInFrame\n\t\t\t\t}\n\n\t\t\tcase isBuiltinCall(n, sc):\n\t\t\t\tbname := c0.ident\n\t\t\t\terr = check.builtin(bname, n, n.child[1:], n.action == aCallSlice)\n\t\t\t\tif err != nil {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\n\t\t\t\tn.gen = c0.sym.builtin\n\t\t\t\tc0.typ = &itype{cat: builtinT, name: bname}\n\t\t\t\tif n.typ, err = nodeType(interp, sc, n); err != nil {\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tswitch {\n\t\t\t\tcase n.typ.cat == builtinT:\n\t\t\t\t\tn.findex = notInFrame\n\t\t\t\t\tn.val = nil\n\t\t\t\t\tswitch bname {\n\t\t\t\t\tcase \"unsafe.alignOf\", \"unsafe.Offsetof\", \"unsafe.Sizeof\":\n\t\t\t\t\t\tn.gen = nop\n\t\t\t\t\t}\n\t\t\t\tcase n.anc.kind == returnStmt:\n\t\t\t\t\t// Store result directly to frame output location, to avoid a frame copy.\n\t\t\t\t\tn.findex = 0\n\t\t\t\tcase bname == \"cap\" && isInConstOrTypeDecl(n):\n\t\t\t\t\tt := n.child[1].typ.TypeOf()\n\t\t\t\t\tfor t.Kind() == reflect.Ptr {\n\t\t\t\t\t\tt = t.Elem()\n\t\t\t\t\t}\n\t\t\t\t\tswitch t.Kind() {\n\t\t\t\t\tcase reflect.Array, reflect.Chan:\n\t\t\t\t\t\tcapConst(n)\n\t\t\t\t\tdefault:\n\t\t\t\t\t\terr = n.cfgErrorf(\"cap argument is not an array or channel\")\n\t\t\t\t\t}\n\t\t\t\t\tn.findex = notInFrame\n\t\t\t\t\tn.gen = nop\n\t\t\t\tcase bname == \"len\" && isInConstOrTypeDecl(n):\n\t\t\t\t\tt := n.child[1].typ.TypeOf()\n\t\t\t\t\tfor t.Kind() == reflect.Ptr {\n\t\t\t\t\t\tt = t.Elem()\n\t\t\t\t\t}\n\t\t\t\t\tswitch t.Kind() {\n\t\t\t\t\tcase reflect.Array, reflect.Chan, reflect.String:\n\t\t\t\t\t\tlenConst(n)\n\t\t\t\t\tdefault:\n\t\t\t\t\t\terr = n.cfgErrorf(\"len argument is not an array, channel or string\")\n\t\t\t\t\t}\n\t\t\t\t\tn.findex = notInFrame\n\t\t\t\t\tn.gen = nop\n\t\t\t\tdefault:\n\t\t\t\t\tn.findex = sc.add(n.typ)\n\t\t\t\t}\n\t\t\t\tif op, ok := constBltn[bname]; ok {\n\t\t\t\t\top(n)\n\t\t\t\t}\n\n\t\t\tcase c0.isType(sc):\n\t\t\t\t// Type conversion expression\n\t\t\t\tc1 := n.child[1]\n\t\t\t\tswitch len(n.child) {\n\t\t\t\tcase 1:\n\t\t\t\t\terr = n.cfgErrorf(\"missing argument in conversion to %s\", c0.typ.id())\n\t\t\t\tcase 2:\n\t\t\t\t\terr = check.conversion(c1, c0.typ)\n\t\t\t\tdefault:\n\t\t\t\t\terr = n.cfgErrorf(\"too many arguments in conversion to %s\", c0.typ.id())\n\t\t\t\t}\n\t\t\t\tif err != nil {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\n\t\t\t\tn.action = aConvert\n\t\t\t\tswitch {\n\t\t\t\tcase isInterface(c0.typ) && !c1.isNil():\n\t\t\t\t\t// Convert to interface: just check that all required methods are defined by concrete type.\n\t\t\t\t\tif !c1.typ.implements(c0.typ) {\n\t\t\t\t\t\terr = n.cfgErrorf(\"type %v does not implement interface %v\", c1.typ.id(), c0.typ.id())\n\t\t\t\t\t}\n\t\t\t\t\t// Convert type to interface while keeping a reference to the original concrete type.\n\t\t\t\t\t// besides type, the node value remains preserved.\n\t\t\t\t\tn.gen = nop\n\t\t\t\t\tt := *c0.typ\n\t\t\t\t\tn.typ = &t\n\t\t\t\t\tn.typ.val = c1.typ\n\t\t\t\t\tn.findex = c1.findex\n\t\t\t\t\tn.level = c1.level\n\t\t\t\t\tn.val = c1.val\n\t\t\t\t\tn.rval = c1.rval\n\t\t\t\tcase c1.rval.IsValid() && isConstType(c0.typ):\n\t\t\t\t\tn.gen = nop\n\t\t\t\t\tn.findex = notInFrame\n\t\t\t\t\tn.typ = c0.typ\n\t\t\t\t\tif c, ok := c1.rval.Interface().(constant.Value); ok {\n\t\t\t\t\t\ti, _ := constant.Int64Val(constant.ToInt(c))\n\t\t\t\t\t\tn.rval = reflect.ValueOf(i).Convert(c0.typ.rtype)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tn.rval = c1.rval.Convert(c0.typ.rtype)\n\t\t\t\t\t}\n\t\t\t\tdefault:\n\t\t\t\t\tn.gen = convert\n\t\t\t\t\tn.typ = c0.typ\n\t\t\t\t\tn.findex = sc.add(n.typ)\n\t\t\t\t}\n\n\t\t\tcase isBinCall(n, sc):\n\t\t\t\terr = check.arguments(n, n.child[1:], c0, n.action == aCallSlice)\n\t\t\t\tif err != nil {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\n\t\t\t\tn.gen = callBin\n\t\t\t\ttyp := c0.typ.rtype\n\t\t\t\tif typ.NumOut() > 0 {\n\t\t\t\t\tif funcType := c0.typ.val; funcType != nil {\n\t\t\t\t\t\t// Use the original unwrapped function type, to allow future field and\n\t\t\t\t\t\t// methods resolutions, otherwise impossible on the opaque bin type.\n\t\t\t\t\t\tn.typ = funcType.ret[0]\n\t\t\t\t\t\tn.findex = sc.add(n.typ)\n\t\t\t\t\t\tfor i := 1; i < len(funcType.ret); i++ {\n\t\t\t\t\t\t\tsc.add(funcType.ret[i])\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tn.typ = valueTOf(typ.Out(0))\n\t\t\t\t\t\tif n.anc.kind == returnStmt {\n\t\t\t\t\t\t\tn.findex = childPos(n)\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tn.findex = sc.add(n.typ)\n\t\t\t\t\t\t\tfor i := 1; i < typ.NumOut(); i++ {\n\t\t\t\t\t\t\t\tsc.add(valueTOf(typ.Out(i)))\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\tdefault:\n\t\t\t\t// The call may be on a generic function. In that case, replace the\n\t\t\t\t// generic function AST by an instantiated one before going further.\n\t\t\t\tif isGeneric(c0.typ) {\n\t\t\t\t\tfun := c0.typ.node.anc\n\t\t\t\t\tvar g *node\n\t\t\t\t\tvar types []*itype\n\t\t\t\t\tvar found bool\n\n\t\t\t\t\t// Infer type parameter from function call arguments.\n\t\t\t\t\tif types, err = inferTypesFromCall(sc, fun, n.child[1:]); err != nil {\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t\t// Generate an instantiated AST from the generic function one.\n\t\t\t\t\tif g, found, err = genAST(sc, fun, types); err != nil {\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t\tif !found {\n\t\t\t\t\t\t// Compile the generated function AST, so it becomes part of the scope.\n\t\t\t\t\t\tif _, err = interp.cfg(g, fun.scope, importPath, pkgName); err != nil {\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// AST compilation part 2: Generate closures for function body.\n\t\t\t\t\t\tif err = genRun(g.child[3]); err != nil {\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tn.child[0] = g\n\t\t\t\t\tc0 = n.child[0]\n\t\t\t\t}\n\n\t\t\t\terr = check.arguments(n, n.child[1:], c0, n.action == aCallSlice)\n\t\t\t\tif err != nil {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\n\t\t\t\tif c0.action == aGetFunc {\n\t\t\t\t\t// Allocate a frame entry to store the anonymous function definition.\n\t\t\t\t\tsc.add(c0.typ)\n\t\t\t\t}\n\t\t\t\tif typ := c0.typ; len(typ.ret) > 0 {\n\t\t\t\t\tn.typ = typ.ret[0]\n\t\t\t\t\tif n.anc.kind == returnStmt && n.typ.id() == sc.def.typ.ret[0].id() {\n\t\t\t\t\t\t// Store the result directly to the return value area of frame.\n\t\t\t\t\t\t// It can be done only if no type conversion at return is involved.\n\t\t\t\t\t\tn.findex = childPos(n)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tn.findex = sc.add(n.typ)\n\t\t\t\t\t\tfor _, t := range typ.ret[1:] {\n\t\t\t\t\t\t\tsc.add(t)\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tn.findex = notInFrame\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase caseBody:\n\t\t\twireChild(n)\n\t\t\tswitch {\n\t\t\tcase typeSwichAssign(n) && len(n.child) > 1:\n\t\t\t\tn.start = n.child[1].start\n\t\t\tcase len(n.child) == 0:\n\t\t\t\t// Empty case body: jump to switch node (exit node).\n\t\t\t\tn.start = n.anc.anc.anc\n\t\t\tdefault:\n\t\t\t\tn.start = n.child[0].start\n\t\t\t}\n\n\t\tcase caseClause:\n\t\t\tsc = sc.pop()\n\n\t\tcase commClauseDefault:\n\t\t\twireChild(n)\n\t\t\tsc = sc.pop()\n\t\t\tif len(n.child) == 0 {\n\t\t\t\treturn\n\t\t\t}\n\t\t\tn.start = n.child[0].start\n\t\t\tn.lastChild().tnext = n.anc.anc // exit node is selectStmt\n\n\t\tcase commClause:\n\t\t\twireChild(n)\n\t\t\tsc = sc.pop()\n\t\t\tif len(n.child) == 0 {\n\t\t\t\treturn\n\t\t\t}\n\t\t\tif len(n.child) > 1 {\n\t\t\t\tn.start = n.child[1].start // Skip chan operation, performed by select\n\t\t\t}\n\t\t\tn.lastChild().tnext = n.anc.anc // exit node is selectStmt\n\n\t\tcase compositeLitExpr:\n\t\t\twireChild(n)\n\n\t\t\tchild := n.child\n\t\t\tif n.nleft > 0 {\n\t\t\t\tchild = child[1:]\n\t\t\t}\n\n\t\t\tswitch n.typ.cat {\n\t\t\tcase arrayT, sliceT:\n\t\t\t\terr = check.arrayLitExpr(child, n.typ)\n\t\t\tcase mapT:\n\t\t\t\terr = check.mapLitExpr(child, n.typ.key, n.typ.val)\n\t\t\tcase structT:\n\t\t\t\terr = check.structLitExpr(child, n.typ)\n\t\t\tcase valueT:\n\t\t\t\trtype := n.typ.rtype\n\t\t\t\tswitch rtype.Kind() {\n\t\t\t\tcase reflect.Struct:\n\t\t\t\t\terr = check.structBinLitExpr(child, rtype)\n\t\t\t\tcase reflect.Map:\n\t\t\t\t\tktyp := valueTOf(rtype.Key())\n\t\t\t\t\tvtyp := valueTOf(rtype.Elem())\n\t\t\t\t\terr = check.mapLitExpr(child, ktyp, vtyp)\n\t\t\t\t}\n\t\t\t}\n\t\t\tif err != nil {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tn.findex = sc.add(n.typ)\n\t\t\t// TODO: Check that composite literal expr matches corresponding type\n\t\t\tn.gen = compositeGenerator(n, n.typ, nil)\n\n\t\tcase fallthroughtStmt:\n\t\t\tif n.anc.kind != caseBody {\n\t\t\t\terr = n.cfgErrorf(\"fallthrough statement out of place\")\n\t\t\t}\n\n\t\tcase fileStmt:\n\t\t\twireChild(n, varDecl)\n\t\t\tsc = sc.pop()\n\t\t\tn.findex = notInFrame\n\n\t\tcase forStmt0: // for {}\n\t\t\tbody := n.child[0]\n\t\t\tn.start = body.start\n\t\t\tbody.tnext = n.start\n\t\t\tsc = sc.pop()\n\n\t\tcase forStmt1: // for init; ; {}\n\t\t\tinit, body := n.child[0], n.child[1]\n\t\t\tn.start = init.start\n\t\t\tinit.tnext = body.start\n\t\t\tbody.tnext = n.start\n\t\t\tsc = sc.pop()\n\n\t\tcase forStmt2: // for cond {}\n\t\t\tcond, body := n.child[0], n.child[1]\n\t\t\tif !isBool(cond.typ) {\n\t\t\t\terr = cond.cfgErrorf(\"non-bool used as for condition\")\n\t\t\t}\n\t\t\tif cond.rval.IsValid() {\n\t\t\t\t// Condition is known at compile time, bypass test.\n\t\t\t\tif cond.rval.Bool() {\n\t\t\t\t\tn.start = body.start\n\t\t\t\t\tbody.tnext = body.start\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.start = cond.start\n\t\t\t\tcond.tnext = body.start\n\t\t\t\tbody.tnext = cond.start\n\t\t\t}\n\t\t\tsetFNext(cond, n)\n\t\t\tsc = sc.pop()\n\n\t\tcase forStmt3: // for init; cond; {}\n\t\t\tinit, cond, body := n.child[0], n.child[1], n.child[2]\n\t\t\tif !isBool(cond.typ) {\n\t\t\t\terr = cond.cfgErrorf(\"non-bool used as for condition\")\n\t\t\t}\n\t\t\tn.start = init.start\n\t\t\tif cond.rval.IsValid() {\n\t\t\t\t// Condition is known at compile time, bypass test.\n\t\t\t\tif cond.rval.Bool() {\n\t\t\t\t\tinit.tnext = body.start\n\t\t\t\t\tbody.tnext = body.start\n\t\t\t\t} else {\n\t\t\t\t\tinit.tnext = n\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tinit.tnext = cond.start\n\t\t\t\tbody.tnext = cond.start\n\t\t\t}\n\t\t\tcond.tnext = body.start\n\t\t\tsetFNext(cond, n)\n\t\t\tsc = sc.pop()\n\n\t\tcase forStmt4: // for ; ; post {}\n\t\t\tpost, body := n.child[0], n.child[1]\n\t\t\tn.start = body.start\n\t\t\tpost.tnext = body.start\n\t\t\tbody.tnext = post.start\n\t\t\tsc = sc.pop()\n\n\t\tcase forStmt5: // for ; cond; post {}\n\t\t\tcond, post, body := n.child[0], n.child[1], n.child[2]\n\t\t\tif !isBool(cond.typ) {\n\t\t\t\terr = cond.cfgErrorf(\"non-bool used as for condition\")\n\t\t\t}\n\t\t\tif cond.rval.IsValid() {\n\t\t\t\t// Condition is known at compile time, bypass test.\n\t\t\t\tif cond.rval.Bool() {\n\t\t\t\t\tn.start = body.start\n\t\t\t\t\tpost.tnext = body.start\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.start = cond.start\n\t\t\t\tpost.tnext = cond.start\n\t\t\t}\n\t\t\tcond.tnext = body.start\n\t\t\tsetFNext(cond, n)\n\t\t\tbody.tnext = post.start\n\t\t\tsc = sc.pop()\n\n\t\tcase forStmt6: // for init; ; post {}\n\t\t\tinit, post, body := n.child[0], n.child[1], n.child[2]\n\t\t\tn.start = init.start\n\t\t\tinit.tnext = body.start\n\t\t\tbody.tnext = post.start\n\t\t\tpost.tnext = body.start\n\t\t\tsc = sc.pop()\n\n\t\tcase forStmt7: // for init; cond; post {}\n\t\t\tinit, cond, post, body := n.child[0], n.child[1], n.child[2], n.child[3]\n\t\t\tif !isBool(cond.typ) {\n\t\t\t\terr = cond.cfgErrorf(\"non-bool used as for condition\")\n\t\t\t}\n\t\t\tn.start = init.start\n\t\t\tbody.start = body.child[0] // loopvar\n\t\t\tif cond.rval.IsValid() {\n\t\t\t\t// Condition is known at compile time, bypass test.\n\t\t\t\tif cond.rval.Bool() {\n\t\t\t\t\tinit.tnext = body.start\n\t\t\t\t\tpost.tnext = body.start\n\t\t\t\t} else {\n\t\t\t\t\tinit.tnext = n\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tinit.tnext = cond.start\n\t\t\t\tpost.tnext = cond.start\n\t\t\t}\n\t\t\tcond.tnext = body.start\n\t\t\tsetFNext(cond, n)\n\t\t\tbody.tnext = post.start\n\t\t\tsc = sc.pop()\n\n\t\tcase forRangeStmt:\n\t\t\tn.start = n.child[0].start\n\t\t\tsetFNext(n.child[0], n)\n\t\t\tsc = sc.pop()\n\n\t\tcase funcDecl:\n\t\t\tn.start = n.child[3].start\n\t\t\tn.types, n.scope = sc.types, sc\n\t\t\tsc = sc.pop()\n\t\t\tfuncName := n.child[1].ident\n\t\t\tif sym := sc.sym[funcName]; !isMethod(n) && sym != nil && !isGeneric(sym.typ) {\n\t\t\t\tsym.index = -1 // to force value to n.val\n\t\t\t\tsym.typ = n.typ\n\t\t\t\tsym.kind = funcSym\n\t\t\t\tsym.node = n\n\t\t\t}\n\n\t\tcase funcLit:\n\t\t\tn.types, n.scope = sc.types, sc\n\t\t\tsc = sc.pop()\n\t\t\terr = genRun(n)\n\n\t\tcase deferStmt, goStmt:\n\t\t\twireChild(n)\n\n\t\tcase identExpr:\n\t\t\tif isKey(n) || isNewDefine(n, sc) {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tif n.anc.kind == funcDecl && n.anc.child[1] == n {\n\t\t\t\t// Dont process a function name identExpr.\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tsym, level, found := sc.lookup(n.ident)\n\t\t\tif !found {\n\t\t\t\tif n.typ != nil {\n\t\t\t\t\t// Node is a generic instance with an already populated type.\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\t// retry with the filename, in case ident is a package name.\n\t\t\t\tsym, level, found = sc.lookup(path.Join(n.ident, baseName))\n\t\t\t\tif !found {\n\t\t\t\t\terr = n.cfgErrorf(\"undefined: %s\", n.ident)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\t// Found symbol, populate node info\n\t\t\tn.sym, n.typ, n.findex, n.level = sym, sym.typ, sym.index, level\n\t\t\tif n.findex < 0 {\n\t\t\t\tn.val = sym.node\n\t\t\t} else {\n\t\t\t\tswitch {\n\t\t\t\tcase sym.kind == constSym && sym.rval.IsValid():\n\t\t\t\t\tn.rval = sym.rval\n\t\t\t\t\tn.kind = basicLit\n\t\t\t\tcase n.ident == \"iota\":\n\t\t\t\t\tn.rval = reflect.ValueOf(constant.MakeInt64(int64(sc.iota)))\n\t\t\t\t\tn.kind = basicLit\n\t\t\t\tcase n.ident == nilIdent:\n\t\t\t\t\tn.kind = basicLit\n\t\t\t\tcase sym.kind == binSym:\n\t\t\t\t\tn.typ = sym.typ\n\t\t\t\t\tn.rval = sym.rval\n\t\t\t\tcase sym.kind == bltnSym:\n\t\t\t\t\tif n.anc.kind != callExpr {\n\t\t\t\t\t\terr = n.cfgErrorf(\"use of builtin %s not in function call\", n.ident)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif n.sym != nil {\n\t\t\t\tn.recv = n.sym.recv\n\t\t\t}\n\n\t\tcase ifStmt0: // if cond {}\n\t\t\tcond, tbody := n.child[0], n.child[1]\n\t\t\tif !isBool(cond.typ) {\n\t\t\t\terr = cond.cfgErrorf(\"non-bool used as if condition\")\n\t\t\t}\n\t\t\tif cond.rval.IsValid() {\n\t\t\t\t// Condition is known at compile time, bypass test.\n\t\t\t\tif cond.rval.Bool() {\n\t\t\t\t\tn.start = tbody.start\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.start = cond.start\n\t\t\t\tcond.tnext = tbody.start\n\t\t\t}\n\t\t\tsetFNext(cond, n)\n\t\t\ttbody.tnext = n\n\t\t\tsc = sc.pop()\n\n\t\tcase ifStmt1: // if cond {} else {}\n\t\t\tcond, tbody, fbody := n.child[0], n.child[1], n.child[2]\n\t\t\tif !isBool(cond.typ) {\n\t\t\t\terr = cond.cfgErrorf(\"non-bool used as if condition\")\n\t\t\t}\n\t\t\tif cond.rval.IsValid() {\n\t\t\t\t// Condition is known at compile time, bypass test and the useless branch.\n\t\t\t\tif cond.rval.Bool() {\n\t\t\t\t\tn.start = tbody.start\n\t\t\t\t} else {\n\t\t\t\t\tn.start = fbody.start\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.start = cond.start\n\t\t\t\tcond.tnext = tbody.start\n\t\t\t\tsetFNext(cond, fbody.start)\n\t\t\t}\n\t\t\ttbody.tnext = n\n\t\t\tfbody.tnext = n\n\t\t\tsc = sc.pop()\n\n\t\tcase ifStmt2: // if init; cond {}\n\t\t\tinit, cond, tbody := n.child[0], n.child[1], n.child[2]\n\t\t\tif !isBool(cond.typ) {\n\t\t\t\terr = cond.cfgErrorf(\"non-bool used as if condition\")\n\t\t\t}\n\t\t\tn.start = init.start\n\t\t\tif cond.rval.IsValid() {\n\t\t\t\t// Condition is known at compile time, bypass test.\n\t\t\t\tif cond.rval.Bool() {\n\t\t\t\t\tinit.tnext = tbody.start\n\t\t\t\t} else {\n\t\t\t\t\tinit.tnext = n\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tinit.tnext = cond.start\n\t\t\t\tcond.tnext = tbody.start\n\t\t\t}\n\t\t\ttbody.tnext = n\n\t\t\tsetFNext(cond, n)\n\t\t\tsc = sc.pop()\n\n\t\tcase ifStmt3: // if init; cond {} else {}\n\t\t\tinit, cond, tbody, fbody := n.child[0], n.child[1], n.child[2], n.child[3]\n\t\t\tif !isBool(cond.typ) {\n\t\t\t\terr = cond.cfgErrorf(\"non-bool used as if condition\")\n\t\t\t}\n\t\t\tn.start = init.start\n\t\t\tif cond.rval.IsValid() {\n\t\t\t\t// Condition is known at compile time, bypass test.\n\t\t\t\tif cond.rval.Bool() {\n\t\t\t\t\tinit.tnext = tbody.start\n\t\t\t\t} else {\n\t\t\t\t\tinit.tnext = fbody.start\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tinit.tnext = cond.start\n\t\t\t\tcond.tnext = tbody.start\n\t\t\t\tsetFNext(cond, fbody.start)\n\t\t\t}\n\t\t\ttbody.tnext = n\n\t\t\tfbody.tnext = n\n\t\t\tsc = sc.pop()\n\n\t\tcase keyValueExpr:\n\t\t\tif isBlank(n.child[1]) {\n\t\t\t\terr = n.cfgErrorf(\"cannot use _ as value\")\n\t\t\t\tbreak\n\t\t\t}\n\t\t\twireChild(n)\n\n\t\tcase landExpr:\n\t\t\tif isBlank(n.child[0]) || isBlank(n.child[1]) {\n\t\t\t\terr = n.cfgErrorf(\"cannot use _ as value\")\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tn.start = n.child[0].start\n\t\t\tn.child[0].tnext = n.child[1].start\n\t\t\tsetFNext(n.child[0], n)\n\t\t\tn.child[1].tnext = n\n\t\t\tn.typ = n.child[0].typ\n\t\t\tn.findex = sc.add(n.typ)\n\t\t\tif n.start.action == aNop {\n\t\t\t\tn.start.gen = branch\n\t\t\t}\n\n\t\tcase lorExpr:\n\t\t\tif isBlank(n.child[0]) || isBlank(n.child[1]) {\n\t\t\t\terr = n.cfgErrorf(\"cannot use _ as value\")\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tn.start = n.child[0].start\n\t\t\tn.child[0].tnext = n\n\t\t\tsetFNext(n.child[0], n.child[1].start)\n\t\t\tn.child[1].tnext = n\n\t\t\tn.typ = n.child[0].typ\n\t\t\tn.findex = sc.add(n.typ)\n\t\t\tif n.start.action == aNop {\n\t\t\t\tn.start.gen = branch\n\t\t\t}\n\n\t\tcase parenExpr:\n\t\t\twireChild(n)\n\t\t\tc := n.lastChild()\n\t\t\tn.findex = c.findex\n\t\t\tn.level = c.level\n\t\t\tn.typ = c.typ\n\t\t\tn.rval = c.rval\n\n\t\tcase rangeStmt:\n\t\t\tif sc.rangeChanType(n) != nil {\n\t\t\t\tn.start = n.child[1].start // Get chan\n\t\t\t\tn.child[1].tnext = n       // then go to range function\n\t\t\t\tn.tnext = n.child[2].start // then go to range body\n\t\t\t\tn.child[2].tnext = n       // then body go to range function (loop)\n\t\t\t\tn.child[0].gen = empty\n\t\t\t} else {\n\t\t\t\tvar k, o, body *node\n\t\t\t\tif len(n.child) == 4 {\n\t\t\t\t\tk, o, body = n.child[0], n.child[2], n.child[3]\n\t\t\t\t} else {\n\t\t\t\t\tk, o, body = n.child[0], n.child[1], n.child[2]\n\t\t\t\t}\n\t\t\t\tn.start = o.start          // Get array or map object\n\t\t\t\to.tnext = k.start          // then go to iterator init\n\t\t\t\tk.tnext = n                // then go to range function\n\t\t\t\tbody.start = body.child[0] // loopvar\n\t\t\t\tn.tnext = body.start       // then go to range body\n\t\t\t\tbody.tnext = n             // then body go to range function (loop)\n\t\t\t\tk.gen = empty              // init filled later by generator\n\t\t\t}\n\n\t\tcase returnStmt:\n\t\t\tif len(n.child) > sc.def.typ.numOut() {\n\t\t\t\terr = n.cfgErrorf(\"too many arguments to return\")\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tfor _, c := range n.child {\n\t\t\t\tif isBlank(c) {\n\t\t\t\t\terr = n.cfgErrorf(\"cannot use _ as value\")\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t}\n\t\t\treturnSig := sc.def.child[2]\n\t\t\tif mustReturnValue(returnSig) {\n\t\t\t\tnret := len(n.child)\n\t\t\t\tif nret == 1 && isCall(n.child[0]) {\n\t\t\t\t\tnret = n.child[0].child[0].typ.numOut()\n\t\t\t\t}\n\t\t\t\tif nret < sc.def.typ.numOut() {\n\t\t\t\t\terr = n.cfgErrorf(\"not enough arguments to return\")\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\twireChild(n)\n\t\t\tn.tnext = nil\n\t\t\tn.val = sc.def\n\t\t\tfor i, c := range n.child {\n\t\t\t\tvar typ *itype\n\t\t\t\ttyp, err = nodeType(interp, sc.upperLevel(), returnSig.child[2].fieldType(i))\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\t// TODO(mpl): move any of that code to typecheck?\n\t\t\t\tc.typ.node = c\n\t\t\t\tif !c.typ.assignableTo(typ) {\n\t\t\t\t\terr = c.cfgErrorf(\"cannot use %v (type %v) as type %v in return argument\", c.ident, c.typ.cat, typ.cat)\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tif c.typ.cat == nilT {\n\t\t\t\t\t// nil: Set node value to zero of return type\n\t\t\t\t\tc.rval = reflect.New(typ.TypeOf()).Elem()\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase selectorExpr:\n\t\t\twireChild(n)\n\t\t\tn.typ = n.child[0].typ\n\t\t\tn.recv = n.child[0].recv\n\t\t\tif n.typ == nil {\n\t\t\t\terr = n.cfgErrorf(\"undefined type\")\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tswitch {\n\t\t\tcase n.typ.cat == binPkgT:\n\t\t\t\t// Resolve binary package symbol: a type or a value\n\t\t\t\tname := n.child[1].ident\n\t\t\t\tpkg := n.child[0].sym.typ.path\n\t\t\t\tif s, ok := interp.binPkg[pkg][name]; ok {\n\t\t\t\t\tif isBinType(s) {\n\t\t\t\t\t\tn.typ = valueTOf(s.Type().Elem())\n\t\t\t\t\t} else {\n\t\t\t\t\t\tn.typ = valueTOf(fixPossibleConstType(s.Type()), withUntyped(isValueUntyped(s)))\n\t\t\t\t\t\tn.rval = s\n\t\t\t\t\t\tif pkg == \"unsafe\" && (name == \"AlignOf\" || name == \"Offsetof\" || name == \"Sizeof\") {\n\t\t\t\t\t\t\tn.sym = &symbol{kind: bltnSym, node: n, rval: s}\n\t\t\t\t\t\t\tn.ident = pkg + \".\" + name\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tn.action = aGetSym\n\t\t\t\t\tn.gen = nop\n\t\t\t\t} else {\n\t\t\t\t\terr = n.cfgErrorf(\"package %s \\\"%s\\\" has no symbol %s\", n.child[0].ident, pkg, name)\n\t\t\t\t}\n\t\t\tcase n.typ.cat == srcPkgT:\n\t\t\t\tpkg, name := n.child[0].sym.typ.path, n.child[1].ident\n\t\t\t\t// Resolve source package symbol\n\t\t\t\tif sym, ok := interp.srcPkg[pkg][name]; ok {\n\t\t\t\t\tn.findex = sym.index\n\t\t\t\t\tif sym.global {\n\t\t\t\t\t\tn.level = globalFrame\n\t\t\t\t\t}\n\t\t\t\t\tn.val = sym.node\n\t\t\t\t\tn.gen = nop\n\t\t\t\t\tn.action = aGetSym\n\t\t\t\t\tn.typ = sym.typ\n\t\t\t\t\tn.sym = sym\n\t\t\t\t\tn.recv = sym.recv\n\t\t\t\t\tn.rval = sym.rval\n\t\t\t\t} else {\n\t\t\t\t\terr = n.cfgErrorf(\"undefined selector: %s.%s\", pkg, name)\n\t\t\t\t}\n\t\t\tcase isStruct(n.typ) || isInterfaceSrc(n.typ):\n\t\t\t\t// Find a matching field.\n\t\t\t\tif ti := n.typ.lookupField(n.child[1].ident); len(ti) > 0 {\n\t\t\t\t\tif isStruct(n.typ) {\n\t\t\t\t\t\t// If a method of the same name exists, use it if it is shallower than the struct field.\n\t\t\t\t\t\t// if method's depth is the same as field's, this is an error.\n\t\t\t\t\t\td := n.typ.methodDepth(n.child[1].ident)\n\t\t\t\t\t\tif d >= 0 && d < len(ti) {\n\t\t\t\t\t\t\tgoto tryMethods\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif d == len(ti) {\n\t\t\t\t\t\t\terr = n.cfgErrorf(\"ambiguous selector: %s\", n.child[1].ident)\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tn.val = ti\n\t\t\t\t\tswitch {\n\t\t\t\t\tcase isInterfaceSrc(n.typ):\n\t\t\t\t\t\tn.typ = n.typ.fieldSeq(ti)\n\t\t\t\t\t\tn.gen = getMethodByName\n\t\t\t\t\t\tn.action = aMethod\n\t\t\t\t\tcase n.typ.cat == ptrT:\n\t\t\t\t\t\tn.typ = n.typ.fieldSeq(ti)\n\t\t\t\t\t\tn.gen = getPtrIndexSeq\n\t\t\t\t\t\tif n.typ.cat == funcT {\n\t\t\t\t\t\t\t// Function in a struct field is always wrapped in reflect.Value.\n\t\t\t\t\t\t\tn.typ = wrapperValueTOf(n.typ.TypeOf(), n.typ)\n\t\t\t\t\t\t}\n\t\t\t\t\tdefault:\n\t\t\t\t\t\tn.gen = getIndexSeq\n\t\t\t\t\t\tn.typ = n.typ.fieldSeq(ti)\n\t\t\t\t\t\tif n.typ.cat == funcT {\n\t\t\t\t\t\t\t// Function in a struct field is always wrapped in reflect.Value.\n\t\t\t\t\t\t\tn.typ = wrapperValueTOf(n.typ.TypeOf(), n.typ)\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tif s, lind, ok := n.typ.lookupBinField(n.child[1].ident); ok {\n\t\t\t\t\t// Handle an embedded binary field into a struct field.\n\t\t\t\t\tn.gen = getIndexSeqField\n\t\t\t\t\tlind = append(lind, s.Index...)\n\t\t\t\t\tif isStruct(n.typ) {\n\t\t\t\t\t\t// If a method of the same name exists, use it if it is shallower than the struct field.\n\t\t\t\t\t\t// if method's depth is the same as field's, this is an error.\n\t\t\t\t\t\td := n.typ.methodDepth(n.child[1].ident)\n\t\t\t\t\t\tif d >= 0 && d < len(lind) {\n\t\t\t\t\t\t\tgoto tryMethods\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif d == len(lind) {\n\t\t\t\t\t\t\terr = n.cfgErrorf(\"ambiguous selector: %s\", n.child[1].ident)\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tn.val = lind\n\t\t\t\t\tn.typ = valueTOf(s.Type)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\t// No field (embedded or not) matched. Try to match a method.\n\t\t\ttryMethods:\n\t\t\t\tfallthrough\n\t\t\tdefault:\n\t\t\t\terr = matchSelectorMethod(sc, n)\n\t\t\t}\n\t\t\tif err == nil && n.findex != -1 && n.typ.cat != genericT {\n\t\t\t\tn.findex = sc.add(n.typ)\n\t\t\t}\n\n\t\tcase selectStmt:\n\t\t\twireChild(n)\n\t\t\t// Move action to block statement, so select node can be an exit point.\n\t\t\tn.child[0].gen = _select\n\t\t\t// Chain channel init actions in commClauses prior to invoking select.\n\t\t\tvar cur *node\n\t\t\tfor _, c := range n.child[0].child {\n\t\t\t\tif c.kind == commClauseDefault {\n\t\t\t\t\t// No channel init in this case.\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tvar an, pn *node // channel init action nodes\n\t\t\t\tif len(c.child) > 0 {\n\t\t\t\t\tswitch c0 := c.child[0]; {\n\t\t\t\t\tcase c0.kind == exprStmt && len(c0.child) == 1 && c0.child[0].action == aRecv:\n\t\t\t\t\t\tan = c0.child[0].child[0]\n\t\t\t\t\t\tpn = an\n\t\t\t\t\tcase c0.action == aAssign:\n\t\t\t\t\t\tan = c0.lastChild().child[0]\n\t\t\t\t\t\tpn = an\n\t\t\t\t\tcase c0.kind == sendStmt:\n\t\t\t\t\t\tan = c0.child[0]\n\t\t\t\t\t\tpn = c0.child[1]\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif an == nil {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tif cur == nil {\n\t\t\t\t\t// First channel init action, the entry point for the select block.\n\t\t\t\t\tn.start = an.start\n\t\t\t\t} else {\n\t\t\t\t\t// Chain channel init action to the previous one.\n\t\t\t\t\tcur.tnext = an.start\n\t\t\t\t}\n\t\t\t\tif pn != nil {\n\t\t\t\t\t// Chain channect init action to send data init action.\n\t\t\t\t\t// (already done by wireChild, but let's be explicit).\n\t\t\t\t\tan.tnext = pn\n\t\t\t\t\tcur = pn\n\t\t\t\t}\n\t\t\t}\n\t\t\tif cur == nil {\n\t\t\t\t// There is no channel init action, call select directly.\n\t\t\t\tn.start = n.child[0]\n\t\t\t} else {\n\t\t\t\t// Select is called after the last channel init action.\n\t\t\t\tcur.tnext = n.child[0]\n\t\t\t}\n\n\t\tcase starExpr:\n\t\t\tif isBlank(n.child[0]) {\n\t\t\t\terr = n.cfgErrorf(\"cannot use _ as value\")\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tswitch {\n\t\t\tcase n.anc.kind == defineStmt && len(n.anc.child) == 3 && n.anc.child[1] == n:\n\t\t\t\t// pointer type expression in a var definition\n\t\t\t\tn.gen = nop\n\t\t\tcase n.anc.kind == valueSpec && n.anc.lastChild() == n:\n\t\t\t\t// pointer type expression in a value spec\n\t\t\t\tn.gen = nop\n\t\t\tcase n.anc.kind == fieldExpr:\n\t\t\t\t// pointer type expression in a field expression (arg or struct field)\n\t\t\t\tn.gen = nop\n\t\t\tcase n.child[0].isType(sc):\n\t\t\t\t// pointer type expression\n\t\t\t\tn.gen = nop\n\t\t\t\tn.typ = ptrOf(n.child[0].typ)\n\t\t\tdefault:\n\t\t\t\t// dereference expression\n\t\t\t\twireChild(n)\n\n\t\t\t\terr = check.starExpr(n.child[0])\n\t\t\t\tif err != nil {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\n\t\t\t\tif c0 := n.child[0]; c0.typ.cat == valueT {\n\t\t\t\t\tn.typ = valueTOf(c0.typ.rtype.Elem())\n\t\t\t\t} else {\n\t\t\t\t\tn.typ = c0.typ.val\n\t\t\t\t}\n\t\t\t\tn.findex = sc.add(n.typ)\n\t\t\t}\n\n\t\tcase typeSwitch:\n\t\t\t// Check that cases expressions are all different\n\t\t\tusedCase := map[string]bool{}\n\t\t\tfor _, c := range n.lastChild().child {\n\t\t\t\tfor _, t := range c.child[:len(c.child)-1] {\n\t\t\t\t\ttid := t.typ.id()\n\t\t\t\t\tif usedCase[tid] {\n\t\t\t\t\t\terr = c.cfgErrorf(\"duplicate case %s in type switch\", t.ident)\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\tusedCase[tid] = true\n\t\t\t\t}\n\t\t\t}\n\t\t\tfallthrough\n\n\t\tcase switchStmt:\n\t\t\tsc = sc.pop()\n\t\t\tsbn := n.lastChild() // switch block node\n\t\t\tclauses := sbn.child\n\t\t\tl := len(clauses)\n\t\t\tif l == 0 {\n\t\t\t\t// Switch is empty\n\t\t\t\tbreak\n\t\t\t}\n\t\t\t// Chain case clauses.\n\t\t\tfor i := l - 1; i >= 0; i-- {\n\t\t\t\tc := clauses[i]\n\t\t\t\tif len(c.child) == 0 {\n\t\t\t\t\tc.tnext = n // Clause body is empty, exit.\n\t\t\t\t} else {\n\t\t\t\t\tbody := c.lastChild()\n\t\t\t\t\tc.tnext = body.start\n\t\t\t\t\tc.child[0].tnext = c\n\t\t\t\t\tc.start = c.child[0].start\n\n\t\t\t\t\tif i < l-1 && len(body.child) > 0 && body.lastChild().kind == fallthroughtStmt {\n\t\t\t\t\t\tif n.kind == typeSwitch {\n\t\t\t\t\t\t\terr = body.lastChild().cfgErrorf(\"cannot fallthrough in type switch\")\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif len(clauses[i+1].child) == 0 {\n\t\t\t\t\t\t\tbody.tnext = n // Fallthrough to next with empty body, just exit.\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tbody.tnext = clauses[i+1].lastChild().start\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tbody.tnext = n // Exit switch at end of clause body.\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif i == l-1 {\n\t\t\t\t\tsetFNext(clauses[i], n)\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tif len(clauses[i+1].child) > 1 {\n\t\t\t\t\tsetFNext(c, clauses[i+1].start)\n\t\t\t\t} else {\n\t\t\t\t\tsetFNext(c, clauses[i+1])\n\t\t\t\t}\n\t\t\t}\n\t\t\tsbn.start = clauses[0].start\n\t\t\tn.start = n.child[0].start\n\t\t\tif n.kind == typeSwitch {\n\t\t\t\t// Handle the typeSwitch init (the type assert expression).\n\t\t\t\tinit := n.child[1].lastChild().child[0]\n\t\t\t\tinit.tnext = sbn.start\n\t\t\t\tn.child[0].tnext = init.start\n\t\t\t} else {\n\t\t\t\tn.child[0].tnext = sbn.start\n\t\t\t}\n\n\t\tcase switchIfStmt: // like an if-else chain\n\t\t\tsc = sc.pop()\n\t\t\tsbn := n.lastChild() // switch block node\n\t\t\tclauses := sbn.child\n\t\t\tl := len(clauses)\n\t\t\tif l == 0 {\n\t\t\t\t// Switch is empty\n\t\t\t\tbreak\n\t\t\t}\n\t\t\t// Wire case clauses in reverse order so the next start node is already resolved when used.\n\t\t\tfor i := l - 1; i >= 0; i-- {\n\t\t\t\tc := clauses[i]\n\t\t\t\tc.gen = nop\n\t\t\t\tif len(c.child) == 0 {\n\t\t\t\t\tc.tnext = n\n\t\t\t\t\tc.fnext = n\n\t\t\t\t} else {\n\t\t\t\t\tbody := c.lastChild()\n\t\t\t\t\tif len(c.child) > 1 {\n\t\t\t\t\t\tcond := c.child[0]\n\t\t\t\t\t\tcond.tnext = body.start\n\t\t\t\t\t\tif i == l-1 {\n\t\t\t\t\t\t\tsetFNext(cond, n)\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tsetFNext(cond, clauses[i+1].start)\n\t\t\t\t\t\t}\n\t\t\t\t\t\tc.start = cond.start\n\t\t\t\t\t} else {\n\t\t\t\t\t\tc.start = body.start\n\t\t\t\t\t}\n\t\t\t\t\t// If last case body statement is a fallthrough, then jump to next case body\n\t\t\t\t\tif i < l-1 && len(body.child) > 0 && body.lastChild().kind == fallthroughtStmt {\n\t\t\t\t\t\tbody.tnext = clauses[i+1].lastChild().start\n\t\t\t\t\t} else {\n\t\t\t\t\t\tbody.tnext = n\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tsbn.start = clauses[0].start\n\t\t\tn.start = n.child[0].start\n\t\t\tn.child[0].tnext = sbn.start\n\n\t\tcase typeAssertExpr:\n\t\t\tif len(n.child) == 1 {\n\t\t\t\t// The \"o.(type)\" is handled by typeSwitch.\n\t\t\t\tn.gen = nop\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\twireChild(n)\n\t\t\tc0, c1 := n.child[0], n.child[1]\n\t\t\tif isBlank(c0) || isBlank(c1) {\n\t\t\t\terr = n.cfgErrorf(\"cannot use _ as value\")\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tif c1.typ == nil {\n\t\t\t\tif c1.typ, err = nodeType(interp, sc, c1); err != nil {\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t}\n\n\t\t\terr = check.typeAssertionExpr(c0, c1.typ)\n\t\t\tif err != nil {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tif n.anc.action != aAssignX {\n\t\t\t\tif c0.typ.cat == valueT && isFunc(c1.typ) {\n\t\t\t\t\t// Avoid special wrapping of interfaces and func types.\n\t\t\t\t\tn.typ = valueTOf(c1.typ.TypeOf())\n\t\t\t\t} else {\n\t\t\t\t\tn.typ = c1.typ\n\t\t\t\t}\n\t\t\t\tn.findex = sc.add(n.typ)\n\t\t\t}\n\n\t\tcase sliceExpr:\n\t\t\twireChild(n)\n\n\t\t\terr = check.sliceExpr(n)\n\t\t\tif err != nil {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tif n.typ, err = nodeType(interp, sc, n); err != nil {\n\t\t\t\treturn\n\t\t\t}\n\t\t\tn.findex = sc.add(n.typ)\n\n\t\tcase unaryExpr:\n\t\t\twireChild(n)\n\n\t\t\terr = check.unaryExpr(n)\n\t\t\tif err != nil {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\tn.typ = n.child[0].typ\n\t\t\tif n.action == aRecv {\n\t\t\t\t// Channel receive operation: set type to the channel data type\n\t\t\t\tif n.typ.cat == valueT {\n\t\t\t\t\tn.typ = valueTOf(n.typ.rtype.Elem())\n\t\t\t\t} else {\n\t\t\t\t\tn.typ = n.typ.val\n\t\t\t\t}\n\t\t\t}\n\t\t\tif n.typ == nil {\n\t\t\t\tif n.typ, err = nodeType(interp, sc, n); err != nil {\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// TODO: Optimisation: avoid allocation if boolean branch op (i.e. '!' in an 'if' expr)\n\t\t\tif n.child[0].rval.IsValid() && !isInterface(n.typ) && constOp[n.action] != nil {\n\t\t\t\tn.typ.TypeOf() // init reflect type\n\t\t\t\tconstOp[n.action](n)\n\t\t\t}\n\t\t\tswitch {\n\t\t\tcase n.rval.IsValid():\n\t\t\t\tn.gen = nop\n\t\t\t\tn.findex = notInFrame\n\t\t\tcase n.anc.kind == assignStmt && n.anc.action == aAssign && n.anc.nright == 1:\n\t\t\t\tdest := n.anc.child[childPos(n)-n.anc.nright]\n\t\t\t\tn.typ = dest.typ\n\t\t\t\tn.findex = dest.findex\n\t\t\t\tn.level = dest.level\n\t\t\tcase n.anc.kind == returnStmt:\n\t\t\t\tpos := childPos(n)\n\t\t\t\tn.typ = sc.def.typ.ret[pos]\n\t\t\t\tn.findex = pos\n\t\t\tdefault:\n\t\t\t\tn.findex = sc.add(n.typ)\n\t\t\t}\n\n\t\tcase valueSpec:\n\t\t\tn.gen = reset\n\t\t\tl := len(n.child) - 1\n\t\t\tif n.typ = n.child[l].typ; n.typ == nil {\n\t\t\t\tif n.typ, err = nodeType(interp, sc, n.child[l]); err != nil {\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor _, c := range n.child[:l] {\n\t\t\t\tvar index int\n\t\t\t\tif sc.global {\n\t\t\t\t\t// Global object allocation is already performed in GTA.\n\t\t\t\t\tindex = sc.sym[c.ident].index\n\t\t\t\t\tc.level = globalFrame\n\t\t\t\t} else {\n\t\t\t\t\tindex = sc.add(n.typ)\n\t\t\t\t\tsc.sym[c.ident] = &symbol{index: index, kind: varSym, typ: n.typ}\n\t\t\t\t}\n\t\t\t\tc.typ = n.typ\n\t\t\t\tc.findex = index\n\t\t\t}\n\t\t}\n\t})\n\n\tif sc != interp.universe {\n\t\tsc.pop()\n\t}\n\treturn initNodes, err\n}\n\n// fixUntyped propagates implicit type conversions for untyped binary expressions.\nfunc fixUntyped(nod *node, sc *scope) {\n\tnod.Walk(func(n *node) bool {\n\t\tif n == nod || (n.kind != binaryExpr && n.kind != parenExpr) || !n.typ.untyped {\n\t\t\treturn true\n\t\t}\n\t\tn.typ = nod.typ\n\t\tif n.findex >= 0 {\n\t\t\tsc.types[n.findex] = nod.typ.frameType()\n\t\t}\n\t\treturn true\n\t}, nil)\n}\n\nfunc compDefineX(sc *scope, n *node) error {\n\tl := len(n.child) - 1\n\ttypes := []*itype{}\n\n\tswitch src := n.child[l]; src.kind {\n\tcase callExpr:\n\t\tfuntype, err := nodeType(n.interp, sc, src.child[0])\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tfor funtype.cat == valueT && funtype.val != nil {\n\t\t\t// Retrieve original interpreter type from a wrapped function.\n\t\t\t// Struct fields of function types are always wrapped in valueT to ensure\n\t\t\t// their possible use in runtime. In that case, the val field retains the\n\t\t\t// original interpreter type, which is used now.\n\t\t\tfuntype = funtype.val\n\t\t}\n\t\tif funtype.cat == valueT {\n\t\t\t// Handle functions imported from runtime.\n\t\t\tfor i := 0; i < funtype.rtype.NumOut(); i++ {\n\t\t\t\ttypes = append(types, valueTOf(funtype.rtype.Out(i)))\n\t\t\t}\n\t\t} else {\n\t\t\ttypes = funtype.ret\n\t\t}\n\t\tif n.anc.kind == varDecl && n.child[l-1].isType(sc) {\n\t\t\tl--\n\t\t}\n\t\tif len(types) != l {\n\t\t\treturn n.cfgErrorf(\"assignment mismatch: %d variables but %s returns %d values\", l, src.child[0].name(), len(types))\n\t\t}\n\t\tif isBinCall(src, sc) {\n\t\t\tn.gen = nop\n\t\t} else {\n\t\t\t// TODO (marc): skip if no conversion or wrapping is needed.\n\t\t\tn.gen = assignFromCall\n\t\t}\n\n\tcase indexExpr:\n\t\ttypes = append(types, src.typ, sc.getType(\"bool\"))\n\t\tn.child[l].gen = getIndexMap2\n\t\tn.gen = nop\n\n\tcase typeAssertExpr:\n\t\tif n.child[0].ident == \"_\" {\n\t\t\tn.child[l].gen = typeAssertStatus\n\t\t} else {\n\t\t\tn.child[l].gen = typeAssertLong\n\t\t}\n\t\ttypes = append(types, n.child[l].child[1].typ, sc.getType(\"bool\"))\n\t\tn.gen = nop\n\n\tcase unaryExpr:\n\t\tif n.child[l].action == aRecv {\n\t\t\ttypes = append(types, src.typ, sc.getType(\"bool\"))\n\t\t\tn.child[l].gen = recv2\n\t\t\tn.gen = nop\n\t\t}\n\n\tdefault:\n\t\treturn n.cfgErrorf(\"unsupported assign expression\")\n\t}\n\n\t// Handle redeclarations: find out new symbols vs existing ones.\n\tsymIsNew := map[string]bool{}\n\thasNewSymbol := false\n\tfor i := range types {\n\t\tid := n.child[i].ident\n\t\tif id == \"_\" || id == \"\" {\n\t\t\tcontinue\n\t\t}\n\t\tif _, found := symIsNew[id]; found {\n\t\t\treturn n.cfgErrorf(\"%s repeated on left side of :=\", id)\n\t\t}\n\t\t// A new symbol doesn't exist in current scope. Upper scopes are not\n\t\t// taken into accout here, as a new symbol can shadow an existing one.\n\t\tif _, found := sc.sym[id]; found {\n\t\t\tsymIsNew[id] = false\n\t\t} else {\n\t\t\tsymIsNew[id] = true\n\t\t\thasNewSymbol = true\n\t\t}\n\t}\n\n\tfor i, t := range types {\n\t\tvar index int\n\t\tid := n.child[i].ident\n\t\t// A variable can be redeclared if at least one other not blank variable is created.\n\t\t// The redeclared variable must be of same type (it is reassigned, not created).\n\t\t// Careful to not reuse a variable which has been shadowed (it must not be a newSym).\n\t\tsym, level, ok := sc.lookup(id)\n\t\tcanRedeclare := hasNewSymbol && len(symIsNew) > 1 && !symIsNew[id] && ok\n\t\tif canRedeclare && level == n.child[i].level && sym.kind == varSym && sym.typ.id() == t.id() {\n\t\t\tindex = sym.index\n\t\t\tn.child[i].redeclared = true\n\t\t} else {\n\t\t\tindex = sc.add(t)\n\t\t\tsc.sym[id] = &symbol{index: index, kind: varSym, typ: t}\n\t\t}\n\t\tn.child[i].typ = t\n\t\tn.child[i].findex = index\n\t}\n\treturn nil\n}\n\n// TODO used for allocation optimization, temporarily disabled\n// func isAncBranch(n *node) bool {\n//\tswitch n.anc.kind {\n//\tcase If0, If1, If2, If3:\n//\t\treturn true\n//\t}\n//\treturn false\n// }\n\nfunc childPos(n *node) int {\n\tfor i, c := range n.anc.child {\n\t\tif n == c {\n\t\t\treturn i\n\t\t}\n\t}\n\treturn -1\n}\n\nfunc (n *node) cfgErrorf(format string, a ...interface{}) *cfgError {\n\tpos := n.interp.fset.Position(n.pos)\n\tposString := n.interp.fset.Position(n.pos).String()\n\tif pos.Filename == DefaultSourceName {\n\t\tposString = strings.TrimPrefix(posString, DefaultSourceName+\":\")\n\t}\n\ta = append([]interface{}{posString}, a...)\n\treturn &cfgError{n, fmt.Errorf(\"%s: \"+format, a...)}\n}\n\nfunc genRun(nod *node) error {\n\tvar err error\n\tseen := map[*node]bool{}\n\n\tnod.Walk(func(n *node) bool {\n\t\tif err != nil || seen[n] {\n\t\t\treturn false\n\t\t}\n\t\tseen[n] = true\n\t\tswitch n.kind {\n\t\tcase funcType:\n\t\t\tif len(n.anc.child) == 4 {\n\t\t\t\t// function body entry point\n\t\t\t\tsetExec(n.anc.child[3].start)\n\t\t\t}\n\t\t\t// continue in function body as there may be inner function definitions\n\t\tcase constDecl, varDecl:\n\t\t\tsetExec(n.start)\n\t\t\treturn false\n\t\t}\n\t\treturn true\n\t}, nil)\n\n\treturn err\n}\n\nfunc genGlobalVars(roots []*node, sc *scope) (*node, error) {\n\tvar vars []*node\n\tfor _, n := range roots {\n\t\tvars = append(vars, getVars(n)...)\n\t}\n\n\tif len(vars) == 0 {\n\t\treturn nil, nil\n\t}\n\n\tvarNode, err := genGlobalVarDecl(vars, sc)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tsetExec(varNode.start)\n\treturn varNode, nil\n}\n\nfunc getVars(n *node) (vars []*node) {\n\tfor _, child := range n.child {\n\t\tif child.kind == varDecl {\n\t\t\tvars = append(vars, child.child...)\n\t\t}\n\t}\n\treturn vars\n}\n\nfunc genGlobalVarDecl(nodes []*node, sc *scope) (*node, error) {\n\tvarNode := &node{kind: varDecl, action: aNop, gen: nop}\n\n\tdeps := map[*node][]*node{}\n\tfor _, n := range nodes {\n\t\tdeps[n] = getVarDependencies(n, sc)\n\t}\n\n\tinited := map[*node]bool{}\n\trevisit := []*node{}\n\tfor {\n\t\tfor _, n := range nodes {\n\t\t\tcanInit := true\n\t\t\tfor _, d := range deps[n] {\n\t\t\t\tif !inited[d] {\n\t\t\t\t\tcanInit = false\n\t\t\t\t}\n\t\t\t}\n\t\t\tif !canInit {\n\t\t\t\trevisit = append(revisit, n)\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\tvarNode.child = append(varNode.child, n)\n\t\t\tinited[n] = true\n\t\t}\n\n\t\tif len(revisit) == 0 || equalNodes(nodes, revisit) {\n\t\t\tbreak\n\t\t}\n\n\t\tnodes = revisit\n\t\trevisit = []*node{}\n\t}\n\n\tif len(revisit) > 0 {\n\t\treturn nil, revisit[0].cfgErrorf(\"variable definition loop\")\n\t}\n\twireChild(varNode)\n\treturn varNode, nil\n}\n\nfunc getVarDependencies(nod *node, sc *scope) (deps []*node) {\n\tnod.Walk(func(n *node) bool {\n\t\tif n.kind != identExpr {\n\t\t\treturn true\n\t\t}\n\t\t// Process ident nodes, and avoid false dependencies.\n\t\tif n.anc.kind == selectorExpr && childPos(n) == 1 {\n\t\t\treturn false\n\t\t}\n\t\tsym, _, ok := sc.lookup(n.ident)\n\t\tif !ok {\n\t\t\treturn false\n\t\t}\n\t\tif sym.kind != varSym || !sym.global || sym.node == nod {\n\t\t\treturn false\n\t\t}\n\t\tdeps = append(deps, sym.node)\n\t\treturn false\n\t}, nil)\n\treturn deps\n}\n\n// setFnext sets the cond fnext field to next, propagates it for parenthesis blocks\n// and sets the action to branch.\nfunc setFNext(cond, next *node) {\n\tif cond.action == aNop {\n\t\tcond.action = aBranch\n\t\tcond.gen = branch\n\t\tcond.fnext = next\n\t}\n\tif cond.kind == parenExpr {\n\t\tsetFNext(cond.lastChild(), next)\n\t\treturn\n\t}\n\tcond.fnext = next\n}\n\n// GetDefault return the index of default case clause in a switch statement, or -1.\nfunc getDefault(n *node) int {\n\tfor i, c := range n.lastChild().child {\n\t\tswitch len(c.child) {\n\t\tcase 0:\n\t\t\treturn i\n\t\tcase 1:\n\t\t\tif c.child[0].kind == caseBody {\n\t\t\t\treturn i\n\t\t\t}\n\t\t}\n\t}\n\treturn -1\n}\n\nfunc isBinType(v reflect.Value) bool { return v.IsValid() && v.Kind() == reflect.Ptr && v.IsNil() }\n\n// isType returns true if node refers to a type definition, false otherwise.\nfunc (n *node) isType(sc *scope) bool {\n\tswitch n.kind {\n\tcase arrayType, chanType, chanTypeRecv, chanTypeSend, funcType, interfaceType, mapType, structType:\n\t\treturn true\n\tcase parenExpr, starExpr:\n\t\tif len(n.child) == 1 {\n\t\t\treturn n.child[0].isType(sc)\n\t\t}\n\tcase selectorExpr:\n\t\tpkg, name := n.child[0].ident, n.child[1].ident\n\t\tbaseName := path.Base(n.interp.fset.Position(n.pos).Filename)\n\t\tsuffixedPkg := path.Join(pkg, baseName)\n\t\tsym, _, ok := sc.lookup(suffixedPkg)\n\t\tif !ok {\n\t\t\tsym, _, ok = sc.lookup(pkg)\n\t\t\tif !ok {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t\tif sym.kind != pkgSym {\n\t\t\treturn false\n\t\t}\n\t\tpath := sym.typ.path\n\t\tif p, ok := n.interp.binPkg[path]; ok && isBinType(p[name]) {\n\t\t\treturn true // Imported binary type\n\t\t}\n\t\tif p, ok := n.interp.srcPkg[path]; ok && p[name] != nil && p[name].kind == typeSym {\n\t\t\treturn true // Imported source type\n\t\t}\n\tcase identExpr:\n\t\treturn sc.getType(n.ident) != nil\n\tcase indexExpr:\n\t\t// Maybe a generic type.\n\t\tsym, _, ok := sc.lookup(n.child[0].ident)\n\t\treturn ok && sym.kind == typeSym\n\t}\n\treturn false\n}\n\n// wireChild wires AST nodes for CFG in subtree.\nfunc wireChild(n *node, exclude ...nkind) {\n\tchild := excludeNodeKind(n.child, exclude)\n\n\t// Set start node, in subtree (propagated to ancestors by post-order processing)\n\tfor _, c := range child {\n\t\tswitch c.kind {\n\t\tcase arrayType, chanType, chanTypeRecv, chanTypeSend, funcDecl, importDecl, mapType, basicLit, identExpr, typeDecl:\n\t\t\tcontinue\n\t\tdefault:\n\t\t\tn.start = c.start\n\t\t}\n\t\tbreak\n\t}\n\n\t// Chain sequential operations inside a block (next is right sibling)\n\tfor i := 1; i < len(child); i++ {\n\t\tswitch child[i].kind {\n\t\tcase funcDecl:\n\t\t\tchild[i-1].tnext = child[i]\n\t\tdefault:\n\t\t\tswitch child[i-1].kind {\n\t\t\tcase breakStmt, continueStmt, gotoStmt, returnStmt:\n\t\t\t\t// tnext is already computed, no change\n\t\t\tdefault:\n\t\t\t\tchild[i-1].tnext = child[i].start\n\t\t\t}\n\t\t}\n\t}\n\n\t// Chain subtree next to self\n\tfor i := len(child) - 1; i >= 0; i-- {\n\t\tswitch child[i].kind {\n\t\tcase arrayType, chanType, chanTypeRecv, chanTypeSend, importDecl, mapType, funcDecl, basicLit, identExpr, typeDecl:\n\t\t\tcontinue\n\t\tcase breakStmt, continueStmt, gotoStmt, returnStmt:\n\t\t\t// tnext is already computed, no change\n\t\tdefault:\n\t\t\tchild[i].tnext = n\n\t\t}\n\t\tbreak\n\t}\n}\n\nfunc excludeNodeKind(child []*node, kinds []nkind) []*node {\n\tif len(kinds) == 0 {\n\t\treturn child\n\t}\n\tvar res []*node\n\tfor _, c := range child {\n\t\texclude := false\n\t\tfor _, k := range kinds {\n\t\t\tif c.kind == k {\n\t\t\t\texclude = true\n\t\t\t}\n\t\t}\n\t\tif !exclude {\n\t\t\tres = append(res, c)\n\t\t}\n\t}\n\treturn res\n}\n\nfunc (n *node) name() (s string) {\n\tswitch {\n\tcase n.ident != \"\":\n\t\ts = n.ident\n\tcase n.action == aGetSym:\n\t\ts = n.child[0].ident + \".\" + n.child[1].ident\n\t}\n\treturn s\n}\n\n// isNatural returns true if node type is natural, false otherwise.\nfunc (n *node) isNatural() bool {\n\tif isUint(n.typ.TypeOf()) {\n\t\treturn true\n\t}\n\tif n.rval.IsValid() {\n\t\tt := n.rval.Type()\n\t\tif isUint(t) {\n\t\t\treturn true\n\t\t}\n\t\tif isInt(t) && n.rval.Int() >= 0 {\n\t\t\t// positive untyped integer constant is ok\n\t\t\treturn true\n\t\t}\n\t\tif isFloat(t) {\n\t\t\t// positive untyped float constant with null decimal part is ok\n\t\t\tf := n.rval.Float()\n\t\t\tif f == math.Trunc(f) && f >= 0 {\n\t\t\t\tn.rval = reflect.ValueOf(uint(f))\n\t\t\t\tn.typ.rtype = n.rval.Type()\n\t\t\t\treturn true\n\t\t\t}\n\t\t}\n\t\tif isConstantValue(t) {\n\t\t\tc := n.rval.Interface().(constant.Value)\n\t\t\tswitch c.Kind() {\n\t\t\tcase constant.Int:\n\t\t\t\ti, _ := constant.Int64Val(c)\n\t\t\t\tif i >= 0 {\n\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\tcase constant.Float:\n\t\t\t\tf, _ := constant.Float64Val(c)\n\t\t\t\tif f == math.Trunc(f) {\n\t\t\t\t\tn.rval = reflect.ValueOf(constant.ToInt(c))\n\t\t\t\t\tn.typ.rtype = n.rval.Type()\n\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\treturn false\n}\n\n// isNil returns true if node is a literal nil value, false otherwise.\nfunc (n *node) isNil() bool { return n.kind == basicLit && !n.rval.IsValid() }\n\n// fieldType returns the nth parameter field node (type) of a fieldList node.\nfunc (n *node) fieldType(m int) *node {\n\tk := 0\n\tl := len(n.child)\n\tfor i := 0; i < l; i++ {\n\t\tcl := len(n.child[i].child)\n\t\tif cl < 2 {\n\t\t\tif k == m {\n\t\t\t\treturn n.child[i].lastChild()\n\t\t\t}\n\t\t\tk++\n\t\t\tcontinue\n\t\t}\n\t\tfor j := 0; j < cl-1; j++ {\n\t\t\tif k == m {\n\t\t\t\treturn n.child[i].lastChild()\n\t\t\t}\n\t\t\tk++\n\t\t}\n\t}\n\treturn nil\n}\n\n// lastChild returns the last child of a node.\nfunc (n *node) lastChild() *node { return n.child[len(n.child)-1] }\n\nfunc (n *node) hasAnc(nod *node) bool {\n\tfor a := n.anc; a != nil; a = a.anc {\n\t\tif a == nod {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\nfunc isKey(n *node) bool {\n\treturn n.anc.kind == fileStmt ||\n\t\t(n.anc.kind == selectorExpr && n.anc.child[0] != n) ||\n\t\t(n.anc.kind == funcDecl && isMethod(n.anc)) ||\n\t\t(n.anc.kind == keyValueExpr && isStruct(n.anc.typ) && n.anc.child[0] == n) ||\n\t\t(n.anc.kind == fieldExpr && len(n.anc.child) > 1 && n.anc.child[0] == n)\n}\n\nfunc isField(n *node) bool {\n\treturn n.kind == selectorExpr && len(n.child) > 0 && n.child[0].typ != nil && isStruct(n.child[0].typ)\n}\n\nfunc isInInterfaceType(n *node) bool {\n\tanc := n.anc\n\tfor anc != nil {\n\t\tif anc.kind == interfaceType {\n\t\t\treturn true\n\t\t}\n\t\tanc = anc.anc\n\t}\n\treturn false\n}\n\nfunc isInConstOrTypeDecl(n *node) bool {\n\tanc := n.anc\n\tfor anc != nil {\n\t\tswitch anc.kind {\n\t\tcase constDecl, typeDecl, arrayType, chanType:\n\t\t\treturn true\n\t\tcase varDecl, funcDecl:\n\t\t\treturn false\n\t\t}\n\t\tanc = anc.anc\n\t}\n\treturn false\n}\n\n// isNewDefine returns true if node refers to a new definition.\nfunc isNewDefine(n *node, sc *scope) bool {\n\tif n.ident == \"_\" {\n\t\treturn true\n\t}\n\tif (n.anc.kind == defineXStmt || n.anc.kind == defineStmt || n.anc.kind == valueSpec) && childPos(n) < n.anc.nleft {\n\t\treturn true\n\t}\n\tif n.anc.kind == rangeStmt {\n\t\tif n.anc.child[0] == n {\n\t\t\treturn true // array or map key, or chan element\n\t\t}\n\t\tif sc.rangeChanType(n.anc) == nil && n.anc.child[1] == n && len(n.anc.child) == 4 {\n\t\t\treturn true // array or map value\n\t\t}\n\t\treturn false // array, map or channel are always pre-defined in range expression\n\t}\n\treturn false\n}\n\nfunc isMethod(n *node) bool {\n\treturn len(n.child[0].child) > 0 // receiver defined\n}\n\nfunc isFuncField(n *node) bool {\n\treturn isField(n) && isFunc(n.typ)\n}\n\nfunc isMapEntry(n *node) bool {\n\treturn n.action == aGetIndex && isMap(n.child[0].typ)\n}\n\nfunc isCall(n *node) bool {\n\treturn n.action == aCall || n.action == aCallSlice\n}\n\nfunc isBinCall(n *node, sc *scope) bool {\n\tif !isCall(n) || len(n.child) == 0 {\n\t\treturn false\n\t}\n\tc0 := n.child[0]\n\tif c0.typ == nil {\n\t\t// If called early in parsing, child type may not be known yet.\n\t\tc0.typ, _ = nodeType(n.interp, sc, c0)\n\t\tif c0.typ == nil {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn c0.typ.cat == valueT && c0.typ.rtype.Kind() == reflect.Func\n}\n\nfunc mustReturnValue(n *node) bool {\n\tif len(n.child) < 3 {\n\t\treturn false\n\t}\n\tfor _, f := range n.child[2].child {\n\t\tif len(f.child) > 1 {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nfunc isRegularCall(n *node) bool {\n\treturn isCall(n) && n.child[0].typ.cat == funcT\n}\n\nfunc variadicPos(n *node) int {\n\tif len(n.child[0].typ.arg) == 0 {\n\t\treturn -1\n\t}\n\tlast := len(n.child[0].typ.arg) - 1\n\tif n.child[0].typ.arg[last].cat == variadicT {\n\t\treturn last\n\t}\n\treturn -1\n}\n\nfunc canExport(name string) bool {\n\tif r := []rune(name); len(r) > 0 && unicode.IsUpper(r[0]) {\n\t\treturn true\n\t}\n\treturn false\n}\n\nfunc getExec(n *node) bltn {\n\tif n == nil {\n\t\treturn nil\n\t}\n\tif n.exec == nil {\n\t\tsetExec(n)\n\t}\n\treturn n.exec\n}\n\n// setExec recursively sets the node exec builtin function by walking the CFG\n// from the entry point (first node to exec).\nfunc setExec(n *node) {\n\tif n.exec != nil {\n\t\treturn\n\t}\n\tseen := map[*node]bool{}\n\tvar set func(n *node)\n\n\tset = func(n *node) {\n\t\tif n == nil || n.exec != nil {\n\t\t\treturn\n\t\t}\n\t\tseen[n] = true\n\t\tif n.tnext != nil && n.tnext.exec == nil {\n\t\t\tif seen[n.tnext] {\n\t\t\t\tm := n.tnext\n\t\t\t\tn.tnext.exec = func(f *frame) bltn { return m.exec(f) }\n\t\t\t} else {\n\t\t\t\tset(n.tnext)\n\t\t\t}\n\t\t}\n\t\tif n.fnext != nil && n.fnext.exec == nil {\n\t\t\tif seen[n.fnext] {\n\t\t\t\tm := n.fnext\n\t\t\t\tn.fnext.exec = func(f *frame) bltn { return m.exec(f) }\n\t\t\t} else {\n\t\t\t\tset(n.fnext)\n\t\t\t}\n\t\t}\n\t\tn.gen(n)\n\t}\n\n\tset(n)\n}\n\nfunc typeSwichAssign(n *node) bool {\n\tts := n.anc.anc.anc\n\treturn ts.kind == typeSwitch && ts.child[1].action == aAssign\n}\n\nfunc compositeGenerator(n *node, typ *itype, rtyp reflect.Type) (gen bltnGenerator) {\n\tswitch typ.cat {\n\tcase linkedT, ptrT:\n\t\tgen = compositeGenerator(n, typ.val, rtyp)\n\tcase arrayT, sliceT:\n\t\tgen = arrayLit\n\tcase mapT:\n\t\tgen = mapLit\n\tcase structT:\n\t\tswitch {\n\t\tcase len(n.child) == 0:\n\t\t\tgen = compositeLitNotype\n\t\tcase n.lastChild().kind == keyValueExpr:\n\t\t\tif n.nleft == 1 {\n\t\t\t\tgen = compositeLitKeyed\n\t\t\t} else {\n\t\t\t\tgen = compositeLitKeyedNotype\n\t\t\t}\n\t\tdefault:\n\t\t\tif n.nleft == 1 {\n\t\t\t\tgen = compositeLit\n\t\t\t} else {\n\t\t\t\tgen = compositeLitNotype\n\t\t\t}\n\t\t}\n\tcase valueT:\n\t\tif rtyp == nil {\n\t\t\trtyp = n.typ.TypeOf()\n\t\t}\n\t\tswitch k := rtyp.Kind(); k {\n\t\tcase reflect.Struct:\n\t\t\tif n.nleft == 1 {\n\t\t\t\tgen = compositeBinStruct\n\t\t\t} else {\n\t\t\t\tgen = compositeBinStructNotype\n\t\t\t}\n\t\tcase reflect.Map:\n\t\t\t// TODO(mpl): maybe needs a NoType version too\n\t\t\tgen = compositeBinMap\n\t\tcase reflect.Ptr:\n\t\t\tgen = compositeGenerator(n, typ, n.typ.val.rtype)\n\t\tcase reflect.Slice, reflect.Array:\n\t\t\tgen = compositeBinSlice\n\t\tdefault:\n\t\t\tlog.Panic(n.cfgErrorf(\"compositeGenerator not implemented for type kind: %s\", k))\n\t\t}\n\t}\n\treturn gen\n}\n\n// matchSelectorMethod, given that n represents a selector for a method, tries\n// to find the corresponding method, and populates n accordingly.\nfunc matchSelectorMethod(sc *scope, n *node) (err error) {\n\tname := n.child[1].ident\n\tif n.typ.cat == valueT || n.typ.cat == errorT {\n\t\tswitch method, ok := n.typ.rtype.MethodByName(name); {\n\t\tcase ok:\n\t\t\thasRecvType := n.typ.TypeOf().Kind() != reflect.Interface\n\t\t\tn.val = method.Index\n\t\t\tn.gen = getIndexBinMethod\n\t\t\tn.action = aGetMethod\n\t\t\tn.recv = &receiver{node: n.child[0]}\n\t\t\tn.typ = valueTOf(method.Type, isBinMethod())\n\t\t\tif hasRecvType {\n\t\t\t\tn.typ.recv = n.typ\n\t\t\t}\n\t\tcase n.typ.TypeOf().Kind() == reflect.Ptr:\n\t\t\tif field, ok := n.typ.rtype.Elem().FieldByName(name); ok {\n\t\t\t\tn.typ = valueTOf(field.Type)\n\t\t\t\tn.val = field.Index\n\t\t\t\tn.gen = getPtrIndexSeq\n\t\t\t\tbreak\n\t\t\t}\n\t\t\terr = n.cfgErrorf(\"undefined method: %s\", name)\n\t\tcase n.typ.TypeOf().Kind() == reflect.Struct:\n\t\t\tif field, ok := n.typ.rtype.FieldByName(name); ok {\n\t\t\t\tn.typ = valueTOf(field.Type)\n\t\t\t\tn.val = field.Index\n\t\t\t\tn.gen = getIndexSeq\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tfallthrough\n\t\tdefault:\n\t\t\t// method lookup failed on type, now lookup on pointer to type\n\t\t\tpt := reflect.PtrTo(n.typ.rtype)\n\t\t\tif m2, ok2 := pt.MethodByName(name); ok2 {\n\t\t\t\tn.val = m2.Index\n\t\t\t\tn.gen = getIndexBinPtrMethod\n\t\t\t\tn.typ = valueTOf(m2.Type, isBinMethod(), withRecv(valueTOf(pt)))\n\t\t\t\tn.recv = &receiver{node: n.child[0]}\n\t\t\t\tn.action = aGetMethod\n\t\t\t\tbreak\n\t\t\t}\n\t\t\terr = n.cfgErrorf(\"undefined method: %s\", name)\n\t\t}\n\t\treturn err\n\t}\n\n\tif n.typ.cat == ptrT && (n.typ.val.cat == valueT || n.typ.val.cat == errorT) {\n\t\t// Handle pointer on object defined in runtime\n\t\tif method, ok := n.typ.val.rtype.MethodByName(name); ok {\n\t\t\tn.val = method.Index\n\t\t\tn.typ = valueTOf(method.Type, isBinMethod(), withRecv(n.typ))\n\t\t\tn.recv = &receiver{node: n.child[0]}\n\t\t\tn.gen = getIndexBinElemMethod\n\t\t\tn.action = aGetMethod\n\t\t} else if method, ok := reflect.PtrTo(n.typ.val.rtype).MethodByName(name); ok {\n\t\t\tn.val = method.Index\n\t\t\tn.gen = getIndexBinMethod\n\t\t\tn.typ = valueTOf(method.Type, withRecv(valueTOf(reflect.PtrTo(n.typ.val.rtype), isBinMethod())))\n\t\t\tn.recv = &receiver{node: n.child[0]}\n\t\t\tn.action = aGetMethod\n\t\t} else if field, ok := n.typ.val.rtype.FieldByName(name); ok {\n\t\t\tn.typ = valueTOf(field.Type)\n\t\t\tn.val = field.Index\n\t\t\tn.gen = getPtrIndexSeq\n\t\t} else {\n\t\t\terr = n.cfgErrorf(\"undefined selector: %s\", name)\n\t\t}\n\t\treturn err\n\t}\n\n\tif m, lind := n.typ.lookupMethod(name); m != nil {\n\t\tn.action = aGetMethod\n\t\tif n.child[0].isType(sc) {\n\t\t\t// Handle method as a function with receiver in 1st argument.\n\t\t\tn.val = m\n\t\t\tn.findex = notInFrame\n\t\t\tn.gen = nop\n\t\t\tn.typ = &itype{}\n\t\t\t*n.typ = *m.typ\n\t\t\tn.typ.arg = append([]*itype{n.child[0].typ}, m.typ.arg...)\n\t\t} else {\n\t\t\t// Handle method with receiver.\n\t\t\tn.gen = getMethod\n\t\t\tn.val = m\n\t\t\tn.typ = m.typ\n\t\t\tn.recv = &receiver{node: n.child[0], index: lind}\n\t\t}\n\t\treturn nil\n\t}\n\n\tif m, lind, isPtr, ok := n.typ.lookupBinMethod(name); ok {\n\t\tn.action = aGetMethod\n\t\tswitch {\n\t\tcase isPtr && n.typ.fieldSeq(lind).cat != ptrT:\n\t\t\tn.gen = getIndexSeqPtrMethod\n\t\tcase isInterfaceSrc(n.typ):\n\t\t\tn.gen = getMethodByName\n\t\tdefault:\n\t\t\tn.gen = getIndexSeqMethod\n\t\t}\n\t\tn.recv = &receiver{node: n.child[0], index: lind}\n\t\tn.val = append([]int{m.Index}, lind...)\n\t\tn.typ = valueTOf(m.Type, isBinMethod(), withRecv(n.child[0].typ))\n\t\treturn nil\n\t}\n\n\tif typ := n.typ.interfaceMethod(name); typ != nil {\n\t\tn.typ = typ\n\t\tn.action = aGetMethod\n\t\tn.gen = getMethodByName\n\t\treturn nil\n\t}\n\n\treturn n.cfgErrorf(\"undefined selector: %s\", name)\n}\n\n// arrayTypeLen returns the node's array length. If the expression is an\n// array variable it is determined from the value's type, otherwise it is\n// computed from the source definition.\nfunc arrayTypeLen(n *node, sc *scope) (int, error) {\n\tif n.typ != nil && n.typ.cat == arrayT {\n\t\treturn n.typ.length, nil\n\t}\n\tmax := -1\n\tfor _, c := range n.child[1:] {\n\t\tvar r int\n\n\t\tif c.kind != keyValueExpr {\n\t\t\tr = max + 1\n\t\t\tmax = r\n\t\t\tcontinue\n\t\t}\n\n\t\tc0 := c.child[0]\n\t\tv := c0.rval\n\t\tif v.IsValid() {\n\t\t\tr = int(v.Int())\n\t\t} else {\n\t\t\t// Resolve array key value as a constant.\n\t\t\tif c0.kind == identExpr {\n\t\t\t\t// Key is defined by a symbol which must be a constant integer.\n\t\t\t\tsym, _, ok := sc.lookup(c0.ident)\n\t\t\t\tif !ok {\n\t\t\t\t\treturn 0, c0.cfgErrorf(\"undefined: %s\", c0.ident)\n\t\t\t\t}\n\t\t\t\tif sym.kind != constSym {\n\t\t\t\t\treturn 0, c0.cfgErrorf(\"non-constant array bound %q\", c0.ident)\n\t\t\t\t}\n\t\t\t\tr = int(vInt(sym.rval))\n\t\t\t} else {\n\t\t\t\t// Key is defined by a numeric constant expression.\n\t\t\t\tif _, err := c0.interp.cfg(c0, sc, sc.pkgID, sc.pkgName); err != nil {\n\t\t\t\t\treturn 0, err\n\t\t\t\t}\n\t\t\t\tcv, ok := c0.rval.Interface().(constant.Value)\n\t\t\t\tif !ok {\n\t\t\t\t\treturn 0, c0.cfgErrorf(\"non-constant expression\")\n\t\t\t\t}\n\t\t\t\tr = constToInt(cv)\n\t\t\t}\n\t\t}\n\n\t\tif r > max {\n\t\t\tmax = r\n\t\t}\n\t}\n\treturn max + 1, nil\n}\n\n// isValueUntyped returns true if value is untyped.\nfunc isValueUntyped(v reflect.Value) bool {\n\t// Consider only constant values.\n\tif v.CanSet() {\n\t\treturn false\n\t}\n\treturn v.Type().Implements(constVal)\n}\n\n// isArithmeticAction returns true if the node action is an arithmetic operator.\nfunc isArithmeticAction(n *node) bool {\n\tswitch n.action {\n\tcase aAdd, aAnd, aAndNot, aBitNot, aMul, aNeg, aOr, aPos, aQuo, aRem, aShl, aShr, aSub, aXor:\n\t\treturn true\n\t}\n\treturn false\n}\n\nfunc isBoolAction(n *node) bool {\n\tswitch n.action {\n\tcase aEqual, aGreater, aGreaterEqual, aLand, aLor, aLower, aLowerEqual, aNot, aNotEqual:\n\t\treturn true\n\t}\n\treturn false\n}\n\nfunc isBlank(n *node) bool {\n\tif n.kind == parenExpr && len(n.child) > 0 {\n\t\treturn isBlank(n.child[0])\n\t}\n\treturn n.ident == \"_\"\n}\n\nfunc alignof(n *node) {\n\tn.gen = nop\n\tn.typ = n.scope.getType(\"uintptr\")\n\tn.rval = reflect.ValueOf(uintptr(n.child[1].typ.TypeOf().Align()))\n}\n\nfunc offsetof(n *node) {\n\tn.gen = nop\n\tn.typ = n.scope.getType(\"uintptr\")\n\tc1 := n.child[1]\n\tif field, ok := c1.child[0].typ.rtype.FieldByName(c1.child[1].ident); ok {\n\t\tn.rval = reflect.ValueOf(field.Offset)\n\t}\n}\n\nfunc sizeof(n *node) {\n\tn.gen = nop\n\tn.typ = n.scope.getType(\"uintptr\")\n\tn.rval = reflect.ValueOf(n.child[1].typ.TypeOf().Size())\n}\n"
  },
  {
    "path": "interp/compile_test.go",
    "content": "package interp\n\nimport (\n\t\"go/ast\"\n\t\"go/parser\"\n\t\"go/token\"\n\t\"testing\"\n\n\t\"github.com/traefik/yaegi/stdlib\"\n)\n\nfunc TestCompileAST(t *testing.T) {\n\ti := New(Options{})\n\tfile, err := parser.ParseFile(i.FileSet(), \"_.go\", `\n\t\tpackage main\n\n\t\timport \"fmt\"\n\n\t\ttype Foo struct{}\n\n\t\tvar foo Foo\n\t\tconst bar = \"asdf\"\n\n\t\tfunc main() {\n\t\t\tfmt.Println(1)\n\t\t}\n\t`, 0)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tif len(file.Imports) != 1 || len(file.Decls) != 5 {\n\t\tpanic(\"wrong number of imports or decls\")\n\t}\n\n\tdType := file.Decls[1].(*ast.GenDecl)\n\tdVar := file.Decls[2].(*ast.GenDecl)\n\tdConst := file.Decls[3].(*ast.GenDecl)\n\tdFunc := file.Decls[4].(*ast.FuncDecl)\n\n\tif dType.Tok != token.TYPE {\n\t\tpanic(\"decl[1] is not a type\")\n\t}\n\tif dVar.Tok != token.VAR {\n\t\tpanic(\"decl[2] is not a var\")\n\t}\n\tif dConst.Tok != token.CONST {\n\t\tpanic(\"decl[3] is not a const\")\n\t}\n\n\tcases := []struct {\n\t\tdesc string\n\t\tnode ast.Node\n\t\tskip string\n\t}{\n\t\t{desc: \"file\", node: file, skip: \"temporary ignore\"},\n\t\t{desc: \"import\", node: file.Imports[0]},\n\t\t{desc: \"type\", node: dType},\n\t\t{desc: \"var\", node: dVar, skip: \"not supported\"},\n\t\t{desc: \"const\", node: dConst},\n\t\t{desc: \"func\", node: dFunc},\n\t\t{desc: \"block\", node: dFunc.Body},\n\t\t{desc: \"expr\", node: dFunc.Body.List[0]},\n\t}\n\n\t_ = i.Use(stdlib.Symbols)\n\n\tfor _, c := range cases {\n\t\tt.Run(c.desc, func(t *testing.T) {\n\t\t\tif c.skip != \"\" {\n\t\t\t\tt.Skip(c.skip)\n\t\t\t}\n\n\t\t\ti := i\n\t\t\tif _, ok := c.node.(*ast.File); ok {\n\t\t\t\ti = New(Options{})\n\t\t\t\t_ = i.Use(stdlib.Symbols)\n\t\t\t}\n\t\t\t_, err := i.CompileAST(c.node)\n\t\t\tif err != nil {\n\t\t\t\tt.Fatalf(\"Failed to compile %s: %v\", c.desc, err)\n\t\t\t}\n\t\t})\n\t}\n}\n"
  },
  {
    "path": "interp/debugger.go",
    "content": "package interp\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"sort\"\n\t\"sync\"\n)\n\nvar (\n\t// ErrNotLive indicates that the specified ID does not refer to a (live) Go\n\t// routine.\n\tErrNotLive = errors.New(\"not live\")\n\n\t// ErrRunning indicates that the specified Go routine is running.\n\tErrRunning = errors.New(\"running\")\n\n\t// ErrNotRunning indicates that the specified Go routine is running.\n\tErrNotRunning = errors.New(\"not running\")\n)\n\nvar rNodeType = reflect.TypeOf((*node)(nil)).Elem()\n\n// A Debugger can be used to debug a Yaegi program.\ntype Debugger struct {\n\tinterp  *Interpreter\n\tevents  func(*DebugEvent)\n\tcontext context.Context\n\tcancel  context.CancelFunc\n\n\tgWait *sync.WaitGroup\n\tgLock *sync.Mutex\n\tgID   int\n\tgLive map[int]*debugRoutine\n\n\tresult reflect.Value\n\terr    error\n}\n\n// go routine debug state.\ntype debugRoutine struct {\n\tid int\n\n\tmode    DebugEventReason\n\trunning bool\n\tresume  chan struct{}\n\n\tfDepth int\n\tfStep  int\n}\n\n// node debug state.\ntype nodeDebugData struct {\n\tprogram     *Program\n\tbreakOnLine bool\n\tbreakOnCall bool\n}\n\n// frame debug state.\ntype frameDebugData struct {\n\tg     *debugRoutine\n\tnode  *node\n\tname  string\n\tkind  frameKind\n\tscope *scope\n}\n\n// frame kind.\ntype frameKind int\n\nconst (\n\t// interpreter root frame.\n\tframeRoot frameKind = iota + 1\n\n\t// function call frame.\n\tframeCall\n\n\t// closure capture frame.\n\tframeClosure\n)\n\n// DebugOptions are the debugger options.\ntype DebugOptions struct {\n\t// If true, Go routine IDs start at 1 instead of 0.\n\tGoRoutineStartAt1 bool\n}\n\n// A DebugEvent is an event generated by a debugger.\ntype DebugEvent struct {\n\tdebugger *Debugger\n\treason   DebugEventReason\n\tframe    *frame\n}\n\n// DebugFrame provides access to stack frame information while debugging a\n// program.\ntype DebugFrame struct {\n\tevent  *DebugEvent\n\tframes []*frame\n}\n\n// DebugFrameScope provides access to scoped variables while debugging a\n// program.\ntype DebugFrameScope struct {\n\tframe *frame\n}\n\n// DebugVariable is the name and value of a variable from a debug session.\ntype DebugVariable struct {\n\tName  string\n\tValue reflect.Value\n}\n\n// DebugGoRoutine provides access to information about a Go routine while\n// debugging a program.\ntype DebugGoRoutine struct {\n\tid int\n}\n\n// Breakpoint is the result of attempting to set a breakpoint.\ntype Breakpoint struct {\n\t// Valid indicates whether the breakpoint was successfully set.\n\tValid bool\n\n\t// Position indicates the source position of the breakpoint.\n\tPosition token.Position\n}\n\n// DebugEventReason is the reason a debug event occurred.\ntype DebugEventReason int\n\nconst (\n\t// continue execution normally.\n\tdebugRun DebugEventReason = iota\n\n\t// DebugPause is emitted when a pause request is completed. Can be used with\n\t// Interrupt to request a pause.\n\tDebugPause\n\n\t// DebugBreak is emitted when a debug target hits a breakpoint.\n\tDebugBreak\n\n\t// DebugEntry is emitted when a debug target starts executing. Can be used\n\t// with Step to produce a corresponding event when execution starts.\n\tDebugEntry\n\n\t// DebugStepInto is emitted when a stepInto request is completed. Can be\n\t// used with Step or Interrupt to request a stepInto.\n\tDebugStepInto\n\n\t// DebugStepOver is emitted when a stepOver request is completed. Can be\n\t// used with Step or Interrupt to request a stepOver.\n\tDebugStepOver\n\n\t// DebugStepOut is emitted when a stepOut request is completed. Can be used\n\t// with Step or Interrupt to request a stepOut.\n\tDebugStepOut\n\n\t// DebugTerminate is emitted when a debug target terminates. Can be used\n\t// with Interrupt to attempt to terminate the program.\n\tDebugTerminate\n\n\t// DebugEnterGoRoutine is emitted when a Go routine is entered.\n\tDebugEnterGoRoutine\n\n\t// DebugExitGoRoutine is emitted when a Go routine is exited.\n\tDebugExitGoRoutine\n)\n\n// Debug initializes a debugger for the given program.\n//\n// The program will not start running until Step or Continue has been called. If\n// Step is called with DebugEntry, an entry event will be generated before the\n// first statement is executed. Otherwise, the debugger will behave as usual.\nfunc (interp *Interpreter) Debug(ctx context.Context, prog *Program, events func(*DebugEvent), opts *DebugOptions) *Debugger {\n\tdbg := new(Debugger)\n\tdbg.interp = interp\n\tdbg.events = events\n\tdbg.context, dbg.cancel = context.WithCancel(ctx)\n\tdbg.gWait = new(sync.WaitGroup)\n\tdbg.gLock = new(sync.Mutex)\n\tdbg.gLive = make(map[int]*debugRoutine, 1)\n\n\tif opts == nil {\n\t\topts = new(DebugOptions)\n\t}\n\tif opts.GoRoutineStartAt1 {\n\t\tdbg.gID = 1\n\t}\n\n\tmainG := dbg.enterGoRoutine()\n\tmainG.mode = DebugEntry\n\n\tinterp.debugger = dbg\n\tinterp.frame.debug = &frameDebugData{kind: frameRoot, g: mainG}\n\n\tprog.root.Walk(func(n *node) bool {\n\t\tn.setProgram(prog)\n\t\treturn true\n\t}, nil)\n\n\tgo func() {\n\t\tdefer func() { interp.debugger = nil }()\n\t\tdefer events(&DebugEvent{reason: DebugTerminate})\n\t\tdefer dbg.cancel()\n\n\t\t<-mainG.resume\n\t\tdbg.events(&DebugEvent{dbg, DebugEnterGoRoutine, interp.frame})\n\t\tdbg.result, dbg.err = interp.ExecuteWithContext(ctx, prog)\n\t\tdbg.exitGoRoutine(mainG)\n\t\tdbg.events(&DebugEvent{dbg, DebugExitGoRoutine, interp.frame})\n\t\tdbg.gWait.Wait()\n\t}()\n\n\treturn dbg\n}\n\n// Wait blocks until all Go routines launched by the program have terminated.\n// Wait returns the results of `(*Interpreter).Execute`.\nfunc (dbg *Debugger) Wait() (reflect.Value, error) {\n\t<-dbg.context.Done()\n\treturn dbg.result, dbg.err\n}\n\n// mark entry into a go routine.\nfunc (dbg *Debugger) enterGoRoutine() *debugRoutine {\n\tg := new(debugRoutine)\n\tg.resume = make(chan struct{})\n\n\tdbg.gWait.Add(1)\n\n\tdbg.gLock.Lock()\n\tg.id = dbg.gID\n\tdbg.gID++\n\tdbg.gLive[g.id] = g\n\tdbg.gLock.Unlock()\n\n\treturn g\n}\n\n// mark exit from a go routine.\nfunc (dbg *Debugger) exitGoRoutine(g *debugRoutine) {\n\tdbg.gLock.Lock()\n\tdelete(dbg.gLive, g.id)\n\tdbg.gLock.Unlock()\n\n\tdbg.gWait.Done()\n}\n\n// get the state for a given go routine, if it's live.\nfunc (dbg *Debugger) getGoRoutine(id int) (*debugRoutine, bool) {\n\tdbg.gLock.Lock()\n\tg, ok := dbg.gLive[id]\n\tdbg.gLock.Unlock()\n\treturn g, ok\n}\n\n// mark entry into a function call.\nfunc (dbg *Debugger) enterCall(nFunc, nCall *node, f *frame) {\n\tif f.debug != nil {\n\t\tf.debug.g.fDepth++\n\t\treturn\n\t}\n\n\tf.debug = new(frameDebugData)\n\tf.debug.g = f.anc.debug.g\n\tf.debug.scope = nFunc.scope\n\n\tswitch nFunc.kind {\n\tcase funcLit:\n\t\tf.debug.kind = frameCall\n\n\tcase funcDecl:\n\t\tf.debug.kind = frameCall\n\t\tf.debug.name = nFunc.child[1].ident\n\t}\n\n\tif nCall != nil && nCall.anc.kind == goStmt {\n\t\tf.debug.g = dbg.enterGoRoutine()\n\t\tdbg.events(&DebugEvent{dbg, DebugEnterGoRoutine, f})\n\t}\n\n\tf.debug.g.fDepth++\n}\n\n// mark exit from a function call.\nfunc (dbg *Debugger) exitCall(nFunc, nCall *node, f *frame) {\n\t_ = nFunc // ignore unused, so exitCall can have the same signature as enterCall\n\n\tf.debug.g.fDepth--\n\n\tif nCall != nil && nCall.anc.kind == goStmt {\n\t\tdbg.exitGoRoutine(f.debug.g)\n\t\tdbg.events(&DebugEvent{dbg, DebugExitGoRoutine, f})\n\t}\n}\n\n// called by the interpreter prior to executing the node.\nfunc (dbg *Debugger) exec(n *node, f *frame) (stop bool) {\n\tf.debug.node = n\n\n\tif n != nil && n.pos == token.NoPos {\n\t\treturn false\n\t}\n\n\tg := f.debug.g\n\tdefer func() { g.running = true }()\n\n\te := &DebugEvent{dbg, g.mode, f}\n\tswitch {\n\tcase g.mode == DebugTerminate:\n\t\tdbg.cancel()\n\t\treturn true\n\n\tcase n.shouldBreak():\n\t\te.reason = DebugBreak\n\n\tcase g.mode == debugRun:\n\t\treturn false\n\n\tcase g.mode == DebugStepOut:\n\t\tif g.fDepth >= g.fStep {\n\t\t\treturn false\n\t\t}\n\n\tcase g.mode == DebugStepOver:\n\t\tif g.fDepth > g.fStep {\n\t\t\treturn false\n\t\t}\n\t}\n\tdbg.events(e)\n\n\tg.running = false\n\tselect {\n\tcase <-g.resume:\n\t\treturn false\n\tcase <-dbg.context.Done():\n\t\treturn true\n\t}\n}\n\n// Continue continues execution of the specified Go routine. Continue returns\n// ErrNotLive if there is no Go routine with the corresponding ID, or if it is not\n// live.\nfunc (dbg *Debugger) Continue(id int) error {\n\tg, ok := dbg.getGoRoutine(id)\n\tif !ok {\n\t\treturn ErrNotLive\n\t}\n\n\tg.mode = debugRun\n\tg.resume <- struct{}{}\n\treturn nil\n}\n\n// update the exec mode of this routine.\nfunc (g *debugRoutine) setMode(reason DebugEventReason) {\n\tif g.mode == DebugTerminate {\n\t\treturn\n\t}\n\n\tif g.mode == DebugEntry && reason == DebugEntry {\n\t\treturn\n\t}\n\n\tswitch reason {\n\tcase DebugStepInto, DebugStepOver, DebugStepOut:\n\t\tg.mode, g.fStep = reason, g.fDepth\n\tdefault:\n\t\tg.mode = DebugPause\n\t}\n}\n\n// Step issues a stepInto, stepOver, or stepOut request to a stopped Go routine.\n// Step returns ErrRunning if the Go routine is running. Step returns ErrNotLive\n// if there is no Go routine with the corresponding ID, or if it is not live.\nfunc (dbg *Debugger) Step(id int, reason DebugEventReason) error {\n\tg, ok := dbg.getGoRoutine(id)\n\tif !ok {\n\t\treturn ErrNotLive\n\t}\n\n\tif g.running {\n\t\treturn ErrRunning\n\t}\n\n\tg.setMode(reason)\n\tg.resume <- struct{}{}\n\treturn nil\n}\n\n// Interrupt issues a stepInto, stepOver, or stepOut request to a running Go\n// routine. Interrupt returns ErrRunning if the Go routine is running. Interrupt\n// returns ErrNotLive if there is no Go routine with the corresponding ID, or if\n// it is not live.\nfunc (dbg *Debugger) Interrupt(id int, reason DebugEventReason) bool {\n\tg, ok := dbg.getGoRoutine(id)\n\tif !ok {\n\t\treturn false\n\t}\n\n\tg.setMode(reason)\n\treturn true\n}\n\n// Terminate attempts to terminate the program.\nfunc (dbg *Debugger) Terminate() {\n\tdbg.gLock.Lock()\n\tg := dbg.gLive\n\tdbg.gLive = nil\n\tdbg.gLock.Unlock()\n\n\tfor _, g := range g {\n\t\tg.mode = DebugTerminate\n\t\tclose(g.resume)\n\t}\n}\n\n// BreakpointTarget is the target of a request to set breakpoints.\ntype BreakpointTarget func(*Debugger, func(*node))\n\n// PathBreakpointTarget is used to set breapoints on compiled code by path. This\n// can be used to set breakpoints on code compiled with EvalPath, or source\n// packages loaded by Yaegi.\nfunc PathBreakpointTarget(path string) BreakpointTarget {\n\treturn func(dbg *Debugger, cb func(*node)) {\n\t\tfor _, r := range dbg.interp.roots {\n\t\t\tf := dbg.interp.fset.File(r.pos)\n\t\t\tif f != nil && f.Name() == path {\n\t\t\t\tcb(r)\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t}\n}\n\n// ProgramBreakpointTarget is used to set breakpoints on a Program.\nfunc ProgramBreakpointTarget(prog *Program) BreakpointTarget {\n\treturn func(_ *Debugger, cb func(*node)) {\n\t\tcb(prog.root)\n\t}\n}\n\n// AllBreakpointTarget is used to set breakpoints on all compiled code. Do not\n// use with LineBreakpoint.\nfunc AllBreakpointTarget() BreakpointTarget {\n\treturn func(dbg *Debugger, cb func(*node)) {\n\t\tfor _, r := range dbg.interp.roots {\n\t\t\tcb(r)\n\t\t}\n\t}\n}\n\ntype breakpointSetup struct {\n\troots []*node\n\tlines map[int]int\n\tfuncs map[string]int\n}\n\n// BreakpointRequest is a request to set a breakpoint.\ntype BreakpointRequest func(*breakpointSetup, int)\n\n// LineBreakpoint requests a breakpoint on the given line.\nfunc LineBreakpoint(line int) BreakpointRequest {\n\treturn func(b *breakpointSetup, i int) {\n\t\tb.lines[line] = i\n\t}\n}\n\n// FunctionBreakpoint requests a breakpoint on the named function.\nfunc FunctionBreakpoint(name string) BreakpointRequest {\n\treturn func(b *breakpointSetup, i int) {\n\t\tb.funcs[name] = i\n\t}\n}\n\n// SetBreakpoints sets breakpoints for the given target. The returned array has\n// an entry for every request, in order. If a given breakpoint request cannot be\n// satisfied, the corresponding entry will be marked invalid. If the target\n// cannot be found, all entries will be marked invalid.\nfunc (dbg *Debugger) SetBreakpoints(target BreakpointTarget, requests ...BreakpointRequest) []Breakpoint {\n\t// start with all breakpoints unverified\n\tresults := make([]Breakpoint, len(requests))\n\n\t// prepare all the requests\n\tsetup := new(breakpointSetup)\n\ttarget(dbg, func(root *node) {\n\t\tsetup.roots = append(setup.roots, root)\n\t\tsetup.lines = make(map[int]int, len(requests))\n\t\tsetup.funcs = make(map[string]int, len(requests))\n\t\tfor i, rq := range requests {\n\t\t\trq(setup, i)\n\t\t}\n\t})\n\n\t// find breakpoints\n\tfor _, root := range setup.roots {\n\t\troot.Walk(func(n *node) bool {\n\t\t\t// function breakpoints\n\t\t\tif len(setup.funcs) > 0 && n.kind == funcDecl {\n\t\t\t\t// reset stale breakpoints\n\t\t\t\tn.start.setBreakOnCall(false)\n\n\t\t\t\tif i, ok := setup.funcs[n.child[1].ident]; ok && !results[i].Valid {\n\t\t\t\t\tresults[i].Valid = true\n\t\t\t\t\tresults[i].Position = dbg.interp.fset.Position(n.start.pos)\n\t\t\t\t\tn.start.setBreakOnCall(true)\n\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// line breakpoints\n\t\t\tif len(setup.lines) > 0 && n.pos.IsValid() && n.action != aNop && getExec(n) != nil {\n\t\t\t\t// reset stale breakpoints\n\t\t\t\tn.setBreakOnLine(false)\n\n\t\t\t\tpos := dbg.interp.fset.Position(n.pos)\n\t\t\t\tif i, ok := setup.lines[pos.Line]; ok && !results[i].Valid {\n\t\t\t\t\tresults[i].Valid = true\n\t\t\t\t\tresults[i].Position = pos\n\t\t\t\t\tn.setBreakOnLine(true)\n\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn true\n\t\t}, nil)\n\t}\n\n\treturn results\n}\n\n// GoRoutines returns an array of live Go routines.\nfunc (dbg *Debugger) GoRoutines() []*DebugGoRoutine {\n\tdbg.gLock.Lock()\n\tr := make([]*DebugGoRoutine, 0, len(dbg.gLive))\n\tfor id := range dbg.gLive {\n\t\tr = append(r, &DebugGoRoutine{id})\n\t}\n\tdbg.gLock.Unlock()\n\tsort.Slice(r, func(i, j int) bool { return r[i].id < r[j].id })\n\treturn r\n}\n\n// ID returns the ID of the Go routine.\nfunc (r *DebugGoRoutine) ID() int { return r.id }\n\n// Name returns \"Goroutine {ID}\".\nfunc (r *DebugGoRoutine) Name() string { return fmt.Sprintf(\"Goroutine %d\", r.id) }\n\n// GoRoutine returns the ID of the Go routine that generated the event.\nfunc (evt *DebugEvent) GoRoutine() int {\n\tif evt.frame.debug == nil {\n\t\treturn 0\n\t}\n\treturn evt.frame.debug.g.id\n}\n\n// Reason returns the reason for the event.\nfunc (evt *DebugEvent) Reason() DebugEventReason {\n\treturn evt.reason\n}\n\n// Walk the stack trace frames. The root frame is included if and only if it is\n// the only frame. Closure frames are rolled up into the following call frame.\nfunc (evt *DebugEvent) walkFrames(fn func([]*frame) bool) {\n\tif evt.frame == evt.frame.root {\n\t\tfn([]*frame{evt.frame})\n\t\treturn\n\t}\n\n\tvar g *debugRoutine\n\tif evt.frame.debug != nil {\n\t\tg = evt.frame.debug.g\n\t}\n\n\tvar frames []*frame\n\tfor f := evt.frame; f != nil && f != f.root && (f.debug == nil || f.debug.g == g); f = f.anc {\n\t\tif f.debug == nil || f.debug.kind != frameCall {\n\t\t\tframes = append(frames, f)\n\t\t\tcontinue\n\t\t}\n\n\t\tif len(frames) > 0 {\n\t\t\tif !fn(frames) {\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\n\t\tframes = frames[:0]\n\t\tframes = append(frames, f)\n\t}\n\n\tif len(frames) > 0 {\n\t\tfn(frames)\n\t}\n}\n\n// FrameDepth returns the number of call frames in the stack trace.\nfunc (evt *DebugEvent) FrameDepth() int {\n\tif evt.frame == evt.frame.root {\n\t\treturn 1\n\t}\n\n\tvar n int\n\tevt.walkFrames(func([]*frame) bool { n++; return true })\n\treturn n\n}\n\n// Frames returns the call frames in the range [start, end).\nfunc (evt *DebugEvent) Frames(start, end int) []*DebugFrame {\n\tcount := end - start\n\tif count < 0 {\n\t\treturn nil\n\t}\n\n\tframes := []*DebugFrame{}\n\tevt.walkFrames(func(f []*frame) bool {\n\t\tdf := &DebugFrame{evt, make([]*frame, len(f))}\n\t\tcopy(df.frames, f)\n\t\tframes = append(frames, df)\n\t\treturn len(frames) < count\n\t})\n\treturn frames\n}\n\n// Name returns the name of the stack frame. For function calls to named\n// functions, this is the function name.\nfunc (f *DebugFrame) Name() string {\n\td := f.frames[0].debug\n\tif d == nil {\n\t\treturn \"<unknown>\"\n\t}\n\tswitch d.kind {\n\tcase frameRoot:\n\t\treturn \"<init>\"\n\tcase frameClosure:\n\t\treturn \"<closure>\"\n\tcase frameCall:\n\t\tif d.name == \"\" {\n\t\t\treturn \"<anonymous>\"\n\t\t}\n\t\treturn d.name\n\tdefault:\n\t\treturn \"<unknown>\"\n\t}\n}\n\n// Position returns the current position of the frame. This is effectively the\n// program counter/link register. May return `Position{}`.\nfunc (f *DebugFrame) Position() token.Position {\n\td := f.frames[0].debug\n\tif d == nil || d.node == nil {\n\t\treturn token.Position{}\n\t}\n\treturn f.event.debugger.interp.fset.Position(d.node.pos)\n}\n\n// Program returns the program associated with the current position of the\n// frame. May return nil.\nfunc (f *DebugFrame) Program() *Program {\n\td := f.frames[0].debug\n\tif d == nil || d.node == nil {\n\t\treturn nil\n\t}\n\n\treturn d.node.debug.program\n}\n\n// Scopes returns the variable scopes of the frame.\nfunc (f *DebugFrame) Scopes() []*DebugFrameScope {\n\ts := make([]*DebugFrameScope, len(f.frames))\n\tfor i, f := range f.frames {\n\t\ts[i] = &DebugFrameScope{f}\n\t}\n\treturn s\n}\n\n// IsClosure returns true if this is the capture scope of a closure.\nfunc (f *DebugFrameScope) IsClosure() bool {\n\treturn f.frame.debug != nil && f.frame.debug.kind == frameClosure\n}\n\n// Variables returns the names and values of the variables of the scope.\nfunc (f *DebugFrameScope) Variables() []*DebugVariable {\n\td := f.frame.debug\n\tif d == nil || d.scope == nil {\n\t\treturn nil\n\t}\n\n\tindex := map[int]string{}\n\tscanScope(d.scope, index)\n\n\tm := make([]*DebugVariable, 0, len(f.frame.data))\n\tfor i, v := range f.frame.data {\n\t\tif typ := v.Type(); typ.AssignableTo(rNodeType) || typ.Kind() == reflect.Ptr && typ.Elem().AssignableTo(rNodeType) {\n\t\t\tcontinue\n\t\t}\n\t\tname, ok := index[i]\n\t\tif !ok {\n\t\t\tcontinue\n\t\t}\n\n\t\tm = append(m, &DebugVariable{name, v})\n\t}\n\treturn m\n}\n\nfunc scanScope(sc *scope, index map[int]string) {\n\tfor name, sym := range sc.sym {\n\t\tif _, ok := index[sym.index]; ok {\n\t\t\tcontinue\n\t\t}\n\t\tindex[sym.index] = name\n\t}\n\n\tfor _, ch := range sc.child {\n\t\tif ch.def != sc.def {\n\t\t\tcontinue\n\t\t}\n\t\tscanScope(ch, index)\n\t}\n}\n"
  },
  {
    "path": "interp/doc.go",
    "content": "/*\nPackage interp provides a complete Go interpreter.\n\nFor the Go language itself, refer to the official Go specification\nhttps://golang.org/ref/spec.\n\n# Importing packages\n\nPackages can be imported in source or binary form, using the standard\nGo import statement. In source form, packages are searched first in the\nvendor directory, the preferred way to store source dependencies. If not\nfound in vendor, sources modules will be searched in GOPATH. Go modules\nare not supported yet by yaegi.\n\nBinary form packages are compiled and linked with the interpreter\nexecutable, and exposed to scripts with the Use method. The extract\nsubcommand of yaegi can be used to generate package wrappers.\n\n# Custom build tags\n\nCustom build tags allow to control which files in imported source\npackages are interpreted, in the same way as the \"-tags\" option of the\n\"go build\" command. Setting a custom build tag spans globally for all\nfuture imports of the session.\n\nA build tag is a line comment that begins\n\n\t// yaegi:tags\n\nthat lists the build constraints to be satisfied by the further\nimports of source packages.\n\nFor example the following custom build tag\n\n\t// yaegi:tags noasm\n\nWill ensure that an import of a package will exclude files containing\n\n\t// +build !noasm\n\nAnd include files containing\n\n\t// +build noasm\n*/\npackage interp\n\n// BUG(marc): Support for recursive types is incomplete.\n// BUG(marc): Support of types implementing multiple interfaces is incomplete.\n"
  },
  {
    "path": "interp/dot.go",
    "content": "package interp\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"log\"\n\t\"os/exec\"\n\t\"path/filepath\"\n\t\"strings\"\n)\n\n// astDot displays an AST in graphviz dot(1) format using dotty(1) co-process.\nfunc (n *node) astDot(out io.Writer, name string) {\n\tfmt.Fprintf(out, \"digraph ast {\\n\")\n\tfmt.Fprintf(out, \"labelloc=\\\"t\\\"\\n\")\n\tfmt.Fprintf(out, \"label=\\\"%s\\\"\\n\", name)\n\tn.Walk(func(n *node) bool {\n\t\tvar label string\n\t\tswitch n.kind {\n\t\tcase basicLit, identExpr:\n\t\t\tlabel = strings.ReplaceAll(n.ident, \"\\\"\", \"\\\\\\\"\")\n\t\tdefault:\n\t\t\tif n.action != aNop {\n\t\t\t\tlabel = n.action.String()\n\t\t\t} else {\n\t\t\t\tlabel = n.kind.String()\n\t\t\t}\n\t\t}\n\t\tfmt.Fprintf(out, \"%d [label=\\\"%d: %s\\\"]\\n\", n.index, n.index, label)\n\t\tif n.anc != nil {\n\t\t\tfmt.Fprintf(out, \"%d -> %d\\n\", n.anc.index, n.index)\n\t\t}\n\t\treturn true\n\t}, nil)\n\tfmt.Fprintf(out, \"}\\n\")\n}\n\n// cfgDot displays a CFG in graphviz dot(1) format using dotty(1) co-process.\nfunc (n *node) cfgDot(out io.Writer) {\n\tfmt.Fprintf(out, \"digraph cfg {\\n\")\n\tn.Walk(nil, func(n *node) {\n\t\tif n.kind == basicLit || n.tnext == nil {\n\t\t\treturn\n\t\t}\n\t\tvar label string\n\t\tif n.action == aNop {\n\t\t\tlabel = \"nop: end_\" + n.kind.String()\n\t\t} else {\n\t\t\tlabel = n.action.String()\n\t\t}\n\t\tfmt.Fprintf(out, \"%d [label=\\\"%d: %v %d\\\"]\\n\", n.index, n.index, label, n.findex)\n\t\tif n.fnext != nil {\n\t\t\tfmt.Fprintf(out, \"%d -> %d [color=green]\\n\", n.index, n.tnext.index)\n\t\t\tfmt.Fprintf(out, \"%d -> %d [color=red]\\n\", n.index, n.fnext.index)\n\t\t} else if n.tnext != nil {\n\t\t\tfmt.Fprintf(out, \"%d -> %d\\n\", n.index, n.tnext.index)\n\t\t}\n\t})\n\tfmt.Fprintf(out, \"}\\n\")\n}\n\ntype nopCloser struct {\n\tio.Writer\n}\n\nfunc (nopCloser) Close() error { return nil }\n\n// dotWriter returns an output stream to a dot(1) co-process where to write data in .dot format.\nfunc dotWriter(dotCmd string) io.WriteCloser {\n\tif dotCmd == \"\" {\n\t\treturn nopCloser{io.Discard}\n\t}\n\tfields := strings.Fields(dotCmd)\n\tcmd := exec.Command(fields[0], fields[1:]...)\n\tdotin, err := cmd.StdinPipe()\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tif err = cmd.Start(); err != nil {\n\t\tlog.Fatal(err)\n\t}\n\treturn dotin\n}\n\nfunc defaultDotCmd(filePath, prefix string) string {\n\tdir, fileName := filepath.Split(filePath)\n\text := filepath.Ext(fileName)\n\tif ext == \"\" {\n\t\tfileName += \".dot\"\n\t} else {\n\t\tfileName = strings.Replace(fileName, ext, \".dot\", 1)\n\t}\n\treturn \"dot -Tdot -o\" + dir + prefix + fileName\n}\n"
  },
  {
    "path": "interp/example_eval_test.go",
    "content": "package interp_test\n\nimport (\n\t\"fmt\"\n\t\"log\"\n\n\t\"github.com/traefik/yaegi/interp\"\n)\n\n// Generic example.\nfunc Example_eval() {\n\t// Create a new interpreter context\n\ti := interp.New(interp.Options{})\n\n\t// Run some code: define a new function\n\t_, err := i.Eval(\"func f(i int) int { return 2 * i }\")\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\t// Access the interpreted f function with Eval\n\tv, err := i.Eval(\"f\")\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\t// Returned v is a reflect.Value, so we can use its interface\n\tf, ok := v.Interface().(func(int) int)\n\tif !ok {\n\t\tlog.Fatal(\"type assertion failed\")\n\t}\n\n\t// Use interpreted f as it was pre-compiled\n\tfmt.Println(f(2))\n\n\t// Output:\n\t// 4\n}\n"
  },
  {
    "path": "interp/export_test.go",
    "content": "package interp\n\nfunc (interp *Interpreter) Scopes() map[string]map[string]struct{} {\n\tscopes := make(map[string]map[string]struct{})\n\tfor k, v := range interp.scopes {\n\t\tsyms := make(map[string]struct{})\n\t\tfor kk := range v.sym {\n\t\t\tsyms[kk] = struct{}{}\n\t\t}\n\t\tscopes[k] = syms\n\t}\n\treturn scopes\n}\n\nfunc (interp *Interpreter) Packages() map[string]string {\n\treturn interp.pkgNames\n}\n"
  },
  {
    "path": "interp/generic.go",
    "content": "package interp\n\nimport (\n\t\"strings\"\n\t\"sync/atomic\"\n)\n\n// adot produces an AST dot(1) directed acyclic graph for the given node. For debugging only.\n// func (n *node) adot() { n.astDot(dotWriter(n.interp.dotCmd), n.ident) }\n\n// genAST returns a new AST where generic types are replaced by instantiated types.\nfunc genAST(sc *scope, root *node, types []*itype) (*node, bool, error) {\n\ttypeParam := map[string]*node{}\n\tpindex := 0\n\ttname := \"\"\n\trtname := \"\"\n\trecvrPtr := false\n\tfixNodes := []*node{}\n\tvar gtree func(*node, *node) (*node, error)\n\tsname := root.child[0].ident + \"[\"\n\tif root.kind == funcDecl {\n\t\tsname = root.child[1].ident + \"[\"\n\t}\n\n\t// Input type parameters must be resolved prior AST generation, as compilation\n\t// of generated AST may occur in a different scope.\n\tfor _, t := range types {\n\t\tsname += t.id() + \",\"\n\t}\n\tsname = strings.TrimSuffix(sname, \",\") + \"]\"\n\n\tgtree = func(n, anc *node) (*node, error) {\n\t\tnod := copyNode(n, anc, false)\n\t\tswitch n.kind {\n\t\tcase funcDecl, funcType:\n\t\t\tnod.val = nod\n\n\t\tcase identExpr:\n\t\t\t// Replace generic type by instantiated one.\n\t\t\tnt, ok := typeParam[n.ident]\n\t\t\tif !ok {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tnod = copyNode(nt, anc, true)\n\t\t\tnod.typ = nt.typ\n\n\t\tcase indexExpr:\n\t\t\t// Catch a possible recursive generic type definition\n\t\t\tif root.kind != typeSpec {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tif root.child[0].ident != n.child[0].ident {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tnod := copyNode(n.child[0], anc, false)\n\t\t\tfixNodes = append(fixNodes, nod)\n\t\t\treturn nod, nil\n\n\t\tcase fieldList:\n\t\t\t//  Node is the type parameters list of a generic function.\n\t\t\tif root.kind == funcDecl && n.anc == root.child[2] && childPos(n) == 0 {\n\t\t\t\t// Fill the types lookup table used for type substitution.\n\t\t\t\tfor _, c := range n.child {\n\t\t\t\t\tl := len(c.child) - 1\n\t\t\t\t\tfor _, cc := range c.child[:l] {\n\t\t\t\t\t\tif pindex >= len(types) {\n\t\t\t\t\t\t\treturn nil, cc.cfgErrorf(\"undefined type for %s\", cc.ident)\n\t\t\t\t\t\t}\n\t\t\t\t\t\tt, err := nodeType(c.interp, sc, c.child[l])\n\t\t\t\t\t\tif err != nil {\n\t\t\t\t\t\t\treturn nil, err\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif err := checkConstraint(types[pindex], t); err != nil {\n\t\t\t\t\t\t\treturn nil, err\n\t\t\t\t\t\t}\n\t\t\t\t\t\ttypeParam[cc.ident] = copyNode(cc, cc.anc, false)\n\t\t\t\t\t\ttypeParam[cc.ident].ident = types[pindex].id()\n\t\t\t\t\t\ttypeParam[cc.ident].typ = types[pindex]\n\t\t\t\t\t\tpindex++\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// Skip type parameters specification, so generated func doesn't look generic.\n\t\t\t\treturn nod, nil\n\t\t\t}\n\n\t\t\t// Node is the receiver of a generic method.\n\t\t\tif root.kind == funcDecl && n.anc == root && childPos(n) == 0 && len(n.child) > 0 {\n\t\t\t\trtn := n.child[0].child[1]\n\t\t\t\t// Method receiver is a generic type if it takes some type parameters.\n\t\t\t\tif rtn.kind == indexExpr || rtn.kind == indexListExpr || (rtn.kind == starExpr && (rtn.child[0].kind == indexExpr || rtn.child[0].kind == indexListExpr)) {\n\t\t\t\t\tif rtn.kind == starExpr {\n\t\t\t\t\t\t// Method receiver is a pointer on a generic type.\n\t\t\t\t\t\trtn = rtn.child[0]\n\t\t\t\t\t\trecvrPtr = true\n\t\t\t\t\t}\n\t\t\t\t\trtname = rtn.child[0].ident + \"[\"\n\t\t\t\t\tfor _, cc := range rtn.child[1:] {\n\t\t\t\t\t\tif pindex >= len(types) {\n\t\t\t\t\t\t\treturn nil, cc.cfgErrorf(\"undefined type for %s\", cc.ident)\n\t\t\t\t\t\t}\n\t\t\t\t\t\tit := types[pindex]\n\t\t\t\t\t\ttypeParam[cc.ident] = copyNode(cc, cc.anc, false)\n\t\t\t\t\t\ttypeParam[cc.ident].ident = it.id()\n\t\t\t\t\t\ttypeParam[cc.ident].typ = it\n\t\t\t\t\t\trtname += it.id() + \",\"\n\t\t\t\t\t\tpindex++\n\t\t\t\t\t}\n\t\t\t\t\trtname = strings.TrimSuffix(rtname, \",\") + \"]\"\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Node is the type parameters list of a generic type.\n\t\t\tif root.kind == typeSpec && n.anc == root && childPos(n) == 1 {\n\t\t\t\t// Fill the types lookup table used for type substitution.\n\t\t\t\ttname = n.anc.child[0].ident + \"[\"\n\t\t\t\tfor _, c := range n.child {\n\t\t\t\t\tl := len(c.child) - 1\n\t\t\t\t\tfor _, cc := range c.child[:l] {\n\t\t\t\t\t\tif pindex >= len(types) {\n\t\t\t\t\t\t\treturn nil, cc.cfgErrorf(\"undefined type for %s\", cc.ident)\n\t\t\t\t\t\t}\n\t\t\t\t\t\tit := types[pindex]\n\t\t\t\t\t\tt, err := nodeType(c.interp, sc, c.child[l])\n\t\t\t\t\t\tif err != nil {\n\t\t\t\t\t\t\treturn nil, err\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif err := checkConstraint(types[pindex], t); err != nil {\n\t\t\t\t\t\t\treturn nil, err\n\t\t\t\t\t\t}\n\t\t\t\t\t\ttypeParam[cc.ident] = copyNode(cc, cc.anc, false)\n\t\t\t\t\t\ttypeParam[cc.ident].ident = it.id()\n\t\t\t\t\t\ttypeParam[cc.ident].typ = it\n\t\t\t\t\t\ttname += it.id() + \",\"\n\t\t\t\t\t\tpindex++\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\ttname = strings.TrimSuffix(tname, \",\") + \"]\"\n\t\t\t\treturn nod, nil\n\t\t\t}\n\t\t}\n\n\t\tfor _, c := range n.child {\n\t\t\tgn, err := gtree(c, nod)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tnod.child = append(nod.child, gn)\n\t\t}\n\t\treturn nod, nil\n\t}\n\n\tif nod, found := root.interp.generic[sname]; found {\n\t\treturn nod, true, nil\n\t}\n\n\tr, err := gtree(root, root.anc)\n\tif err != nil {\n\t\treturn nil, false, err\n\t}\n\troot.interp.generic[sname] = r\n\tr.param = append(r.param, types...)\n\tif tname != \"\" {\n\t\tfor _, nod := range fixNodes {\n\t\t\tnod.ident = tname\n\t\t}\n\t\tr.child[0].ident = tname\n\t}\n\tif rtname != \"\" {\n\t\t// Replace method receiver type by synthetized ident.\n\t\tnod := r.child[0].child[0].child[1]\n\t\tif recvrPtr {\n\t\t\tnod = nod.child[0]\n\t\t}\n\t\tnod.kind = identExpr\n\t\tnod.ident = rtname\n\t\tnod.child = nil\n\t}\n\t// r.adot() // Used for debugging only.\n\treturn r, false, nil\n}\n\nfunc copyNode(n, anc *node, recursive bool) *node {\n\tvar i interface{}\n\tnindex := atomic.AddInt64(&n.interp.nindex, 1)\n\tnod := &node{\n\t\tdebug:  n.debug,\n\t\tanc:    anc,\n\t\tinterp: n.interp,\n\t\tindex:  nindex,\n\t\tlevel:  n.level,\n\t\tnleft:  n.nleft,\n\t\tnright: n.nright,\n\t\tkind:   n.kind,\n\t\tpos:    n.pos,\n\t\taction: n.action,\n\t\tgen:    n.gen,\n\t\tval:    &i,\n\t\trval:   n.rval,\n\t\tident:  n.ident,\n\t\tmeta:   n.meta,\n\t}\n\tnod.start = nod\n\tif recursive {\n\t\tfor _, c := range n.child {\n\t\t\tnod.child = append(nod.child, copyNode(c, nod, true))\n\t\t}\n\t}\n\treturn nod\n}\n\nfunc inferTypesFromCall(sc *scope, fun *node, args []*node) ([]*itype, error) {\n\tftn := fun.typ.node\n\t// Fill the map of parameter types, indexed by type param ident.\n\tparamTypes := map[string]*itype{}\n\tfor _, c := range ftn.child[0].child {\n\t\ttyp, err := nodeType(fun.interp, sc, c.lastChild())\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tfor _, cc := range c.child[:len(c.child)-1] {\n\t\t\tparamTypes[cc.ident] = typ\n\t\t}\n\t}\n\n\tvar inferTypes func(*itype, *itype) ([]*itype, error)\n\tinferTypes = func(param, input *itype) ([]*itype, error) {\n\t\tswitch param.cat {\n\t\tcase chanT, ptrT, sliceT:\n\t\t\treturn inferTypes(param.val, input.val)\n\n\t\tcase mapT:\n\t\t\tk, err := inferTypes(param.key, input.key)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tv, err := inferTypes(param.val, input.val)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\treturn append(k, v...), nil\n\n\t\tcase structT:\n\t\t\tlt := []*itype{}\n\t\t\tfor i, f := range param.field {\n\t\t\t\tnl, err := inferTypes(f.typ, input.field[i].typ)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\tlt = append(lt, nl...)\n\t\t\t}\n\t\t\treturn lt, nil\n\n\t\tcase funcT:\n\t\t\tlt := []*itype{}\n\t\t\tfor i, t := range param.arg {\n\t\t\t\tif i >= len(input.arg) {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tnl, err := inferTypes(t, input.arg[i])\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\tlt = append(lt, nl...)\n\t\t\t}\n\t\t\tfor i, t := range param.ret {\n\t\t\t\tif i >= len(input.ret) {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tnl, err := inferTypes(t, input.ret[i])\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\tlt = append(lt, nl...)\n\t\t\t}\n\t\t\treturn lt, nil\n\n\t\tcase nilT:\n\t\t\tif paramTypes[param.name] != nil {\n\t\t\t\treturn []*itype{input}, nil\n\t\t\t}\n\n\t\tcase genericT:\n\t\t\treturn []*itype{input}, nil\n\t\t}\n\t\treturn nil, nil\n\t}\n\n\ttypes := []*itype{}\n\tfor i, c := range ftn.child[1].child {\n\t\ttyp, err := nodeType(fun.interp, sc, c.lastChild())\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tlt, err := inferTypes(typ, args[i].typ)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\ttypes = append(types, lt...)\n\t}\n\n\treturn types, nil\n}\n\nfunc checkConstraint(it, ct *itype) error {\n\tif len(ct.constraint) == 0 && len(ct.ulconstraint) == 0 {\n\t\treturn nil\n\t}\n\tfor _, c := range ct.constraint {\n\t\tif it.equals(c) || it.matchDefault(c) {\n\t\t\treturn nil\n\t\t}\n\t}\n\tfor _, c := range ct.ulconstraint {\n\t\tif it.underlying().equals(c) || it.matchDefault(c) {\n\t\t\treturn nil\n\t\t}\n\t}\n\treturn it.node.cfgErrorf(\"%s does not implement %s\", it.id(), ct.id())\n}\n"
  },
  {
    "path": "interp/gta.go",
    "content": "package interp\n\nimport (\n\t\"path\"\n)\n\n// gta performs a global types analysis on the AST, registering types,\n// variables and functions symbols at package level, prior to CFG.\n// All function bodies are skipped. GTA is necessary to handle out of\n// order declarations and multiple source files packages.\n// rpath is the relative path to the directory containing the source for the package.\nfunc (interp *Interpreter) gta(root *node, rpath, importPath, pkgName string) ([]*node, error) {\n\tsc := interp.initScopePkg(importPath, pkgName)\n\tvar err error\n\tvar revisit []*node\n\n\tbaseName := path.Base(interp.fset.Position(root.pos).Filename)\n\n\troot.Walk(func(n *node) bool {\n\t\tif err != nil {\n\t\t\treturn false\n\t\t}\n\t\tif n.scope == nil {\n\t\t\tn.scope = sc\n\t\t}\n\t\tswitch n.kind {\n\t\tcase constDecl:\n\t\t\t// Early parse of constDecl subtree, to compute all constant\n\t\t\t// values which may be used in further declarations.\n\t\t\tif _, err = interp.cfg(n, sc, importPath, pkgName); err != nil {\n\t\t\t\t// No error processing here, to allow recovery in subtree nodes.\n\t\t\t\t// TODO(marc): check for a non recoverable error and return it for better diagnostic.\n\t\t\t\terr = nil\n\t\t\t}\n\n\t\tcase blockStmt:\n\t\t\tif n != root {\n\t\t\t\treturn false // skip statement block if not the entry point\n\t\t\t}\n\n\t\tcase defineStmt:\n\t\t\tvar (\n\t\t\t\tatyp *itype\n\t\t\t\terr2 error\n\t\t\t)\n\t\t\tif n.nleft+n.nright < len(n.child) {\n\t\t\t\t// Type is declared explicitly in the assign expression.\n\t\t\t\tif atyp, err2 = nodeType(interp, sc, n.child[n.nleft]); err2 != nil {\n\t\t\t\t\t// The type does not exist yet, stash the error and come back\n\t\t\t\t\t// when the type is known.\n\t\t\t\t\tn.meta = err2\n\t\t\t\t\trevisit = append(revisit, n)\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tvar sbase int\n\t\t\tif n.nright > 0 {\n\t\t\t\tsbase = len(n.child) - n.nright\n\t\t\t}\n\n\t\t\tfor i := 0; i < n.nleft; i++ {\n\t\t\t\tdest, src := n.child[i], n.child[sbase+i]\n\t\t\t\tif isBlank(src) {\n\t\t\t\t\terr = n.cfgErrorf(\"cannot use _ as value\")\n\t\t\t\t}\n\t\t\t\tval := src.rval\n\t\t\t\tif n.anc.kind == constDecl {\n\t\t\t\t\tif _, err2 := interp.cfg(n, sc, importPath, pkgName); err2 != nil {\n\t\t\t\t\t\t// Constant value can not be computed yet.\n\t\t\t\t\t\t// Come back when child dependencies are known.\n\t\t\t\t\t\trevisit = append(revisit, n)\n\t\t\t\t\t\treturn false\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\ttyp := atyp\n\t\t\t\tif typ == nil {\n\t\t\t\t\tif typ, err2 = nodeType(interp, sc, src); err2 != nil || typ == nil {\n\t\t\t\t\t\t// The type does is not known yet, stash the error and come back\n\t\t\t\t\t\t// when the type is known.\n\t\t\t\t\t\tn.meta = err2\n\t\t\t\t\t\trevisit = append(revisit, n)\n\t\t\t\t\t\treturn false\n\t\t\t\t\t}\n\t\t\t\t\tval = src.rval\n\t\t\t\t}\n\t\t\t\tif !typ.isComplete() {\n\t\t\t\t\t// Come back when type is known.\n\t\t\t\t\trevisit = append(revisit, n)\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\tif typ.cat == nilT {\n\t\t\t\t\terr = n.cfgErrorf(\"use of untyped nil\")\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\tif typ.isBinMethod {\n\t\t\t\t\ttyp = valueTOf(typ.methodCallType(), isBinMethod(), withScope(sc))\n\t\t\t\t}\n\t\t\t\tsc.sym[dest.ident] = &symbol{kind: varSym, global: true, index: sc.add(typ), typ: typ, rval: val, node: n}\n\t\t\t\tif n.anc.kind == constDecl {\n\t\t\t\t\tsc.sym[dest.ident].kind = constSym\n\t\t\t\t\tif childPos(n) == len(n.anc.child)-1 {\n\t\t\t\t\t\tsc.iota = 0\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsc.iota++\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false\n\n\t\tcase defineXStmt:\n\t\t\terr = compDefineX(sc, n)\n\n\t\tcase valueSpec:\n\t\t\tl := len(n.child) - 1\n\t\t\tif n.typ = n.child[l].typ; n.typ == nil {\n\t\t\t\tif n.typ, err = nodeType(interp, sc, n.child[l]); err != nil {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\tif !n.typ.isComplete() {\n\t\t\t\t\t// Come back when type is known.\n\t\t\t\t\trevisit = append(revisit, n)\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t}\n\t\t\tfor _, c := range n.child[:l] {\n\t\t\t\tasImportName := path.Join(c.ident, baseName)\n\t\t\t\tsym, exists := sc.sym[asImportName]\n\t\t\t\tif !exists {\n\t\t\t\t\tsc.sym[c.ident] = &symbol{index: sc.add(n.typ), kind: varSym, global: true, typ: n.typ, node: n}\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tc.level = globalFrame\n\n\t\t\t\t// redeclaration error\n\t\t\t\tif sym.typ.node != nil && sym.typ.node.anc != nil {\n\t\t\t\t\tprevDecl := n.interp.fset.Position(sym.typ.node.anc.pos)\n\t\t\t\t\terr = n.cfgErrorf(\"%s redeclared in this block\\n\\tprevious declaration at %v\", c.ident, prevDecl)\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\terr = n.cfgErrorf(\"%s redeclared in this block\", c.ident)\n\t\t\t\treturn false\n\t\t\t}\n\n\t\tcase funcDecl:\n\t\t\tif n.typ, err = nodeType(interp, sc, n.child[2]); err != nil {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tgenericMethod := false\n\t\t\tident := n.child[1].ident\n\t\t\tswitch {\n\t\t\tcase isMethod(n):\n\t\t\t\t// Add a method symbol in the receiver type name space\n\t\t\t\tvar rcvrtype *itype\n\t\t\t\tn.ident = ident\n\t\t\t\trcvr := n.child[0].child[0]\n\t\t\t\trtn := rcvr.lastChild()\n\t\t\t\ttypName, typPtr := rtn.ident, false\n\t\t\t\t// Identifies the receiver type name. It could be an ident, a\n\t\t\t\t// generic type (indexExpr), or a pointer on either lasts.\n\t\t\t\tif typName == \"\" {\n\t\t\t\t\ttypName = rtn.child[0].ident\n\t\t\t\t\tswitch rtn.kind {\n\t\t\t\t\tcase starExpr:\n\t\t\t\t\t\ttypPtr = true\n\t\t\t\t\t\tswitch c := rtn.child[0]; c.kind {\n\t\t\t\t\t\tcase indexExpr, indexListExpr:\n\t\t\t\t\t\t\ttypName = c.child[0].ident\n\t\t\t\t\t\t\tgenericMethod = true\n\t\t\t\t\t\t}\n\t\t\t\t\tcase indexExpr, indexListExpr:\n\t\t\t\t\t\tgenericMethod = true\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tsym, _, found := sc.lookup(typName)\n\t\t\t\tif !found {\n\t\t\t\t\tn.meta = n.cfgErrorf(\"undefined: %s\", typName)\n\t\t\t\t\trevisit = append(revisit, n)\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\tif sym.typ.path != pkgName {\n\t\t\t\t\terr = n.cfgErrorf(\"cannot define new methods on non-local type %s\", baseType(sym.typ).id())\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\trcvrtype = sym.typ\n\t\t\t\tif typPtr {\n\t\t\t\t\telementType := sym.typ\n\t\t\t\t\trcvrtype = ptrOf(elementType, withNode(rtn), withScope(sc))\n\t\t\t\t\trcvrtype.incomplete = elementType.incomplete\n\t\t\t\t\telementType.addMethod(n)\n\t\t\t\t}\n\t\t\t\trcvrtype.addMethod(n)\n\t\t\t\trtn.typ = rcvrtype\n\t\t\t\tif rcvrtype.cat == genericT {\n\t\t\t\t\t// generate methods for already instantiated receivers\n\t\t\t\t\tfor _, it := range rcvrtype.instance {\n\t\t\t\t\t\tif err = genMethod(interp, sc, it, n, it.node.anc.param); err != nil {\n\t\t\t\t\t\t\treturn false\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\tcase ident == \"init\":\n\t\t\t\t// init functions do not get declared as per the Go spec.\n\t\t\tdefault:\n\t\t\t\tasImportName := path.Join(ident, baseName)\n\t\t\t\tif _, exists := sc.sym[asImportName]; exists {\n\t\t\t\t\t// redeclaration error\n\t\t\t\t\terr = n.cfgErrorf(\"%s redeclared in this block\", ident)\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\t// Add a function symbol in the package name space except for init\n\t\t\t\tsc.sym[ident] = &symbol{kind: funcSym, typ: n.typ, node: n, index: -1}\n\t\t\t}\n\t\t\tif !n.typ.isComplete() && !genericMethod {\n\t\t\t\trevisit = append(revisit, n)\n\t\t\t}\n\t\t\treturn false\n\n\t\tcase importSpec:\n\t\t\tvar name, ipath string\n\t\t\tif len(n.child) == 2 {\n\t\t\t\tipath = constToString(n.child[1].rval)\n\t\t\t\tname = n.child[0].ident\n\t\t\t} else {\n\t\t\t\tipath = constToString(n.child[0].rval)\n\t\t\t}\n\t\t\t// Try to import a binary package first, or a source package\n\t\t\tvar pkgName string\n\t\t\tif packageName := path.Base(ipath); path.Dir(ipath) == packageName {\n\t\t\t\tipath = packageName\n\t\t\t}\n\t\t\tif pkg := interp.binPkg[ipath]; pkg != nil {\n\t\t\t\tswitch name {\n\t\t\t\tcase \"_\": // no import of symbols\n\t\t\t\tcase \".\": // import symbols in current scope\n\t\t\t\t\tfor n, v := range pkg {\n\t\t\t\t\t\ttyp := v.Type()\n\t\t\t\t\t\tkind := binSym\n\t\t\t\t\t\tif isBinType(v) {\n\t\t\t\t\t\t\ttyp = typ.Elem()\n\t\t\t\t\t\t\tkind = typeSym\n\t\t\t\t\t\t}\n\t\t\t\t\t\tsc.sym[n] = &symbol{kind: kind, typ: valueTOf(typ, withScope(sc)), rval: v}\n\t\t\t\t\t}\n\t\t\t\tdefault: // import symbols in package namespace\n\t\t\t\t\tif name == \"\" {\n\t\t\t\t\t\tname = interp.pkgNames[ipath]\n\t\t\t\t\t}\n\n\t\t\t\t\t// If an incomplete type exists, delete it\n\t\t\t\t\tif sym, exists := sc.sym[name]; exists && sym.kind == typeSym && sym.typ.incomplete {\n\t\t\t\t\t\tdelete(sc.sym, name)\n\t\t\t\t\t}\n\n\t\t\t\t\t// Imports of a same package are all mapped in the same scope, so we cannot just\n\t\t\t\t\t// map them by their names, otherwise we could have collisions from same-name\n\t\t\t\t\t// imports in different source files of the same package. Therefore, we suffix\n\t\t\t\t\t// the key with the basename of the source file.\n\t\t\t\t\tname = path.Join(name, baseName)\n\t\t\t\t\tif sym, exists := sc.sym[name]; !exists {\n\t\t\t\t\t\tsc.sym[name] = &symbol{kind: pkgSym, typ: &itype{cat: binPkgT, path: ipath, scope: sc}}\n\t\t\t\t\t\tbreak\n\t\t\t\t\t} else if sym.kind == pkgSym && sym.typ.cat == srcPkgT && sym.typ.path == ipath {\n\t\t\t\t\t\t// ignore re-import of identical package\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\n\t\t\t\t\t// redeclaration error. Not caught by the parser.\n\t\t\t\t\terr = n.cfgErrorf(\"%s redeclared in this block\", name)\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t} else if pkgName, err = interp.importSrc(rpath, ipath, NoTest); err == nil {\n\t\t\t\tsc.types = interp.universe.types\n\t\t\t\tswitch name {\n\t\t\t\tcase \"_\": // no import of symbols\n\t\t\t\tcase \".\": // import symbols in current namespace\n\t\t\t\t\tfor k, v := range interp.srcPkg[ipath] {\n\t\t\t\t\t\tif canExport(k) {\n\t\t\t\t\t\t\tsc.sym[k] = v\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\tdefault: // import symbols in package namespace\n\t\t\t\t\tif name == \"\" {\n\t\t\t\t\t\tname = pkgName\n\t\t\t\t\t}\n\t\t\t\t\tname = path.Join(name, baseName)\n\t\t\t\t\tif sym, exists := sc.sym[name]; !exists {\n\t\t\t\t\t\tsc.sym[name] = &symbol{kind: pkgSym, typ: &itype{cat: srcPkgT, path: ipath, scope: sc}}\n\t\t\t\t\t\tbreak\n\t\t\t\t\t} else if sym.kind == pkgSym && sym.typ.cat == srcPkgT && sym.typ.path == ipath {\n\t\t\t\t\t\t// ignore re-import of identical package\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\n\t\t\t\t\t// redeclaration error\n\t\t\t\t\terr = n.cfgErrorf(\"%s redeclared as imported package name\", name)\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\terr = n.cfgErrorf(\"import %q error: %v\", ipath, err)\n\t\t\t}\n\n\t\tcase typeSpec, typeSpecAssign:\n\t\t\tif isBlank(n.child[0]) {\n\t\t\t\terr = n.cfgErrorf(\"cannot use _ as value\")\n\t\t\t\treturn false\n\t\t\t}\n\t\t\ttypeName := n.child[0].ident\n\t\t\tif len(n.child) > 2 {\n\t\t\t\t// Handle a generic type: skip definition as parameter is not instantiated yet.\n\t\t\t\tn.typ = genericOf(nil, typeName, pkgName, withNode(n.child[0]), withScope(sc))\n\t\t\t\tif _, exists := sc.sym[typeName]; !exists {\n\t\t\t\t\tsc.sym[typeName] = &symbol{kind: typeSym, node: n}\n\t\t\t\t}\n\t\t\t\tsc.sym[typeName].typ = n.typ\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tvar typ *itype\n\t\t\tif typ, err = nodeType(interp, sc, n.child[1]); err != nil {\n\t\t\t\terr = nil\n\t\t\t\trevisit = append(revisit, n)\n\t\t\t\treturn false\n\t\t\t}\n\n\t\t\tif n.kind == typeSpecAssign {\n\t\t\t\t// Create an aliased type in the current scope\n\t\t\t\tsc.sym[typeName] = &symbol{kind: typeSym, node: n, typ: typ}\n\t\t\t\tn.typ = typ\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\t// else we are not an alias (typeSpec)\n\n\t\t\tswitch n.child[1].kind {\n\t\t\tcase identExpr, selectorExpr:\n\t\t\t\tn.typ = namedOf(typ, pkgName, typeName, withNode(n.child[0]), withScope(sc))\n\t\t\t\tn.typ.incomplete = typ.incomplete\n\t\t\t\tn.typ.field = typ.field\n\t\t\t\tcopy(n.typ.method, typ.method)\n\t\t\tdefault:\n\t\t\t\tn.typ = typ\n\t\t\t\tn.typ.name = typeName\n\t\t\t\tn.typ.path = pkgName\n\t\t\t}\n\t\t\tn.typ.str = n.typ.path + \".\" + n.typ.name\n\n\t\t\tasImportName := path.Join(typeName, baseName)\n\t\t\tif _, exists := sc.sym[asImportName]; exists {\n\t\t\t\t// redeclaration error\n\t\t\t\terr = n.cfgErrorf(\"%s redeclared in this block\", typeName)\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tsym, exists := sc.sym[typeName]\n\t\t\tif !exists {\n\t\t\t\tsym = &symbol{kind: typeSym, node: n}\n\t\t\t\tsc.sym[typeName] = sym\n\t\t\t} else if sym.typ != nil && (len(sym.typ.method) > 0) {\n\t\t\t\t// Type has already been seen as a receiver in a method function\n\t\t\t\tfor _, m := range sym.typ.method {\n\t\t\t\t\tn.typ.addMethod(m)\n\t\t\t\t}\n\t\t\t}\n\t\t\tsym.typ = n.typ\n\t\t\tif !n.typ.isComplete() {\n\t\t\t\trevisit = append(revisit, n)\n\t\t\t}\n\t\t\treturn false\n\t\t}\n\t\treturn true\n\t}, nil)\n\n\tif sc != interp.universe {\n\t\tsc.pop()\n\t}\n\treturn revisit, err\n}\n\nfunc baseType(t *itype) *itype {\n\tfor {\n\t\tswitch t.cat {\n\t\tcase ptrT, linkedT:\n\t\t\tt = t.val\n\t\tdefault:\n\t\t\treturn t\n\t\t}\n\t}\n}\n\n// gtaRetry (re)applies gta until all global constants and types are defined.\nfunc (interp *Interpreter) gtaRetry(nodes []*node, importPath, pkgName string) error {\n\trevisit := []*node{}\n\tfor {\n\t\tfor _, n := range nodes {\n\t\t\tlist, err := interp.gta(n, importPath, importPath, pkgName)\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\trevisit = append(revisit, list...)\n\t\t}\n\n\t\tif len(revisit) == 0 || equalNodes(nodes, revisit) {\n\t\t\tbreak\n\t\t}\n\n\t\tnodes = revisit\n\t\trevisit = []*node{}\n\t}\n\n\tif len(revisit) > 0 {\n\t\tn := revisit[0]\n\t\tswitch n.kind {\n\t\tcase typeSpec, typeSpecAssign:\n\t\t\tif err := definedType(n.typ); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\tcase defineStmt, funcDecl:\n\t\t\tif err, ok := n.meta.(error); ok {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t\treturn n.cfgErrorf(\"constant definition loop\")\n\t}\n\treturn nil\n}\n\nfunc definedType(typ *itype) error {\n\tif !typ.incomplete {\n\t\treturn nil\n\t}\n\tswitch typ.cat {\n\tcase interfaceT, structT:\n\t\tfor _, f := range typ.field {\n\t\t\tif err := definedType(f.typ); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\tcase funcT:\n\t\tfor _, t := range typ.arg {\n\t\t\tif err := definedType(t); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t\tfor _, t := range typ.ret {\n\t\t\tif err := definedType(t); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\tcase mapT:\n\t\tif err := definedType(typ.key); err != nil {\n\t\t\treturn err\n\t\t}\n\t\tfallthrough\n\tcase linkedT, arrayT, chanT, chanSendT, chanRecvT, ptrT, variadicT:\n\t\tif err := definedType(typ.val); err != nil {\n\t\t\treturn err\n\t\t}\n\tcase nilT:\n\t\treturn typ.node.cfgErrorf(\"undefined: %s\", typ.node.ident)\n\t}\n\treturn nil\n}\n\n// equalNodes returns true if two slices of nodes are identical.\nfunc equalNodes(a, b []*node) bool {\n\tif len(a) != len(b) {\n\t\treturn false\n\t}\n\tfor i, n := range a {\n\t\tif n != b[i] {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n"
  },
  {
    "path": "interp/hooks.go",
    "content": "package interp\n\nimport \"reflect\"\n\n// convertFn is the signature of a symbol converter.\ntype convertFn func(from, to reflect.Type) func(src, dest reflect.Value)\n\n// hooks are external symbol bindings.\ntype hooks struct {\n\tconvert []convertFn\n}\n\nfunc (h *hooks) Parse(m map[string]reflect.Value) {\n\tif con, ok := getConvertFn(m[\"convert\"]); ok {\n\t\th.convert = append(h.convert, con)\n\t}\n}\n\nfunc getConvertFn(v reflect.Value) (convertFn, bool) {\n\tif !v.IsValid() {\n\t\treturn nil, false\n\t}\n\tfn, ok := v.Interface().(func(from, to reflect.Type) func(src, dest reflect.Value))\n\tif !ok {\n\t\treturn nil, false\n\t}\n\treturn fn, true\n}\n"
  },
  {
    "path": "interp/interp.go",
    "content": "package interp\n\nimport (\n\t\"bufio\"\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\t\"go/build\"\n\t\"go/scanner\"\n\t\"go/token\"\n\t\"io\"\n\t\"io/fs\"\n\t\"os\"\n\t\"os/signal\"\n\t\"path\"\n\t\"path/filepath\"\n\t\"reflect\"\n\t\"runtime\"\n\t\"runtime/debug\"\n\t\"strconv\"\n\t\"strings\"\n\t\"sync\"\n\t\"sync/atomic\"\n)\n\n// Interpreter node structure for AST and CFG.\ntype node struct {\n\tdebug      *nodeDebugData // debug info\n\tchild      []*node        // child subtrees (AST)\n\tanc        *node          // ancestor (AST)\n\tparam      []*itype       // generic parameter nodes (AST)\n\tstart      *node          // entry point in subtree (CFG)\n\ttnext      *node          // true branch successor (CFG)\n\tfnext      *node          // false branch successor (CFG)\n\tinterp     *Interpreter   // interpreter context\n\tindex      int64          // node index (dot display)\n\tfindex     int            // index of value in frame or frame size (func def, type def)\n\tlevel      int            // number of frame indirections to access value\n\tnleft      int            // number of children in left part (assign) or indicates preceding type (compositeLit)\n\tnright     int            // number of children in right part (assign)\n\tkind       nkind          // kind of node\n\tpos        token.Pos      // position in source code, relative to fset\n\tsym        *symbol        // associated symbol\n\ttyp        *itype         // type of value in frame, or nil\n\trecv       *receiver      // method receiver node for call, or nil\n\ttypes      []reflect.Type // frame types, used by function literals only\n\tscope      *scope         // frame scope\n\taction     action         // action\n\texec       bltn           // generated function to execute\n\tgen        bltnGenerator  // generator function to produce above bltn\n\tval        interface{}    // static generic value (CFG execution)\n\trval       reflect.Value  // reflection value to let runtime access interpreter (CFG)\n\tident      string         // set if node is a var or func\n\tredeclared bool           // set if node is a redeclared variable (CFG)\n\tmeta       interface{}    // meta stores meta information between gta runs, like errors\n}\n\nfunc (n *node) shouldBreak() bool {\n\tif n == nil || n.debug == nil {\n\t\treturn false\n\t}\n\n\tif n.debug.breakOnLine || n.debug.breakOnCall {\n\t\treturn true\n\t}\n\n\treturn false\n}\n\nfunc (n *node) setProgram(p *Program) {\n\tif n.debug == nil {\n\t\tn.debug = new(nodeDebugData)\n\t}\n\tn.debug.program = p\n}\n\nfunc (n *node) setBreakOnCall(v bool) {\n\tif n.debug == nil {\n\t\tif !v {\n\t\t\treturn\n\t\t}\n\t\tn.debug = new(nodeDebugData)\n\t}\n\tn.debug.breakOnCall = v\n}\n\nfunc (n *node) setBreakOnLine(v bool) {\n\tif n.debug == nil {\n\t\tif !v {\n\t\t\treturn\n\t\t}\n\t\tn.debug = new(nodeDebugData)\n\t}\n\tn.debug.breakOnLine = v\n}\n\n// receiver stores method receiver object access path.\ntype receiver struct {\n\tnode  *node         // receiver value for alias and struct types\n\tval   reflect.Value // receiver value for interface type and value type\n\tindex []int         // path in receiver value for interface or value type\n}\n\n// frame contains values for the current execution level (a function context).\ntype frame struct {\n\t// id is an atomic counter used for cancellation, only accessed\n\t// via newFrame/runid/setrunid/clone.\n\t// Located at start of struct to ensure proper alignment.\n\tid uint64\n\n\tdebug *frameDebugData\n\n\troot *frame          // global space\n\tanc  *frame          // ancestor frame (caller space)\n\tdata []reflect.Value // values\n\n\tmutex     sync.RWMutex\n\tdeferred  [][]reflect.Value  // defer stack\n\trecovered interface{}        // to handle panic recover\n\tdone      reflect.SelectCase // for cancellation of channel operations\n}\n\nfunc newFrame(anc *frame, length int, id uint64) *frame {\n\tf := &frame{\n\t\tanc:  anc,\n\t\tdata: make([]reflect.Value, length),\n\t\tid:   id,\n\t}\n\tif anc == nil {\n\t\tf.root = f\n\t} else {\n\t\tf.done = anc.done\n\t\tf.root = anc.root\n\t}\n\treturn f\n}\n\nfunc (f *frame) runid() uint64      { return atomic.LoadUint64(&f.id) }\nfunc (f *frame) setrunid(id uint64) { atomic.StoreUint64(&f.id, id) }\nfunc (f *frame) clone() *frame {\n\tf.mutex.RLock()\n\tdefer f.mutex.RUnlock()\n\tnf := &frame{\n\t\tanc:       f.anc,\n\t\troot:      f.root,\n\t\tdeferred:  f.deferred,\n\t\trecovered: f.recovered,\n\t\tid:        f.runid(),\n\t\tdone:      f.done,\n\t\tdebug:     f.debug,\n\t}\n\tnf.data = make([]reflect.Value, len(f.data))\n\tcopy(nf.data, f.data)\n\treturn nf\n}\n\n// Exports stores the map of binary packages per package path.\n// The package path is the path joined from the import path and the package name\n// as specified in source files by the \"package\" statement.\ntype Exports map[string]map[string]reflect.Value\n\n// imports stores the map of source packages per package path.\ntype imports map[string]map[string]*symbol\n\n// opt stores interpreter options.\ntype opt struct {\n\t// dotCmd is the command to process the dot graph produced when astDot and/or\n\t// cfgDot is enabled. It defaults to 'dot -Tdot -o <filename>.dot'.\n\tdotCmd       string\n\tcontext      build.Context     // build context: GOPATH, build constraints\n\tstdin        io.Reader         // standard input\n\tstdout       io.Writer         // standard output\n\tstderr       io.Writer         // standard error\n\targs         []string          // cmdline args\n\tenv          map[string]string // environment of interpreter, entries in form of \"key=value\"\n\tfilesystem   fs.FS             // filesystem containing sources\n\tastDot       bool              // display AST graph (debug)\n\tcfgDot       bool              // display CFG graph (debug)\n\tnoRun        bool              // compile, but do not run\n\tfastChan     bool              // disable cancellable chan operations\n\tspecialStdio bool              // allows os.Stdin, os.Stdout, os.Stderr to not be file descriptors\n\tunrestricted bool              // allow use of non-sandboxed symbols\n}\n\n// Interpreter contains global resources and state.\ntype Interpreter struct {\n\t// id is an atomic counter used for run cancellation,\n\t// only accessed via runid/stop\n\t// Located at start of struct to ensure proper alignment on 32-bit\n\t// architectures.\n\tid uint64\n\n\t// nindex is a node number incremented for each new node.\n\t// It is used for debug (AST and CFG graphs). As it is atomically\n\t// incremented, keep it aligned on 64 bits boundary.\n\tnindex int64\n\n\tname string // name of the input source file (or main)\n\n\topt                                         // user settable options\n\tcancelChan bool                             // enables cancellable chan operations\n\tfset       *token.FileSet                   // fileset to locate node in source code\n\tbinPkg     Exports                          // binary packages used in interpreter, indexed by path\n\trdir       map[string]bool                  // for src import cycle detection\n\tmapTypes   map[reflect.Value][]reflect.Type // special interfaces mapping for wrappers\n\n\tmutex    sync.RWMutex\n\tframe    *frame            // program data storage during execution\n\tuniverse *scope            // interpreter global level scope\n\tscopes   map[string]*scope // package level scopes, indexed by import path\n\tsrcPkg   imports           // source packages used in interpreter, indexed by path\n\tpkgNames map[string]string // package names, indexed by import path\n\tdone     chan struct{}     // for cancellation of channel operations\n\troots    []*node\n\tgeneric  map[string]*node\n\n\thooks *hooks // symbol hooks\n\n\tdebugger *Debugger\n}\n\nconst (\n\tmainID     = \"main\"\n\tselfPrefix = \"github.com/traefik/yaegi\"\n\tselfPath   = selfPrefix + \"/interp/interp\"\n\t// DefaultSourceName is the name used by default when the name of the input\n\t// source file has not been specified for an Eval.\n\t// TODO(mpl): something even more special as a name?\n\tDefaultSourceName = \"_.go\"\n\n\t// Test is the value to pass to EvalPath to activate evaluation of test functions.\n\tTest = false\n\t// NoTest is the value to pass to EvalPath to skip evaluation of test functions.\n\tNoTest = true\n)\n\n// Self points to the current interpreter if accessed from within itself, or is nil.\nvar Self *Interpreter\n\n// Symbols exposes interpreter values.\nvar Symbols = Exports{\n\tselfPath: map[string]reflect.Value{\n\t\t\"New\": reflect.ValueOf(New),\n\n\t\t\"Interpreter\": reflect.ValueOf((*Interpreter)(nil)),\n\t\t\"Options\":     reflect.ValueOf((*Options)(nil)),\n\t\t\"Panic\":       reflect.ValueOf((*Panic)(nil)),\n\t},\n}\n\nfunc init() { Symbols[selfPath][\"Symbols\"] = reflect.ValueOf(Symbols) }\n\n// _error is a wrapper of error interface type.\ntype _error struct {\n\tIValue interface{}\n\tWError func() string\n}\n\nfunc (w _error) Error() string { return w.WError() }\n\n// Panic is an error recovered from a panic call in interpreted code.\ntype Panic struct {\n\t// Value is the recovered value of a call to panic.\n\tValue interface{}\n\n\t// Callers is the call stack obtained from the recover call.\n\t// It may be used as the parameter to runtime.CallersFrames.\n\tCallers []uintptr\n\n\t// Stack is the call stack buffer for debug.\n\tStack []byte\n}\n\n// TODO: Capture interpreter stack frames also and remove\n// fmt.Fprintln(n.interp.stderr, oNode.cfgErrorf(\"panic\")) in runCfg.\n\nfunc (e Panic) Error() string { return fmt.Sprint(e.Value) }\n\n// Walk traverses AST n in depth first order, call cbin function\n// at node entry and cbout function at node exit.\nfunc (n *node) Walk(in func(n *node) bool, out func(n *node)) {\n\tif in != nil && !in(n) {\n\t\treturn\n\t}\n\tfor _, child := range n.child {\n\t\tchild.Walk(in, out)\n\t}\n\tif out != nil {\n\t\tout(n)\n\t}\n}\n\n// Options are the interpreter options.\ntype Options struct {\n\t// GoPath sets GOPATH for the interpreter.\n\tGoPath string\n\n\t// BuildTags sets build constraints for the interpreter.\n\tBuildTags []string\n\n\t// Standard input, output and error streams.\n\t// They default to os.Stdin, os.Stdout and os.Stderr respectively.\n\tStdin          io.Reader\n\tStdout, Stderr io.Writer\n\n\t// Cmdline args, defaults to os.Args.\n\tArgs []string\n\n\t// Environment of interpreter. Entries are in the form \"key=values\".\n\tEnv []string\n\n\t// SourcecodeFilesystem is where the _sourcecode_ is loaded from and does\n\t// NOT affect the filesystem of scripts when they run.\n\t// It can be any fs.FS compliant filesystem (e.g. embed.FS, or fstest.MapFS for testing)\n\t// See example/fs/fs_test.go for an example.\n\tSourcecodeFilesystem fs.FS\n\n\t// Unrestricted allows to run non sandboxed stdlib symbols such as os/exec and environment\n\tUnrestricted bool\n}\n\n// New returns a new interpreter.\nfunc New(options Options) *Interpreter {\n\ti := Interpreter{\n\t\topt:      opt{context: build.Default, filesystem: &realFS{}, env: map[string]string{}},\n\t\tframe:    newFrame(nil, 0, 0),\n\t\tfset:     token.NewFileSet(),\n\t\tuniverse: initUniverse(),\n\t\tscopes:   map[string]*scope{},\n\t\tbinPkg:   Exports{\"\": map[string]reflect.Value{\"_error\": reflect.ValueOf((*_error)(nil))}},\n\t\tmapTypes: map[reflect.Value][]reflect.Type{},\n\t\tsrcPkg:   imports{},\n\t\tpkgNames: map[string]string{},\n\t\trdir:     map[string]bool{},\n\t\thooks:    &hooks{},\n\t\tgeneric:  map[string]*node{},\n\t}\n\n\tif i.opt.stdin = options.Stdin; i.opt.stdin == nil {\n\t\ti.opt.stdin = os.Stdin\n\t}\n\n\tif i.opt.stdout = options.Stdout; i.opt.stdout == nil {\n\t\ti.opt.stdout = os.Stdout\n\t}\n\n\tif i.opt.stderr = options.Stderr; i.opt.stderr == nil {\n\t\ti.opt.stderr = os.Stderr\n\t}\n\n\tif i.opt.args = options.Args; i.opt.args == nil {\n\t\ti.opt.args = os.Args\n\t}\n\n\t// unrestricted allows to use non sandboxed stdlib symbols and env.\n\tif options.Unrestricted {\n\t\ti.opt.unrestricted = true\n\t} else {\n\t\tfor _, e := range options.Env {\n\t\t\ta := strings.SplitN(e, \"=\", 2)\n\t\t\tif len(a) == 2 {\n\t\t\t\ti.opt.env[a[0]] = a[1]\n\t\t\t} else {\n\t\t\t\ti.opt.env[a[0]] = \"\"\n\t\t\t}\n\t\t}\n\t}\n\n\tif options.SourcecodeFilesystem != nil {\n\t\ti.opt.filesystem = options.SourcecodeFilesystem\n\t}\n\n\ti.opt.context.GOPATH = options.GoPath\n\tif len(options.BuildTags) > 0 {\n\t\ti.opt.context.BuildTags = options.BuildTags\n\t}\n\n\t// astDot activates AST graph display for the interpreter\n\ti.opt.astDot, _ = strconv.ParseBool(os.Getenv(\"YAEGI_AST_DOT\"))\n\n\t// cfgDot activates CFG graph display for the interpreter\n\ti.opt.cfgDot, _ = strconv.ParseBool(os.Getenv(\"YAEGI_CFG_DOT\"))\n\n\t// dotCmd defines how to process the dot code generated whenever astDot and/or\n\t// cfgDot is enabled. It defaults to 'dot -Tdot -o<filename>.dot' where filename\n\t// is context dependent.\n\ti.opt.dotCmd = os.Getenv(\"YAEGI_DOT_CMD\")\n\n\t// noRun disables the execution (but not the compilation) in the interpreter\n\ti.opt.noRun, _ = strconv.ParseBool(os.Getenv(\"YAEGI_NO_RUN\"))\n\n\t// fastChan disables the cancellable version of channel operations in evalWithContext\n\ti.opt.fastChan, _ = strconv.ParseBool(os.Getenv(\"YAEGI_FAST_CHAN\"))\n\n\t// specialStdio allows to assign directly io.Writer and io.Reader to os.Stdxxx,\n\t// even if they are not file descriptors.\n\ti.opt.specialStdio, _ = strconv.ParseBool(os.Getenv(\"YAEGI_SPECIAL_STDIO\"))\n\n\treturn &i\n}\n\nconst (\n\tbltnAlignof  = \"unsafe.Alignof\"\n\tbltnAppend   = \"append\"\n\tbltnCap      = \"cap\"\n\tbltnClose    = \"close\"\n\tbltnComplex  = \"complex\"\n\tbltnImag     = \"imag\"\n\tbltnCopy     = \"copy\"\n\tbltnDelete   = \"delete\"\n\tbltnLen      = \"len\"\n\tbltnMake     = \"make\"\n\tbltnNew      = \"new\"\n\tbltnOffsetof = \"unsafe.Offsetof\"\n\tbltnPanic    = \"panic\"\n\tbltnPrint    = \"print\"\n\tbltnPrintln  = \"println\"\n\tbltnReal     = \"real\"\n\tbltnRecover  = \"recover\"\n\tbltnSizeof   = \"unsafe.Sizeof\"\n)\n\nfunc initUniverse() *scope {\n\tsc := &scope{global: true, sym: map[string]*symbol{\n\t\t// predefined Go types\n\t\t\"any\":         {kind: typeSym, typ: &itype{cat: interfaceT, str: \"any\"}},\n\t\t\"bool\":        {kind: typeSym, typ: &itype{cat: boolT, name: \"bool\", str: \"bool\"}},\n\t\t\"byte\":        {kind: typeSym, typ: &itype{cat: uint8T, name: \"uint8\", str: \"uint8\"}},\n\t\t\"comparable\":  {kind: typeSym, typ: &itype{cat: comparableT, name: \"comparable\", str: \"comparable\"}},\n\t\t\"complex64\":   {kind: typeSym, typ: &itype{cat: complex64T, name: \"complex64\", str: \"complex64\"}},\n\t\t\"complex128\":  {kind: typeSym, typ: &itype{cat: complex128T, name: \"complex128\", str: \"complex128\"}},\n\t\t\"error\":       {kind: typeSym, typ: &itype{cat: errorT, name: \"error\", str: \"error\"}},\n\t\t\"float32\":     {kind: typeSym, typ: &itype{cat: float32T, name: \"float32\", str: \"float32\"}},\n\t\t\"float64\":     {kind: typeSym, typ: &itype{cat: float64T, name: \"float64\", str: \"float64\"}},\n\t\t\"int\":         {kind: typeSym, typ: &itype{cat: intT, name: \"int\", str: \"int\"}},\n\t\t\"int8\":        {kind: typeSym, typ: &itype{cat: int8T, name: \"int8\", str: \"int8\"}},\n\t\t\"int16\":       {kind: typeSym, typ: &itype{cat: int16T, name: \"int16\", str: \"int16\"}},\n\t\t\"int32\":       {kind: typeSym, typ: &itype{cat: int32T, name: \"int32\", str: \"int32\"}},\n\t\t\"int64\":       {kind: typeSym, typ: &itype{cat: int64T, name: \"int64\", str: \"int64\"}},\n\t\t\"interface{}\": {kind: typeSym, typ: &itype{cat: interfaceT, str: \"interface{}\"}},\n\t\t\"rune\":        {kind: typeSym, typ: &itype{cat: int32T, name: \"int32\", str: \"int32\"}},\n\t\t\"string\":      {kind: typeSym, typ: &itype{cat: stringT, name: \"string\", str: \"string\"}},\n\t\t\"uint\":        {kind: typeSym, typ: &itype{cat: uintT, name: \"uint\", str: \"uint\"}},\n\t\t\"uint8\":       {kind: typeSym, typ: &itype{cat: uint8T, name: \"uint8\", str: \"uint8\"}},\n\t\t\"uint16\":      {kind: typeSym, typ: &itype{cat: uint16T, name: \"uint16\", str: \"uint16\"}},\n\t\t\"uint32\":      {kind: typeSym, typ: &itype{cat: uint32T, name: \"uint32\", str: \"uint32\"}},\n\t\t\"uint64\":      {kind: typeSym, typ: &itype{cat: uint64T, name: \"uint64\", str: \"uint64\"}},\n\t\t\"uintptr\":     {kind: typeSym, typ: &itype{cat: uintptrT, name: \"uintptr\", str: \"uintptr\"}},\n\n\t\t// predefined Go constants\n\t\t\"false\": {kind: constSym, typ: untypedBool(nil), rval: reflect.ValueOf(false)},\n\t\t\"true\":  {kind: constSym, typ: untypedBool(nil), rval: reflect.ValueOf(true)},\n\t\t\"iota\":  {kind: constSym, typ: untypedInt(nil)},\n\n\t\t// predefined Go zero value\n\t\t\"nil\": {typ: &itype{cat: nilT, untyped: true, str: \"nil\"}},\n\n\t\t// predefined Go builtins\n\t\tbltnAppend:  {kind: bltnSym, builtin: _append},\n\t\tbltnCap:     {kind: bltnSym, builtin: _cap},\n\t\tbltnClose:   {kind: bltnSym, builtin: _close},\n\t\tbltnComplex: {kind: bltnSym, builtin: _complex},\n\t\tbltnImag:    {kind: bltnSym, builtin: _imag},\n\t\tbltnCopy:    {kind: bltnSym, builtin: _copy},\n\t\tbltnDelete:  {kind: bltnSym, builtin: _delete},\n\t\tbltnLen:     {kind: bltnSym, builtin: _len},\n\t\tbltnMake:    {kind: bltnSym, builtin: _make},\n\t\tbltnNew:     {kind: bltnSym, builtin: _new},\n\t\tbltnPanic:   {kind: bltnSym, builtin: _panic},\n\t\tbltnPrint:   {kind: bltnSym, builtin: _print},\n\t\tbltnPrintln: {kind: bltnSym, builtin: _println},\n\t\tbltnReal:    {kind: bltnSym, builtin: _real},\n\t\tbltnRecover: {kind: bltnSym, builtin: _recover},\n\t}}\n\treturn sc\n}\n\n// resizeFrame resizes the global frame of interpreter.\nfunc (interp *Interpreter) resizeFrame() {\n\tl := len(interp.universe.types)\n\tb := len(interp.frame.data)\n\tif l-b <= 0 {\n\t\treturn\n\t}\n\tdata := make([]reflect.Value, l)\n\tcopy(data, interp.frame.data)\n\tfor j, t := range interp.universe.types[b:] {\n\t\tdata[b+j] = reflect.New(t).Elem()\n\t}\n\tinterp.frame.data = data\n}\n\n// Eval evaluates Go code represented as a string. Eval returns the last result\n// computed by the interpreter, and a non nil error in case of failure.\nfunc (interp *Interpreter) Eval(src string) (res reflect.Value, err error) {\n\treturn interp.eval(src, \"\", true)\n}\n\n// EvalPath evaluates Go code located at path and returns the last result computed\n// by the interpreter, and a non nil error in case of failure.\n// The main function of the main package is executed if present.\nfunc (interp *Interpreter) EvalPath(path string) (res reflect.Value, err error) {\n\tpath = filepath.ToSlash(path) // Ensure path is in Unix format. Since we work with fs.FS, we need to use Unix path.\n\tif !isFile(interp.opt.filesystem, path) {\n\t\t_, err := interp.importSrc(mainID, path, NoTest)\n\t\treturn res, err\n\t}\n\n\tb, err := fs.ReadFile(interp.filesystem, path)\n\tif err != nil {\n\t\treturn res, err\n\t}\n\treturn interp.eval(string(b), path, false)\n}\n\n// EvalPathWithContext evaluates Go code located at path and returns the last\n// result computed by the interpreter, and a non nil error in case of failure.\n// The main function of the main package is executed if present.\nfunc (interp *Interpreter) EvalPathWithContext(ctx context.Context, path string) (res reflect.Value, err error) {\n\tinterp.mutex.Lock()\n\tinterp.done = make(chan struct{})\n\tinterp.cancelChan = !interp.opt.fastChan\n\tinterp.mutex.Unlock()\n\n\tdone := make(chan struct{})\n\tgo func() {\n\t\tdefer close(done)\n\t\tres, err = interp.EvalPath(path)\n\t}()\n\n\tselect {\n\tcase <-ctx.Done():\n\t\tinterp.stop()\n\t\treturn reflect.Value{}, ctx.Err()\n\tcase <-done:\n\t}\n\treturn res, err\n}\n\n// EvalTest evaluates Go code located at path, including test files with \"_test.go\" suffix.\n// A non nil error is returned in case of failure.\n// The main function, test functions and benchmark functions are internally compiled but not\n// executed. Test functions can be retrieved using the Symbol() method.\nfunc (interp *Interpreter) EvalTest(path string) error {\n\t_, err := interp.importSrc(mainID, path, Test)\n\treturn err\n}\n\nfunc isFile(filesystem fs.FS, path string) bool {\n\tfi, err := fs.Stat(filesystem, path)\n\treturn err == nil && fi.Mode().IsRegular()\n}\n\nfunc (interp *Interpreter) eval(src, name string, inc bool) (res reflect.Value, err error) {\n\tprog, err := interp.compileSrc(src, name, inc)\n\tif err != nil {\n\t\treturn res, err\n\t}\n\n\tif interp.noRun {\n\t\treturn res, err\n\t}\n\n\treturn interp.Execute(prog)\n}\n\n// EvalWithContext evaluates Go code represented as a string. It returns\n// a map on current interpreted package exported symbols.\nfunc (interp *Interpreter) EvalWithContext(ctx context.Context, src string) (reflect.Value, error) {\n\tvar v reflect.Value\n\tvar err error\n\n\tinterp.mutex.Lock()\n\tinterp.done = make(chan struct{})\n\tinterp.cancelChan = !interp.opt.fastChan\n\tinterp.mutex.Unlock()\n\n\tdone := make(chan struct{})\n\tgo func() {\n\t\tdefer func() {\n\t\t\tif r := recover(); r != nil {\n\t\t\t\tvar pc [64]uintptr\n\t\t\t\tn := runtime.Callers(1, pc[:])\n\t\t\t\terr = Panic{Value: r, Callers: pc[:n], Stack: debug.Stack()}\n\t\t\t}\n\t\t\tclose(done)\n\t\t}()\n\t\tv, err = interp.Eval(src)\n\t}()\n\n\tselect {\n\tcase <-ctx.Done():\n\t\tinterp.stop()\n\t\treturn reflect.Value{}, ctx.Err()\n\tcase <-done:\n\t}\n\treturn v, err\n}\n\n// stop sends a semaphore to all running frames and closes the chan\n// operation short circuit channel. stop may only be called once per\n// invocation of EvalWithContext.\nfunc (interp *Interpreter) stop() {\n\tatomic.AddUint64(&interp.id, 1)\n\tclose(interp.done)\n}\n\nfunc (interp *Interpreter) runid() uint64 { return atomic.LoadUint64(&interp.id) }\n\n// ignoreScannerError returns true if the error from Go scanner can be safely ignored\n// to let the caller grab one more line before retrying to parse its input.\nfunc ignoreScannerError(e *scanner.Error, s string) bool {\n\tmsg := e.Msg\n\tif strings.HasSuffix(msg, \"found 'EOF'\") {\n\t\treturn true\n\t}\n\tif msg == \"raw string literal not terminated\" {\n\t\treturn true\n\t}\n\tif strings.HasPrefix(msg, \"expected operand, found '}'\") && !strings.HasSuffix(s, \"}\") {\n\t\treturn true\n\t}\n\treturn false\n}\n\n// ImportUsed automatically imports pre-compiled packages included by Use().\n// This is mainly useful for REPLs, or single command lines. In case of an ambiguous default\n// package name, for example \"rand\" for crypto/rand and math/rand, the package name is\n// constructed by replacing the last \"/\" by a \"_\", producing crypto_rand and math_rand.\n// ImportUsed should not be called more than once, and not after a first Eval, as it may\n// rename packages.\nfunc (interp *Interpreter) ImportUsed() {\n\tsc := interp.universe\n\tfor k := range interp.binPkg {\n\t\t// By construction, the package name is the last path element of the key.\n\t\tname := path.Base(k)\n\t\tif sym, ok := sc.sym[name]; ok {\n\t\t\t// Handle collision by renaming old and new entries.\n\t\t\tname2 := key2name(fixKey(sym.typ.path))\n\t\t\tsc.sym[name2] = sym\n\t\t\tif name2 != name {\n\t\t\t\tdelete(sc.sym, name)\n\t\t\t}\n\t\t\tname = key2name(fixKey(k))\n\t\t}\n\t\tsc.sym[name] = &symbol{kind: pkgSym, typ: &itype{cat: binPkgT, path: k, scope: sc}}\n\t}\n}\n\nfunc key2name(name string) string {\n\treturn path.Join(name, DefaultSourceName)\n}\n\nfunc fixKey(k string) string {\n\ti := strings.LastIndex(k, \"/\")\n\tif i >= 0 {\n\t\tk = k[:i] + \"_\" + k[i+1:]\n\t}\n\treturn k\n}\n\n// REPL performs a Read-Eval-Print-Loop on input reader.\n// Results are printed to the output writer of the Interpreter, provided as option\n// at creation time. Errors are printed to the similarly defined errors writer.\n// The last interpreter result value and error are returned.\nfunc (interp *Interpreter) REPL() (reflect.Value, error) {\n\tin, out, errs := interp.stdin, interp.stdout, interp.stderr\n\tctx, cancel := context.WithCancel(context.Background())\n\tend := make(chan struct{})     // channel to terminate the REPL\n\tsig := make(chan os.Signal, 1) // channel to trap interrupt signal (Ctrl-C)\n\tlines := make(chan string)     // channel to read REPL input lines\n\tprompt := getPrompt(in, out)   // prompt activated on tty like IO stream\n\ts := bufio.NewScanner(in)      // read input stream line by line\n\tvar v reflect.Value            // result value from eval\n\tvar err error                  // error from eval\n\tsrc := \"\"                      // source string to evaluate\n\n\tsignal.Notify(sig, os.Interrupt)\n\tdefer signal.Stop(sig)\n\tprompt(v)\n\n\tgo func() {\n\t\tdefer close(end)\n\t\tfor s.Scan() {\n\t\t\tlines <- s.Text()\n\t\t}\n\t\tif e := s.Err(); e != nil {\n\t\t\tfmt.Fprintln(errs, e)\n\t\t}\n\t}()\n\n\tgo func() {\n\t\tfor {\n\t\t\tselect {\n\t\t\tcase <-sig:\n\t\t\t\tcancel()\n\t\t\t\tlines <- \"\"\n\t\t\tcase <-end:\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t}()\n\n\tfor {\n\t\tvar line string\n\n\t\tselect {\n\t\tcase <-end:\n\t\t\tcancel()\n\t\t\treturn v, err\n\t\tcase line = <-lines:\n\t\t\tsrc += line + \"\\n\"\n\t\t}\n\n\t\tv, err = interp.EvalWithContext(ctx, src)\n\t\tif err != nil {\n\t\t\tswitch e := err.(type) {\n\t\t\tcase scanner.ErrorList:\n\t\t\t\tif len(e) > 0 && ignoreScannerError(e[0], line) {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tfmt.Fprintln(errs, strings.TrimPrefix(e[0].Error(), DefaultSourceName+\":\"))\n\t\t\tcase Panic:\n\t\t\t\tfmt.Fprintln(errs, e.Value)\n\t\t\t\tfmt.Fprintln(errs, string(e.Stack))\n\t\t\tdefault:\n\t\t\t\tfmt.Fprintln(errs, err)\n\t\t\t}\n\t\t}\n\t\tif errors.Is(err, context.Canceled) {\n\t\t\tctx, cancel = context.WithCancel(context.Background())\n\t\t}\n\t\tsrc = \"\"\n\t\tprompt(v)\n\t}\n}\n\nfunc doPrompt(out io.Writer) func(v reflect.Value) {\n\treturn func(v reflect.Value) {\n\t\tif v.IsValid() {\n\t\t\tfmt.Fprintln(out, \":\", v)\n\t\t}\n\t\tfmt.Fprint(out, \"> \")\n\t}\n}\n\n// getPrompt returns a function which prints a prompt only if input is a terminal.\nfunc getPrompt(in io.Reader, out io.Writer) func(reflect.Value) {\n\tforcePrompt, _ := strconv.ParseBool(os.Getenv(\"YAEGI_PROMPT\"))\n\tif forcePrompt {\n\t\treturn doPrompt(out)\n\t}\n\ts, ok := in.(interface{ Stat() (os.FileInfo, error) })\n\tif !ok {\n\t\treturn func(reflect.Value) {}\n\t}\n\tstat, err := s.Stat()\n\tif err == nil && stat.Mode()&os.ModeCharDevice != 0 {\n\t\treturn doPrompt(out)\n\t}\n\treturn func(reflect.Value) {}\n}\n"
  },
  {
    "path": "interp/interp_chan_test.go",
    "content": "package interp_test\n\nimport (\n\t\"reflect\"\n\t\"testing\"\n\n\t\"github.com/traefik/yaegi/interp\"\n)\n\n// IntChan is a channel type alias for testing.\ntype IntChan chan int\n\n// NewIntChan creates a new IntChan.\nfunc NewIntChan() IntChan {\n\treturn make(IntChan, 1)\n}\n\nfunc TestSendToBinaryChannelTypeAlias(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\n\terr := i.Use(interp.Exports{\n\t\t\"mypkg/mypkg\": {\n\t\t\t\"IntChan\":    reflect.ValueOf((*IntChan)(nil)),\n\t\t\t\"NewIntChan\": reflect.ValueOf(NewIntChan),\n\t\t},\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t_, err = i.Eval(`\npackage main\n\nimport \"mypkg\"\n\nfunc main() {\n\tch := mypkg.NewIntChan()\n\tch <- 42\n\tval := <-ch\n\tif val != 42 {\n\t\tpanic(\"unexpected value\")\n\t}\n}\n`)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n}\n\nfunc TestSendToSourceDefinedChannel(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\n\t// Test with a channel defined purely in interpreted code\n\t_, err := i.Eval(`\npackage main\n\nfunc main() {\n\tch := make(chan int, 1)\n\tch <- 42\n\tval := <-ch\n\tif val != 42 {\n\t\tpanic(\"unexpected value\")\n\t}\n}\n`)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n}\n\nfunc TestSendToSourceDefinedChannelTypeAlias(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\n\t// Test with a channel type alias defined in interpreted code\n\t_, err := i.Eval(`\npackage main\n\ntype MyChan chan int\n\nfunc main() {\n\tch := make(MyChan, 1)\n\tch <- 42\n\tval := <-ch\n\tif val != 42 {\n\t\tpanic(\"unexpected value\")\n\t}\n}\n`)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n}\n"
  },
  {
    "path": "interp/interp_consistent_test.go",
    "content": "package interp_test\n\nimport (\n\t\"bytes\"\n\t\"go/build\"\n\t\"io\"\n\t\"os\"\n\t\"os/exec\"\n\t\"path/filepath\"\n\t\"runtime\"\n\t\"strings\"\n\t\"testing\"\n\n\t\"github.com/traefik/yaegi/interp\"\n\t\"github.com/traefik/yaegi/stdlib\"\n\t\"github.com/traefik/yaegi/stdlib/unsafe\"\n)\n\nvar testsToSkipGo122 = map[string]bool{}\n\nvar go122 = strings.HasPrefix(runtime.Version(), \"go1.22\")\n\nfunc TestInterpConsistencyBuild(t *testing.T) {\n\tif testing.Short() {\n\t\tt.Skip(\"short mode\")\n\t}\n\tdir := filepath.Join(\"..\", \"_test\", \"tmp\")\n\tif _, err := os.Stat(dir); os.IsNotExist(err) {\n\t\tif err := os.Mkdir(dir, 0o700); err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t}\n\n\tbaseDir := filepath.Join(\"..\", \"_test\")\n\tfiles, err := os.ReadDir(baseDir)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tfor _, file := range files {\n\t\tif filepath.Ext(file.Name()) != \".go\" ||\n\t\t\tfile.Name() == \"assign11.go\" || // expect error\n\t\t\tfile.Name() == \"assign12.go\" || // expect error\n\t\t\tfile.Name() == \"assign15.go\" || // expect error\n\t\t\tfile.Name() == \"assign19.go\" || // expect error\n\t\t\tfile.Name() == \"bad0.go\" || // expect error\n\t\t\tfile.Name() == \"break0.go\" || // expect error\n\t\t\tfile.Name() == \"cont3.go\" || // expect error\n\t\t\tfile.Name() == \"const9.go\" || // expect error\n\t\t\tfile.Name() == \"export1.go\" || // non-main package\n\t\t\tfile.Name() == \"export0.go\" || // non-main package\n\t\t\tfile.Name() == \"for7.go\" || // expect error\n\t\t\tfile.Name() == \"fun21.go\" || // expect error\n\t\t\tfile.Name() == \"fun22.go\" || // expect error\n\t\t\tfile.Name() == \"fun23.go\" || // expect error\n\t\t\tfile.Name() == \"fun24.go\" || // expect error\n\t\t\tfile.Name() == \"fun25.go\" || // expect error\n\t\t\tfile.Name() == \"gen7.go\" || // expect error\n\t\t\tfile.Name() == \"gen8.go\" || // expect error\n\t\t\tfile.Name() == \"gen9.go\" || // expect error\n\t\t\tfile.Name() == \"if2.go\" || // expect error\n\t\t\tfile.Name() == \"import6.go\" || // expect error\n\t\t\tfile.Name() == \"init1.go\" || // expect error\n\t\t\tfile.Name() == \"io0.go\" || // use random number\n\t\t\tfile.Name() == \"issue-1093.go\" || // expect error\n\t\t\tfile.Name() == \"issue-1276.go\" || // expect error\n\t\t\tfile.Name() == \"issue-1330.go\" || // expect error\n\t\t\tfile.Name() == \"op1.go\" || // expect error\n\t\t\tfile.Name() == \"op7.go\" || // expect error\n\t\t\tfile.Name() == \"op9.go\" || // expect error\n\t\t\tfile.Name() == \"bltn0.go\" || // expect error\n\t\t\tfile.Name() == \"method16.go\" || // private struct field\n\t\t\tfile.Name() == \"method39.go\" || // expect error\n\t\t\tfile.Name() == \"switch8.go\" || // expect error\n\t\t\tfile.Name() == \"switch9.go\" || // expect error\n\t\t\tfile.Name() == \"switch13.go\" || // expect error\n\t\t\tfile.Name() == \"switch19.go\" || // expect error\n\t\t\tfile.Name() == \"time0.go\" || // display time (similar to random number)\n\t\t\tfile.Name() == \"factor.go\" || // bench\n\t\t\tfile.Name() == \"fib.go\" || // bench\n\t\t\tfile.Name() == \"issue-1618.go\" || // bench (infinite running)\n\n\t\t\tfile.Name() == \"type5.go\" || // used to illustrate a limitation with no workaround, related to the fact that the reflect package does not allow the creation of named types\n\t\t\tfile.Name() == \"type6.go\" || // used to illustrate a limitation with no workaround, related to the fact that the reflect package does not allow the creation of named types\n\n\t\t\tfile.Name() == \"redeclaration0.go\" || // expect error\n\t\t\tfile.Name() == \"redeclaration1.go\" || // expect error\n\t\t\tfile.Name() == \"redeclaration2.go\" || // expect error\n\t\t\tfile.Name() == \"redeclaration3.go\" || // expect error\n\t\t\tfile.Name() == \"redeclaration4.go\" || // expect error\n\t\t\tfile.Name() == \"redeclaration5.go\" || // expect error\n\t\t\tfile.Name() == \"redeclaration-global0.go\" || // expect error\n\t\t\tfile.Name() == \"redeclaration-global1.go\" || // expect error\n\t\t\tfile.Name() == \"redeclaration-global2.go\" || // expect error\n\t\t\tfile.Name() == \"redeclaration-global3.go\" || // expect error\n\t\t\tfile.Name() == \"redeclaration-global4.go\" || // expect error\n\t\t\tfile.Name() == \"redeclaration-global5.go\" || // expect error\n\t\t\tfile.Name() == \"redeclaration-global6.go\" || // expect error\n\t\t\tfile.Name() == \"redeclaration-global7.go\" || // expect error\n\t\t\tfile.Name() == \"panic0.go\" || // expect error\n\t\t\tfile.Name() == \"pkgname0.go\" || // has deps\n\t\t\tfile.Name() == \"pkgname1.go\" || // expect error\n\t\t\tfile.Name() == \"pkgname2.go\" || // has deps\n\t\t\tfile.Name() == \"ipp_as_key.go\" || // has deps\n\t\t\tfile.Name() == \"restricted0.go\" || // expect error\n\t\t\tfile.Name() == \"restricted1.go\" || // expect error\n\t\t\tfile.Name() == \"restricted2.go\" || // expect error\n\t\t\tfile.Name() == \"restricted3.go\" || // expect error\n\t\t\tfile.Name() == \"server6.go\" || // syntax parsing\n\t\t\tfile.Name() == \"server5.go\" || // syntax parsing\n\t\t\tfile.Name() == \"server4.go\" || // syntax parsing\n\t\t\tfile.Name() == \"server3.go\" || // syntax parsing\n\t\t\tfile.Name() == \"server2.go\" || // syntax parsing\n\t\t\tfile.Name() == \"server1a.go\" || // syntax parsing\n\t\t\tfile.Name() == \"server1.go\" || // syntax parsing\n\t\t\tfile.Name() == \"server0.go\" || // syntax parsing\n\t\t\tfile.Name() == \"server.go\" || // syntax parsing\n\t\t\tfile.Name() == \"range9.go\" || // expect error\n\t\t\tfile.Name() == \"unsafe6.go\" || // needs go.mod to be 1.17\n\t\t\tfile.Name() == \"unsafe7.go\" || // needs go.mod to be 1.17\n\t\t\tfile.Name() == \"type24.go\" || // expect error\n\t\t\tfile.Name() == \"type27.go\" || // expect error\n\t\t\tfile.Name() == \"type28.go\" || // expect error\n\t\t\tfile.Name() == \"type29.go\" || // expect error\n\t\t\tfile.Name() == \"type30.go\" || // expect error\n\t\t\tfile.Name() == \"type31.go\" || // expect error\n\t\t\tfile.Name() == \"type32.go\" || // expect error\n\t\t\tfile.Name() == \"type33.go\" { // expect error\n\t\t\tcontinue\n\t\t}\n\t\t// Skip some tests which are problematic in go1.21 only.\n\t\tif go121 && testsToSkipGo121[file.Name()] {\n\t\t\tcontinue\n\t\t}\n\t\tif go122 && testsToSkipGo122[file.Name()] {\n\t\t\tcontinue\n\t\t}\n\n\t\tfile := file\n\t\tt.Run(file.Name(), func(t *testing.T) {\n\t\t\tfilePath := filepath.Join(baseDir, file.Name())\n\n\t\t\t// catch stdout\n\t\t\tbackupStdout := os.Stdout\n\t\t\tdefer func() {\n\t\t\t\tos.Stdout = backupStdout\n\t\t\t}()\n\t\t\tr, w, _ := os.Pipe()\n\t\t\tos.Stdout = w\n\n\t\t\ti := interp.New(interp.Options{GoPath: build.Default.GOPATH})\n\t\t\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\t\t\tif err := i.Use(interp.Symbols); err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\t\t\tif err := i.Use(unsafe.Symbols); err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\n\t\t\t_, err = i.EvalPath(filePath)\n\t\t\tif err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\n\t\t\t// read stdout\n\t\t\tif err = w.Close(); err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\t\t\toutInterp, err := io.ReadAll(r)\n\t\t\tif err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\n\t\t\t// restore Stdout\n\t\t\tos.Stdout = backupStdout\n\n\t\t\tbin := filepath.Join(dir, strings.TrimSuffix(file.Name(), \".go\"))\n\t\t\tif runtime.GOOS == \"windows\" {\n\t\t\t\tbin += \".exe\"\n\t\t\t}\n\n\t\t\tcmdBuild := exec.Command(\"go\", \"build\", \"-tags=dummy\", \"-o\", bin, filePath)\n\t\t\toutBuild, err := cmdBuild.CombinedOutput()\n\t\t\tif err != nil {\n\t\t\t\tt.Log(string(outBuild))\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\n\t\t\tcmd := exec.Command(bin)\n\t\t\toutRun, err := cmd.CombinedOutput()\n\t\t\tif err != nil {\n\t\t\t\tt.Log(string(outRun))\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\n\t\t\tif !bytes.Equal(outInterp, outRun) {\n\t\t\t\tt.Errorf(\"\\nGot: %q,\\n want: %q\", string(outInterp), string(outRun))\n\t\t\t}\n\t\t})\n\t}\n}\n\nfunc TestInterpErrorConsistency(t *testing.T) {\n\ttestCases := []struct {\n\t\tfileName       string\n\t\texpectedInterp string\n\t\texpectedStderr string\n\t\texpectedExec   string\n\t}{\n\t\t{\n\t\t\tfileName:       \"assign11.go\",\n\t\t\texpectedInterp: \"6:2: assignment mismatch: 3 variables but fmt.Println returns 2 values\",\n\t\t\texpectedExec:   \"6:12: assignment mismatch: 3 variables but fmt.Println returns 2 values\",\n\t\t},\n\t\t{\n\t\t\tfileName:       \"assign12.go\",\n\t\t\texpectedInterp: \"6:2: assignment mismatch: 3 variables but fmt.Println returns 2 values\",\n\t\t\texpectedExec:   \"6:13: assignment mismatch: 3 variables but fmt.Println returns 2 values\",\n\t\t},\n\t\t{\n\t\t\tfileName:       \"bad0.go\",\n\t\t\texpectedInterp: \"1:1: expected 'package', found println\",\n\t\t\texpectedExec:   \"1:1: expected 'package', found println\",\n\t\t},\n\t\t{\n\t\t\tfileName:       \"break0.go\",\n\t\t\texpectedInterp: \"15:5: invalid break label OuterLoop\",\n\t\t\texpectedExec:   \"15:11: invalid break label OuterLoop\",\n\t\t},\n\t\t{\n\t\t\tfileName:       \"cont3.go\",\n\t\t\texpectedInterp: \"15:5: invalid continue label OuterLoop\",\n\t\t\texpectedExec:   \"15:14: invalid continue label OuterLoop\",\n\t\t},\n\t\t{\n\t\t\tfileName:       \"const9.go\",\n\t\t\texpectedInterp: \"5:2: constant definition loop\",\n\t\t\texpectedExec:   \"5:2: initialization\",\n\t\t},\n\t\t{\n\t\t\tfileName:       \"if2.go\",\n\t\t\texpectedInterp: \"7:5: non-bool used as if condition\",\n\t\t\texpectedExec:   \"7:5: non-boolean condition in if statement\",\n\t\t},\n\t\t{\n\t\t\tfileName:       \"for7.go\",\n\t\t\texpectedInterp: \"4:14: non-bool used as for condition\",\n\t\t\texpectedExec:   \"4:14: non-boolean condition in for statement\",\n\t\t},\n\t\t{\n\t\t\tfileName:       \"fun21.go\",\n\t\t\texpectedInterp: \"4:2: not enough arguments to return\",\n\t\t\texpectedExec:   \"4:2: not enough return values\",\n\t\t},\n\t\t{\n\t\t\tfileName:       \"fun22.go\",\n\t\t\texpectedInterp: \"6:2: not enough arguments in call to time.Date\",\n\t\t\texpectedExec:   \"6:2: not enough arguments in call to time.Date\",\n\t\t},\n\t\t{\n\t\t\tfileName:       \"fun23.go\",\n\t\t\texpectedInterp: \"3:17: too many arguments to return\",\n\t\t\texpectedExec:   \"3:24: too many return values\",\n\t\t},\n\t\t{\n\t\t\tfileName:       \"issue-1093.go\",\n\t\t\texpectedInterp: \"9:6: cannot use type untyped string as type int in assignment\",\n\t\t\texpectedExec:   `9:6: cannot use \"a\" + b() (value of type string)`,\n\t\t},\n\t\t{\n\t\t\tfileName:       \"op1.go\",\n\t\t\texpectedInterp: \"5:2: invalid operation: mismatched types int and untyped float\",\n\t\t\texpectedExec:   \"5:7: 1.3 (untyped float constant) truncated to int\",\n\t\t},\n\t\t{\n\t\t\tfileName:       \"bltn0.go\",\n\t\t\texpectedInterp: \"4:7: use of builtin println not in function call\",\n\t\t\texpectedExec:   \"4:7: println (built-in) must be called\",\n\t\t},\n\t\t{\n\t\t\tfileName:       \"import6.go\",\n\t\t\texpectedInterp: \"import cycle not allowed\",\n\t\t\texpectedExec:   \"import cycle not allowed\",\n\t\t},\n\t\t{\n\t\t\tfileName:       \"switch8.go\",\n\t\t\texpectedInterp: \"5:2: fallthrough statement out of place\",\n\t\t\texpectedExec:   \"5:2: fallthrough statement out of place\",\n\t\t},\n\t\t{\n\t\t\tfileName:       \"switch9.go\",\n\t\t\texpectedInterp: \"9:3: cannot fallthrough in type switch\",\n\t\t\texpectedExec:   \"fallthrough\",\n\t\t},\n\t\t{\n\t\t\tfileName:       \"switch13.go\",\n\t\t\texpectedInterp: \"is not a type\",\n\t\t\texpectedExec:   \"is not a type\",\n\t\t},\n\t\t{\n\t\t\tfileName:       \"switch19.go\",\n\t\t\texpectedInterp: \"37:2: duplicate case Bir in type switch\",\n\t\t\texpectedExec:   \"37:7: duplicate case Bir in type switch\",\n\t\t},\n\t\t{\n\t\t\tfileName:       \"panic0.go\",\n\t\t\texpectedInterp: \"stop!\",\n\t\t\texpectedStderr: `\n../_test/panic0.go:16:2: panic: main.baz(...)\n../_test/panic0.go:12:2: panic: main.bar(...)\n../_test/panic0.go:8:2: panic: main.foo(...)\n../_test/panic0.go:4:2: panic: main.main(...)\n`,\n\t\t},\n\t}\n\n\tfor _, test := range testCases {\n\t\tt.Run(test.fileName, func(t *testing.T) {\n\t\t\tif test.expectedInterp == \"\" && test.expectedExec == \"\" {\n\t\t\t\tt.Fatal(\"at least expectedInterp must be defined\")\n\t\t\t}\n\n\t\t\tfilePath := filepath.Join(\"..\", \"_test\", test.fileName)\n\n\t\t\tvar stderr bytes.Buffer\n\t\t\ti := interp.New(interp.Options{GoPath: build.Default.GOPATH, Stderr: &stderr})\n\t\t\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\n\t\t\t_, errEval := i.EvalPath(filePath)\n\t\t\tif errEval == nil {\n\t\t\t\tt.Fatal(\"An error is expected but got none.\")\n\t\t\t}\n\n\t\t\tif !strings.Contains(errEval.Error(), test.expectedInterp) {\n\t\t\t\tt.Errorf(\"got %q, want: %q\", errEval.Error(), test.expectedInterp)\n\t\t\t}\n\t\t\tif test.expectedStderr != \"\" {\n\t\t\t\texp, got := strings.TrimSpace(test.expectedStderr), strings.TrimSpace(stderr.String())\n\t\t\t\tif exp != got {\n\t\t\t\t\tt.Errorf(\"got %q, want: %q\", got, exp)\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tcmd := exec.Command(\"go\", \"run\", filePath)\n\t\t\toutRun, errExec := cmd.CombinedOutput()\n\t\t\tif errExec == nil {\n\t\t\t\tt.Log(string(outRun))\n\t\t\t\tt.Fatal(\"An error is expected but got none.\")\n\t\t\t}\n\n\t\t\tif test.expectedExec == \"\" && !strings.Contains(string(outRun), test.expectedInterp) {\n\t\t\t\tt.Errorf(\"got %q, want: %q\", string(outRun), test.expectedInterp)\n\t\t\t} else if !strings.Contains(string(outRun), test.expectedExec) {\n\t\t\t\tt.Errorf(\"got %q, want: %q\", string(outRun), test.expectedExec)\n\t\t\t}\n\t\t})\n\t}\n}\n"
  },
  {
    "path": "interp/interp_eval_test.go",
    "content": "package interp_test\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n\t\"context\"\n\t\"fmt\"\n\t\"go/build\"\n\t\"go/parser\"\n\t\"io\"\n\t\"log\"\n\t\"net/http\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"reflect\"\n\t\"runtime\"\n\t\"strconv\"\n\t\"strings\"\n\t\"sync\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/traefik/yaegi/interp\"\n\t\"github.com/traefik/yaegi/stdlib\"\n)\n\nfunc init() { log.SetFlags(log.Lshortfile) }\n\n// testCase represents an interpreter test case.\n// Care must be taken when defining multiple test cases within the same interpreter\n// context, as all declarations occur in the global scope and are therefore\n// shared between multiple test cases.\n// Hint: use different variables or package names in testcases to keep them uncoupled.\ntype testCase struct {\n\tdesc, src, res, err string\n\tskip                string // if not empty, skip this test case (used in case of known error)\n\tpre                 func() // functions to execute prior eval src, or nil\n}\n\nfunc TestEvalArithmetic(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\trunTests(t, i, []testCase{\n\t\t{desc: \"add_II\", src: \"2 + 3\", res: \"5\"},\n\t\t{desc: \"add_FI\", src: \"2.3 + 3\", res: \"5.3\"},\n\t\t{desc: \"add_IF\", src: \"2 + 3.3\", res: \"5.3\"},\n\t\t{desc: \"add_SS\", src: `\"foo\" + \"bar\"`, res: \"foobar\"},\n\t\t{desc: \"add_SI\", src: `\"foo\" + 1`, err: \"1:28: invalid operation: mismatched types untyped string and untyped int\"},\n\t\t{desc: \"sub_SS\", src: `\"foo\" - \"bar\"`, err: \"1:28: invalid operation: operator - not defined on untyped string\"},\n\t\t{desc: \"sub_II\", src: \"7 - 3\", res: \"4\"},\n\t\t{desc: \"sub_FI\", src: \"7.2 - 3\", res: \"4.2\"},\n\t\t{desc: \"sub_IF\", src: \"7 - 3.2\", res: \"3.8\"},\n\t\t{desc: \"mul_II\", src: \"2 * 3\", res: \"6\"},\n\t\t{desc: \"mul_FI\", src: \"2.2 * 3\", res: \"6.6\"},\n\t\t{desc: \"mul_IF\", src: \"3 * 2.2\", res: \"6.6\"},\n\t\t{desc: \"quo_Z\", src: \"3 / 0\", err: \"1:28: invalid operation: division by zero\"},\n\t\t{desc: \"rem_FI\", src: \"8.2 % 4\", err: \"1:28: invalid operation: operator % not defined on untyped float\"},\n\t\t{desc: \"rem_Z\", src: \"8 % 0\", err: \"1:28: invalid operation: division by zero\"},\n\t\t{desc: \"shl_II\", src: \"1 << 8\", res: \"256\"},\n\t\t{desc: \"shl_IN\", src: \"1 << -1\", err: \"1:28: invalid operation: shift count type untyped int, must be integer\"},\n\t\t{desc: \"shl_IF\", src: \"1 << 1.0\", res: \"2\"},\n\t\t{desc: \"shl_IF1\", src: \"1 << 1.1\", err: \"1:28: invalid operation: shift count type untyped float, must be integer\"},\n\t\t{desc: \"shl_IF2\", src: \"1.0 << 1\", res: \"2\"},\n\t\t{desc: \"shr_II\", src: \"1 >> 8\", res: \"0\"},\n\t\t{desc: \"shr_IN\", src: \"1 >> -1\", err: \"1:28: invalid operation: shift count type untyped int, must be integer\"},\n\t\t{desc: \"shr_IF\", src: \"1 >> 1.0\", res: \"0\"},\n\t\t{desc: \"shr_IF1\", src: \"1 >> 1.1\", err: \"1:28: invalid operation: shift count type untyped float, must be integer\"},\n\t\t{desc: \"neg_I\", src: \"-2\", res: \"-2\"},\n\t\t{desc: \"pos_I\", src: \"+2\", res: \"2\"},\n\t\t{desc: \"bitnot_I\", src: \"^2\", res: \"-3\"},\n\t\t{desc: \"bitnot_F\", src: \"^0.2\", err: \"1:28: invalid operation: operator ^ not defined on untyped float\"},\n\t\t{desc: \"not_B\", src: \"!false\", res: \"true\"},\n\t\t{desc: \"not_I\", src: \"!0\", err: \"1:28: invalid operation: operator ! not defined on untyped int\"},\n\t})\n}\n\nfunc TestEvalShift(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\trunTests(t, i, []testCase{\n\t\t{src: \"a, b, m := uint32(1), uint32(2), uint32(0); m = a + (1 << b)\", res: \"5\"},\n\t\t{src: \"c := uint(1); d := uint64(+(-(1 << c)))\", res: \"18446744073709551614\"},\n\t\t{src: \"e, f := uint32(0), uint32(0); f = 1 << -(e * 2)\", res: \"1\"},\n\t\t{src: \"p := uint(0xdead); byte((1 << (p & 7)) - 1)\", res: \"31\"},\n\t\t{pre: func() { eval(t, i, \"const k uint = 1 << 17\") }, src: \"int(k)\", res: \"131072\"},\n\t})\n}\n\nfunc TestOpVarConst(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\trunTests(t, i, []testCase{\n\t\t{pre: func() { eval(t, i, \"const a uint = 8 + 2\") }, src: \"a\", res: \"10\"},\n\t\t{src: \"b := uint(5); a+b\", res: \"15\"},\n\t\t{src: \"b := uint(5); b+a\", res: \"15\"},\n\t\t{src: \"b := uint(5); b>a\", res: \"false\"},\n\t\t{src: \"const maxlen = cap(aa); var aa = []int{1,2}\", err: \"1:20: constant definition loop\"},\n\t})\n}\n\nfunc TestEvalStar(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\trunTests(t, i, []testCase{\n\t\t{src: `a := &struct{A int}{1}; b := *a`, res: \"{1}\"},\n\t\t{src: `a := struct{A int}{1}; b := *a`, err: \"1:57: invalid operation: cannot indirect \\\"a\\\"\"},\n\t})\n}\n\nfunc TestEvalAssign(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\tif err := i.Use(interp.Exports{\n\t\t\"testpkg/testpkg\": {\n\t\t\t\"val\": reflect.ValueOf(int64(11)),\n\t\t},\n\t}); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t_, e := i.Eval(`import \"testpkg\"`)\n\tif e != nil {\n\t\tt.Fatal(e)\n\t}\n\n\trunTests(t, i, []testCase{\n\t\t{src: `a := \"Hello\"; a += \" world\"`, res: \"Hello world\"},\n\t\t{src: `b := \"Hello\"; b += 1`, err: \"1:42: invalid operation: mismatched types string and untyped int\"},\n\t\t{src: `c := \"Hello\"; c -= \" world\"`, err: \"1:42: invalid operation: operator -= not defined on string\"},\n\t\t{src: \"e := 64.4; e %= 64\", err: \"1:39: invalid operation: operator %= not defined on float64\"},\n\t\t{src: \"f := int64(3.2)\", err: \"1:39: cannot convert expression of type untyped float to type int64\"},\n\t\t{src: \"g := 1; g <<= 8\", res: \"256\"},\n\t\t{src: \"h := 1; h >>= 8\", res: \"0\"},\n\t\t{src: \"i := 1; j := &i; (*j) = 2\", res: \"2\"},\n\t\t{src: \"i64 := testpkg.val; i64 == 11\", res: \"true\"},\n\t\t{pre: func() { eval(t, i, \"k := 1\") }, src: `k := \"Hello world\"`, res: \"Hello world\"}, // allow reassignment in subsequent evaluations\n\t\t{src: \"_ = _\", err: \"1:28: cannot use _ as value\"},\n\t\t{src: \"j := true || _\", err: \"1:33: cannot use _ as value\"},\n\t\t{src: \"j := true && _\", err: \"1:33: cannot use _ as value\"},\n\t\t{src: \"j := interface{}(int(1)); j.(_)\", err: \"1:54: cannot use _ as value\"},\n\t\t{src: \"ff := func() (a, b, c int) {return 1, 2, 3}; x, y, x := ff()\", err: \"1:73: x repeated on left side of :=\"},\n\t\t{src: \"xx := 1; xx, _ := 2, 3\", err: \"1:37: no new variables on left side of :=\"},\n\t\t{src: \"1 = 2\", err: \"1:28: cannot assign to 1 (untyped int constant)\"},\n\t})\n}\n\nfunc TestEvalBuiltin(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\trunTests(t, i, []testCase{\n\t\t{src: `a := []int{}; a = append(a, 1); a`, res: \"[1]\"},\n\t\t{src: `b := []int{1}; b = append(a, 2, 3); b`, res: \"[1 2 3]\"},\n\t\t{src: `c := []int{1}; d := []int{2, 3}; c = append(c, d...); c`, res: \"[1 2 3]\"},\n\t\t{src: `string(append([]byte(\"hello \"), \"world\"...))`, res: \"hello world\"},\n\t\t{src: `e := \"world\"; string(append([]byte(\"hello \"), e...))`, res: \"hello world\"},\n\t\t{src: `b := []int{1}; b = append(1, 2, 3); b`, err: \"1:54: first argument to append must be slice; have untyped int\"},\n\t\t{src: `a1 := []int{0,1,2}; append(a1)`, res: \"[0 1 2]\"},\n\t\t{src: `append(nil)`, err: \"first argument to append must be slice; have nil\"},\n\t\t{src: `g := len(a)`, res: \"1\"},\n\t\t{src: `g := cap(a)`, res: \"1\"},\n\t\t{src: `g := len(\"test\")`, res: \"4\"},\n\t\t{src: `g := len(map[string]string{\"a\": \"b\"})`, res: \"1\"},\n\t\t{src: `n := len()`, err: \"not enough arguments in call to len\"},\n\t\t{src: `n := len([]int, 0)`, err: \"too many arguments for len\"},\n\t\t{src: `g := cap(\"test\")`, err: \"1:37: invalid argument for cap\"},\n\t\t{src: `g := cap(map[string]string{\"a\": \"b\"})`, err: \"1:37: invalid argument for cap\"},\n\t\t{src: `h := make(chan int, 1); close(h); len(h)`, res: \"0\"},\n\t\t{src: `close(a)`, err: \"1:34: invalid operation: non-chan type []int\"},\n\t\t{src: `h := make(chan int, 1); var i <-chan int = h; close(i)`, err: \"1:80: invalid operation: cannot close receive-only channel\"},\n\t\t{src: `j := make([]int, 2)`, res: \"[0 0]\"},\n\t\t{src: `j := make([]int, 2, 3)`, res: \"[0 0]\"},\n\t\t{src: `j := make(int)`, err: \"1:38: cannot make int; type must be slice, map, or channel\"},\n\t\t{src: `j := make([]int)`, err: \"1:33: not enough arguments in call to make\"},\n\t\t{src: `j := make([]int, 0, 1, 2)`, err: \"1:33: too many arguments for make\"},\n\t\t{src: `j := make([]int, 2, 1)`, err: \"1:33: len larger than cap in make\"},\n\t\t{src: `j := make([]int, \"test\")`, err: \"1:45: cannot convert \\\"test\\\" to int\"},\n\t\t{src: `k := []int{3, 4}; copy(k, []int{1,2}); k`, res: \"[1 2]\"},\n\t\t{src: `f := []byte(\"Hello\"); copy(f, \"world\"); string(f)`, res: \"world\"},\n\t\t{src: `copy(g, g)`, err: \"1:28: copy expects slice arguments\"},\n\t\t{src: `copy(a, \"world\")`, err: \"1:28: arguments to copy have different element types []int and untyped string\"},\n\t\t{src: `l := map[string]int{\"a\": 1, \"b\": 2}; delete(l, \"a\"); l`, res: \"map[b:2]\"},\n\t\t{src: `delete(a, 1)`, err: \"1:35: first argument to delete must be map; have []int\"},\n\t\t{src: `l := map[string]int{\"a\": 1, \"b\": 2}; delete(l, 1)`, err: \"1:75: cannot use untyped int as type string in delete\"},\n\t\t{src: `a := []int{1,2}; println(a...)`, err: \"invalid use of ... with builtin println\"},\n\t\t{src: `m := complex(3, 2); real(m)`, res: \"3\"},\n\t\t{src: `m := complex(3, 2); imag(m)`, res: \"2\"},\n\t\t{src: `m := complex(\"test\", 2)`, err: \"1:33: invalid types string and int\"},\n\t\t{src: `imag(\"test\")`, err: \"1:33: cannot convert untyped string to untyped complex\"},\n\t\t{src: `imag(a)`, err: \"1:33: invalid argument type []int for imag\"},\n\t\t{src: `real(a)`, err: \"1:33: invalid argument type []int for real\"},\n\t\t{src: `t := map[int]int{}; t[123]++; t`, res: \"map[123:1]\"},\n\t\t{src: `t := map[int]int{}; t[123]--; t`, res: \"map[123:-1]\"},\n\t\t{src: `t := map[int]int{}; t[123] += 1; t`, res: \"map[123:1]\"},\n\t\t{src: `t := map[int]int{}; t[123] -= 1; t`, res: \"map[123:-1]\"},\n\t\t{src: `println(\"hello\", _)`, err: \"1:28: cannot use _ as value\"},\n\t\t{src: `f := func() complex64 { return complex(0, 0) }()`, res: \"(0+0i)\"},\n\t\t{src: `f := func() float32 { return real(complex(2, 1)) }()`, res: \"2\"},\n\t\t{src: `f := func() int8 { return imag(complex(2, 1)) }()`, res: \"1\"},\n\t})\n}\n\nfunc TestEvalDecl(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\trunTests(t, i, []testCase{\n\t\t{pre: func() { eval(t, i, \"var i int = 2\") }, src: \"i\", res: \"2\"},\n\t\t{pre: func() { eval(t, i, \"var j, k int = 2, 3\") }, src: \"j\", res: \"2\"},\n\t\t{pre: func() { eval(t, i, \"var l, m int = 2, 3\") }, src: \"k\", res: \"3\"},\n\t\t{pre: func() { eval(t, i, \"func f() int {return 4}\") }, src: \"f()\", res: \"4\"},\n\t\t{pre: func() { eval(t, i, `package foo; var I = 2`) }, src: \"foo.I\", res: \"2\"},\n\t\t{pre: func() { eval(t, i, `package foo; func F() int {return 5}`) }, src: \"foo.F()\", res: \"5\"},\n\t})\n}\n\nfunc TestEvalDeclWithExpr(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\trunTests(t, i, []testCase{\n\t\t{src: `a1 := \"\"; var a2 int; a2 = 2`, res: \"2\"},\n\t\t{src: `b1 := \"\"; const b2 = 2; b2`, res: \"2\"},\n\t\t{src: `c1 := \"\"; var c2, c3 [8]byte; c3[3]`, res: \"0\"},\n\t})\n}\n\nfunc TestEvalTypeSpec(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\trunTests(t, i, []testCase{\n\t\t{src: `type _ struct{}`, err: \"1:19: cannot use _ as value\"},\n\t\t{src: `a := struct{a, _ int}{32, 0}`, res: \"{32 0}\"},\n\t\t{src: \"type A int; type A = string\", err: \"1:31: A redeclared in this block\"},\n\t\t{src: \"type B int; type B string\", err: \"1:31: B redeclared in this block\"},\n\t})\n}\n\nfunc TestEvalFunc(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\trunTests(t, i, []testCase{\n\t\t{src: `(func () string {return \"ok\"})()`, res: \"ok\"},\n\t\t{src: `(func () (res string) {res = \"ok\"; return})()`, res: \"ok\"},\n\t\t{src: `(func () int {f := func() (a, b int) {a, b = 3, 4; return}; x, y := f(); return x+y})()`, res: \"7\"},\n\t\t{src: `(func () int {f := func() (a int, b, c int) {a, b, c = 3, 4, 5; return}; x, y, z := f(); return x+y+z})()`, res: \"12\"},\n\t\t{src: `(func () int {f := func() (a, b, c int) {a, b, c = 3, 4, 5; return}; x, y, z := f(); return x+y+z})()`, res: \"12\"},\n\t\t{src: `func f() int { return _ }`, err: \"1:29: cannot use _ as value\"},\n\t\t{src: `(func (x int) {})(_)`, err: \"1:28: cannot use _ as value\"},\n\t})\n}\n\nfunc TestEvalImport(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\trunTests(t, i, []testCase{\n\t\t{pre: func() { eval(t, i, `import \"time\"`) }, src: \"2 * time.Second\", res: \"2s\"},\n\t})\n}\n\nfunc TestEvalStdout(t *testing.T) {\n\tvar out, err bytes.Buffer\n\ti := interp.New(interp.Options{Stdout: &out, Stderr: &err})\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\t_, e := i.Eval(`import \"fmt\"; func main() { fmt.Println(\"hello\") }`)\n\tif e != nil {\n\t\tt.Fatal(e)\n\t}\n\twanted := \"hello\\n\"\n\tif res := out.String(); res != wanted {\n\t\tt.Fatalf(\"got %v, want %v\", res, wanted)\n\t}\n}\n\nfunc TestEvalNil(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\trunTests(t, i, []testCase{\n\t\t{desc: \"assign nil\", src: \"a := nil\", err: \"1:33: use of untyped nil\"},\n\t\t{desc: \"return nil\", pre: func() { eval(t, i, \"func getNil() error {return nil}\") }, src: \"getNil()\", res: \"<nil>\"},\n\t\t{\n\t\t\tdesc: \"return func which return error\",\n\t\t\tpre: func() {\n\t\t\t\teval(t, i, `\n\t\t\t\t\tpackage bar\n\n\t\t\t\t\tfunc New() func(string) error {\n\t\t\t\t\t\treturn func(v string) error {\n\t\t\t\t\t\t\treturn nil\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t`)\n\t\t\t\tv := eval(t, i, `bar.New()`)\n\t\t\t\tfn, ok := v.Interface().(func(string) error)\n\t\t\t\tif !ok {\n\t\t\t\t\tt.Fatal(\"conversion failed\")\n\t\t\t\t}\n\t\t\t\tif res := fn(\"hello\"); res != nil {\n\t\t\t\t\tt.Fatalf(\"got %v, want nil\", res)\n\t\t\t\t}\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tdesc: \"return nil pointer\",\n\t\t\tpre: func() {\n\t\t\t\teval(t, i, `\n\t\t\t\t\timport \"fmt\"\n\n\t\t\t\t\ttype Foo struct{}\n\n\t\t\t\t\tfunc Hello() *Foo {\n\t\t\t\t\t\tfmt.Println(\"Hello\")\n\t\t\t\t\t\treturn nil\n\t\t\t\t\t}\n\t\t\t\t`)\n\t\t\t},\n\t\t\tsrc: \"Hello()\",\n\t\t\tres: \"<nil>\",\n\t\t},\n\t\t{\n\t\t\tdesc: \"return nil func\",\n\t\t\tpre: func() {\n\t\t\t\teval(t, i, `func Bar() func() { return nil }`)\n\t\t\t},\n\t\t\tsrc: \"Bar()\",\n\t\t\tres: \"<nil>\",\n\t\t},\n\t})\n}\n\nfunc TestEvalStruct0(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\trunTests(t, i, []testCase{\n\t\t{\n\t\t\tdesc: \"func field in struct\",\n\t\t\tpre: func() {\n\t\t\t\teval(t, i, `\n\t\t\t\t\ttype Fromage struct {\n\t\t\t\t\t\tName string\n\t\t\t\t\t\tCall func(string) string\n\t\t\t\t\t}\n\n\t\t\t\t\tfunc f() string {\n\t\t\t\t\t\ta := Fromage{}\n\t\t\t\t\t\ta.Name = \"test\"\n\t\t\t\t\t\ta.Call = func(s string) string { return s }\n\n\t\t\t\t\t\treturn a.Call(a.Name)\n\t\t\t\t\t}\n\t\t\t\t`)\n\t\t\t},\n\t\t\tsrc: \"f()\",\n\t\t\tres: \"test\",\n\t\t},\n\t\t{\n\t\t\tdesc: \"literal func field in struct\",\n\t\t\tpre: func() {\n\t\t\t\teval(t, i, `\n\t\t\t\t\ttype Fromage2 struct {\n\t\t\t\t\t\tName string\n\t\t\t\t\t\tCall func(string) string\n\t\t\t\t\t}\n\n\t\t\t\t\tfunc f2() string {\n\t\t\t\t\t\ta := Fromage2{\n\t\t\t\t\t\t\t\"test\",\n\t\t\t\t\t\t\tfunc(s string) string { return s },\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn a.Call(a.Name)\n\t\t\t\t\t}\n\t\t\t\t`)\n\t\t\t},\n\t\t\tsrc: \"f2()\",\n\t\t\tres: \"test\",\n\t\t},\n\t})\n}\n\nfunc TestEvalStruct1(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\teval(t, i, `\ntype Fromage struct {\n\tName string\n\tCall func(string) string\n}\n\nfunc f() string {\n\ta := Fromage{\n\t\t\"test\",\n\t\tfunc(s string) string { return s },\n\t}\n\n\treturn a.Call(a.Name)\n}\n`)\n\n\tv := eval(t, i, `f()`)\n\tif v.Interface().(string) != \"test\" {\n\t\tt.Fatalf(\"got %v, want test\", v)\n\t}\n}\n\nfunc TestEvalComposite0(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\teval(t, i, `\ntype T struct {\n\ta, b, c, d, e, f, g, h, i, j, k, l, m, n string\n\to map[string]int\n\tp []string\n}\n\nvar a = T{\n\to: map[string]int{\"truc\": 1, \"machin\": 2},\n\tp: []string{\"hello\", \"world\"},\n}\n`)\n\tv := eval(t, i, `a.p[1]`)\n\tif v.Interface().(string) != \"world\" {\n\t\tt.Fatalf(\"got %v, want word\", v)\n\t}\n}\n\nfunc TestEvalCompositeBin0(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\teval(t, i, `\nimport (\n\t\"fmt\"\n\t\"net/http\"\n\t\"time\"\n)\n\nfunc Foo() {\n\thttp.DefaultClient = &http.Client{Timeout: 2 * time.Second}\n}\n`)\n\thttp.DefaultClient = &http.Client{}\n\teval(t, i, `Foo()`)\n\tif http.DefaultClient.Timeout != 2*time.Second {\n\t\tt.Fatalf(\"got %v, want 2s\", http.DefaultClient.Timeout)\n\t}\n}\n\nfunc TestEvalComparison(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\trunTests(t, i, []testCase{\n\t\t{src: `2 > 1`, res: \"true\"},\n\t\t{src: `1.2 > 1.1`, res: \"true\"},\n\t\t{src: `\"hhh\" > \"ggg\"`, res: \"true\"},\n\t\t{src: `a, b, c := 1, 1, false; if a == b { c = true }; c`, res: \"true\"},\n\t\t{src: `a, b, c := 1, 2, false; if a != b { c = true }; c`, res: \"true\"},\n\t\t{\n\t\t\tdesc: \"mismatched types equality\",\n\t\t\tsrc: `\n\t\t\t\ttype Foo string\n\t\t\t\ttype Bar string\n\n\t\t\t\tvar a = Foo(\"test\")\n\t\t\t\tvar b = Bar(\"test\")\n\t\t\t\tvar c = a == b\n\t\t\t`,\n\t\t\terr: \"7:13: invalid operation: mismatched types main.Foo and main.Bar\",\n\t\t},\n\t\t{\n\t\t\tdesc: \"mismatched types less than\",\n\t\t\tsrc: `\n\t\t\t\ttype Foo string\n\t\t\t\ttype Bar string\n\n\t\t\t\tvar a = Foo(\"test\")\n\t\t\t\tvar b = Bar(\"test\")\n\t\t\t\tvar c = a < b\n\t\t\t`,\n\t\t\terr: \"7:13: invalid operation: mismatched types main.Foo and main.Bar\",\n\t\t},\n\t\t{src: `1 > _`, err: \"1:28: cannot use _ as value\"},\n\t\t{src: `(_) > 1`, err: \"1:28: cannot use _ as value\"},\n\t\t{src: `v := interface{}(2); v == 2`, res: \"true\"},\n\t\t{src: `v := interface{}(2); v > 1`, err: \"1:49: invalid operation: operator > not defined on interface{}\"},\n\t\t{src: `v := interface{}(int64(2)); v == 2`, res: \"false\"},\n\t\t{src: `v := interface{}(int64(2)); v != 2`, res: \"true\"},\n\t\t{src: `v := interface{}(2.3); v == 2.3`, res: \"true\"},\n\t\t{src: `v := interface{}(float32(2.3)); v != 2.3`, res: \"true\"},\n\t\t{src: `v := interface{}(\"hello\"); v == \"hello\"`, res: \"true\"},\n\t\t{src: `v := interface{}(\"hello\"); v < \"hellp\"`, err: \"1:55: invalid operation: operator < not defined on interface{}\"},\n\t})\n}\n\nfunc TestEvalCompositeArray(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\teval(t, i, `const l = 10`)\n\trunTests(t, i, []testCase{\n\t\t{src: \"a := []int{1, 2, 7: 20, 30}\", res: \"[1 2 0 0 0 0 0 20 30]\"},\n\t\t{src: `a := []int{1, 1.2}`, err: \"1:42: 6/5 truncated to int\"},\n\t\t{src: `a := []int{0:1, 0:1}`, err: \"1:46: duplicate index 0 in array or slice literal\"},\n\t\t{src: `a := []int{1.1:1, 1.2:\"test\"}`, err: \"1:39: index untyped float must be integer constant\"},\n\t\t{src: `a := [2]int{1, 1.2}`, err: \"1:43: 6/5 truncated to int\"},\n\t\t{src: `a := [1]int{1, 2}`, err: \"1:43: index 1 is out of bounds (>= 1)\"},\n\t\t{src: `b := [l]int{1, 2}`, res: \"[1 2 0 0 0 0 0 0 0 0]\"},\n\t\t{src: `i := 10; a := [i]int{1, 2}`, err: \"1:43: non-constant array bound \\\"i\\\"\"},\n\t\t{src: `c := [...]float64{1, 3: 3.4, 5}`, res: \"[1 0 0 3.4 5]\"},\n\t})\n}\n\nfunc TestEvalCompositeMap(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\trunTests(t, i, []testCase{\n\t\t{src: `a := map[string]int{\"one\":1, \"two\":2}`, res: \"map[one:1 two:2]\"},\n\t\t{src: `a := map[string]int{1:1, 2:2}`, err: \"1:48: cannot convert 1 to string\"},\n\t\t{src: `a := map[string]int{\"one\":1, \"two\":2.2}`, err: \"1:63: 11/5 truncated to int\"},\n\t\t{src: `a := map[string]int{1, \"two\":2}`, err: \"1:48: missing key in map literal\"},\n\t\t{src: `a := map[string]int{\"one\":1, \"one\":2}`, err: \"1:57: duplicate key one in map literal\"},\n\t})\n}\n\nfunc TestEvalCompositeStruct(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\trunTests(t, i, []testCase{\n\t\t{src: `a := struct{A,B,C int}{}`, res: \"{0 0 0}\"},\n\t\t{src: `a := struct{A,B,C int}{1,2,3}`, res: \"{1 2 3}\"},\n\t\t{src: `a := struct{A,B,C int}{1,2.2,3}`, err: \"1:53: 11/5 truncated to int\"},\n\t\t{src: `a := struct{A,B,C int}{1,2}`, err: \"1:53: too few values in struct literal\"},\n\t\t{src: `a := struct{A,B,C int}{1,2,3,4}`, err: \"1:57: too many values in struct literal\"},\n\t\t{src: `a := struct{A,B,C int}{1,B:2,3}`, err: \"1:53: mixture of field:value and value elements in struct literal\"},\n\t\t{src: `a := struct{A,B,C int}{A:1,B:2,C:3}`, res: \"{1 2 3}\"},\n\t\t{src: `a := struct{A,B,C int}{B:2}`, res: \"{0 2 0}\"},\n\t\t{src: `a := struct{A,B,C int}{A:1,D:2,C:3}`, err: \"1:55: unknown field D in struct literal\"},\n\t\t{src: `a := struct{A,B,C int}{A:1,A:2,C:3}`, err: \"1:55: duplicate field name A in struct literal\"},\n\t\t{src: `a := struct{A,B,C int}{A:1,B:2.2,C:3}`, err: \"1:57: 11/5 truncated to int\"},\n\t\t{src: `a := struct{A,B,C int}{A:1,2,C:3}`, err: \"1:55: mixture of field:value and value elements in struct literal\"},\n\t\t{src: `a := struct{A,B,C int}{1,2,_}`, err: \"1:33: cannot use _ as value\"},\n\t\t{src: `a := struct{A,B,C int}{B: _}`, err: \"1:51: cannot use _ as value\"},\n\t})\n}\n\nfunc TestEvalSliceExpression(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\trunTests(t, i, []testCase{\n\t\t{src: `a := []int{0,1,2}[1:3]`, res: \"[1 2]\"},\n\t\t{src: `a := []int{0,1,2}[:3]`, res: \"[0 1 2]\"},\n\t\t{src: `a := []int{0,1,2}[:]`, res: \"[0 1 2]\"},\n\t\t{src: `a := []int{0,1,2,3}[1:3:4]`, res: \"[1 2]\"},\n\t\t{src: `a := []int{0,1,2,3}[:3:4]`, res: \"[0 1 2]\"},\n\t\t{src: `ar := [3]int{0,1,2}; a := ar[1:3]`, res: \"[1 2]\"},\n\t\t{src: `a := (&[3]int{0,1,2})[1:3]`, res: \"[1 2]\"},\n\t\t{src: `a := (&[3]int{0,1,2})[1:3]`, res: \"[1 2]\"},\n\t\t{src: `s := \"hello\"[1:3]`, res: \"el\"},\n\t\t{src: `str := \"hello\"; s := str[1:3]`, res: \"el\"},\n\t\t{src: `a := int(1)[0:1]`, err: \"1:33: cannot slice type int\"},\n\t\t{src: `a := (&[]int{0,1,2,3})[1:3]`, err: \"1:33: cannot slice type *[]int\"},\n\t\t{src: `a := \"hello\"[1:3:4]`, err: \"1:45: invalid operation: 3-index slice of string\"},\n\t\t{src: `ar := [3]int{0,1,2}; a := ar[:4]`, err: \"1:58: index int is out of bounds\"},\n\t\t{src: `a := []int{0,1,2,3}[1::4]`, err: \"index required in 3-index slice\"},\n\t\t{src: `a := []int{0,1,2,3}[1:3:]`, err: \"index required in 3-index slice\"},\n\t\t{src: `a := []int{0,1,2}[3:1]`, err: \"invalid index values, must be low <= high <= max\"},\n\t\t{pre: func() { eval(t, i, `type Str = string; var r Str = \"truc\"`) }, src: `r[1]`, res: \"114\"},\n\t\t{src: `_[12]`, err: \"1:28: cannot use _ as value\"},\n\t\t{src: `b := []int{0,1,2}[_:4]`, err: \"1:33: cannot use _ as value\"},\n\t})\n}\n\nfunc TestEvalConversion(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\trunTests(t, i, []testCase{\n\t\t{src: `a := uint64(1)`, res: \"1\"},\n\t\t{src: `i := 1.1; a := uint64(i)`, res: \"1\"},\n\t\t{src: `b := string(49)`, res: \"1\"},\n\t\t{src: `c := uint64(1.1)`, err: \"1:40: cannot convert expression of type untyped float to type uint64\"},\n\t\t{src: `int(_)`, err: \"1:28: cannot use _ as value\"},\n\t})\n}\n\nfunc TestEvalUnary(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\trunTests(t, i, []testCase{\n\t\t{src: \"a := -1\", res: \"-1\"},\n\t\t{src: \"b := +1\", res: \"1\", skip: \"BUG\"},\n\t\t{src: \"c := !false\", res: \"true\"},\n\t\t{src: \"_ = 2; _++\", err: \"1:35: cannot use _ as value\"},\n\t\t{src: \"_ = false; !_ == true\", err: \"1:39: cannot use _ as value\"},\n\t\t{src: \"!((((_))))\", err: \"1:28: cannot use _ as value\"},\n\t})\n}\n\nfunc TestEvalMethod(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\teval(t, i, `\n\t\ttype Root struct {\n\t\t\tName string\n\t\t}\n\n\t\ttype One struct {\n\t\t\tRoot\n\t\t}\n\n\t\ttype Hi interface {\n\t\t\tHello() string\n\t\t}\n\n\t\ttype Hey interface {\n\t\t\tHello() string\n\t\t}\n\n\t\tfunc (r *Root) Hello() string { return \"Hello \" + r.Name }\n\n\t\tvar r = Root{\"R\"}\n\t\tvar o = One{r}\n\t\t// TODO(mpl): restore empty interfaces when type assertions work (again) on them.\n\t\t// var root interface{} = &Root{Name: \"test1\"}\n\t\t// var one interface{} = &One{Root{Name: \"test2\"}}\n\t\tvar root Hey = &Root{Name: \"test1\"}\n\t\tvar one Hey = &One{Root{Name: \"test2\"}}\n\t`)\n\trunTests(t, i, []testCase{\n\t\t{src: \"r.Hello()\", res: \"Hello R\"},\n\t\t{src: \"(&r).Hello()\", res: \"Hello R\"},\n\t\t{src: \"o.Hello()\", res: \"Hello R\"},\n\t\t{src: \"(&o).Hello()\", res: \"Hello R\"},\n\t\t{src: \"root.(Hi).Hello()\", res: \"Hello test1\"},\n\t\t{src: \"one.(Hi).Hello()\", res: \"Hello test2\"},\n\t})\n}\n\nfunc TestEvalChan(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\trunTests(t, i, []testCase{\n\t\t{\n\t\t\tsrc: `(func () string {\n\t\t\t\tmessages := make(chan string)\n\t\t\t\tgo func() { messages <- \"ping\" }()\n\t\t\t\tmsg := <-messages\n\t\t\t\treturn msg\n\t\t\t})()`, res: \"ping\",\n\t\t},\n\t\t{\n\t\t\tsrc: `(func () bool {\n\t\t\t\tmessages := make(chan string)\n\t\t\t\tgo func() { messages <- \"ping\" }()\n\t\t\t\tmsg, ok := <-messages\n\t\t\t\treturn ok && msg == \"ping\"\n\t\t\t})()`, res: \"true\",\n\t\t},\n\t\t{\n\t\t\tsrc: `(func () bool {\n\t\t\t\tmessages := make(chan string)\n\t\t\t\tgo func() { messages <- \"ping\" }()\n\t\t\t\tvar msg string\n\t\t\t\tvar ok bool\n\t\t\t\tmsg, ok = <-messages\n\t\t\t\treturn ok && msg == \"ping\"\n\t\t\t})()`, res: \"true\",\n\t\t},\n\t\t{src: `a :=5; a <- 4`, err: \"cannot send to non-channel int\"},\n\t\t{src: `a :=5; b := <-a`, err: \"cannot receive from non-channel int\"},\n\t})\n}\n\nfunc TestEvalFunctionCallWithFunctionParam(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\teval(t, i, `\n\t\tfunc Bar(s string, fn func(string)string) string { return fn(s) }\n\t`)\n\n\tv := eval(t, i, \"Bar\")\n\tbar := v.Interface().(func(string, func(string) string) string)\n\n\tgot := bar(\"hello \", func(s string) string {\n\t\treturn s + \"world!\"\n\t})\n\n\twant := \"hello world!\"\n\tif got != want {\n\t\tt.Errorf(\"unexpected result of function eval: got %q, want %q\", got, want)\n\t}\n}\n\nfunc TestEvalCall(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\trunTests(t, i, []testCase{\n\t\t{src: ` test := func(a int, b float64) int { return a }\n\t\t\t\ta := test(1, 2.3)`, res: \"1\"},\n\t\t{src: ` test := func(a int, b float64) int { return a }\n\t\t\t\ta := test(1)`, err: \"2:10: not enough arguments in call to test\"},\n\t\t{src: ` test := func(a int, b float64) int { return a }\n\t\t\t\ts := \"test\"\n\t\t\t\ta := test(1, s)`, err: \"3:18: cannot use type string as type float64\"},\n\t\t{src: ` test := func(a ...int) int { return 1 }\n\t\t\t\ta := test([]int{1}...)`, res: \"1\"},\n\t\t{src: ` test := func(a ...int) int { return 1 }\n\t\t\t\ta := test()`, res: \"1\"},\n\t\t{src: ` test := func(a ...int) int { return 1 }\n\t\t\t\tblah := func() []int { return []int{1,1} }\n\t\t\t\ta := test(blah()...)`, res: \"1\"},\n\t\t{src: ` test := func(a ...int) int { return 1 }\n\t\t\t\ta := test([]string{\"1\"}...)`, err: \"2:15: cannot use []string as type []int\"},\n\t\t{src: ` test := func(a ...int) int { return 1 }\n\t\t\t\ti := 1\n\t\t\t\ta := test(i...)`, err: \"3:15: cannot use int as type []int\"},\n\t\t{src: ` test := func(a int) int { return a }\n\t\t\t\ta := test([]int{1}...)`, err: \"2:10: invalid use of ..., corresponding parameter is non-variadic\"},\n\t\t{src: ` test := func(a ...int) int { return 1 }\n\t\t\t\tblah := func() (int, int) { return 1, 1 }\n\t\t\t\ta := test(blah()...)`, err: \"3:15: cannot use ... with 2-valued func() (int,int)\"},\n\t\t{src: ` test := func(a, b int) int { return a }\n\t\t\t\tblah := func() (int, int) { return 1, 1 }\n\t\t\t\ta := test(blah())`, res: \"1\"},\n\t\t{src: ` test := func(a, b int) int { return a }\n\t\t\t\tblah := func() int { return 1 }\n\t\t\t\ta := test(blah(), blah())`, res: \"1\"},\n\t\t{src: ` test := func(a, b, c, d int) int { return a }\n\t\t\t\tblah := func() (int, int) { return 1, 1 }\n\t\t\t\ta := test(blah(), blah())`, err: \"3:15: cannot use func() (int,int) as type int\"},\n\t\t{src: ` test := func(a, b int) int { return a }\n\t\t\t\tblah := func() (int, float64) { return 1, 1.1 }\n\t\t\t\ta := test(blah())`, err: \"3:15: cannot use func() (int,float64) as type (int,int)\"},\n\t\t{src: \"func f()\", err: \"missing function body\"},\n\t})\n}\n\nfunc TestEvalBinCall(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\tif _, err := i.Eval(`import \"fmt\"`); err != nil {\n\t\tt.Fatal(err)\n\t}\n\trunTests(t, i, []testCase{\n\t\t{src: `a := fmt.Sprint(1, 2.3)`, res: \"1 2.3\"},\n\t\t{src: `a := fmt.Sprintf()`, err: \"1:33: not enough arguments in call to fmt.Sprintf\"},\n\t\t{src: `i := 1\n\t\t\t   a := fmt.Sprintf(i)`, err: \"2:24: cannot use type int as type string\"},\n\t\t{src: `a := fmt.Sprint()`, res: \"\"},\n\t})\n}\n\nfunc TestEvalReflect(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\tif _, err := i.Eval(`\n\t\timport (\n\t\t\t\"net/url\"\n\t\t\t\"reflect\"\n\t\t)\n\n\t\ttype Encoder interface {\n\t\t\tEncodeValues(key string, v *url.Values) error\n\t\t}\n\t`); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\trunTests(t, i, []testCase{\n\t\t{src: \"reflect.TypeOf(new(Encoder)).Elem()\", res: \"interp.valueInterface\"},\n\t})\n}\n\nfunc TestEvalMissingSymbol(t *testing.T) {\n\tdefer func() {\n\t\tr := recover()\n\t\tif r != nil {\n\t\t\tt.Errorf(\"unexpected panic: %v\", r)\n\t\t}\n\t}()\n\n\ttype S2 struct{}\n\ttype S1 struct {\n\t\tF S2\n\t}\n\ti := interp.New(interp.Options{})\n\tif err := i.Use(interp.Exports{\"p/p\": map[string]reflect.Value{\n\t\t\"S1\": reflect.Zero(reflect.TypeOf(&S1{})),\n\t}}); err != nil {\n\t\tt.Fatal(err)\n\t}\n\t_, err := i.Eval(`import \"p\"`)\n\tif err != nil {\n\t\tt.Fatalf(\"failed to import package: %v\", err)\n\t}\n\t_, err = i.Eval(`p.S1{F: p.S2{}}`)\n\tif err == nil {\n\t\tt.Error(\"unexpected nil error for expression with undefined type\")\n\t}\n}\n\nfunc TestEvalWithContext(t *testing.T) {\n\ttests := []testCase{\n\t\t{\n\t\t\tdesc: \"for {}\",\n\t\t\tsrc: `(func() {\n\t\t\t\t      for {}\n\t\t\t      })()`,\n\t\t},\n\t\t{\n\t\t\tdesc: \"select {}\",\n\t\t\tsrc: `(func() {\n\t\t\t\t     select {}\n\t\t\t     })()`,\n\t\t},\n\t\t{\n\t\t\tdesc: \"blocked chan send\",\n\t\t\tsrc: `(func() {\n\t\t\t         c := make(chan int)\n\t\t\t\t     c <- 1\n\t\t\t\t })()`,\n\t\t},\n\t\t{\n\t\t\tdesc: \"blocked chan recv\",\n\t\t\tsrc: `(func() {\n\t\t\t         c := make(chan int)\n\t\t\t\t     <-c\n\t\t\t     })()`,\n\t\t},\n\t\t{\n\t\t\tdesc: \"blocked chan recv2\",\n\t\t\tsrc: `(func() {\n\t\t\t         c := make(chan int)\n\t\t\t\t     _, _ = <-c\n\t\t\t     })()`,\n\t\t},\n\t\t{\n\t\t\tdesc: \"blocked range chan\",\n\t\t\tsrc: `(func() {\n\t\t\t         c := make(chan int)\n\t\t\t\t     for range c {}\n\t\t\t     })()`,\n\t\t},\n\t\t{\n\t\t\tdesc: \"double lock\",\n\t\t\tsrc: `(func() {\n\t\t\t         var mu sync.Mutex\n\t\t\t\t     mu.Lock()\n\t\t\t\t     mu.Lock()\n\t\t\t      })()`,\n\t\t},\n\t}\n\n\tfor _, test := range tests {\n\t\tdone := make(chan struct{})\n\t\tsrc := test.src\n\t\tgo func() {\n\t\t\tdefer close(done)\n\t\t\ti := interp.New(interp.Options{})\n\t\t\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\t\t\tt.Error(err)\n\t\t\t}\n\t\t\t_, err := i.Eval(`import \"sync\"`)\n\t\t\tif err != nil {\n\t\t\t\tt.Errorf(`failed to import \"sync\": %v`, err)\n\t\t\t\treturn\n\t\t\t}\n\t\t\tctx, cancel := context.WithTimeout(context.Background(), 100*time.Millisecond)\n\t\t\tdefer cancel()\n\t\t\t_, err = i.EvalWithContext(ctx, src)\n\t\t\tswitch err {\n\t\t\tcase context.DeadlineExceeded:\n\t\t\t\t// Successful cancellation.\n\n\t\t\t\t// Check we can still execute an expression.\n\t\t\t\tv, err := i.EvalWithContext(context.Background(), \"1+1\\n\")\n\t\t\t\tif err != nil {\n\t\t\t\t\tt.Errorf(\"failed to evaluate expression after cancellation: %v\", err)\n\t\t\t\t}\n\t\t\t\tgot := v.Interface()\n\t\t\t\tif got != 2 {\n\t\t\t\t\tt.Errorf(\"unexpected result of eval(1+1): got %v, want 2\", got)\n\t\t\t\t}\n\t\t\tcase nil:\n\t\t\t\tt.Errorf(\"unexpected success evaluating expression %q\", test.desc)\n\t\t\tdefault:\n\t\t\t\tt.Errorf(\"failed to evaluate expression %q: %v\", test.desc, err)\n\t\t\t}\n\t\t}()\n\t\tselect {\n\t\tcase <-time.After(time.Second):\n\t\t\tt.Errorf(\"timeout failed to terminate execution of %q\", test.desc)\n\t\tcase <-done:\n\t\t}\n\t}\n}\n\nfunc runTests(t *testing.T, i *interp.Interpreter, tests []testCase) {\n\tt.Helper()\n\n\tfor _, test := range tests {\n\t\tt.Run(test.desc, func(t *testing.T) {\n\t\t\tif test.skip != \"\" {\n\t\t\t\tt.Skip(test.skip)\n\t\t\t}\n\t\t\tif test.pre != nil {\n\t\t\t\ttest.pre()\n\t\t\t}\n\t\t\tif test.src != \"\" {\n\t\t\t\tassertEval(t, i, test.src, test.err, test.res)\n\t\t\t}\n\t\t})\n\t}\n}\n\nfunc eval(t *testing.T, i *interp.Interpreter, src string) reflect.Value {\n\tt.Helper()\n\tres, err := i.Eval(src)\n\tif err != nil {\n\t\tt.Logf(\"Error: %v\", err)\n\t\tif e, ok := err.(interp.Panic); ok {\n\t\t\tt.Log(string(e.Stack))\n\t\t}\n\t\tt.FailNow()\n\t}\n\treturn res\n}\n\nfunc assertEval(t *testing.T, i *interp.Interpreter, src, expectedError, expectedRes string) {\n\tt.Helper()\n\n\tres, err := i.Eval(src)\n\n\tif expectedError != \"\" {\n\t\tif err == nil || !strings.Contains(err.Error(), expectedError) {\n\t\t\tt.Fatalf(\"got %v, want %s\", err, expectedError)\n\t\t}\n\t\treturn\n\t}\n\n\tif err != nil {\n\t\tt.Logf(\"got an error: %v\", err)\n\t\tif e, ok := err.(interp.Panic); ok {\n\t\t\tt.Log(string(e.Stack))\n\t\t}\n\t\tt.FailNow()\n\t}\n\n\tif fmt.Sprintf(\"%v\", res) != expectedRes {\n\t\tt.Fatalf(\"got %v, want %s\", res, expectedRes)\n\t}\n}\n\nfunc TestMultiEval(t *testing.T) {\n\tt.Skip(\"fail in CI only ?\")\n\t// catch stdout\n\tbackupStdout := os.Stdout\n\tdefer func() {\n\t\tos.Stdout = backupStdout\n\t}()\n\tr, w, _ := os.Pipe()\n\tos.Stdout = w\n\n\ti := interp.New(interp.Options{})\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tf, err := os.Open(filepath.Join(\"testdata\", \"multi\", \"731\"))\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tnames, err := f.Readdirnames(-1)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tfor _, v := range names {\n\t\tif _, err := i.EvalPath(filepath.Join(f.Name(), v)); err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t}\n\n\t// read stdout\n\tif err = w.Close(); err != nil {\n\t\tt.Fatal(err)\n\t}\n\toutInterp, err := io.ReadAll(r)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// restore Stdout\n\tos.Stdout = backupStdout\n\n\twant := \"A\\nB\\n\"\n\tgot := string(outInterp)\n\tif got != want {\n\t\tt.Fatalf(\"unexpected output: got %v, wanted %v\", got, want)\n\t}\n}\n\nfunc TestMultiEvalNoName(t *testing.T) {\n\tt.Skip(\"fail in CI only ?\")\n\ti := interp.New(interp.Options{})\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tf, err := os.Open(filepath.Join(\"testdata\", \"multi\", \"731\"))\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tnames, err := f.Readdirnames(-1)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tfor k, v := range names {\n\t\tdata, err := os.ReadFile(filepath.Join(f.Name(), v))\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\t_, err = i.Eval(string(data))\n\t\tif k == 1 {\n\t\t\texpectedErr := fmt.Errorf(\"3:8: fmt/%s redeclared in this block\", interp.DefaultSourceName)\n\t\t\tif err == nil || err.Error() != expectedErr.Error() {\n\t\t\t\tt.Fatalf(\"unexpected result; wanted error %v, got %v\", expectedErr, err)\n\t\t\t}\n\t\t\treturn\n\t\t}\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t}\n}\n\nconst goMinorVersionTest = 16\n\nfunc TestHasIOFS(t *testing.T) {\n\tcode := `\n// +build go1.18\n\npackage main\n\nimport (\n\t\"errors\"\n\t\"io/fs\"\n)\n\nfunc main() {\n\tpe := fs.PathError{}\n\tpe.Op = \"nothing\"\n\tpe.Path = \"/nowhere\"\n\tpe.Err = errors.New(\"an error\")\n\tprintln(pe.Error())\n}\n\n// Output:\n// nothing /nowhere: an error\n`\n\n\tvar buf bytes.Buffer\n\ti := interp.New(interp.Options{Stdout: &buf})\n\tif err := i.Use(interp.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tif _, err := i.Eval(code); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tvar expectedOutput string\n\tvar minor int\n\tvar err error\n\tversion := runtime.Version()\n\tversion = strings.Replace(version, \"beta\", \".\", 1)\n\tversion = strings.Replace(version, \"rc\", \".\", 1)\n\tfields := strings.Fields(version)\n\t// Go stable\n\tif len(fields) == 1 {\n\t\tv := strings.Split(version, \".\")\n\t\tif len(v) < 2 {\n\t\t\tt.Fatalf(\"unexpected: %v\", version)\n\t\t}\n\t\tminor, err = strconv.Atoi(v[1])\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t} else {\n\t\t// Go devel\n\t\tif fields[0] != \"devel\" {\n\t\t\tt.Fatalf(\"unexpected: %v\", fields[0])\n\t\t}\n\t\tparts := strings.Split(fields[1], \"-\")\n\t\tif len(parts) != 2 {\n\t\t\tt.Fatalf(\"unexpected: %v\", fields[1])\n\t\t}\n\t\tminor, err = strconv.Atoi(strings.TrimPrefix(parts[0], \"go1.\"))\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t}\n\n\tif minor >= goMinorVersionTest {\n\t\texpectedOutput = \"nothing /nowhere: an error\\n\"\n\t}\n\n\toutput := buf.String()\n\tif buf.String() != expectedOutput {\n\t\tt.Fatalf(\"got: %v, wanted: %v\", output, expectedOutput)\n\t}\n}\n\nfunc TestImportPathIsKey(t *testing.T) {\n\t// FIXME(marc): support of stdlib generic packages like \"cmp\", \"maps\", \"slices\" has changed\n\t// the scope layout by introducing new source packages when stdlib is used.\n\t// The logic of the following test doesn't apply anymore.\n\tt.Skip(\"This test needs to be reworked.\")\n\t// No need to check the results of Eval, as TestFile already does it.\n\ti := interp.New(interp.Options{GoPath: filepath.FromSlash(\"../_test/testdata/redeclaration-global7\")})\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tfilePath := filepath.Join(\"..\", \"_test\", \"ipp_as_key.go\")\n\tif _, err := i.EvalPath(filePath); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\twantScopes := map[string][]string{\n\t\t\"main\": {\n\t\t\t\"titi/ipp_as_key.go\",\n\t\t\t\"tutu/ipp_as_key.go\",\n\t\t\t\"main\",\n\t\t},\n\t\t\"guthib.com/toto\": {\n\t\t\t\"quux/titi.go\",\n\t\t\t\"Quux\",\n\t\t},\n\t\t\"guthib.com/bar\": {\n\t\t\t\"Quux\",\n\t\t},\n\t\t\"guthib.com/tata\": {\n\t\t\t\"quux/tutu.go\",\n\t\t\t\"Quux\",\n\t\t},\n\t\t\"guthib.com/baz\": {\n\t\t\t\"Quux\",\n\t\t},\n\t}\n\twantPackages := map[string]string{\n\t\t\"guthib.com/baz\":  \"quux\",\n\t\t\"guthib.com/tata\": \"tutu\",\n\t\t\"main\":            \"main\",\n\t\t\"guthib.com/bar\":  \"quux\",\n\t\t\"guthib.com/toto\": \"titi\",\n\t}\n\n\tscopes := i.Scopes()\n\tif len(scopes) != len(wantScopes) {\n\t\tt.Fatalf(\"want %d, got %d\", len(wantScopes), len(scopes))\n\t}\n\tfor k, v := range scopes {\n\t\twantSym := wantScopes[k]\n\t\tif len(v) != len(wantSym) {\n\t\t\tt.Fatalf(\"want %d, got %d\", len(wantSym), len(v))\n\t\t}\n\t\tfor _, sym := range wantSym {\n\t\t\tif _, ok := v[sym]; !ok {\n\t\t\t\tt.Fatalf(\"symbol %s not found in scope %s\", sym, k)\n\t\t\t}\n\t\t}\n\t}\n\n\tpackages := i.Packages()\n\tfor k, v := range wantPackages {\n\t\tpkg := packages[k]\n\t\tif pkg != v {\n\t\t\tt.Fatalf(\"for import path %s, want %s, got %s\", k, v, pkg)\n\t\t}\n\t}\n}\n\n// The code in hello1.go and hello2.go spawns a \"long-running\" goroutine, which\n// means each call to EvalPath actually terminates before the evaled code is done\n// running. So this test demonstrates:\n// 1) That two sequential calls to EvalPath don't see their \"compilation phases\"\n// collide (no data race on the fields of the interpreter), which is somewhat\n// obvious since the calls (and hence the \"compilation phases\") are sequential too.\n// 2) That two concurrent goroutine runs spawned by the same interpreter do not\n// collide either.\nfunc TestConcurrentEvals(t *testing.T) {\n\tif testing.Short() {\n\t\treturn\n\t}\n\tpin, pout := io.Pipe()\n\tdefer func() {\n\t\t_ = pin.Close()\n\t\t_ = pout.Close()\n\t}()\n\tinterpr := interp.New(interp.Options{Stdout: pout})\n\tif err := interpr.Use(stdlib.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tif _, err := interpr.EvalPath(\"testdata/concurrent/hello1.go\"); err != nil {\n\t\tt.Fatal(err)\n\t}\n\tif _, err := interpr.EvalPath(\"testdata/concurrent/hello2.go\"); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tc := make(chan error)\n\tgo func() {\n\t\thello1, hello2 := false, false\n\t\tsc := bufio.NewScanner(pin)\n\t\tfor sc.Scan() {\n\t\t\tl := sc.Text()\n\t\t\tswitch l {\n\t\t\tcase \"hello world1\":\n\t\t\t\thello1 = true\n\t\t\tcase \"hello world2\":\n\t\t\t\thello2 = true\n\t\t\tcase \"hello world1hello world2\", \"hello world2hello world1\":\n\t\t\t\thello1 = true\n\t\t\t\thello2 = true\n\t\t\tdefault:\n\t\t\t\tc <- fmt.Errorf(\"unexpected output: %v\", l)\n\t\t\t\treturn\n\t\t\t}\n\t\t\tif hello1 && hello2 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tc <- nil\n\t}()\n\n\ttimeout := time.NewTimer(5 * time.Second)\n\tselect {\n\tcase <-timeout.C:\n\t\tt.Fatal(\"timeout\")\n\tcase err := <-c:\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t}\n}\n\n// TestConcurrentEvals2 shows that even though EvalWithContext calls Eval in a\n// goroutine, it indeed waits for Eval to terminate, and that therefore the code\n// called by EvalWithContext is sequential. And that there is no data race for the\n// interp package global vars or the interpreter fields in this case.\nfunc TestConcurrentEvals2(t *testing.T) {\n\tif testing.Short() {\n\t\treturn\n\t}\n\tpin, pout := io.Pipe()\n\tdefer func() {\n\t\t_ = pin.Close()\n\t\t_ = pout.Close()\n\t}()\n\tinterpr := interp.New(interp.Options{Stdout: pout})\n\tif err := interpr.Use(stdlib.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tdone := make(chan error)\n\tgo func() {\n\t\thello1 := false\n\t\tsc := bufio.NewScanner(pin)\n\t\tfor sc.Scan() {\n\t\t\tl := sc.Text()\n\t\t\tif hello1 {\n\t\t\t\tif l == \"hello world2\" {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tdone <- fmt.Errorf(\"unexpected output: %v\", l)\n\t\t\t\treturn\n\t\t\t}\n\t\t\tif l == \"hello world1\" {\n\t\t\t\thello1 = true\n\t\t\t} else {\n\t\t\t\tdone <- fmt.Errorf(\"unexpected output: %v\", l)\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t\tdone <- nil\n\t}()\n\n\tctx := context.Background()\n\tif _, err := interpr.EvalWithContext(ctx, `import \"time\"`); err != nil {\n\t\tt.Fatal(err)\n\t}\n\tif _, err := interpr.EvalWithContext(ctx, `time.Sleep(time.Second); println(\"hello world1\")`); err != nil {\n\t\tt.Fatal(err)\n\t}\n\tif _, err := interpr.EvalWithContext(ctx, `time.Sleep(time.Second); println(\"hello world2\")`); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\ttimeout := time.NewTimer(5 * time.Second)\n\tselect {\n\tcase <-timeout.C:\n\t\tt.Fatal(\"timeout\")\n\tcase err := <-done:\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t}\n}\n\n// TestConcurrentEvals3 makes sure that we don't regress into data races at the package level, i.e from:\n// - global vars, which should obviously not be mutated.\n// - when calling Interpreter.Use, the symbols given as argument should be\n// copied when being inserted into interp.binPkg, and not directly used as-is.\nfunc TestConcurrentEvals3(t *testing.T) {\n\tif testing.Short() {\n\t\treturn\n\t}\n\tallDone := make(chan bool)\n\trunREPL := func() {\n\t\tdone := make(chan error)\n\t\tpinin, poutin := io.Pipe()\n\t\tpinout, poutout := io.Pipe()\n\t\ti := interp.New(interp.Options{Stdin: pinin, Stdout: poutout})\n\t\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\n\t\tgo func() {\n\t\t\t_, _ = i.REPL()\n\t\t}()\n\n\t\tinput := []string{\n\t\t\t`hello one`,\n\t\t\t`hello two`,\n\t\t\t`hello three`,\n\t\t}\n\n\t\tgo func() {\n\t\t\tsc := bufio.NewScanner(pinout)\n\t\t\tk := 0\n\t\t\tfor sc.Scan() {\n\t\t\t\tl := sc.Text()\n\t\t\t\tif l != input[k] {\n\t\t\t\t\tdone <- fmt.Errorf(\"unexpected output, want %q, got %q\", input[k], l)\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tk++\n\t\t\t\tif k > 2 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tdone <- nil\n\t\t}()\n\n\t\tfor _, v := range input {\n\t\t\tin := strings.NewReader(fmt.Sprintf(\"println(%q)\\n\", v))\n\t\t\tif _, err := io.Copy(poutin, in); err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\t\t\ttime.Sleep(time.Second)\n\t\t}\n\n\t\tif err := <-done; err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\t_ = pinin.Close()\n\t\t_ = poutin.Close()\n\t\t_ = pinout.Close()\n\t\t_ = poutout.Close()\n\t\tallDone <- true\n\t}\n\n\tfor i := 0; i < 2; i++ {\n\t\tgo func() {\n\t\t\trunREPL()\n\t\t}()\n\t}\n\n\ttimeout := time.NewTimer(10 * time.Second)\n\tfor i := 0; i < 2; i++ {\n\t\tselect {\n\t\tcase <-allDone:\n\t\tcase <-timeout.C:\n\t\t\tt.Fatal(\"timeout\")\n\t\t}\n\t}\n}\n\nfunc TestConcurrentComposite1(t *testing.T) {\n\ttestConcurrentComposite(t, \"./testdata/concurrent/composite/composite_lit.go\")\n}\n\nfunc TestConcurrentComposite2(t *testing.T) {\n\ttestConcurrentComposite(t, \"./testdata/concurrent/composite/composite_sparse.go\")\n}\n\nfunc testConcurrentComposite(t *testing.T, filePath string) {\n\tt.Helper()\n\n\tif testing.Short() {\n\t\treturn\n\t}\n\tpin, pout := io.Pipe()\n\ti := interp.New(interp.Options{Stdout: pout})\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\terrc := make(chan error)\n\tvar output string\n\tgo func() {\n\t\tsc := bufio.NewScanner(pin)\n\t\tk := 0\n\t\tfor sc.Scan() {\n\t\t\toutput += sc.Text()\n\t\t\tk++\n\t\t\tif k > 1 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\terrc <- nil\n\t}()\n\n\tif _, err := i.EvalPath(filePath); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t_ = pin.Close()\n\t_ = pout.Close()\n\n\tif err := <-errc; err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\texpected := \"{hello}{hello}\"\n\tif output != expected {\n\t\tt.Fatalf(\"unexpected output, want %q, got %q\", expected, output)\n\t}\n}\n\nfunc TestEvalREPL(t *testing.T) {\n\tif testing.Short() {\n\t\treturn\n\t}\n\ttype testCase struct {\n\t\tdesc      string\n\t\tsrc       []string\n\t\terrorLine int\n\t}\n\ttests := []testCase{\n\t\t{\n\t\t\tdesc: \"no error\",\n\t\t\tsrc: []string{\n\t\t\t\t`func main() {`,\n\t\t\t\t`println(\"foo\")`,\n\t\t\t\t`}`,\n\t\t\t},\n\t\t\terrorLine: -1,\n\t\t},\n\n\t\t{\n\t\t\tdesc: \"no parsing error, but block error\",\n\t\t\tsrc: []string{\n\t\t\t\t`func main() {`,\n\t\t\t\t`println(foo)`,\n\t\t\t\t`}`,\n\t\t\t},\n\t\t\terrorLine: 2,\n\t\t},\n\t\t{\n\t\t\tdesc: \"parsing error\",\n\t\t\tsrc: []string{\n\t\t\t\t`func main() {`,\n\t\t\t\t`println(/foo)`,\n\t\t\t\t`}`,\n\t\t\t},\n\t\t\terrorLine: 1,\n\t\t},\n\t\t{\n\t\t\tdesc: \"multi-line string literal\",\n\t\t\tsrc: []string{\n\t\t\t\t\"var a = `hello\",\n\t\t\t\t\"there, how\",\n\t\t\t\t\"are you?`\",\n\t\t\t},\n\t\t\terrorLine: -1,\n\t\t},\n\n\t\t{\n\t\t\tdesc: \"multi-line comma operand\",\n\t\t\tsrc: []string{\n\t\t\t\t`println(2,`,\n\t\t\t\t`3)`,\n\t\t\t},\n\t\t\terrorLine: -1,\n\t\t},\n\t\t{\n\t\t\tdesc: \"multi-line arithmetic operand\",\n\t\t\tsrc: []string{\n\t\t\t\t`println(2. /`,\n\t\t\t\t`3.)`,\n\t\t\t},\n\t\t\terrorLine: -1,\n\t\t},\n\t\t{\n\t\t\tdesc: \"anonymous func call with no assignment\",\n\t\t\tsrc: []string{\n\t\t\t\t`func() { println(3) }()`,\n\t\t\t},\n\t\t\terrorLine: -1,\n\t\t},\n\t\t{\n\t\t\t// to make sure that special handling of the above anonymous, does not break this general case.\n\t\t\tdesc: \"just func\",\n\t\t\tsrc: []string{\n\t\t\t\t`func foo() { println(3) }`,\n\t\t\t},\n\t\t\terrorLine: -1,\n\t\t},\n\t\t{\n\t\t\t// to make sure that special handling of the above anonymous, does not break this general case.\n\t\t\tdesc: \"just method\",\n\t\t\tsrc: []string{\n\t\t\t\t`type bar string`,\n\t\t\t\t`func (b bar) foo() { println(3) }`,\n\t\t\t},\n\t\t\terrorLine: -1,\n\t\t},\n\t\t{\n\t\t\tdesc: \"define a label\",\n\t\t\tsrc: []string{\n\t\t\t\t`a:`,\n\t\t\t},\n\t\t\terrorLine: -1,\n\t\t},\n\t}\n\n\trunREPL := func(t *testing.T, test testCase) {\n\t\t// TODO(mpl): use a pipe for the output as well, just as in TestConcurrentEvals5\n\t\tvar stdout bytes.Buffer\n\t\tsafeStdout := &safeBuffer{buf: &stdout}\n\t\tvar stderr bytes.Buffer\n\t\tsafeStderr := &safeBuffer{buf: &stderr}\n\t\tpin, pout := io.Pipe()\n\t\ti := interp.New(interp.Options{Stdin: pin, Stdout: safeStdout, Stderr: safeStderr})\n\t\tdefer func() {\n\t\t\t// Closing the pipe also takes care of making i.REPL terminate,\n\t\t\t// hence freeing its goroutine.\n\t\t\t_ = pin.Close()\n\t\t\t_ = pout.Close()\n\t\t}()\n\n\t\tgo func() {\n\t\t\t_, _ = i.REPL()\n\t\t}()\n\t\tfor k, v := range test.src {\n\t\t\tif _, err := pout.Write([]byte(v + \"\\n\")); err != nil {\n\t\t\t\tt.Error(err)\n\t\t\t}\n\t\t\tSleep(100 * time.Millisecond)\n\n\t\t\terrMsg := safeStderr.String()\n\t\t\tif k == test.errorLine {\n\t\t\t\tif errMsg == \"\" {\n\t\t\t\t\tt.Fatalf(\"test %q: statement %q should have produced an error\", test.desc, v)\n\t\t\t\t}\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tif errMsg != \"\" {\n\t\t\t\tt.Fatalf(\"test %q: unexpected error: %v\", test.desc, errMsg)\n\t\t\t}\n\t\t}\n\t}\n\n\tfor _, test := range tests {\n\t\trunREPL(t, test)\n\t}\n}\n\ntype safeBuffer struct {\n\tmu  sync.RWMutex\n\tbuf *bytes.Buffer\n}\n\nfunc (sb *safeBuffer) Read(p []byte) (int, error) {\n\treturn sb.buf.Read(p)\n}\n\nfunc (sb *safeBuffer) String() string {\n\tsb.mu.RLock()\n\tdefer sb.mu.RUnlock()\n\treturn sb.buf.String()\n}\n\nfunc (sb *safeBuffer) Write(p []byte) (int, error) {\n\tsb.mu.Lock()\n\tdefer sb.mu.Unlock()\n\treturn sb.buf.Write(p)\n}\n\nconst (\n\t// CITimeoutMultiplier is the multiplier for all timeouts in the CI.\n\tCITimeoutMultiplier = 3\n)\n\n// Sleep pauses the current goroutine for at least the duration d.\nfunc Sleep(d time.Duration) {\n\td = applyCIMultiplier(d)\n\ttime.Sleep(d)\n}\n\nfunc applyCIMultiplier(timeout time.Duration) time.Duration {\n\tci := os.Getenv(\"CI\")\n\tif ci == \"\" {\n\t\treturn timeout\n\t}\n\tb, err := strconv.ParseBool(ci)\n\tif err != nil || !b {\n\t\treturn timeout\n\t}\n\treturn time.Duration(float64(timeout) * CITimeoutMultiplier)\n}\n\nfunc TestREPLCommands(t *testing.T) {\n\tif testing.Short() {\n\t\treturn\n\t}\n\tt.Setenv(\"YAEGI_PROMPT\", \"1\") // To force prompts over non-tty streams\n\n\tallDone := make(chan bool)\n\trunREPL := func() {\n\t\tdone := make(chan error)\n\t\tpinin, poutin := io.Pipe()\n\t\tpinout, poutout := io.Pipe()\n\t\ti := interp.New(interp.Options{Stdin: pinin, Stdout: poutout})\n\t\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\n\t\tgo func() {\n\t\t\t_, _ = i.REPL()\n\t\t}()\n\n\t\tdefer func() {\n\t\t\t_ = pinin.Close()\n\t\t\t_ = poutin.Close()\n\t\t\t_ = pinout.Close()\n\t\t\t_ = poutout.Close()\n\t\t\tallDone <- true\n\t\t}()\n\n\t\tinput := []string{\n\t\t\t`1/1`,\n\t\t\t`7/3`,\n\t\t\t`16/5`,\n\t\t\t`3./2`, // float\n\t\t\t`reflect.TypeOf(math_rand.Int)`,\n\t\t\t`reflect.TypeOf(crypto_rand.Int)`,\n\t\t}\n\t\toutput := []string{\n\t\t\t`1`,\n\t\t\t`2`,\n\t\t\t`3`,\n\t\t\t`1.5`,\n\t\t\t`func() int`,\n\t\t\t`func(io.Reader, *big.Int) (*big.Int, error)`,\n\t\t}\n\n\t\tgo func() {\n\t\t\tsc := bufio.NewScanner(pinout)\n\t\t\tk := 0\n\t\t\tfor sc.Scan() {\n\t\t\t\tl := sc.Text()\n\t\t\t\tif l != \"> : \"+output[k] {\n\t\t\t\t\tdone <- fmt.Errorf(\"unexpected output, want %q, got %q\", output[k], l)\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tk++\n\t\t\t\tif k > 3 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tdone <- nil\n\t\t}()\n\n\t\tfor _, v := range input {\n\t\t\tin := strings.NewReader(v + \"\\n\")\n\t\t\tif _, err := io.Copy(poutin, in); err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\t\t\tselect {\n\t\t\tcase err := <-done:\n\t\t\t\tif err != nil {\n\t\t\t\t\tt.Fatal(err)\n\t\t\t\t}\n\t\t\t\treturn\n\t\t\tdefault:\n\t\t\t\ttime.Sleep(time.Second)\n\t\t\t}\n\t\t}\n\n\t\tif err := <-done; err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t}\n\n\tgo func() {\n\t\trunREPL()\n\t}()\n\n\ttimeout := time.NewTimer(10 * time.Second)\n\tselect {\n\tcase <-allDone:\n\tcase <-timeout.C:\n\t\tt.Fatal(\"timeout\")\n\t}\n}\n\nfunc TestStdio(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\ti.ImportUsed()\n\tif _, err := i.Eval(`var x = os.Stdout`); err != nil {\n\t\tt.Fatal(err)\n\t}\n\tv, _ := i.Eval(`x`)\n\tif _, ok := v.Interface().(*os.File); !ok {\n\t\tt.Fatalf(\"%v not *os.file\", v.Interface())\n\t}\n}\n\nfunc TestNoGoFiles(t *testing.T) {\n\ti := interp.New(interp.Options{GoPath: build.Default.GOPATH})\n\t_, err := i.Eval(`import \"github.com/traefik/yaegi/_test/p3\"`)\n\tif strings.Contains(err.Error(), \"no Go files in\") {\n\t\treturn\n\t}\n\n\tt.Fatalf(\"failed to detect no Go files: %v\", err)\n}\n\nfunc TestIssue1142(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\trunTests(t, i, []testCase{\n\t\t{src: \"a := 1; // foo bar\", res: \"1\"},\n\t})\n}\n\ntype Issue1149Array [3]float32\n\nfunc (v Issue1149Array) Foo() string  { return \"foo\" }\nfunc (v *Issue1149Array) Bar() string { return \"foo\" }\n\nfunc TestIssue1149(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\tif err := i.Use(interp.Exports{\n\t\t\"pkg/pkg\": map[string]reflect.Value{\n\t\t\t\"Type\": reflect.ValueOf((*Issue1149Array)(nil)),\n\t\t},\n\t}); err != nil {\n\t\tt.Fatal(err)\n\t}\n\ti.ImportUsed()\n\n\t_, err := i.Eval(`\n\t\ttype Type = pkg.Type\n\t`)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\trunTests(t, i, []testCase{\n\t\t{src: \"Type{1, 2, 3}.Foo()\", res: \"foo\"},\n\t\t{src: \"Type{1, 2, 3}.Bar()\", res: \"foo\"},\n\t})\n}\n\nfunc TestIssue1150(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\t_, err := i.Eval(`\n\t\ttype ArrayT [3]float32\n\t\ttype SliceT []float32\n\t\ttype StructT struct { A, B, C float32 }\n\t\ttype StructT2 struct { A, B, C float32 }\n\t\ttype FooerT interface { Foo() string }\n\n\t\tfunc (v ArrayT) Foo() string { return \"foo\" }\n\t\tfunc (v SliceT) Foo() string { return \"foo\" }\n\t\tfunc (v StructT) Foo() string { return \"foo\" }\n\t\tfunc (v *StructT2) Foo() string { return \"foo\" }\n\n\t\ttype Array = ArrayT\n\t\ttype Slice = SliceT\n\t\ttype Struct = StructT\n\t\ttype Struct2 = StructT2\n\t\ttype Fooer = FooerT\n\t`)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\trunTests(t, i, []testCase{\n\t\t{desc: \"array\", src: \"Array{1, 2, 3}.Foo()\", res: \"foo\"},\n\t\t{desc: \"slice\", src: \"Slice{1, 2, 3}.Foo()\", res: \"foo\"},\n\t\t{desc: \"struct\", src: \"Struct{1, 2, 3}.Foo()\", res: \"foo\"},\n\t\t{desc: \"*struct\", src: \"Struct2{1, 2, 3}.Foo()\", res: \"foo\"},\n\t\t{desc: \"interface\", src: \"v := Fooer(Array{1, 2, 3}); v.Foo()\", res: \"foo\"},\n\t})\n}\n\nfunc TestIssue1151(t *testing.T) {\n\ttype pkgStruct struct{ X int }\n\ttype pkgArray [1]int\n\n\ti := interp.New(interp.Options{})\n\tif err := i.Use(interp.Exports{\n\t\t\"pkg/pkg\": map[string]reflect.Value{\n\t\t\t\"Struct\": reflect.ValueOf((*pkgStruct)(nil)),\n\t\t\t\"Array\":  reflect.ValueOf((*pkgArray)(nil)),\n\t\t},\n\t}); err != nil {\n\t\tt.Fatal(err)\n\t}\n\ti.ImportUsed()\n\n\trunTests(t, i, []testCase{\n\t\t{src: \"x := pkg.Struct{1}\", res: \"{1}\"},\n\t\t{src: \"x := pkg.Array{1}\", res: \"[1]\"},\n\t})\n}\n\nfunc TestPassArgs(t *testing.T) {\n\ti := interp.New(interp.Options{Args: []string{\"arg0\", \"arg1\"}})\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\ti.ImportUsed()\n\trunTests(t, i, []testCase{\n\t\t{src: \"os.Args\", res: \"[arg0 arg1]\"},\n\t})\n}\n\nfunc TestRestrictedEnv(t *testing.T) {\n\ti := interp.New(interp.Options{Env: []string{\"foo=bar\"}})\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\ti.ImportUsed()\n\trunTests(t, i, []testCase{\n\t\t{src: `os.Getenv(\"foo\")`, res: \"bar\"},\n\t\t{src: `s, ok := os.LookupEnv(\"foo\"); s`, res: \"bar\"},\n\t\t{src: `s, ok := os.LookupEnv(\"foo\"); ok`, res: \"true\"},\n\t\t{src: `s, ok := os.LookupEnv(\"PATH\"); s`, res: \"\"},\n\t\t{src: `s, ok := os.LookupEnv(\"PATH\"); ok`, res: \"false\"},\n\t\t{src: `os.Setenv(\"foo\", \"baz\"); os.Environ()`, res: \"[foo=baz]\"},\n\t\t{src: `os.ExpandEnv(\"foo is ${foo}\")`, res: \"foo is baz\"},\n\t\t{src: `os.Unsetenv(\"foo\"); os.Environ()`, res: \"[]\"},\n\t\t{src: `os.Setenv(\"foo\", \"baz\"); os.Environ()`, res: \"[foo=baz]\"},\n\t\t{src: `os.Clearenv(); os.Environ()`, res: \"[]\"},\n\t\t{src: `os.Setenv(\"foo\", \"baz\"); os.Environ()`, res: \"[foo=baz]\"},\n\t})\n\tif s, ok := os.LookupEnv(\"foo\"); ok {\n\t\tt.Fatal(\"expected \\\"\\\", got \" + s)\n\t}\n}\n\nfunc TestIssue1388(t *testing.T) {\n\ti := interp.New(interp.Options{Env: []string{\"foo=bar\"}})\n\terr := i.Use(stdlib.Symbols)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t_, err = i.Eval(`x := errors.New(\"\")`)\n\tif err == nil {\n\t\tt.Fatal(\"Expected an error\")\n\t}\n\n\t_, err = i.Eval(`import \"errors\"`)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t_, err = i.Eval(`x := errors.New(\"\")`)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n}\n\nfunc TestIssue1383(t *testing.T) {\n\tconst src = `\n\t\t\tpackage main\n\n\t\t\tfunc main() {\n\t\t\t\tfmt.Println(\"Hello\")\n\t\t\t}\n\t\t`\n\n\ti := interp.New(interp.Options{})\n\terr := i.Use(stdlib.Symbols)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\t_, err = i.Eval(`import \"fmt\"`)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tast, err := parser.ParseFile(i.FileSet(), \"_.go\", src, parser.DeclarationErrors)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tprog, err := i.CompileAST(ast)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\t_, err = i.Execute(prog)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n}\n\nfunc TestIssue1623(t *testing.T) {\n\tvar f float64\n\tvar j int\n\tvar s string = \"foo\"\n\n\ti := interp.New(interp.Options{})\n\tif err := i.Use(interp.Exports{\n\t\t\"pkg/pkg\": map[string]reflect.Value{\n\t\t\t\"F\": reflect.ValueOf(&f).Elem(),\n\t\t\t\"J\": reflect.ValueOf(&j).Elem(),\n\t\t\t\"S\": reflect.ValueOf(&s).Elem(),\n\t\t},\n\t}); err != nil {\n\t\tt.Fatal(err)\n\t}\n\ti.ImportUsed()\n\n\trunTests(t, i, []testCase{\n\t\t{desc: \"pkg.F = 2.0\", src: \"pkg.F = 2.0; pkg.F\", res: \"2\"},\n\t\t{desc: \"pkg.J = 3\", src: \"pkg.J = 3; pkg.J\", res: \"3\"},\n\t\t{desc: `pkg.S = \"bar\"`, src: `pkg.S = \"bar\"; pkg.S`, res: \"bar\"},\n\t})\n}\n"
  },
  {
    "path": "interp/interp_export_test.go",
    "content": "package interp_test\n\nimport (\n\t\"reflect\"\n\t\"testing\"\n\n\t\"github.com/traefik/yaegi/interp\"\n)\n\ntype Helloer interface {\n\tHello()\n}\n\nfunc Hi(h Helloer) {\n\tprintln(\"In Hi:\")\n\th.Hello()\n}\n\n// A Wrap represents the wrapper which allows to use objects created by\n// the interpreter as Go interfaces (despite limitations in reflect which\n// forbid dynamic method creation).\n//\n// All the struct fields are functions, where the fied name corresponds to\n// the method name prefixed by \"Do\". The function signature must be the\n// same as the interface one.\n//\n// A corresponding Wrap method Xyz which satisfies the interface must exist and\n// must invoke the DoXyz function.\n//\n// To be usable, the interpreter should return a Wrap instance with the relevant\n// function fields filled. The application can then invoke methods on it.\n// The method calls will be forwarded to the interpreter.\n//\n// Only the Wrap type definition needs to be exported to the interpreter (not\n// the interfaces and methods definitions).\ntype Wrap struct {\n\tDoHello func() // related to the Hello() method.\n\t// Other interface method wrappers...\n}\n\nfunc (w Wrap) Hello() { w.DoHello() }\n\nfunc TestExportsSemantics(t *testing.T) {\n\tFoo := &struct{}{}\n\n\tt.Run(\"Correct\", func(t *testing.T) {\n\t\tt.Skip()\n\t\ti := interp.New(interp.Options{})\n\n\t\terr := i.Use(interp.Exports{\n\t\t\t\"foo/foo\": {\"Foo\": reflect.ValueOf(Foo)},\n\t\t})\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\ti.ImportUsed()\n\n\t\tres, err := i.Eval(\"foo.Foo\")\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\tif res.Interface() != Foo {\n\t\t\tt.Fatalf(\"expected foo.Foo to equal local Foo\")\n\t\t}\n\t})\n\n\tt.Run(\"Incorrect\", func(t *testing.T) {\n\t\ti := interp.New(interp.Options{})\n\n\t\terr := i.Use(interp.Exports{\n\t\t\t\"foo\": {\"Foo\": reflect.ValueOf(Foo)},\n\t\t})\n\t\tif err == nil {\n\t\t\tt.Fatal(\"expected error for incorrect Use semantics\")\n\t\t}\n\t})\n}\n\nfunc TestInterface(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\t// export the Wrap type to the interpreter under virtual \"wrap\" package\n\terr := i.Use(interp.Exports{\n\t\t\"wrap/wrap\": {\n\t\t\t\"Wrap\": reflect.ValueOf((*Wrap)(nil)),\n\t\t},\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\teval(t, i, `\nimport \"wrap\"\n\ntype MyInt int\n\nfunc (m MyInt) Hello() { println(\"hello from Myint\", m) }\n\nfunc NewMyInt(i int) wrap.Wrap {\n\tm := MyInt(i)\n\treturn wrap.Wrap{DoHello: m.Hello}\n}\n`)\n\tNewMyInt := eval(t, i, \"NewMyInt\").Interface().(func(int) Wrap)\n\tw := NewMyInt(4)\n\tHi(w)\n}\n\ntype T struct{}\n\nfunc (t T) Bar(s ...string) {}\n\nfunc TestCallBinVariadicMethod(t *testing.T) {\n\ti := interp.New(interp.Options{})\n\terr := i.Use(interp.Exports{\n\t\t\"mypkg/mypkg\": {\n\t\t\t\"T\": reflect.ValueOf((*T)(nil)),\n\t\t},\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\teval(t, i, `\npackage p\n\nimport \"mypkg\"\n\nfunc Foo(x mypkg.T) { x.Bar(\"s\") }\n`)\n\tv := eval(t, i, \"p.Foo\")\n\tbar := v.Interface().(func(t T))\n\tbar(T{})\n}\n"
  },
  {
    "path": "interp/interp_file_test.go",
    "content": "package interp_test\n\nimport (\n\t\"bytes\"\n\t\"go/build\"\n\t\"go/parser\"\n\t\"go/token\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"runtime\"\n\t\"strings\"\n\t\"testing\"\n\n\t\"github.com/traefik/yaegi/interp\"\n\t\"github.com/traefik/yaegi/stdlib\"\n\t\"github.com/traefik/yaegi/stdlib/unsafe\"\n)\n\n// The following tests sometimes (not always) crash with go1.21 but not with go1.20 or go1.22.\n// The reason of failure is not obvious, maybe due to the runtime itself, and will be investigated separately.\n// Also, the closure tests depend on an incompatible language change in go1.22, where `for` variables are now\n// defined in body (thus reallocated at each loop). This is now the behavior in yaegi, so 1.21 produces\n// different results.\nvar testsToSkipGo121 = map[string]bool{\"cli6.go\": true, \"cli7.go\": true, \"issue-1276.go\": true, \"issue-1330.go\": true, \"struct11.go\": true, \"closure9.go\": true, \"closure10.go\": true, \"closure11.go\": true, \"closure12.go\": true, \"closure15.go\": true, \"closure16.go\": true, \"closure17.go\": true, \"closure18.go\": true, \"closure20.go\": true, \"for17.go\": true, \"for18.go\": true, \"for19.go\": true}\n\nvar go121 = strings.HasPrefix(runtime.Version(), \"go1.21\")\n\nfunc TestFile(t *testing.T) {\n\tfilePath := \"../_test/str.go\"\n\trunCheck(t, filePath)\n\n\tt.Setenv(\"YAEGI_SPECIAL_STDIO\", \"1\")\n\n\tbaseDir := filepath.Join(\"..\", \"_test\")\n\tfiles, err := os.ReadDir(baseDir)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tfor _, file := range files {\n\t\tif filepath.Ext(file.Name()) != \".go\" {\n\t\t\tcontinue\n\t\t}\n\t\t// Skip some tests which are problematic in go1.21 only.\n\t\tif go121 && testsToSkipGo121[file.Name()] {\n\t\t\tcontinue\n\t\t}\n\t\tfile := file\n\t\tt.Run(file.Name(), func(t *testing.T) {\n\t\t\trunCheck(t, filepath.Join(baseDir, file.Name()))\n\t\t})\n\t}\n}\n\nfunc runCheck(t *testing.T, p string) {\n\tt.Helper()\n\n\twanted, goPath, errWanted := wantedFromComment(p)\n\tif wanted == \"\" {\n\t\tt.Skip(p, \"has no comment 'Output:' or 'Error:'\")\n\t}\n\twanted = strings.TrimSpace(wanted)\n\n\tif goPath == \"\" {\n\t\tgoPath = build.Default.GOPATH\n\t}\n\tvar stdout, stderr bytes.Buffer\n\ti := interp.New(interp.Options{GoPath: goPath, Stdout: &stdout, Stderr: &stderr})\n\tif err := i.Use(interp.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\tif err := i.Use(unsafe.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t_, err := i.EvalPath(p)\n\tif errWanted {\n\t\tif err == nil {\n\t\t\tt.Fatalf(\"got nil error, want: %q\", wanted)\n\t\t}\n\t\tif res := strings.TrimSpace(err.Error()); !strings.Contains(res, wanted) {\n\t\t\tt.Errorf(\"got %q, want: %q\", res, wanted)\n\t\t}\n\t\treturn\n\t}\n\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tres := strings.TrimSpace(stdout.String())\n\t// Remove path in output, to have results independent of location.\n\tres = strings.ReplaceAll(res, filepath.ToSlash(p)+\":\", \"\")\n\tif res != wanted {\n\t\tt.Errorf(\"\\ngot:  %q,\\nwant: %q\", res, wanted)\n\t}\n}\n\nfunc wantedFromComment(p string) (res string, goPath string, err bool) {\n\tfset := token.NewFileSet()\n\tf, _ := parser.ParseFile(fset, p, nil, parser.ParseComments)\n\tif len(f.Comments) == 0 {\n\t\treturn\n\t}\n\ttext := f.Comments[len(f.Comments)-1].Text()\n\tif strings.HasPrefix(text, \"GOPATH:\") {\n\t\tparts := strings.SplitN(text, \"\\n\", 2)\n\t\ttext = parts[1]\n\t\twd, err := os.Getwd()\n\t\tif err != nil {\n\t\t\tpanic(err)\n\t\t}\n\t\tgoPath = filepath.Join(wd, \"..\", \"_test\", strings.TrimPrefix(parts[0], \"GOPATH:\"))\n\t}\n\tif strings.HasPrefix(text, \"Output:\\n\") {\n\t\treturn strings.TrimPrefix(text, \"Output:\\n\"), goPath, false\n\t}\n\tif strings.HasPrefix(text, \"Error:\\n\") {\n\t\treturn strings.TrimPrefix(text, \"Error:\\n\"), goPath, true\n\t}\n\treturn\n}\n"
  },
  {
    "path": "interp/interp_issue_1634_test.go",
    "content": "package interp\n\nimport (\n\t\"bytes\"\n\t\"io\"\n\t\"os\"\n\t\"reflect\"\n\t\"testing\"\n)\n\nfunc TestExportClosureArg(t *testing.T) {\n\toutExp := []byte(\"0\\n1\\n2\\n\")\n\t// catch stdout\n\tbackupStdout := os.Stdout\n\tdefer func() {\n\t\tos.Stdout = backupStdout\n\t}()\n\tr, w, _ := os.Pipe()\n\tos.Stdout = w\n\n\ti := New(Options{})\n\terr := i.Use(Exports{\n\t\t\"tmp/tmp\": map[string]reflect.Value{\n\t\t\t\"Func\": reflect.ValueOf(func(s *[]func(), f func()) { *s = append(*s, f) }),\n\t\t},\n\t})\n\tif err != nil {\n\t\tt.Error(err)\n\t}\n\ti.ImportUsed()\n\n\t_, err = i.Eval(`\nfunc main() {\n\tfs := []func(){}\n\t\n\tfor i := 0; i < 3; i++ {\n\t\ti := i\n\t\ttmp.Func(&fs, func() { println(i) })\n\t}\n\tfor _, f := range fs {\n\t\tf()\n\t}\n}\n`)\n\tif err != nil {\n\t\tt.Error(err)\n\t}\n\t// read stdout\n\tif err = w.Close(); err != nil {\n\t\tt.Fatal(err)\n\t}\n\toutInterp, err := io.ReadAll(r)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tif !bytes.Equal(outInterp, outExp) {\n\t\tt.Errorf(\"\\nGot: %q,\\n want: %q\", string(outInterp), string(outExp))\n\t}\n}\n"
  },
  {
    "path": "interp/interp_test.go",
    "content": "package interp\n\nimport (\n\t\"go/constant\"\n\t\"log\"\n\t\"reflect\"\n\t\"testing\"\n\n\t\"github.com/traefik/yaegi/stdlib\"\n)\n\nfunc init() { log.SetFlags(log.Lshortfile) }\n\nfunc TestIsNatural(t *testing.T) {\n\ttests := []struct {\n\t\tdesc     string\n\t\tn        *node\n\t\texpected bool\n\t}{\n\t\t{\n\t\t\tdesc: \"positive uint var\",\n\t\t\tn: &node{\n\t\t\t\ttyp: &itype{\n\t\t\t\t\trtype: func() reflect.Type {\n\t\t\t\t\t\tvar a uint = 3\n\t\t\t\t\t\treturn reflect.TypeOf(a)\n\t\t\t\t\t}(),\n\t\t\t\t},\n\t\t\t\trval: func() reflect.Value {\n\t\t\t\t\tvar a uint = 3\n\t\t\t\t\treturn reflect.ValueOf(a)\n\t\t\t\t}(),\n\t\t\t},\n\t\t\texpected: true,\n\t\t},\n\t\t{\n\t\t\tdesc: \"positive untyped var\",\n\t\t\tn: &node{\n\t\t\t\ttyp: &itype{\n\t\t\t\t\trtype: func() reflect.Type {\n\t\t\t\t\t\ta := 3\n\t\t\t\t\t\treturn reflect.TypeOf(a)\n\t\t\t\t\t}(),\n\t\t\t\t},\n\t\t\t\trval: func() reflect.Value {\n\t\t\t\t\ta := 3\n\t\t\t\t\treturn reflect.ValueOf(a)\n\t\t\t\t}(),\n\t\t\t},\n\t\t\texpected: true,\n\t\t},\n\t\t{\n\t\t\tdesc: \"positive int var\",\n\t\t\tn: &node{\n\t\t\t\ttyp: &itype{\n\t\t\t\t\trtype: func() reflect.Type {\n\t\t\t\t\t\tvar a int = 3\n\t\t\t\t\t\treturn reflect.TypeOf(a)\n\t\t\t\t\t}(),\n\t\t\t\t},\n\t\t\t\trval: func() reflect.Value {\n\t\t\t\t\tvar a int = 3\n\t\t\t\t\treturn reflect.ValueOf(a)\n\t\t\t\t}(),\n\t\t\t},\n\t\t\texpected: true,\n\t\t},\n\t\t{\n\t\t\tdesc: \"positive float var, null decimal\",\n\t\t\tn: &node{\n\t\t\t\ttyp: &itype{\n\t\t\t\t\trtype: func() reflect.Type {\n\t\t\t\t\t\tvar a float64 = 3.0\n\t\t\t\t\t\treturn reflect.TypeOf(a)\n\t\t\t\t\t}(),\n\t\t\t\t},\n\t\t\t\trval: func() reflect.Value {\n\t\t\t\t\tvar a float64 = 3.0\n\t\t\t\t\treturn reflect.ValueOf(a)\n\t\t\t\t}(),\n\t\t\t},\n\t\t\texpected: true,\n\t\t},\n\t\t{\n\t\t\tdesc: \"positive float var, with decimal\",\n\t\t\tn: &node{\n\t\t\t\ttyp: &itype{\n\t\t\t\t\trtype: func() reflect.Type {\n\t\t\t\t\t\tvar a float64 = 3.14\n\t\t\t\t\t\treturn reflect.TypeOf(a)\n\t\t\t\t\t}(),\n\t\t\t\t},\n\t\t\t\trval: func() reflect.Value {\n\t\t\t\t\tvar a float64 = 3.14\n\t\t\t\t\treturn reflect.ValueOf(a)\n\t\t\t\t}(),\n\t\t\t},\n\t\t\texpected: false,\n\t\t},\n\t\t{\n\t\t\tdesc: \"negative int var\",\n\t\t\tn: &node{\n\t\t\t\ttyp: &itype{\n\t\t\t\t\trtype: func() reflect.Type {\n\t\t\t\t\t\tvar a int = -3\n\t\t\t\t\t\treturn reflect.TypeOf(a)\n\t\t\t\t\t}(),\n\t\t\t\t},\n\t\t\t\trval: func() reflect.Value {\n\t\t\t\t\tvar a int = -3\n\t\t\t\t\treturn reflect.ValueOf(a)\n\t\t\t\t}(),\n\t\t\t},\n\t\t\texpected: false,\n\t\t},\n\t\t{\n\t\t\tdesc: \"positive typed const\",\n\t\t\tn: &node{\n\t\t\t\ttyp: &itype{\n\t\t\t\t\trtype: func() reflect.Type {\n\t\t\t\t\t\tconst a uint = 3\n\t\t\t\t\t\treturn reflect.TypeOf(a)\n\t\t\t\t\t}(),\n\t\t\t\t},\n\t\t\t\trval: func() reflect.Value {\n\t\t\t\t\tconst a uint = 3\n\t\t\t\t\treturn reflect.ValueOf(a)\n\t\t\t\t}(),\n\t\t\t},\n\t\t\texpected: true,\n\t\t},\n\t\t{\n\t\t\tdesc: \"positive untyped const\",\n\t\t\tn: &node{\n\t\t\t\ttyp: &itype{\n\t\t\t\t\trtype: func() reflect.Type {\n\t\t\t\t\t\tconst a = 3\n\t\t\t\t\t\treturn reflect.TypeOf(a)\n\t\t\t\t\t}(),\n\t\t\t\t},\n\t\t\t\trval: func() reflect.Value {\n\t\t\t\t\tconst a = 3\n\t\t\t\t\treturn reflect.ValueOf(a)\n\t\t\t\t}(),\n\t\t\t},\n\t\t\texpected: true,\n\t\t},\n\t\t{\n\t\t\tdesc: \"positive untyped const (iota)\",\n\t\t\tn: &node{\n\t\t\t\ttyp: &itype{\n\t\t\t\t\trtype: func() reflect.Type {\n\t\t\t\t\t\tconst (\n\t\t\t\t\t\t\tzero = iota\n\t\t\t\t\t\t\ta\n\t\t\t\t\t\t)\n\t\t\t\t\t\treturn reflect.TypeOf(a)\n\t\t\t\t\t}(),\n\t\t\t\t},\n\t\t\t\trval: func() reflect.Value {\n\t\t\t\t\tconst (\n\t\t\t\t\t\tzero = iota\n\t\t\t\t\t\ta\n\t\t\t\t\t)\n\t\t\t\t\treturn reflect.ValueOf(a)\n\t\t\t\t}(),\n\t\t\t},\n\t\t\texpected: true,\n\t\t},\n\t\t{\n\t\t\tdesc: \"negative const\",\n\t\t\tn: &node{\n\t\t\t\ttyp: &itype{\n\t\t\t\t\trtype: func() reflect.Type {\n\t\t\t\t\t\tconst a = -3\n\t\t\t\t\t\treturn reflect.TypeOf(a)\n\t\t\t\t\t}(),\n\t\t\t\t},\n\t\t\t\trval: func() reflect.Value {\n\t\t\t\t\tconst a = -3\n\t\t\t\t\treturn reflect.ValueOf(a)\n\t\t\t\t}(),\n\t\t\t},\n\t\t\texpected: false,\n\t\t},\n\t}\n\tfor _, test := range tests {\n\t\tgot := test.n.isNatural()\n\t\tif test.expected != got {\n\t\t\tt.Fatalf(\"%s: got %v, wanted %v\", test.desc, got, test.expected)\n\t\t}\n\t}\n}\n\nfunc TestGlobals(t *testing.T) {\n\ti := New(Options{})\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\tt.Fatal(err)\n\t}\n\tif _, err := i.Eval(\"var a = 1\"); err != nil {\n\t\tt.Fatal(err)\n\t}\n\tif _, err := i.Eval(\"b := 2\"); err != nil {\n\t\tt.Fatal(err)\n\t}\n\tif _, err := i.Eval(\"const c = 3\"); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tg := i.Globals()\n\ta := g[\"a\"]\n\tif !a.IsValid() {\n\t\tt.Fatal(\"a not found\")\n\t}\n\tif a := a.Interface(); a != 1 {\n\t\tt.Fatalf(\"wrong a: want (%[1]T) %[1]v, have (%[2]T) %[2]v\", 1, a)\n\t}\n\tb := g[\"b\"]\n\tif !b.IsValid() {\n\t\tt.Fatal(\"b not found\")\n\t}\n\tif b := b.Interface(); b != 2 {\n\t\tt.Fatalf(\"wrong b: want (%[1]T) %[1]v, have (%[2]T) %[2]v\", 2, b)\n\t}\n\tc := g[\"c\"]\n\tif !c.IsValid() {\n\t\tt.Fatal(\"c not found\")\n\t}\n\tif cc, ok := c.Interface().(constant.Value); ok && constant.MakeInt64(3) != cc {\n\t\tt.Fatalf(\"wrong c: want (%[1]T) %[1]v, have (%[2]T) %[2]v\", constant.MakeInt64(3), cc)\n\t}\n}\n"
  },
  {
    "path": "interp/op.go",
    "content": "package interp\n\n// Code generated by 'go run ../internal/cmd/genop/genop.go'. DO NOT EDIT.\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\n// Arithmetic operators\n\nfunc add(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\tdest := genValueOutput(n, typ)\n\tc0, c1 := n.child[0], n.child[1]\n\n\tswitch typ.Kind() {\n\tcase reflect.String:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).Set(reflect.ValueOf(v0(f).String() + v1(f).String()).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vString(c0.rval)\n\t\t\tv1 := genValue(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetString(s0 + v1(f).String())\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tv0 := genValue(c0)\n\t\t\ts1 := vString(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetString(v0(f).String() + s1)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetString(v0(f).String() + v1(f).String())\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i + j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vInt(c0.rval)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i + j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vInt(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetInt(i + j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i + j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i + j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vUint(c0.rval)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i + j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tj := vUint(c1.rval)\n\t\t\tv0 := genValueUint(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetUint(i + j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i + j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Float32, reflect.Float64:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i + j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vFloat(c0.rval)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetFloat(i + j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tj := vFloat(c1.rval)\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetFloat(i + j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetFloat(i + j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Complex64, reflect.Complex128:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genComplex(c0)\n\t\t\tv1 := genComplex(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).Set(reflect.ValueOf(v0(f) + v1(f)).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\tr0 := vComplex(c0.rval)\n\t\t\tv1 := genComplex(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetComplex(r0 + v1(f))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tr1 := vComplex(c1.rval)\n\t\t\tv0 := genComplex(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetComplex(v0(f) + r1)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genComplex(c0)\n\t\t\tv1 := genComplex(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetComplex(v0(f) + v1(f))\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc addConst(n *node) {\n\tv0, v1 := n.child[0].rval, n.child[1].rval\n\tisConst := (v0.IsValid() && isConstantValue(v0.Type())) && (v1.IsValid() && isConstantValue(v1.Type()))\n\tt := n.typ.rtype\n\tif isConst {\n\t\tt = constVal\n\t}\n\tn.rval = reflect.New(t).Elem()\n\tswitch {\n\tcase isConst:\n\t\tv := constant.BinaryOp(vConstantValue(v0), token.ADD, vConstantValue(v1))\n\t\tn.rval.Set(reflect.ValueOf(v))\n\tcase isString(t):\n\t\tn.rval.SetString(vString(v0) + vString(v1))\n\tcase isComplex(t):\n\t\tn.rval.SetComplex(vComplex(v0) + vComplex(v1))\n\tcase isFloat(t):\n\t\tn.rval.SetFloat(vFloat(v0) + vFloat(v1))\n\tcase isUint(t):\n\t\tn.rval.SetUint(vUint(v0) + vUint(v1))\n\tcase isInt(t):\n\t\tn.rval.SetInt(vInt(v0) + vInt(v1))\n\t}\n}\n\nfunc and(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\tdest := genValueOutput(n, typ)\n\tc0, c1 := n.child[0], n.child[1]\n\n\tswitch typ.Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i & j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vInt(c0.rval)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i & j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vInt(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetInt(i & j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i & j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i & j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vUint(c0.rval)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i & j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tj := vUint(c1.rval)\n\t\t\tv0 := genValueUint(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetUint(i & j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i & j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc andConst(n *node) {\n\tv0, v1 := n.child[0].rval, n.child[1].rval\n\tisConst := (v0.IsValid() && isConstantValue(v0.Type())) && (v1.IsValid() && isConstantValue(v1.Type()))\n\tt := n.typ.rtype\n\tif isConst {\n\t\tt = constVal\n\t}\n\tn.rval = reflect.New(t).Elem()\n\tswitch {\n\tcase isConst:\n\t\tv := constant.BinaryOp(constant.ToInt(vConstantValue(v0)), token.AND, constant.ToInt(vConstantValue(v1)))\n\t\tn.rval.Set(reflect.ValueOf(v))\n\tcase isUint(t):\n\t\tn.rval.SetUint(vUint(v0) & vUint(v1))\n\tcase isInt(t):\n\t\tn.rval.SetInt(vInt(v0) & vInt(v1))\n\t}\n}\n\nfunc andNot(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\tdest := genValueOutput(n, typ)\n\tc0, c1 := n.child[0], n.child[1]\n\n\tswitch typ.Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i &^ j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vInt(c0.rval)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i &^ j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vInt(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetInt(i &^ j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i &^ j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i &^ j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vUint(c0.rval)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i &^ j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tj := vUint(c1.rval)\n\t\t\tv0 := genValueUint(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetUint(i &^ j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i &^ j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc andNotConst(n *node) {\n\tv0, v1 := n.child[0].rval, n.child[1].rval\n\tisConst := (v0.IsValid() && isConstantValue(v0.Type())) && (v1.IsValid() && isConstantValue(v1.Type()))\n\tt := n.typ.rtype\n\tif isConst {\n\t\tt = constVal\n\t}\n\tn.rval = reflect.New(t).Elem()\n\tswitch {\n\tcase isConst:\n\t\tv := constant.BinaryOp(constant.ToInt(vConstantValue(v0)), token.AND_NOT, constant.ToInt(vConstantValue(v1)))\n\t\tn.rval.Set(reflect.ValueOf(v))\n\tcase isUint(t):\n\t\tn.rval.SetUint(vUint(v0) &^ vUint(v1))\n\tcase isInt(t):\n\t\tn.rval.SetInt(vInt(v0) &^ vInt(v1))\n\t}\n}\n\nfunc mul(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\tdest := genValueOutput(n, typ)\n\tc0, c1 := n.child[0], n.child[1]\n\n\tswitch typ.Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i * j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vInt(c0.rval)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i * j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vInt(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetInt(i * j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i * j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i * j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vUint(c0.rval)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i * j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tj := vUint(c1.rval)\n\t\t\tv0 := genValueUint(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetUint(i * j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i * j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Float32, reflect.Float64:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i * j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vFloat(c0.rval)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetFloat(i * j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tj := vFloat(c1.rval)\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetFloat(i * j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetFloat(i * j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Complex64, reflect.Complex128:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genComplex(c0)\n\t\t\tv1 := genComplex(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).Set(reflect.ValueOf(v0(f) * v1(f)).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\tr0 := vComplex(c0.rval)\n\t\t\tv1 := genComplex(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetComplex(r0 * v1(f))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tr1 := vComplex(c1.rval)\n\t\t\tv0 := genComplex(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetComplex(v0(f) * r1)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genComplex(c0)\n\t\t\tv1 := genComplex(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetComplex(v0(f) * v1(f))\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc mulConst(n *node) {\n\tv0, v1 := n.child[0].rval, n.child[1].rval\n\tisConst := (v0.IsValid() && isConstantValue(v0.Type())) && (v1.IsValid() && isConstantValue(v1.Type()))\n\tt := n.typ.rtype\n\tif isConst {\n\t\tt = constVal\n\t}\n\tn.rval = reflect.New(t).Elem()\n\tswitch {\n\tcase isConst:\n\t\tv := constant.BinaryOp(vConstantValue(v0), token.MUL, vConstantValue(v1))\n\t\tn.rval.Set(reflect.ValueOf(v))\n\tcase isComplex(t):\n\t\tn.rval.SetComplex(vComplex(v0) * vComplex(v1))\n\tcase isFloat(t):\n\t\tn.rval.SetFloat(vFloat(v0) * vFloat(v1))\n\tcase isUint(t):\n\t\tn.rval.SetUint(vUint(v0) * vUint(v1))\n\tcase isInt(t):\n\t\tn.rval.SetInt(vInt(v0) * vInt(v1))\n\t}\n}\n\nfunc or(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\tdest := genValueOutput(n, typ)\n\tc0, c1 := n.child[0], n.child[1]\n\n\tswitch typ.Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i | j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vInt(c0.rval)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i | j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vInt(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetInt(i | j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i | j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i | j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vUint(c0.rval)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i | j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tj := vUint(c1.rval)\n\t\t\tv0 := genValueUint(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetUint(i | j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i | j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc orConst(n *node) {\n\tv0, v1 := n.child[0].rval, n.child[1].rval\n\tisConst := (v0.IsValid() && isConstantValue(v0.Type())) && (v1.IsValid() && isConstantValue(v1.Type()))\n\tt := n.typ.rtype\n\tif isConst {\n\t\tt = constVal\n\t}\n\tn.rval = reflect.New(t).Elem()\n\tswitch {\n\tcase isConst:\n\t\tv := constant.BinaryOp(constant.ToInt(vConstantValue(v0)), token.OR, constant.ToInt(vConstantValue(v1)))\n\t\tn.rval.Set(reflect.ValueOf(v))\n\tcase isUint(t):\n\t\tn.rval.SetUint(vUint(v0) | vUint(v1))\n\tcase isInt(t):\n\t\tn.rval.SetInt(vInt(v0) | vInt(v1))\n\t}\n}\n\nfunc quo(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\tdest := genValueOutput(n, typ)\n\tc0, c1 := n.child[0], n.child[1]\n\n\tswitch typ.Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i / j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vInt(c0.rval)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i / j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vInt(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetInt(i / j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i / j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i / j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vUint(c0.rval)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i / j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tj := vUint(c1.rval)\n\t\t\tv0 := genValueUint(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetUint(i / j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i / j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Float32, reflect.Float64:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i / j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vFloat(c0.rval)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetFloat(i / j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tj := vFloat(c1.rval)\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetFloat(i / j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetFloat(i / j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Complex64, reflect.Complex128:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genComplex(c0)\n\t\t\tv1 := genComplex(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).Set(reflect.ValueOf(v0(f) / v1(f)).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\tr0 := vComplex(c0.rval)\n\t\t\tv1 := genComplex(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetComplex(r0 / v1(f))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tr1 := vComplex(c1.rval)\n\t\t\tv0 := genComplex(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetComplex(v0(f) / r1)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genComplex(c0)\n\t\t\tv1 := genComplex(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetComplex(v0(f) / v1(f))\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc quoConst(n *node) {\n\tv0, v1 := n.child[0].rval, n.child[1].rval\n\tisConst := (v0.IsValid() && isConstantValue(v0.Type())) && (v1.IsValid() && isConstantValue(v1.Type()))\n\tt := n.typ.rtype\n\tif isConst {\n\t\tt = constVal\n\t}\n\tn.rval = reflect.New(t).Elem()\n\tswitch {\n\tcase isConst:\n\t\tvar operator token.Token\n\t\t// When the result of the operation is expected to be an int (because both\n\t\t// operands are ints), we want to force the type of the whole expression to be an\n\t\t// int (and not a float), which is achieved by using the QUO_ASSIGN operator.\n\t\tif n.typ.untyped && isInt(n.typ.rtype) {\n\t\t\toperator = token.QUO_ASSIGN\n\t\t} else {\n\t\t\toperator = token.QUO\n\t\t}\n\t\tv := constant.BinaryOp(vConstantValue(v0), operator, vConstantValue(v1))\n\t\tn.rval.Set(reflect.ValueOf(v))\n\tcase isComplex(t):\n\t\tn.rval.SetComplex(vComplex(v0) / vComplex(v1))\n\tcase isFloat(t):\n\t\tn.rval.SetFloat(vFloat(v0) / vFloat(v1))\n\tcase isUint(t):\n\t\tn.rval.SetUint(vUint(v0) / vUint(v1))\n\tcase isInt(t):\n\t\tn.rval.SetInt(vInt(v0) / vInt(v1))\n\t}\n}\n\nfunc rem(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\tdest := genValueOutput(n, typ)\n\tc0, c1 := n.child[0], n.child[1]\n\n\tswitch typ.Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i % j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vInt(c0.rval)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i % j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vInt(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetInt(i % j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i % j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i % j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vUint(c0.rval)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i % j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tj := vUint(c1.rval)\n\t\t\tv0 := genValueUint(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetUint(i % j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i % j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc remConst(n *node) {\n\tv0, v1 := n.child[0].rval, n.child[1].rval\n\tisConst := (v0.IsValid() && isConstantValue(v0.Type())) && (v1.IsValid() && isConstantValue(v1.Type()))\n\tt := n.typ.rtype\n\tif isConst {\n\t\tt = constVal\n\t}\n\tn.rval = reflect.New(t).Elem()\n\tswitch {\n\tcase isConst:\n\t\tv := constant.BinaryOp(constant.ToInt(vConstantValue(v0)), token.REM, constant.ToInt(vConstantValue(v1)))\n\t\tn.rval.Set(reflect.ValueOf(v))\n\tcase isUint(t):\n\t\tn.rval.SetUint(vUint(v0) % vUint(v1))\n\tcase isInt(t):\n\t\tn.rval.SetInt(vInt(v0) % vInt(v1))\n\t}\n}\n\nfunc shl(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\tdest := genValueOutput(n, typ)\n\tc0, c1 := n.child[0], n.child[1]\n\n\tswitch typ.Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i << j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vInt(c0.rval)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i << j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vUint(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetInt(i << j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i << j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i << j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vUint(c0.rval)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i << j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tj := vUint(c1.rval)\n\t\t\tv0 := genValueUint(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetUint(i << j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i << j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc shlConst(n *node) {\n\tv0, v1 := n.child[0].rval, n.child[1].rval\n\tisConst := (v0.IsValid() && isConstantValue(v0.Type()))\n\tt := n.typ.rtype\n\tif isConst {\n\t\tt = constVal\n\t}\n\tn.rval = reflect.New(t).Elem()\n\tswitch {\n\tcase isConst:\n\t\tv := constant.Shift(vConstantValue(v0), token.SHL, uint(vUint(v1)))\n\t\tn.rval.Set(reflect.ValueOf(v))\n\tcase isUint(t):\n\t\tn.rval.SetUint(vUint(v0) << vUint(v1))\n\tcase isInt(t):\n\t\tn.rval.SetInt(vInt(v0) << vUint(v1))\n\t}\n}\n\nfunc shr(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\tdest := genValueOutput(n, typ)\n\tc0, c1 := n.child[0], n.child[1]\n\n\tswitch typ.Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i >> j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vInt(c0.rval)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i >> j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vUint(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetInt(i >> j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i >> j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i >> j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vUint(c0.rval)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i >> j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tj := vUint(c1.rval)\n\t\t\tv0 := genValueUint(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetUint(i >> j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i >> j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc shrConst(n *node) {\n\tv0, v1 := n.child[0].rval, n.child[1].rval\n\tisConst := (v0.IsValid() && isConstantValue(v0.Type()))\n\tt := n.typ.rtype\n\tif isConst {\n\t\tt = constVal\n\t}\n\tn.rval = reflect.New(t).Elem()\n\tswitch {\n\tcase isConst:\n\t\tv := constant.Shift(vConstantValue(v0), token.SHR, uint(vUint(v1)))\n\t\tn.rval.Set(reflect.ValueOf(v))\n\tcase isUint(t):\n\t\tn.rval.SetUint(vUint(v0) >> vUint(v1))\n\tcase isInt(t):\n\t\tn.rval.SetInt(vInt(v0) >> vUint(v1))\n\t}\n}\n\nfunc sub(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\tdest := genValueOutput(n, typ)\n\tc0, c1 := n.child[0], n.child[1]\n\n\tswitch typ.Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i - j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vInt(c0.rval)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i - j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vInt(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetInt(i - j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i - j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i - j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vUint(c0.rval)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i - j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tj := vUint(c1.rval)\n\t\t\tv0 := genValueUint(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetUint(i - j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i - j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Float32, reflect.Float64:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i - j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vFloat(c0.rval)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetFloat(i - j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tj := vFloat(c1.rval)\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetFloat(i - j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetFloat(i - j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Complex64, reflect.Complex128:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genComplex(c0)\n\t\t\tv1 := genComplex(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).Set(reflect.ValueOf(v0(f) - v1(f)).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\tr0 := vComplex(c0.rval)\n\t\t\tv1 := genComplex(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetComplex(r0 - v1(f))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tr1 := vComplex(c1.rval)\n\t\t\tv0 := genComplex(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetComplex(v0(f) - r1)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genComplex(c0)\n\t\t\tv1 := genComplex(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetComplex(v0(f) - v1(f))\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc subConst(n *node) {\n\tv0, v1 := n.child[0].rval, n.child[1].rval\n\tisConst := (v0.IsValid() && isConstantValue(v0.Type())) && (v1.IsValid() && isConstantValue(v1.Type()))\n\tt := n.typ.rtype\n\tif isConst {\n\t\tt = constVal\n\t}\n\tn.rval = reflect.New(t).Elem()\n\tswitch {\n\tcase isConst:\n\t\tv := constant.BinaryOp(vConstantValue(v0), token.SUB, vConstantValue(v1))\n\t\tn.rval.Set(reflect.ValueOf(v))\n\tcase isComplex(t):\n\t\tn.rval.SetComplex(vComplex(v0) - vComplex(v1))\n\tcase isFloat(t):\n\t\tn.rval.SetFloat(vFloat(v0) - vFloat(v1))\n\tcase isUint(t):\n\t\tn.rval.SetUint(vUint(v0) - vUint(v1))\n\tcase isInt(t):\n\t\tn.rval.SetInt(vInt(v0) - vInt(v1))\n\t}\n}\n\nfunc xor(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\tdest := genValueOutput(n, typ)\n\tc0, c1 := n.child[0], n.child[1]\n\n\tswitch typ.Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i ^ j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vInt(c0.rval)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i ^ j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vInt(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetInt(i ^ j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetInt(i ^ j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(i ^ j).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti := vUint(c0.rval)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i ^ j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\tj := vUint(c1.rval)\n\t\t\tv0 := genValueUint(c0)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\tdest(f).SetUint(i ^ j)\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tdest(f).SetUint(i ^ j)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc xorConst(n *node) {\n\tv0, v1 := n.child[0].rval, n.child[1].rval\n\tisConst := (v0.IsValid() && isConstantValue(v0.Type())) && (v1.IsValid() && isConstantValue(v1.Type()))\n\tt := n.typ.rtype\n\tif isConst {\n\t\tt = constVal\n\t}\n\tn.rval = reflect.New(t).Elem()\n\tswitch {\n\tcase isConst:\n\t\tv := constant.BinaryOp(constant.ToInt(vConstantValue(v0)), token.XOR, constant.ToInt(vConstantValue(v1)))\n\t\tn.rval.Set(reflect.ValueOf(v))\n\tcase isUint(t):\n\t\tn.rval.SetUint(vUint(v0) ^ vUint(v1))\n\tcase isInt(t):\n\t\tn.rval.SetInt(vInt(v0) ^ vInt(v1))\n\t}\n}\n\n// Assign operators\n\nfunc addAssign(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.TypeOf()\n\tc0, c1 := n.child[0], n.child[1]\n\tsetMap := isMapEntry(c0)\n\tvar mapValue, indexValue func(*frame) reflect.Value\n\n\tif setMap {\n\t\tmapValue = genValue(c0.child[0])\n\t\tindexValue = genValue(c0.child[1])\n\t}\n\n\tif c1.rval.IsValid() {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.String:\n\t\t\tv0 := genValueString(c0)\n\t\t\tv1 := vString(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, s := v0(f)\n\t\t\t\tv.SetString(s + v1)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vInt(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetInt(i + j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tj := vUint(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetUint(i + j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Float32, reflect.Float64:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tj := vFloat(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetFloat(i + j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Complex64, reflect.Complex128:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := vComplex(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv := v0(f)\n\t\t\t\tv.SetComplex(v.Complex() + v1)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t} else {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.String:\n\t\t\tv0 := genValueString(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, s := v0(f)\n\t\t\t\tv.SetString(s + v1(f).String())\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetInt(i + j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetUint(i + j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Float32, reflect.Float64:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetFloat(i + j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Complex64, reflect.Complex128:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv := v0(f)\n\t\t\t\tv.SetComplex(v.Complex() + v1(f).Complex())\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc andAssign(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.TypeOf()\n\tc0, c1 := n.child[0], n.child[1]\n\tsetMap := isMapEntry(c0)\n\tvar mapValue, indexValue func(*frame) reflect.Value\n\n\tif setMap {\n\t\tmapValue = genValue(c0.child[0])\n\t\tindexValue = genValue(c0.child[1])\n\t}\n\n\tif c1.rval.IsValid() {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vInt(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetInt(i & j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tj := vUint(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetUint(i & j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t} else {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetInt(i & j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetUint(i & j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc andNotAssign(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.TypeOf()\n\tc0, c1 := n.child[0], n.child[1]\n\tsetMap := isMapEntry(c0)\n\tvar mapValue, indexValue func(*frame) reflect.Value\n\n\tif setMap {\n\t\tmapValue = genValue(c0.child[0])\n\t\tindexValue = genValue(c0.child[1])\n\t}\n\n\tif c1.rval.IsValid() {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vInt(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetInt(i &^ j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tj := vUint(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetUint(i &^ j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t} else {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetInt(i &^ j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetUint(i &^ j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc mulAssign(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.TypeOf()\n\tc0, c1 := n.child[0], n.child[1]\n\tsetMap := isMapEntry(c0)\n\tvar mapValue, indexValue func(*frame) reflect.Value\n\n\tif setMap {\n\t\tmapValue = genValue(c0.child[0])\n\t\tindexValue = genValue(c0.child[1])\n\t}\n\n\tif c1.rval.IsValid() {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vInt(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetInt(i * j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tj := vUint(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetUint(i * j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Float32, reflect.Float64:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tj := vFloat(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetFloat(i * j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Complex64, reflect.Complex128:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := vComplex(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv := v0(f)\n\t\t\t\tv.SetComplex(v.Complex() * v1)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t} else {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetInt(i * j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetUint(i * j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Float32, reflect.Float64:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetFloat(i * j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Complex64, reflect.Complex128:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv := v0(f)\n\t\t\t\tv.SetComplex(v.Complex() * v1(f).Complex())\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc orAssign(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.TypeOf()\n\tc0, c1 := n.child[0], n.child[1]\n\tsetMap := isMapEntry(c0)\n\tvar mapValue, indexValue func(*frame) reflect.Value\n\n\tif setMap {\n\t\tmapValue = genValue(c0.child[0])\n\t\tindexValue = genValue(c0.child[1])\n\t}\n\n\tif c1.rval.IsValid() {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vInt(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetInt(i | j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tj := vUint(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetUint(i | j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t} else {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetInt(i | j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetUint(i | j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc quoAssign(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.TypeOf()\n\tc0, c1 := n.child[0], n.child[1]\n\tsetMap := isMapEntry(c0)\n\tvar mapValue, indexValue func(*frame) reflect.Value\n\n\tif setMap {\n\t\tmapValue = genValue(c0.child[0])\n\t\tindexValue = genValue(c0.child[1])\n\t}\n\n\tif c1.rval.IsValid() {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vInt(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetInt(i / j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tj := vUint(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetUint(i / j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Float32, reflect.Float64:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tj := vFloat(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetFloat(i / j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Complex64, reflect.Complex128:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := vComplex(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv := v0(f)\n\t\t\t\tv.SetComplex(v.Complex() / v1)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t} else {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetInt(i / j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetUint(i / j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Float32, reflect.Float64:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetFloat(i / j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Complex64, reflect.Complex128:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv := v0(f)\n\t\t\t\tv.SetComplex(v.Complex() / v1(f).Complex())\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc remAssign(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.TypeOf()\n\tc0, c1 := n.child[0], n.child[1]\n\tsetMap := isMapEntry(c0)\n\tvar mapValue, indexValue func(*frame) reflect.Value\n\n\tif setMap {\n\t\tmapValue = genValue(c0.child[0])\n\t\tindexValue = genValue(c0.child[1])\n\t}\n\n\tif c1.rval.IsValid() {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vInt(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetInt(i % j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tj := vUint(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetUint(i % j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t} else {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetInt(i % j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetUint(i % j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc shlAssign(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.TypeOf()\n\tc0, c1 := n.child[0], n.child[1]\n\tsetMap := isMapEntry(c0)\n\tvar mapValue, indexValue func(*frame) reflect.Value\n\n\tif setMap {\n\t\tmapValue = genValue(c0.child[0])\n\t\tindexValue = genValue(c0.child[1])\n\t}\n\n\tif c1.rval.IsValid() {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vUint(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetInt(i << j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tj := vUint(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetUint(i << j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t} else {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetInt(i << j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetUint(i << j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc shrAssign(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.TypeOf()\n\tc0, c1 := n.child[0], n.child[1]\n\tsetMap := isMapEntry(c0)\n\tvar mapValue, indexValue func(*frame) reflect.Value\n\n\tif setMap {\n\t\tmapValue = genValue(c0.child[0])\n\t\tindexValue = genValue(c0.child[1])\n\t}\n\n\tif c1.rval.IsValid() {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vUint(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetInt(i >> j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tj := vUint(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetUint(i >> j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t} else {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetInt(i >> j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetUint(i >> j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc subAssign(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.TypeOf()\n\tc0, c1 := n.child[0], n.child[1]\n\tsetMap := isMapEntry(c0)\n\tvar mapValue, indexValue func(*frame) reflect.Value\n\n\tif setMap {\n\t\tmapValue = genValue(c0.child[0])\n\t\tindexValue = genValue(c0.child[1])\n\t}\n\n\tif c1.rval.IsValid() {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vInt(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetInt(i - j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tj := vUint(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetUint(i - j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Float32, reflect.Float64:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tj := vFloat(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetFloat(i - j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Complex64, reflect.Complex128:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := vComplex(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv := v0(f)\n\t\t\t\tv.SetComplex(v.Complex() - v1)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t} else {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetInt(i - j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetUint(i - j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Float32, reflect.Float64:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetFloat(i - j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Complex64, reflect.Complex128:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv := v0(f)\n\t\t\t\tv.SetComplex(v.Complex() - v1(f).Complex())\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc xorAssign(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.TypeOf()\n\tc0, c1 := n.child[0], n.child[1]\n\tsetMap := isMapEntry(c0)\n\tvar mapValue, indexValue func(*frame) reflect.Value\n\n\tif setMap {\n\t\tmapValue = genValue(c0.child[0])\n\t\tindexValue = genValue(c0.child[1])\n\t}\n\n\tif c1.rval.IsValid() {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tj := vInt(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetInt(i ^ j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tj := vUint(c1.rval)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\tv.SetUint(i ^ j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t} else {\n\t\tswitch typ.Kind() {\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetInt(i ^ j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv, i := v0(f)\n\t\t\t\t_, j := v1(f)\n\t\t\t\tv.SetUint(i ^ j)\n\t\t\t\tif setMap {\n\t\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc dec(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.TypeOf()\n\tc0 := n.child[0]\n\tsetMap := isMapEntry(c0)\n\tvar mapValue, indexValue func(*frame) reflect.Value\n\n\tif setMap {\n\t\tmapValue = genValue(c0.child[0])\n\t\tindexValue = genValue(c0.child[1])\n\t}\n\n\tswitch typ.Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tv0 := genValueInt(c0)\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tv, i := v0(f)\n\t\t\tv.SetInt(i - 1)\n\t\t\tif setMap {\n\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t}\n\t\t\treturn next\n\t\t}\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:\n\t\tv0 := genValueUint(c0)\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tv, i := v0(f)\n\t\t\tv.SetUint(i - 1)\n\t\t\tif setMap {\n\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t}\n\t\t\treturn next\n\t\t}\n\tcase reflect.Float32, reflect.Float64:\n\t\tv0 := genValueFloat(c0)\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tv, i := v0(f)\n\t\t\tv.SetFloat(i - 1)\n\t\t\tif setMap {\n\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t}\n\t\t\treturn next\n\t\t}\n\tcase reflect.Complex64, reflect.Complex128:\n\t\tv0 := genValue(c0)\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tv := v0(f)\n\t\t\tv.SetComplex(v.Complex() - 1)\n\t\t\tif setMap {\n\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t}\n\t\t\treturn next\n\t\t}\n\t}\n}\n\nfunc inc(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.TypeOf()\n\tc0 := n.child[0]\n\tsetMap := isMapEntry(c0)\n\tvar mapValue, indexValue func(*frame) reflect.Value\n\n\tif setMap {\n\t\tmapValue = genValue(c0.child[0])\n\t\tindexValue = genValue(c0.child[1])\n\t}\n\n\tswitch typ.Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tv0 := genValueInt(c0)\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tv, i := v0(f)\n\t\t\tv.SetInt(i + 1)\n\t\t\tif setMap {\n\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t}\n\t\t\treturn next\n\t\t}\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:\n\t\tv0 := genValueUint(c0)\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tv, i := v0(f)\n\t\t\tv.SetUint(i + 1)\n\t\t\tif setMap {\n\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t}\n\t\t\treturn next\n\t\t}\n\tcase reflect.Float32, reflect.Float64:\n\t\tv0 := genValueFloat(c0)\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tv, i := v0(f)\n\t\t\tv.SetFloat(i + 1)\n\t\t\tif setMap {\n\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t}\n\t\t\treturn next\n\t\t}\n\tcase reflect.Complex64, reflect.Complex128:\n\t\tv0 := genValue(c0)\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tv := v0(f)\n\t\t\tv.SetComplex(v.Complex() + 1)\n\t\t\tif setMap {\n\t\t\t\tmapValue(f).SetMapIndex(indexValue(f), v)\n\t\t\t}\n\t\t\treturn next\n\t\t}\n\t}\n}\n\nfunc bitNotConst(n *node) {\n\tv0 := n.child[0].rval\n\tisConst := v0.IsValid() && isConstantValue(v0.Type())\n\tt := n.typ.rtype\n\tif isConst {\n\t\tt = constVal\n\t}\n\tn.rval = reflect.New(t).Elem()\n\tswitch {\n\tcase isConst:\n\t\tv := constant.UnaryOp(token.XOR, vConstantValue(v0), 0)\n\t\tn.rval.Set(reflect.ValueOf(v))\n\tcase isUint(t):\n\t\tn.rval.SetUint(^v0.Uint())\n\tcase isInt(t):\n\t\tn.rval.SetInt(^v0.Int())\n\t}\n}\n\nfunc negConst(n *node) {\n\tv0 := n.child[0].rval\n\tisConst := v0.IsValid() && isConstantValue(v0.Type())\n\tt := n.typ.rtype\n\tif isConst {\n\t\tt = constVal\n\t}\n\tn.rval = reflect.New(t).Elem()\n\tswitch {\n\tcase isConst:\n\t\tv := constant.UnaryOp(token.SUB, vConstantValue(v0), 0)\n\t\tn.rval.Set(reflect.ValueOf(v))\n\tcase isUint(t):\n\t\tn.rval.SetUint(-v0.Uint())\n\tcase isInt(t):\n\t\tn.rval.SetInt(-v0.Int())\n\tcase isFloat(t):\n\t\tn.rval.SetFloat(-v0.Float())\n\tcase isComplex(t):\n\t\tn.rval.SetComplex(-v0.Complex())\n\t}\n}\n\nfunc notConst(n *node) {\n\tv0 := n.child[0].rval\n\tisConst := v0.IsValid() && isConstantValue(v0.Type())\n\tt := n.typ.rtype\n\tif isConst {\n\t\tt = constVal\n\t}\n\tn.rval = reflect.New(t).Elem()\n\tif isConst {\n\t\tv := constant.UnaryOp(token.NOT, vConstantValue(v0), 0)\n\t\tn.rval.Set(reflect.ValueOf(v))\n\t} else {\n\t\tn.rval.SetBool(!v0.Bool())\n\t}\n}\n\nfunc posConst(n *node) {\n\tv0 := n.child[0].rval\n\tisConst := v0.IsValid() && isConstantValue(v0.Type())\n\tt := n.typ.rtype\n\tif isConst {\n\t\tt = constVal\n\t}\n\tn.rval = reflect.New(t).Elem()\n\tswitch {\n\tcase isConst:\n\t\tv := constant.UnaryOp(token.ADD, vConstantValue(v0), 0)\n\t\tn.rval.Set(reflect.ValueOf(v))\n\tcase isUint(t):\n\t\tn.rval.SetUint(+v0.Uint())\n\tcase isInt(t):\n\t\tn.rval.SetInt(+v0.Int())\n\tcase isFloat(t):\n\t\tn.rval.SetFloat(+v0.Float())\n\tcase isComplex(t):\n\t\tn.rval.SetComplex(+v0.Complex())\n\t}\n}\n\nfunc equal(n *node) {\n\ttnext := getExec(n.tnext)\n\tdest := genValueOutput(n, reflect.TypeOf(true))\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\tc0, c1 := n.child[0], n.child[1]\n\tt0, t1 := c0.typ.TypeOf(), c1.typ.TypeOf()\n\n\tif c0.typ.cat == linkedT || c1.typ.cat == linkedT {\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tdest := genValue(n)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\tdest(f).Set(reflect.ValueOf(i0 == i1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti0 := c0.rval.Interface()\n\t\t\tv1 := genValue(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tif i0 == i1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tdest(f).SetBool(i0 == i1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ti1 := c1.rval.Interface()\n\t\t\tv0 := genValue(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\tif i0 == i1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\tdest(f).SetBool(i0 == i1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tif i0 == i1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tdest(f).SetBool(i0 == i1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn\n\t}\n\n\t// Do not attempt to optimize '==' or '!=' if an operand is an interface.\n\t// This will preserve proper dynamic type checking at runtime. For static types,\n\t// type checks are already performed, so bypass them if possible.\n\tif t0.Kind() == reflect.Interface || t1.Kind() == reflect.Interface {\n\t\tv0 := genValue(c0)\n\t\tv1 := genValue(c1)\n\t\tif n.fnext != nil {\n\t\t\tfnext := getExec(n.fnext)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\tif i0 == i1 {\n\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t\tdest(f).SetBool(false)\n\t\t\t\treturn fnext\n\t\t\t}\n\t\t} else {\n\t\t\tdest := genValue(n)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\tdest(f).SetBool(i0 == i1)\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t}\n\t\treturn\n\t}\n\n\tswitch {\n\tcase isString(t0) || isString(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueString(c0)\n\t\t\tv1 := genValueString(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 == s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vString(c0.rval)\n\t\t\tv1 := genValueString(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 == s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 == s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vString(c1.rval)\n\t\t\tv0 := genValueString(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 == s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 == s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueString(c0)\n\t\t\tv1 := genValueString(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 == s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 == s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isFloat(t0) || isFloat(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 == s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vFloat(c0.rval)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 == s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 == s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vFloat(c1.rval)\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 == s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 == s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 == s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 == s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isUint(t0) || isUint(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 == s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vUint(c0.rval)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 == s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 == s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vUint(c1.rval)\n\t\t\tv0 := genValueUint(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 == s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 == s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 == s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 == s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isInt(t0) || isInt(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 == s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vInt(c0.rval)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 == s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 == s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vInt(c1.rval)\n\t\t\tv0 := genValueInt(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 == s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 == s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 == s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 == s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isComplex(t0) || isComplex(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genComplex(c0)\n\t\t\tv1 := genComplex(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\ts0 := v0(f)\n\t\t\t\ts1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 == s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vComplex(c0.rval)\n\t\t\tv1 := genComplex(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ts1 := v1(f)\n\t\t\t\t\tif s0 == s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ts1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 == s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vComplex(c1.rval)\n\t\t\tv0 := genComplex(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ts0 := v0(f)\n\t\t\t\t\tif s0 == s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ts0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 == s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genComplex(c0)\n\t\t\tv1 := genComplex(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ts0 := v0(f)\n\t\t\t\t\ts1 := v1(f)\n\t\t\t\t\tif s0 == s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ts0 := v0(f)\n\t\t\t\t\ts1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 == s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tdefault:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\tdest(f).Set(reflect.ValueOf(i0 == i1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti0 := c0.rval.Interface()\n\t\t\tv1 := genValue(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tif i0 == i1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tdest(f).SetBool(i0 == i1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ti1 := c1.rval.Interface()\n\t\t\tv0 := genValue(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\tif i0 == i1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\tdest(f).SetBool(i0 == i1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tif i0 == i1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tdest(f).SetBool(i0 == i1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc greater(n *node) {\n\ttnext := getExec(n.tnext)\n\tdest := genValueOutput(n, reflect.TypeOf(true))\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\tc0, c1 := n.child[0], n.child[1]\n\tt0, t1 := c0.typ.TypeOf(), c1.typ.TypeOf()\n\n\tswitch {\n\tcase isString(t0) || isString(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueString(c0)\n\t\t\tv1 := genValueString(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 > s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vString(c0.rval)\n\t\t\tv1 := genValueString(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 > s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 > s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vString(c1.rval)\n\t\t\tv0 := genValueString(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 > s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 > s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueString(c0)\n\t\t\tv1 := genValueString(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 > s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 > s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isFloat(t0) || isFloat(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 > s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vFloat(c0.rval)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 > s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 > s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vFloat(c1.rval)\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 > s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 > s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 > s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 > s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isUint(t0) || isUint(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 > s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vUint(c0.rval)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 > s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 > s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vUint(c1.rval)\n\t\t\tv0 := genValueUint(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 > s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 > s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 > s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 > s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isInt(t0) || isInt(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 > s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vInt(c0.rval)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 > s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 > s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vInt(c1.rval)\n\t\t\tv0 := genValueInt(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 > s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 > s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 > s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 > s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc greaterEqual(n *node) {\n\ttnext := getExec(n.tnext)\n\tdest := genValueOutput(n, reflect.TypeOf(true))\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\tc0, c1 := n.child[0], n.child[1]\n\tt0, t1 := c0.typ.TypeOf(), c1.typ.TypeOf()\n\n\tswitch {\n\tcase isString(t0) || isString(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueString(c0)\n\t\t\tv1 := genValueString(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 >= s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vString(c0.rval)\n\t\t\tv1 := genValueString(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 >= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 >= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vString(c1.rval)\n\t\t\tv0 := genValueString(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 >= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 >= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueString(c0)\n\t\t\tv1 := genValueString(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 >= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 >= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isFloat(t0) || isFloat(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 >= s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vFloat(c0.rval)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 >= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 >= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vFloat(c1.rval)\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 >= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 >= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 >= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 >= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isUint(t0) || isUint(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 >= s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vUint(c0.rval)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 >= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 >= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vUint(c1.rval)\n\t\t\tv0 := genValueUint(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 >= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 >= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 >= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 >= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isInt(t0) || isInt(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 >= s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vInt(c0.rval)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 >= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 >= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vInt(c1.rval)\n\t\t\tv0 := genValueInt(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 >= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 >= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 >= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 >= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc lower(n *node) {\n\ttnext := getExec(n.tnext)\n\tdest := genValueOutput(n, reflect.TypeOf(true))\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\tc0, c1 := n.child[0], n.child[1]\n\tt0, t1 := c0.typ.TypeOf(), c1.typ.TypeOf()\n\n\tswitch {\n\tcase isString(t0) || isString(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueString(c0)\n\t\t\tv1 := genValueString(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 < s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vString(c0.rval)\n\t\t\tv1 := genValueString(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 < s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 < s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vString(c1.rval)\n\t\t\tv0 := genValueString(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 < s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 < s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueString(c0)\n\t\t\tv1 := genValueString(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 < s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 < s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isFloat(t0) || isFloat(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 < s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vFloat(c0.rval)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 < s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 < s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vFloat(c1.rval)\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 < s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 < s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 < s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 < s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isUint(t0) || isUint(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 < s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vUint(c0.rval)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 < s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 < s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vUint(c1.rval)\n\t\t\tv0 := genValueUint(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 < s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 < s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 < s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 < s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isInt(t0) || isInt(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 < s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vInt(c0.rval)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 < s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 < s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vInt(c1.rval)\n\t\t\tv0 := genValueInt(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 < s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 < s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 < s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 < s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc lowerEqual(n *node) {\n\ttnext := getExec(n.tnext)\n\tdest := genValueOutput(n, reflect.TypeOf(true))\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\tc0, c1 := n.child[0], n.child[1]\n\tt0, t1 := c0.typ.TypeOf(), c1.typ.TypeOf()\n\n\tswitch {\n\tcase isString(t0) || isString(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueString(c0)\n\t\t\tv1 := genValueString(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 <= s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vString(c0.rval)\n\t\t\tv1 := genValueString(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 <= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 <= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vString(c1.rval)\n\t\t\tv0 := genValueString(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 <= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 <= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueString(c0)\n\t\t\tv1 := genValueString(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 <= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 <= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isFloat(t0) || isFloat(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 <= s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vFloat(c0.rval)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 <= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 <= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vFloat(c1.rval)\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 <= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 <= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 <= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 <= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isUint(t0) || isUint(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 <= s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vUint(c0.rval)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 <= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 <= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vUint(c1.rval)\n\t\t\tv0 := genValueUint(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 <= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 <= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 <= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 <= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isInt(t0) || isInt(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 <= s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vInt(c0.rval)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 <= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 <= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vInt(c1.rval)\n\t\t\tv0 := genValueInt(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 <= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 <= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 <= s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 <= s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc notEqual(n *node) {\n\ttnext := getExec(n.tnext)\n\tdest := genValueOutput(n, reflect.TypeOf(true))\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\tc0, c1 := n.child[0], n.child[1]\n\tt0, t1 := c0.typ.TypeOf(), c1.typ.TypeOf()\n\n\tif c0.typ.cat == linkedT || c1.typ.cat == linkedT {\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tdest := genValue(n)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\tdest(f).Set(reflect.ValueOf(i0 != i1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti0 := c0.rval.Interface()\n\t\t\tv1 := genValue(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tif i0 != i1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tdest(f).SetBool(i0 != i1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ti1 := c1.rval.Interface()\n\t\t\tv0 := genValue(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\tif i0 != i1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\tdest(f).SetBool(i0 != i1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tif i0 != i1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tdest(f).SetBool(i0 != i1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn\n\t}\n\n\t// Do not attempt to optimize '==' or '!=' if an operand is an interface.\n\t// This will preserve proper dynamic type checking at runtime. For static types,\n\t// type checks are already performed, so bypass them if possible.\n\tif t0.Kind() == reflect.Interface || t1.Kind() == reflect.Interface {\n\t\tv0 := genValue(c0)\n\t\tv1 := genValue(c1)\n\t\tif n.fnext != nil {\n\t\t\tfnext := getExec(n.fnext)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\tif i0 != i1 {\n\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t\tdest(f).SetBool(false)\n\t\t\t\treturn fnext\n\t\t\t}\n\t\t} else {\n\t\t\tdest := genValue(n)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\tdest(f).SetBool(i0 != i1)\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t}\n\t\treturn\n\t}\n\n\tswitch {\n\tcase isString(t0) || isString(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueString(c0)\n\t\t\tv1 := genValueString(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 != s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vString(c0.rval)\n\t\t\tv1 := genValueString(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 != s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 != s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vString(c1.rval)\n\t\t\tv0 := genValueString(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 != s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 != s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueString(c0)\n\t\t\tv1 := genValueString(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 != s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 != s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isFloat(t0) || isFloat(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 != s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vFloat(c0.rval)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 != s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 != s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vFloat(c1.rval)\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 != s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 != s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueFloat(c0)\n\t\t\tv1 := genValueFloat(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 != s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 != s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isUint(t0) || isUint(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 != s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vUint(c0.rval)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 != s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 != s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vUint(c1.rval)\n\t\t\tv0 := genValueUint(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 != s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 != s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueUint(c0)\n\t\t\tv1 := genValueUint(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 != s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 != s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isInt(t0) || isInt(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, s0 := v0(f)\n\t\t\t\t_, s1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 != s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vInt(c0.rval)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 != s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 != s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vInt(c1.rval)\n\t\t\tv0 := genValueInt(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tif s0 != s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 != s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValueInt(c0)\n\t\t\tv1 := genValueInt(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tif s0 != s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t_, s0 := v0(f)\n\t\t\t\t\t_, s1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 != s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tcase isComplex(t0) || isComplex(t1):\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genComplex(c0)\n\t\t\tv1 := genComplex(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\ts0 := v0(f)\n\t\t\t\ts1 := v1(f)\n\t\t\t\tdest(f).Set(reflect.ValueOf(s0 != s1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ts0 := vComplex(c0.rval)\n\t\t\tv1 := genComplex(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ts1 := v1(f)\n\t\t\t\t\tif s0 != s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ts1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 != s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ts1 := vComplex(c1.rval)\n\t\t\tv0 := genComplex(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ts0 := v0(f)\n\t\t\t\t\tif s0 != s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ts0 := v0(f)\n\t\t\t\t\tdest(f).SetBool(s0 != s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genComplex(c0)\n\t\t\tv1 := genComplex(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ts0 := v0(f)\n\t\t\t\t\ts1 := v1(f)\n\t\t\t\t\tif s0 != s1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ts0 := v0(f)\n\t\t\t\t\ts1 := v1(f)\n\t\t\t\t\tdest(f).SetBool(s0 != s1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tdefault:\n\t\tswitch {\n\t\tcase isInterface:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\tdest(f).Set(reflect.ValueOf(i0 != i1).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase c0.rval.IsValid():\n\t\t\ti0 := c0.rval.Interface()\n\t\t\tv1 := genValue(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tif i0 != i1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tdest(f).SetBool(i0 != i1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tcase c1.rval.IsValid():\n\t\t\ti1 := c1.rval.Interface()\n\t\t\tv0 := genValue(c0)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\tif i0 != i1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\tdest(f).SetBool(i0 != i1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tv0 := genValue(c0)\n\t\t\tv1 := genValue(c1)\n\t\t\tif n.fnext != nil {\n\t\t\t\tfnext := getExec(n.fnext)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tif i0 != i1 {\n\t\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).SetBool(false)\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdest := genValue(n)\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\ti0 := v0(f).Interface()\n\t\t\t\t\ti1 := v1(f).Interface()\n\t\t\t\t\tdest(f).SetBool(i0 != i1)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "interp/program.go",
    "content": "package interp\n\nimport (\n\t\"context\"\n\t\"go/ast\"\n\t\"go/token\"\n\t\"io/fs\"\n\t\"path/filepath\"\n\t\"reflect\"\n\t\"runtime\"\n\t\"runtime/debug\"\n)\n\n// A Program is Go code that has been parsed and compiled.\ntype Program struct {\n\tpkgName string\n\troot    *node\n\tinit    []*node\n}\n\n// PackageName returns name used in a package clause.\nfunc (p *Program) PackageName() string {\n\treturn p.pkgName\n}\n\n// FileSet is the fileset that must be used for parsing Go that will be passed\n// to interp.CompileAST().\nfunc (interp *Interpreter) FileSet() *token.FileSet {\n\treturn interp.fset\n}\n\n// Compile parses and compiles a Go code represented as a string.\nfunc (interp *Interpreter) Compile(src string) (*Program, error) {\n\treturn interp.compileSrc(src, \"\", true)\n}\n\n// CompilePath parses and compiles a Go code located at the given path.\nfunc (interp *Interpreter) CompilePath(path string) (*Program, error) {\n\tpath = filepath.ToSlash(path) // Ensure path is in Unix format. Since we work with fs.FS, we need to use Unix path.\n\tif !isFile(interp.filesystem, path) {\n\t\t_, err := interp.importSrc(mainID, path, NoTest)\n\t\treturn nil, err\n\t}\n\n\tb, err := fs.ReadFile(interp.filesystem, path)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn interp.compileSrc(string(b), path, false)\n}\n\nfunc (interp *Interpreter) compileSrc(src, name string, inc bool) (*Program, error) {\n\tif name != \"\" {\n\t\tinterp.name = name\n\t}\n\tif interp.name == \"\" {\n\t\tinterp.name = DefaultSourceName\n\t}\n\n\t// Parse source to AST.\n\tn, err := interp.parse(src, interp.name, inc)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\treturn interp.CompileAST(n)\n}\n\n// CompileAST builds a Program for the given Go code AST. Files and block\n// statements can be compiled, as can most expressions. Var declaration nodes\n// cannot be compiled.\n//\n// WARNING: The node must have been parsed using interp.FileSet(). Results are\n// unpredictable otherwise.\nfunc (interp *Interpreter) CompileAST(n ast.Node) (*Program, error) {\n\t// Convert AST.\n\tpkgName, root, err := interp.ast(n)\n\tif err != nil || root == nil {\n\t\treturn nil, err\n\t}\n\n\tif interp.astDot {\n\t\tdotCmd := interp.dotCmd\n\t\tif dotCmd == \"\" {\n\t\t\tdotCmd = defaultDotCmd(interp.name, \"yaegi-ast-\")\n\t\t}\n\t\troot.astDot(dotWriter(dotCmd), interp.name)\n\t\tif interp.noRun {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\t// Perform global types analysis.\n\tif err = interp.gtaRetry([]*node{root}, pkgName, pkgName); err != nil {\n\t\treturn nil, err\n\t}\n\n\t// Annotate AST with CFG informations.\n\tinitNodes, err := interp.cfg(root, nil, pkgName, pkgName)\n\tif err != nil {\n\t\tif interp.cfgDot {\n\t\t\tdotCmd := interp.dotCmd\n\t\t\tif dotCmd == \"\" {\n\t\t\t\tdotCmd = defaultDotCmd(interp.name, \"yaegi-cfg-\")\n\t\t\t}\n\t\t\troot.cfgDot(dotWriter(dotCmd))\n\t\t}\n\t\treturn nil, err\n\t}\n\n\tif root.kind != fileStmt {\n\t\t// REPL may skip package statement.\n\t\tsetExec(root.start)\n\t}\n\tinterp.mutex.Lock()\n\tgs := interp.scopes[pkgName]\n\tif interp.universe.sym[pkgName] == nil {\n\t\t// Make the package visible under a path identical to its name.\n\t\tinterp.srcPkg[pkgName] = gs.sym\n\t\tinterp.universe.sym[pkgName] = &symbol{kind: pkgSym, typ: &itype{cat: srcPkgT, path: pkgName}}\n\t\tinterp.pkgNames[pkgName] = pkgName\n\t}\n\tinterp.mutex.Unlock()\n\n\t// Add main to list of functions to run, after all inits.\n\tif m := gs.sym[mainID]; pkgName == mainID && m != nil {\n\t\tinitNodes = append(initNodes, m.node)\n\t}\n\n\tif interp.cfgDot {\n\t\tdotCmd := interp.dotCmd\n\t\tif dotCmd == \"\" {\n\t\t\tdotCmd = defaultDotCmd(interp.name, \"yaegi-cfg-\")\n\t\t}\n\t\troot.cfgDot(dotWriter(dotCmd))\n\t}\n\n\treturn &Program{pkgName, root, initNodes}, nil\n}\n\n// Execute executes compiled Go code.\nfunc (interp *Interpreter) Execute(p *Program) (res reflect.Value, err error) {\n\tdefer func() {\n\t\tr := recover()\n\t\tif r != nil {\n\t\t\tvar pc [64]uintptr // 64 frames should be enough.\n\t\t\tn := runtime.Callers(1, pc[:])\n\t\t\terr = Panic{Value: r, Callers: pc[:n], Stack: debug.Stack()}\n\t\t}\n\t}()\n\n\t// Generate node exec closures.\n\tif err = genRun(p.root); err != nil {\n\t\treturn res, err\n\t}\n\n\t// Init interpreter execution memory frame.\n\tinterp.frame.setrunid(interp.runid())\n\tinterp.frame.mutex.Lock()\n\tinterp.resizeFrame()\n\tinterp.frame.mutex.Unlock()\n\n\t// Execute node closures.\n\tinterp.run(p.root, nil)\n\n\t// Wire and execute global vars.\n\tn, err := genGlobalVars([]*node{p.root}, interp.scopes[p.pkgName])\n\tif err != nil {\n\t\treturn res, err\n\t}\n\tinterp.run(n, nil)\n\n\tfor _, n := range p.init {\n\t\tinterp.run(n, interp.frame)\n\t}\n\tv := genValue(p.root)\n\tres = v(interp.frame)\n\n\t// If result is an interpreter node, wrap it in a runtime callable function.\n\tif res.IsValid() {\n\t\tif n, ok := res.Interface().(*node); ok {\n\t\t\tres = genFunctionWrapper(n)(interp.frame)\n\t\t}\n\t}\n\n\treturn res, err\n}\n\n// ExecuteWithContext executes compiled Go code.\nfunc (interp *Interpreter) ExecuteWithContext(ctx context.Context, p *Program) (res reflect.Value, err error) {\n\tinterp.mutex.Lock()\n\tinterp.done = make(chan struct{})\n\tinterp.cancelChan = !interp.opt.fastChan\n\tinterp.mutex.Unlock()\n\n\tdone := make(chan struct{})\n\tgo func() {\n\t\tdefer close(done)\n\t\tres, err = interp.Execute(p)\n\t}()\n\n\tselect {\n\tcase <-ctx.Done():\n\t\tinterp.stop()\n\t\treturn reflect.Value{}, ctx.Err()\n\tcase <-done:\n\t}\n\treturn res, err\n}\n"
  },
  {
    "path": "interp/realfs.go",
    "content": "package interp\n\nimport (\n\t\"io/fs\"\n\t\"os\"\n)\n\n// realFS complies with the fs.FS interface (go 1.16 onwards)\n// We use this rather than os.DirFS as DirFS has no concept of\n// what the current working directory is, whereas this simple\n// passthru to os.Open knows about working dir automagically.\ntype realFS struct{}\n\n// Open complies with the fs.FS interface.\nfunc (dir realFS) Open(name string) (fs.File, error) {\n\tf, err := os.Open(name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn f, nil\n}\n"
  },
  {
    "path": "interp/run.go",
    "content": "package interp\n\n//go:generate go run ../internal/cmd/genop/genop.go\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"go/constant\"\n\t\"reflect\"\n\t\"regexp\"\n\t\"strings\"\n)\n\n// bltn type defines functions which run at CFG execution.\ntype bltn func(f *frame) bltn\n\n// bltnGenerator type defines a builtin generator function.\ntype bltnGenerator func(n *node)\n\nvar builtin = [...]bltnGenerator{\n\taNop:          nop,\n\taAddr:         addr,\n\taAssign:       assign,\n\taAdd:          add,\n\taAddAssign:    addAssign,\n\taAnd:          and,\n\taAndAssign:    andAssign,\n\taAndNot:       andNot,\n\taAndNotAssign: andNotAssign,\n\taBitNot:       bitNot,\n\taCall:         call,\n\taCallSlice:    call,\n\taCase:         _case,\n\taCompositeLit: arrayLit,\n\taDec:          dec,\n\taEqual:        equal,\n\taGetFunc:      getFunc,\n\taGreater:      greater,\n\taGreaterEqual: greaterEqual,\n\taInc:          inc,\n\taLand:         land,\n\taLor:          lor,\n\taLower:        lower,\n\taLowerEqual:   lowerEqual,\n\taMul:          mul,\n\taMulAssign:    mulAssign,\n\taNeg:          neg,\n\taNot:          not,\n\taNotEqual:     notEqual,\n\taOr:           or,\n\taOrAssign:     orAssign,\n\taPos:          pos,\n\taQuo:          quo,\n\taQuoAssign:    quoAssign,\n\taRange:        _range,\n\taRecv:         recv,\n\taRem:          rem,\n\taRemAssign:    remAssign,\n\taReturn:       _return,\n\taSend:         send,\n\taShl:          shl,\n\taShlAssign:    shlAssign,\n\taShr:          shr,\n\taShrAssign:    shrAssign,\n\taSlice:        slice,\n\taSlice0:       slice0,\n\taStar:         deref,\n\taSub:          sub,\n\taSubAssign:    subAssign,\n\taTypeAssert:   typeAssertShort,\n\taXor:          xor,\n\taXorAssign:    xorAssign,\n}\n\nvar receiverStripperRxp *regexp.Regexp\n\nfunc init() {\n\tre := `func\\(((.*?(, |\\)))(.*))`\n\tvar err error\n\treceiverStripperRxp, err = regexp.Compile(re)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n}\n\ntype valueInterface struct {\n\tnode  *node\n\tvalue reflect.Value\n}\n\nvar floatType, complexType reflect.Type\n\nfunc init() {\n\tfloatType = reflect.ValueOf(0.0).Type()\n\tcomplexType = reflect.ValueOf(complex(0, 0)).Type()\n}\n\nfunc (interp *Interpreter) run(n *node, cf *frame) {\n\tif n == nil {\n\t\treturn\n\t}\n\tvar f *frame\n\tif cf == nil {\n\t\tf = interp.frame\n\t} else {\n\t\tf = newFrame(cf, len(n.types), interp.runid())\n\t}\n\tinterp.mutex.RLock()\n\tc := reflect.ValueOf(interp.done)\n\tinterp.mutex.RUnlock()\n\n\tf.mutex.Lock()\n\tf.done = reflect.SelectCase{Dir: reflect.SelectRecv, Chan: c}\n\tf.mutex.Unlock()\n\n\tfor i, t := range n.types {\n\t\tf.data[i] = reflect.New(t).Elem()\n\t}\n\trunCfg(n.start, f, n, nil)\n}\n\nfunc isExecNode(n *node, exec bltn) bool {\n\tif n == nil || n.exec == nil || exec == nil {\n\t\treturn false\n\t}\n\n\ta1 := reflect.ValueOf(n.exec).Pointer()\n\ta2 := reflect.ValueOf(exec).Pointer()\n\treturn a1 == a2\n}\n\n// originalExecNode looks in the tree of nodes for the node which has exec,\n// aside from n, in order to know where n \"inherited\" that exec from.\nfunc originalExecNode(n *node, exec bltn) *node {\n\texecAddr := reflect.ValueOf(exec).Pointer()\n\tvar originalNode *node\n\tseen := make(map[int64]struct{})\n\troot := n\n\tfor {\n\t\troot = root.anc\n\t\tif root == nil {\n\t\t\tbreak\n\t\t}\n\t\tif _, ok := seen[root.index]; ok {\n\t\t\tcontinue\n\t\t}\n\n\t\troot.Walk(func(wn *node) bool {\n\t\t\tif _, ok := seen[wn.index]; ok {\n\t\t\t\treturn true\n\t\t\t}\n\t\t\tseen[wn.index] = struct{}{}\n\t\t\tif wn.index == n.index {\n\t\t\t\treturn true\n\t\t\t}\n\t\t\tif wn.exec == nil {\n\t\t\t\treturn true\n\t\t\t}\n\t\t\tif reflect.ValueOf(wn.exec).Pointer() == execAddr {\n\t\t\t\toriginalNode = wn\n\t\t\t\treturn false\n\t\t\t}\n\t\t\treturn true\n\t\t}, nil)\n\n\t\tif originalNode != nil {\n\t\t\tbreak\n\t\t}\n\t}\n\n\treturn originalNode\n}\n\n// cloned from net/http/server.go , so we can enforce a similar behavior:\n// in the stdlib, this error is used as sentinel in panic triggered e.g. on\n// request cancellation, in order to catch it and suppress it in a following defer.\n// in yaegi, we use it to suppress a \"panic\" log message that happens in the\n// same circumstances.\nvar errAbortHandler = errors.New(\"net/http: abort Handler\")\n\n// Functions set to run during execution of CFG.\n\nfunc panicFunc(s *scope) string {\n\tif s == nil {\n\t\treturn \"\"\n\t}\n\tdef := s.def\n\tif def == nil {\n\t\treturn s.pkgID\n\t}\n\tswitch def.kind {\n\tcase funcDecl:\n\t\tif c := def.child[1]; c.kind == identExpr {\n\t\t\treturn s.pkgID + \".\" + c.ident\n\t\t}\n\tcase funcLit:\n\t\tif def.anc != nil {\n\t\t\treturn panicFunc(def.anc.scope) + \".func\"\n\t\t}\n\t}\n\treturn s.pkgID\n}\n\n// runCfg executes a node AST by walking its CFG and running node builtin at each step.\nfunc runCfg(n *node, f *frame, funcNode, callNode *node) {\n\tvar exec bltn\n\tdefer func() {\n\t\tf.mutex.Lock()\n\t\tf.recovered = recover()\n\t\tfor _, val := range f.deferred {\n\t\t\tval[0].Call(val[1:])\n\t\t}\n\t\tif f.recovered != nil {\n\t\t\toNode := originalExecNode(n, exec)\n\t\t\tif oNode == nil {\n\t\t\t\toNode = n\n\t\t\t}\n\t\t\terrorer, ok := f.recovered.(error)\n\t\t\t// in this specific case, the stdlib would/will suppress the panic, so we\n\t\t\t// suppress the logging here accordingly, to get a similar and consistent\n\t\t\t// behavior.\n\t\t\tif !ok || errorer.Error() != errAbortHandler.Error() {\n\t\t\t\tfmt.Fprintln(n.interp.stderr, oNode.cfgErrorf(\"panic: %s(...)\", panicFunc(oNode.scope)))\n\t\t\t}\n\t\t\tf.mutex.Unlock()\n\t\t\tpanic(f.recovered)\n\t\t}\n\t\tf.mutex.Unlock()\n\t}()\n\n\tdbg := n.interp.debugger\n\tif dbg == nil {\n\t\tfor exec := n.exec; exec != nil && f.runid() == n.interp.runid(); {\n\t\t\texec = exec(f)\n\t\t}\n\t\treturn\n\t}\n\n\tif n.exec == nil {\n\t\treturn\n\t}\n\n\tdbg.enterCall(funcNode, callNode, f)\n\tdefer dbg.exitCall(funcNode, callNode, f)\n\n\tfor m, exec := n, n.exec; f.runid() == n.interp.runid(); {\n\t\tif dbg.exec(m, f) {\n\t\t\tbreak\n\t\t}\n\n\t\texec = exec(f)\n\t\tif exec == nil {\n\t\t\tbreak\n\t\t}\n\n\t\tif m == nil {\n\t\t\tm = originalExecNode(n, exec)\n\t\t\tcontinue\n\t\t}\n\n\t\tswitch {\n\t\tcase isExecNode(m.tnext, exec):\n\t\t\tm = m.tnext\n\t\tcase isExecNode(m.fnext, exec):\n\t\t\tm = m.fnext\n\t\tdefault:\n\t\t\tm = originalExecNode(m, exec)\n\t\t}\n\t}\n}\n\nfunc stripReceiverFromArgs(signature string) (string, error) {\n\tfields := receiverStripperRxp.FindStringSubmatch(signature)\n\tif len(fields) < 5 {\n\t\treturn \"\", errors.New(\"error while matching method signature\")\n\t}\n\tif fields[3] == \")\" {\n\t\treturn fmt.Sprintf(\"func()%s\", fields[4]), nil\n\t}\n\treturn fmt.Sprintf(\"func(%s\", fields[4]), nil\n}\n\nfunc typeAssertShort(n *node) {\n\ttypeAssert(n, true, false)\n}\n\nfunc typeAssertLong(n *node) {\n\ttypeAssert(n, true, true)\n}\n\nfunc typeAssertStatus(n *node) {\n\ttypeAssert(n, false, true)\n}\n\nfunc typeAssert(n *node, withResult, withOk bool) {\n\tc0, c1 := n.child[0], n.child[1]\n\tvalue := genValue(c0) // input value\n\tvar value0, value1 func(*frame) reflect.Value\n\tsetStatus := false\n\tswitch {\n\tcase withResult && withOk:\n\t\tvalue0 = genValue(n.anc.child[0])       // returned result\n\t\tvalue1 = genValue(n.anc.child[1])       // returned status\n\t\tsetStatus = n.anc.child[1].ident != \"_\" // do not assign status to \"_\"\n\tcase withResult && !withOk:\n\t\tvalue0 = genValue(n) // returned result\n\tcase !withResult && withOk:\n\t\tvalue1 = genValue(n.anc.child[1])       // returned status\n\t\tsetStatus = n.anc.child[1].ident != \"_\" // do not assign status to \"_\"\n\t}\n\n\ttyp := c1.typ // type to assert or convert to\n\ttypID := typ.id()\n\trtype := typ.refType(nil) // type to assert\n\tnext := getExec(n.tnext)\n\n\tswitch {\n\tcase isInterfaceSrc(typ):\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tvalf := value(f)\n\t\t\tv, ok := valf.Interface().(valueInterface)\n\t\t\tif setStatus {\n\t\t\t\tdefer func() {\n\t\t\t\t\tvalue1(f).SetBool(ok)\n\t\t\t\t}()\n\t\t\t}\n\t\t\tif !ok {\n\t\t\t\tif !withOk {\n\t\t\t\t\tpanic(n.cfgErrorf(\"interface conversion: nil is not %v\", typID))\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t\tif c0.typ.cat == valueT {\n\t\t\t\tvalf = reflect.ValueOf(v)\n\t\t\t}\n\t\t\tif v.node.typ.id() == typID {\n\t\t\t\tif withResult {\n\t\t\t\t\tvalue0(f).Set(valf)\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t\tm0 := v.node.typ.methods()\n\t\t\tm1 := typ.methods()\n\t\t\tif len(m0) < len(m1) {\n\t\t\t\tok = false\n\t\t\t\tif !withOk {\n\t\t\t\t\tpanic(n.cfgErrorf(\"interface conversion: %v is not %v\", v.node.typ.id(), typID))\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\n\t\t\tfor k, meth1 := range m1 {\n\t\t\t\tvar meth0 string\n\t\t\t\tmeth0, ok = m0[k]\n\t\t\t\tif !ok {\n\t\t\t\t\treturn next\n\t\t\t\t}\n\t\t\t\t// As far as we know this equality check can fail because they are two ways to\n\t\t\t\t// represent the signature of a method: one where the receiver appears before the\n\t\t\t\t// func keyword, and one where it is just a func signature, and the receiver is\n\t\t\t\t// seen as the first argument. That's why if that equality fails, we try harder to\n\t\t\t\t// compare them afterwards. Hopefully that is the only reason this equality can fail.\n\t\t\t\tif meth0 == meth1 {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\ttm := lookupFieldOrMethod(v.node.typ, k)\n\t\t\t\tif tm == nil {\n\t\t\t\t\tok = false\n\t\t\t\t\treturn next\n\t\t\t\t}\n\n\t\t\t\tvar err error\n\t\t\t\tmeth0, err = stripReceiverFromArgs(meth0)\n\t\t\t\tif err != nil {\n\t\t\t\t\tok = false\n\t\t\t\t\treturn next\n\t\t\t\t}\n\n\t\t\t\tif meth0 != meth1 {\n\t\t\t\t\tok = false\n\t\t\t\t\treturn next\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif withResult {\n\t\t\t\tvalue0(f).Set(valf)\n\t\t\t}\n\t\t\treturn next\n\t\t}\n\tcase isInterface(typ):\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tvar leftType reflect.Type\n\t\t\tv := value(f)\n\t\t\tval, ok := v.Interface().(valueInterface)\n\t\t\tif setStatus {\n\t\t\t\tdefer func() {\n\t\t\t\t\tvalue1(f).SetBool(ok)\n\t\t\t\t}()\n\t\t\t}\n\t\t\tif ok && val.node.typ.cat != valueT {\n\t\t\t\tm0 := val.node.typ.methods()\n\t\t\t\tm1 := typ.methods()\n\t\t\t\tif len(m0) < len(m1) {\n\t\t\t\t\tok = false\n\t\t\t\t\treturn next\n\t\t\t\t}\n\n\t\t\t\tfor k, meth1 := range m1 {\n\t\t\t\t\tvar meth0 string\n\t\t\t\t\tmeth0, ok = m0[k]\n\t\t\t\t\tif !ok {\n\t\t\t\t\t\treturn next\n\t\t\t\t\t}\n\t\t\t\t\tif meth0 != meth1 {\n\t\t\t\t\t\tok = false\n\t\t\t\t\t\treturn next\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif withResult {\n\t\t\t\t\tvalue0(f).Set(genInterfaceWrapper(val.node, rtype)(f))\n\t\t\t\t}\n\t\t\t\tok = true\n\t\t\t\treturn next\n\t\t\t}\n\n\t\t\tif ok {\n\t\t\t\tv = val.value\n\t\t\t\tleftType = val.node.typ.rtype\n\t\t\t} else {\n\t\t\t\tv = v.Elem()\n\t\t\t\tleftType = v.Type()\n\t\t\t\tok = true\n\t\t\t}\n\t\t\tok = v.IsValid()\n\t\t\tif !ok {\n\t\t\t\tif !withOk {\n\t\t\t\t\tpanic(n.cfgErrorf(\"interface conversion: interface {} is nil, not %s\", rtype.String()))\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t\tok = canAssertTypes(leftType, rtype)\n\t\t\tif !ok {\n\t\t\t\tif !withOk {\n\t\t\t\t\tmethod := firstMissingMethod(leftType, rtype)\n\t\t\t\t\tpanic(n.cfgErrorf(\"interface conversion: %s is not %s: missing method %s\", leftType.String(), rtype.String(), method))\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t\tif withResult {\n\t\t\t\tvalue0(f).Set(v)\n\t\t\t}\n\t\t\treturn next\n\t\t}\n\tcase isEmptyInterface(n.child[0].typ):\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tvar ok bool\n\t\t\tif setStatus {\n\t\t\t\tdefer func() {\n\t\t\t\t\tvalue1(f).SetBool(ok)\n\t\t\t\t}()\n\t\t\t}\n\t\t\tval := value(f)\n\t\t\tconcrete := val.Interface()\n\t\t\tctyp := reflect.TypeOf(concrete)\n\n\t\t\tif vv, ok := concrete.(valueInterface); ok {\n\t\t\t\tctyp = vv.value.Type()\n\t\t\t\tconcrete = vv.value.Interface()\n\t\t\t}\n\t\t\tok = canAssertTypes(ctyp, rtype)\n\t\t\tif !ok {\n\t\t\t\tif !withOk {\n\t\t\t\t\t// TODO(mpl): think about whether this should ever happen.\n\t\t\t\t\tif ctyp == nil {\n\t\t\t\t\t\tpanic(n.cfgErrorf(\"interface conversion: interface {} is nil, not %s\", rtype.String()))\n\t\t\t\t\t}\n\t\t\t\t\tpanic(n.cfgErrorf(\"interface conversion: interface {} is %s, not %s\", ctyp.String(), rtype.String()))\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t\tif withResult {\n\t\t\t\tif isInterfaceSrc(typ) {\n\t\t\t\t\t// TODO(mpl): this requires more work. the wrapped node is not complete enough.\n\t\t\t\t\tvalue0(f).Set(reflect.ValueOf(valueInterface{n.child[0], reflect.ValueOf(concrete)}))\n\t\t\t\t} else {\n\t\t\t\t\tvalue0(f).Set(reflect.ValueOf(concrete))\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn next\n\t\t}\n\tcase n.child[0].typ.cat == valueT || n.child[0].typ.cat == errorT:\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tv := value(f).Elem()\n\t\t\tok := v.IsValid()\n\t\t\tif setStatus {\n\t\t\t\tdefer func() {\n\t\t\t\t\tvalue1(f).SetBool(ok)\n\t\t\t\t}()\n\t\t\t}\n\t\t\tif !ok {\n\t\t\t\tif !withOk {\n\t\t\t\t\tpanic(n.cfgErrorf(\"interface conversion: interface {} is nil, not %s\", rtype.String()))\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t\tv = valueInterfaceValue(v)\n\t\t\tif vt := v.Type(); vt.Kind() == reflect.Struct && vt.Field(0).Name == \"IValue\" {\n\t\t\t\t// Value is retrieved from an interface wrapper.\n\t\t\t\tv = v.Field(0).Elem()\n\t\t\t}\n\t\t\tok = canAssertTypes(v.Type(), rtype)\n\t\t\tif !ok {\n\t\t\t\tif !withOk {\n\t\t\t\t\tmethod := firstMissingMethod(v.Type(), rtype)\n\t\t\t\t\tpanic(n.cfgErrorf(\"interface conversion: %s is not %s: missing method %s\", v.Type().String(), rtype.String(), method))\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t\tif withResult {\n\t\t\t\tvalue0(f).Set(v)\n\t\t\t}\n\t\t\treturn next\n\t\t}\n\tdefault:\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tv, ok := value(f).Interface().(valueInterface)\n\t\t\tif setStatus {\n\t\t\t\tdefer func() {\n\t\t\t\t\tvalue1(f).SetBool(ok)\n\t\t\t\t}()\n\t\t\t}\n\t\t\tif !ok || !v.value.IsValid() {\n\t\t\t\tok = false\n\t\t\t\tif !withOk {\n\t\t\t\t\tpanic(n.cfgErrorf(\"interface conversion: interface {} is nil, not %s\", rtype.String()))\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\n\t\t\tok = canAssertTypes(v.value.Type(), rtype)\n\t\t\tif !ok {\n\t\t\t\tif !withOk {\n\t\t\t\t\tpanic(n.cfgErrorf(\"interface conversion: interface {} is %s, not %s\", v.value.Type().String(), rtype.String()))\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t\tif withResult {\n\t\t\t\tvalue0(f).Set(v.value)\n\t\t\t}\n\t\t\treturn next\n\t\t}\n\t}\n}\n\nfunc canAssertTypes(src, dest reflect.Type) bool {\n\tif dest == nil {\n\t\treturn false\n\t}\n\tif src == dest {\n\t\treturn true\n\t}\n\tif dest.Kind() == reflect.Interface && src.Implements(dest) {\n\t\treturn true\n\t}\n\tif src == nil {\n\t\treturn false\n\t}\n\tif src.AssignableTo(dest) {\n\t\treturn true\n\t}\n\treturn false\n}\n\nfunc firstMissingMethod(src, dest reflect.Type) string {\n\tfor i := 0; i < dest.NumMethod(); i++ {\n\t\tm := dest.Method(i).Name\n\t\tif _, ok := src.MethodByName(m); !ok {\n\t\t\treturn m\n\t\t}\n\t}\n\treturn \"\"\n}\n\nfunc convert(n *node) {\n\tdest := genValue(n)\n\tc := n.child[1]\n\ttyp := n.child[0].typ.frameType()\n\tnext := getExec(n.tnext)\n\n\tif c.isNil() { // convert nil to type\n\t\t// TODO(mpl): Try to completely remove, as maybe frameType already does the job for interfaces.\n\t\tif isInterfaceSrc(n.child[0].typ) && !isEmptyInterface(n.child[0].typ) {\n\t\t\ttyp = valueInterfaceType\n\t\t}\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tdest(f).Set(reflect.New(typ).Elem())\n\t\t\treturn next\n\t\t}\n\t\treturn\n\t}\n\n\tdoConvert := true\n\tvar value func(*frame) reflect.Value\n\tswitch {\n\tcase isFuncSrc(c.typ):\n\t\tvalue = genFunctionWrapper(c)\n\tdefault:\n\t\tvalue = genValue(c)\n\t}\n\n\tfor _, con := range n.interp.hooks.convert {\n\t\tif c.typ.rtype == nil {\n\t\t\tcontinue\n\t\t}\n\n\t\tfn := con(c.typ.rtype, typ)\n\t\tif fn == nil {\n\t\t\tcontinue\n\t\t}\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tfn(value(f), dest(f))\n\t\t\treturn next\n\t\t}\n\t\treturn\n\t}\n\n\tn.exec = func(f *frame) bltn {\n\t\tif doConvert {\n\t\t\tdest(f).Set(value(f).Convert(typ))\n\t\t} else {\n\t\t\tdest(f).Set(value(f))\n\t\t}\n\t\treturn next\n\t}\n}\n\n// assignFromCall assigns values from a function call.\nfunc assignFromCall(n *node) {\n\tncall := n.lastChild()\n\tl := len(n.child) - 1\n\tif n.anc.kind == varDecl && n.child[l-1].isType(n.scope) {\n\t\t// Ignore the type in the assignment if it is part of a variable declaration.\n\t\tl--\n\t}\n\tdvalue := make([]func(*frame) reflect.Value, l)\n\tfor i := range dvalue {\n\t\tif n.child[i].ident == \"_\" {\n\t\t\tcontinue\n\t\t}\n\t\tdvalue[i] = genValue(n.child[i])\n\t}\n\tnext := getExec(n.tnext)\n\tn.exec = func(f *frame) bltn {\n\t\tfor i, v := range dvalue {\n\t\t\tif v == nil {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\ts := f.data[ncall.findex+i]\n\t\t\tc := n.child[i]\n\t\t\tif n.kind == defineXStmt && !c.redeclared {\n\t\t\t\t// Recreate destination value in case of define statement,\n\t\t\t\t// to preserve previous value possibly in use by a closure.\n\t\t\t\tdata := getFrame(f, c.level).data\n\t\t\t\tdata[c.findex] = reflect.New(data[c.findex].Type()).Elem()\n\t\t\t\tdata[c.findex].Set(s)\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tv(f).Set(s)\n\t\t}\n\t\treturn next\n\t}\n}\n\nfunc assign(n *node) {\n\tnext := getExec(n.tnext)\n\tdvalue := make([]func(*frame) reflect.Value, n.nleft)\n\tivalue := make([]func(*frame) reflect.Value, n.nleft)\n\tsvalue := make([]func(*frame) reflect.Value, n.nleft)\n\tvar sbase int\n\tif n.nright > 0 {\n\t\tsbase = len(n.child) - n.nright\n\t}\n\n\tfor i := 0; i < n.nleft; i++ {\n\t\tdest, src := n.child[i], n.child[sbase+i]\n\t\tif isNamedFuncSrc(src.typ) {\n\t\t\tsvalue[i] = genFuncValue(src)\n\t\t} else {\n\t\t\tsvalue[i] = genDestValue(dest.typ, src)\n\t\t}\n\t\tif isMapEntry(dest) {\n\t\t\tif isInterfaceSrc(dest.child[1].typ) { // key\n\t\t\t\tivalue[i] = genValueInterface(dest.child[1])\n\t\t\t} else {\n\t\t\t\tivalue[i] = genValue(dest.child[1])\n\t\t\t}\n\t\t\tdvalue[i] = genValue(dest.child[0])\n\t\t} else {\n\t\t\tdvalue[i] = genValue(dest)\n\t\t}\n\t}\n\n\tif n.nleft == 1 {\n\t\t// Single assign operation.\n\t\tswitch s, d, i := svalue[0], dvalue[0], ivalue[0]; {\n\t\tcase n.child[0].ident == \"_\":\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase i != nil:\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\td(f).SetMapIndex(i(f), s(f))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase n.kind == defineStmt:\n\t\t\tl := n.level\n\t\t\tind := n.findex\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdata := getFrame(f, l).data\n\t\t\t\tdata[ind] = reflect.New(data[ind].Type()).Elem()\n\t\t\t\tdata[ind].Set(s(f))\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\td(f).Set(s(f))\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t\treturn\n\t}\n\n\t// Multi assign operation.\n\ttypes := make([]reflect.Type, n.nright)\n\tindex := make([]int, n.nright)\n\tlevel := make([]int, n.nright)\n\n\tfor i := range types {\n\t\tvar t reflect.Type\n\t\tswitch typ := n.child[sbase+i].typ; {\n\t\tcase isInterfaceSrc(typ):\n\t\t\tt = valueInterfaceType\n\t\tdefault:\n\t\t\tt = typ.TypeOf()\n\t\t}\n\t\ttypes[i] = t\n\t\tindex[i] = n.child[i].findex\n\t\tlevel[i] = n.child[i].level\n\t}\n\n\tif n.kind == defineStmt {\n\t\t// Handle a multiple var declararation / assign. It cannot be a swap.\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tfor i, s := range svalue {\n\t\t\t\tif n.child[i].ident == \"_\" {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tdata := getFrame(f, level[i]).data\n\t\t\t\tj := index[i]\n\t\t\t\tdata[j] = reflect.New(data[j].Type()).Elem()\n\t\t\t\tdata[j].Set(s(f))\n\t\t\t}\n\t\t\treturn next\n\t\t}\n\t\treturn\n\t}\n\n\t// To handle possible swap in multi-assign:\n\t// evaluate and copy all values in assign right hand side into temporary\n\t// then evaluate assign left hand side and copy temporary into it\n\tn.exec = func(f *frame) bltn {\n\t\tt := make([]reflect.Value, len(svalue))\n\t\tfor i, s := range svalue {\n\t\t\tif n.child[i].ident == \"_\" {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tt[i] = reflect.New(types[i]).Elem()\n\t\t\tt[i].Set(s(f))\n\t\t}\n\t\tfor i, d := range dvalue {\n\t\t\tif n.child[i].ident == \"_\" {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tif j := ivalue[i]; j != nil {\n\t\t\t\td(f).SetMapIndex(j(f), t[i]) // Assign a map entry\n\t\t\t} else {\n\t\t\t\td(f).Set(t[i]) // Assign a var or array/slice entry\n\t\t\t}\n\t\t}\n\t\treturn next\n\t}\n}\n\nfunc not(n *node) {\n\tdest := genValue(n)\n\tvalue := genValue(n.child[0])\n\ttnext := getExec(n.tnext)\n\n\tif n.fnext != nil {\n\t\tfnext := getExec(n.fnext)\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tif !value(f).Bool() {\n\t\t\t\tdest(f).SetBool(true)\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t\tdest(f).SetBool(false)\n\t\t\treturn fnext\n\t\t}\n\t} else {\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tdest(f).SetBool(!value(f).Bool())\n\t\t\treturn tnext\n\t\t}\n\t}\n}\n\nfunc addr(n *node) {\n\tdest := genValue(n)\n\tnext := getExec(n.tnext)\n\tc0 := n.child[0]\n\tvalue := genValue(c0)\n\n\tif isInterfaceSrc(c0.typ) || isPtrSrc(c0.typ) {\n\t\ti := n.findex\n\t\tl := n.level\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tgetFrame(f, l).data[i] = value(f).Addr()\n\t\t\treturn next\n\t\t}\n\t\treturn\n\t}\n\n\tn.exec = func(f *frame) bltn {\n\t\tdest(f).Set(value(f).Addr())\n\t\treturn next\n\t}\n}\n\nfunc deref(n *node) {\n\tvalue := genValue(n.child[0])\n\ttnext := getExec(n.tnext)\n\ti := n.findex\n\tl := n.level\n\n\tif n.fnext != nil {\n\t\tfnext := getExec(n.fnext)\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tr := value(f).Elem()\n\t\t\tif r.Bool() {\n\t\t\t\tgetFrame(f, l).data[i] = r\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t\treturn fnext\n\t\t}\n\t} else {\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tgetFrame(f, l).data[i] = value(f).Elem()\n\t\t\treturn tnext\n\t\t}\n\t}\n}\n\nfunc _print(n *node) {\n\tchild := n.child[1:]\n\tvalues := make([]func(*frame) reflect.Value, len(child))\n\tfor i, c := range child {\n\t\tvalues[i] = genValue(c)\n\t}\n\tout := n.interp.stdout\n\n\tgenBuiltinDeferWrapper(n, values, nil, func(args []reflect.Value) []reflect.Value {\n\t\tfor i, value := range args {\n\t\t\tif i > 0 {\n\t\t\t\tfmt.Fprintf(out, \" \")\n\t\t\t}\n\t\t\tfmt.Fprintf(out, \"%v\", value)\n\t\t}\n\t\treturn nil\n\t})\n}\n\nfunc _println(n *node) {\n\tchild := n.child[1:]\n\tvalues := make([]func(*frame) reflect.Value, len(child))\n\tfor i, c := range child {\n\t\tvalues[i] = genValue(c)\n\t}\n\tout := n.interp.stdout\n\n\tgenBuiltinDeferWrapper(n, values, nil, func(args []reflect.Value) []reflect.Value {\n\t\tfor i, value := range args {\n\t\t\tif i > 0 {\n\t\t\t\tfmt.Fprintf(out, \" \")\n\t\t\t}\n\t\t\tfmt.Fprintf(out, \"%v\", value)\n\t\t}\n\t\tfmt.Fprintln(out, \"\")\n\t\treturn nil\n\t})\n}\n\nfunc _recover(n *node) {\n\ttnext := getExec(n.tnext)\n\tdest := genValue(n)\n\n\tn.exec = func(f *frame) bltn {\n\t\tif f.anc.recovered == nil {\n\t\t\t// TODO(mpl): maybe we don't need that special case, and we're just forgetting to unwrap the valueInterface somewhere else.\n\t\t\tif isEmptyInterface(n.typ) {\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t\tdest(f).Set(reflect.ValueOf(valueInterface{}))\n\t\t\treturn tnext\n\t\t}\n\n\t\tif isEmptyInterface(n.typ) {\n\t\t\tdest(f).Set(reflect.ValueOf(f.anc.recovered))\n\t\t} else {\n\t\t\tdest(f).Set(reflect.ValueOf(valueInterface{n, reflect.ValueOf(f.anc.recovered)}))\n\t\t}\n\t\tf.anc.recovered = nil\n\t\treturn tnext\n\t}\n}\n\nfunc _panic(n *node) {\n\tvalue := genValue(n.child[1])\n\n\tn.exec = func(f *frame) bltn {\n\t\tpanic(value(f))\n\t}\n}\n\nfunc genBuiltinDeferWrapper(n *node, in, out []func(*frame) reflect.Value, fn func([]reflect.Value) []reflect.Value) {\n\tnext := getExec(n.tnext)\n\n\tif n.anc.kind == deferStmt {\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tval := make([]reflect.Value, len(in)+1)\n\t\t\tinTypes := make([]reflect.Type, len(in))\n\t\t\tfor i, v := range in {\n\t\t\t\tval[i+1] = v(f)\n\t\t\t\tinTypes[i] = val[i+1].Type()\n\t\t\t}\n\t\t\toutTypes := make([]reflect.Type, len(out))\n\t\t\tfor i, v := range out {\n\t\t\t\toutTypes[i] = v(f).Type()\n\t\t\t}\n\n\t\t\tfuncType := reflect.FuncOf(inTypes, outTypes, false)\n\t\t\tval[0] = reflect.MakeFunc(funcType, fn)\n\t\t\tf.deferred = append([][]reflect.Value{val}, f.deferred...)\n\t\t\treturn next\n\t\t}\n\t\treturn\n\t}\n\n\tn.exec = func(f *frame) bltn {\n\t\tval := make([]reflect.Value, len(in))\n\t\tfor i, v := range in {\n\t\t\tval[i] = v(f)\n\t\t}\n\n\t\tdests := fn(val)\n\n\t\tfor i, dest := range dests {\n\t\t\tout[i](f).Set(dest)\n\t\t}\n\t\treturn next\n\t}\n}\n\nfunc genFunctionWrapper(n *node) func(*frame) reflect.Value {\n\tvar def *node\n\tvar ok bool\n\n\tif def, ok = n.val.(*node); !ok {\n\t\treturn genValueAsFunctionWrapper(n)\n\t}\n\tstart := def.child[3].start\n\tnumRet := len(def.typ.ret)\n\tvar rcvr func(*frame) reflect.Value\n\n\tif n.recv != nil {\n\t\trcvr = genValueRecv(n)\n\t}\n\tfuncType := n.typ.TypeOf()\n\n\tvalue := genValue(n)\n\tvar isDefer bool\n\tif n.anc != nil && n.anc.anc != nil && n.anc.anc.kind == deferStmt {\n\t\tisDefer = true\n\t}\n\n\treturn func(f *frame) reflect.Value {\n\t\tv := value(f)\n\t\tif !isDefer && v.Kind() == reflect.Func {\n\t\t\t// fixes #1634, if v is already a func, then don't re-wrap\n\t\t\t// because original wrapping cloned the frame but this doesn't\n\t\t\treturn v\n\t\t}\n\n\t\treturn reflect.MakeFunc(funcType, func(in []reflect.Value) []reflect.Value {\n\t\t\t// Allocate and init local frame. All values to be settable and addressable.\n\t\t\tfr := newFrame(f, len(def.types), f.runid())\n\t\t\td := fr.data\n\t\t\tfor i, t := range def.types {\n\t\t\t\td[i] = reflect.New(t).Elem()\n\t\t\t}\n\n\t\t\tif rcvr == nil {\n\t\t\t\td = d[numRet:]\n\t\t\t} else {\n\t\t\t\t// Copy method receiver as first argument.\n\t\t\t\tsrc, dest := rcvr(f), d[numRet]\n\t\t\t\tsk, dk := src.Kind(), dest.Kind()\n\t\t\t\tfor {\n\t\t\t\t\tvs, ok := src.Interface().(valueInterface)\n\t\t\t\t\tif !ok {\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t\tsrc = vs.value\n\t\t\t\t\tsk = src.Kind()\n\t\t\t\t}\n\t\t\t\tswitch {\n\t\t\t\tcase sk == reflect.Ptr && dk != reflect.Ptr:\n\t\t\t\t\tdest.Set(src.Elem())\n\t\t\t\tcase sk != reflect.Ptr && dk == reflect.Ptr:\n\t\t\t\t\tdest.Set(src.Addr())\n\t\t\t\tdefault:\n\t\t\t\t\tdest.Set(src)\n\t\t\t\t}\n\t\t\t\td = d[numRet+1:]\n\t\t\t}\n\n\t\t\t// Copy function input arguments in local frame.\n\t\t\tfor i, arg := range in {\n\t\t\t\tif i >= len(d) {\n\t\t\t\t\t// In case of unused arg, there may be not even a frame entry allocated, just skip.\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\ttyp := def.typ.arg[i]\n\t\t\t\tswitch {\n\t\t\t\tcase isEmptyInterface(typ) || typ.TypeOf() == valueInterfaceType:\n\t\t\t\t\td[i].Set(arg)\n\t\t\t\tcase isInterfaceSrc(typ):\n\t\t\t\t\td[i].Set(reflect.ValueOf(valueInterface{value: arg.Elem()}))\n\t\t\t\tdefault:\n\t\t\t\t\td[i].Set(arg)\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Interpreter code execution.\n\t\t\trunCfg(start, fr, def, n)\n\n\t\t\treturn fr.data[:numRet]\n\t\t})\n\t}\n}\n\nfunc genInterfaceWrapper(n *node, typ reflect.Type) func(*frame) reflect.Value {\n\tvalue := genValue(n)\n\tif typ == nil || typ.Kind() != reflect.Interface || typ.NumMethod() == 0 || n.typ.cat == valueT {\n\t\treturn value\n\t}\n\ttc := n.typ.cat\n\tif tc != structT {\n\t\t// Always force wrapper generation for struct types, as they may contain\n\t\t// embedded interface fields which require wrapping, even if reported as\n\t\t// implementing typ by reflect.\n\t\tif nt := n.typ.frameType(); nt != nil && nt.Implements(typ) {\n\t\t\treturn value\n\t\t}\n\t}\n\n\t// Retrieve methods from the interface wrapper, which is a struct where all fields\n\t// except the first define the methods to implement.\n\t// As the field name was generated with a prefixed first character (in order to avoid\n\t// collisions with method names), this first character is ignored in comparisons.\n\twrap := getWrapper(n, typ)\n\tmn := wrap.NumField() - 1\n\tnames := make([]string, mn)\n\tmethods := make([]*node, mn)\n\tindexes := make([][]int, mn)\n\tfor i := 0; i < mn; i++ {\n\t\tnames[i] = wrap.Field(i + 1).Name[1:]\n\t\tmethods[i], indexes[i] = n.typ.lookupMethod(names[i])\n\t\tif methods[i] == nil && n.typ.cat != nilT {\n\t\t\t// interpreted method not found, look for binary method, possibly embedded\n\t\t\t_, indexes[i], _, _ = n.typ.lookupBinMethod(names[i])\n\t\t}\n\t}\n\n\treturn func(f *frame) reflect.Value {\n\t\tv := value(f)\n\t\tif tc != structT && v.Type().Implements(typ) {\n\t\t\treturn v\n\t\t}\n\t\tswitch v.Kind() {\n\t\tcase reflect.Chan, reflect.Func, reflect.Interface, reflect.Map, reflect.Ptr, reflect.Slice:\n\t\t\tif v.IsNil() {\n\t\t\t\treturn reflect.New(typ).Elem()\n\t\t\t}\n\t\t}\n\t\tvar n2 *node\n\t\tif vi, ok := v.Interface().(valueInterface); ok {\n\t\t\tn2 = vi.node\n\t\t}\n\t\tv = getConcreteValue(v)\n\t\tw := reflect.New(wrap).Elem()\n\t\tw.Field(0).Set(v)\n\t\tfor i, m := range methods {\n\t\t\tif m == nil {\n\t\t\t\t// First direct method lookup on field.\n\t\t\t\tif r := methodByName(v, names[i], indexes[i]); r.IsValid() {\n\t\t\t\t\tw.Field(i + 1).Set(r)\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tif n2 == nil {\n\t\t\t\t\tpanic(n.cfgErrorf(\"method not found: %s\", names[i]))\n\t\t\t\t}\n\t\t\t\t// Method lookup in embedded valueInterface.\n\t\t\t\tm2, i2 := n2.typ.lookupMethod(names[i])\n\t\t\t\tif m2 != nil {\n\t\t\t\t\tnod := *m2\n\t\t\t\t\tnod.recv = &receiver{n, v, i2}\n\t\t\t\t\tw.Field(i + 1).Set(genFunctionWrapper(&nod)(f))\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tpanic(n.cfgErrorf(\"method not found: %s\", names[i]))\n\t\t\t}\n\t\t\tnod := *m\n\t\t\tnod.recv = &receiver{n, v, indexes[i]}\n\t\t\tw.Field(i + 1).Set(genFunctionWrapper(&nod)(f))\n\t\t}\n\t\treturn w\n\t}\n}\n\n// methodByName returns the method corresponding to name on value, or nil if not found.\n// The search is extended on valueInterface wrapper if present.\n// If valid, the returned value is a method function with the receiver already set\n// (no need to pass it at call).\nfunc methodByName(value reflect.Value, name string, index []int) (v reflect.Value) {\n\tif vi, ok := value.Interface().(valueInterface); ok {\n\t\tif v = getConcreteValue(vi.value).MethodByName(name); v.IsValid() {\n\t\t\treturn\n\t\t}\n\t}\n\tif v = value.MethodByName(name); v.IsValid() {\n\t\treturn\n\t}\n\tfor value.Kind() == reflect.Ptr {\n\t\tvalue = value.Elem()\n\t\tif checkFieldIndex(value.Type(), index) {\n\t\t\tvalue = value.FieldByIndex(index)\n\t\t}\n\t\tif v = value.MethodByName(name); v.IsValid() {\n\t\t\treturn\n\t\t}\n\t}\n\treturn\n}\n\nfunc checkFieldIndex(typ reflect.Type, index []int) bool {\n\tif len(index) == 0 {\n\t\treturn false\n\t}\n\tt := typ\n\tfor t.Kind() == reflect.Ptr {\n\t\tt = t.Elem()\n\t}\n\tif t.Kind() != reflect.Struct {\n\t\treturn false\n\t}\n\ti := index[0]\n\tif i >= t.NumField() {\n\t\treturn false\n\t}\n\tif len(index) > 1 {\n\t\treturn checkFieldIndex(t.Field(i).Type, index[1:])\n\t}\n\treturn true\n}\n\nfunc call(n *node) {\n\tgoroutine := n.anc.kind == goStmt\n\tc0 := n.child[0]\n\tvalue := genValue(c0)\n\tvar values []func(*frame) reflect.Value\n\n\tnumRet := len(c0.typ.ret)\n\tvariadic := variadicPos(n)\n\tchild := n.child[1:]\n\ttnext := getExec(n.tnext)\n\tfnext := getExec(n.fnext)\n\thasVariadicArgs := n.action == aCallSlice // callSlice implies variadic call with ellipsis.\n\n\t// Compute input argument value functions.\n\tfor i, c := range child {\n\t\tvar arg *itype\n\t\tif variadic >= 0 && i >= variadic {\n\t\t\targ = c0.typ.arg[variadic].val\n\t\t} else {\n\t\t\targ = c0.typ.arg[i]\n\t\t}\n\t\tswitch {\n\t\tcase isBinCall(c, c.scope):\n\t\t\t// Handle nested function calls: pass returned values as arguments.\n\t\t\tnumOut := c.child[0].typ.rtype.NumOut()\n\t\t\tfor j := 0; j < numOut; j++ {\n\t\t\t\tind := c.findex + j\n\t\t\t\tif hasVariadicArgs || !isInterfaceSrc(arg) || isEmptyInterface(arg) {\n\t\t\t\t\tvalues = append(values, func(f *frame) reflect.Value { return f.data[ind] })\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tvalues = append(values, func(f *frame) reflect.Value {\n\t\t\t\t\treturn reflect.ValueOf(valueInterface{value: f.data[ind]})\n\t\t\t\t})\n\t\t\t}\n\t\tcase isRegularCall(c):\n\t\t\t// Arguments are return values of a nested function call.\n\t\t\tcc0 := c.child[0]\n\t\t\tfor j := range cc0.typ.ret {\n\t\t\t\tind := c.findex + j\n\t\t\t\tif hasVariadicArgs || !isInterfaceSrc(arg) || isEmptyInterface(arg) {\n\t\t\t\t\tvalues = append(values, func(f *frame) reflect.Value { return f.data[ind] })\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tvalues = append(values, func(f *frame) reflect.Value {\n\t\t\t\t\treturn reflect.ValueOf(valueInterface{node: cc0.typ.ret[j].node, value: f.data[ind]})\n\t\t\t\t})\n\t\t\t}\n\t\tdefault:\n\t\t\tif c.kind == basicLit || c.rval.IsValid() {\n\t\t\t\targType := arg.TypeOf()\n\t\t\t\tconvertLiteralValue(c, argType)\n\t\t\t}\n\t\t\tswitch {\n\t\t\tcase hasVariadicArgs:\n\t\t\t\tvalues = append(values, genValue(c))\n\t\t\tcase isInterfaceSrc(arg) && (!isEmptyInterface(arg) || len(c.typ.method) > 0):\n\t\t\t\tvalues = append(values, genValueInterface(c))\n\t\t\tcase isInterfaceBin(arg):\n\t\t\t\tvalues = append(values, genInterfaceWrapper(c, arg.rtype))\n\t\t\tcase isFuncSrc(arg):\n\t\t\t\tvalues = append(values, genFuncValue(c))\n\t\t\tdefault:\n\t\t\t\tvalues = append(values, genValue(c))\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compute output argument value functions.\n\trtypes := c0.typ.ret\n\trvalues := make([]func(*frame) reflect.Value, len(rtypes))\n\tswitch n.anc.kind {\n\tcase defineXStmt, assignXStmt:\n\t\tl := n.level\n\t\tfor i := range rvalues {\n\t\t\tc := n.anc.child[i]\n\t\t\tswitch {\n\t\t\tcase c.ident == \"_\":\n\t\t\t\t// Skip assigning return value to blank var.\n\t\t\tcase isInterfaceSrc(c.typ) && !isEmptyInterface(c.typ) && !isInterfaceSrc(rtypes[i]):\n\t\t\t\trvalues[i] = genValueInterfaceValue(c)\n\t\t\tdefault:\n\t\t\t\tj := n.findex + i\n\t\t\t\trvalues[i] = func(f *frame) reflect.Value { return getFrame(f, l).data[j] }\n\t\t\t}\n\t\t}\n\tcase returnStmt:\n\t\t// Function call from a return statement: forward return values (always at frame start).\n\t\tfor i := range rtypes {\n\t\t\tj := n.findex + i\n\t\t\t// Set the return value location in return value of caller frame.\n\t\t\trvalues[i] = func(f *frame) reflect.Value { return f.data[j] }\n\t\t}\n\tdefault:\n\t\t// Multiple return values frame index are indexed from the node frame index.\n\t\tl := n.level\n\t\tfor i := range rtypes {\n\t\t\tj := n.findex + i\n\t\t\trvalues[i] = func(f *frame) reflect.Value { return getFrame(f, l).data[j] }\n\t\t}\n\t}\n\n\tif n.anc.kind == deferStmt {\n\t\t// Store function call in frame for deferred execution.\n\t\tvalue = genFunctionWrapper(c0)\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tval := make([]reflect.Value, len(values)+1)\n\t\t\tval[0] = value(f)\n\t\t\tfor i, v := range values {\n\t\t\t\tval[i+1] = v(f)\n\t\t\t}\n\t\t\tf.deferred = append([][]reflect.Value{val}, f.deferred...)\n\t\t\treturn tnext\n\t\t}\n\t\treturn\n\t}\n\n\tn.exec = func(f *frame) bltn {\n\t\tf.mutex.Lock()\n\t\tbf := value(f)\n\t\tdef, ok := bf.Interface().(*node)\n\t\tif ok {\n\t\t\tbf = def.rval\n\t\t}\n\t\tf.mutex.Unlock()\n\n\t\t// Call bin func if defined\n\t\tif bf.IsValid() {\n\t\t\tvar callf func([]reflect.Value) []reflect.Value\n\n\t\t\t// Lambda definitions are necessary here. Due to reflect internals,\n\t\t\t// having `callf = bf.Call` or `callf = bf.CallSlice` does not work.\n\t\t\t//nolint:gocritic\n\t\t\tif hasVariadicArgs {\n\t\t\t\tcallf = func(in []reflect.Value) []reflect.Value { return bf.CallSlice(in) }\n\t\t\t} else {\n\t\t\t\tcallf = func(in []reflect.Value) []reflect.Value { return bf.Call(in) }\n\t\t\t}\n\n\t\t\tif goroutine {\n\t\t\t\t// Goroutine's arguments should be copied.\n\t\t\t\tin := make([]reflect.Value, len(values))\n\t\t\t\tfor i, v := range values {\n\t\t\t\t\tvalue := v(f)\n\t\t\t\t\tin[i] = reflect.New(value.Type()).Elem()\n\t\t\t\t\tin[i].Set(value)\n\t\t\t\t}\n\n\t\t\t\tgo callf(in)\n\t\t\t\treturn tnext\n\t\t\t}\n\n\t\t\tin := make([]reflect.Value, len(values))\n\t\t\tfor i, v := range values {\n\t\t\t\tin[i] = v(f)\n\t\t\t}\n\t\t\tout := callf(in)\n\t\t\tfor i, v := range rvalues {\n\t\t\t\tif v != nil {\n\t\t\t\t\tv(f).Set(out[i])\n\t\t\t\t}\n\t\t\t}\n\t\t\tif fnext != nil && !out[0].Bool() {\n\t\t\t\treturn fnext\n\t\t\t}\n\t\t\treturn tnext\n\t\t}\n\n\t\tnf := newFrame(f, len(def.types), f.runid())\n\t\tvar vararg reflect.Value\n\n\t\t// Init return values\n\t\tfor i, v := range rvalues {\n\t\t\tif v != nil {\n\t\t\t\tnf.data[i] = v(f)\n\t\t\t} else {\n\t\t\t\tnf.data[i] = reflect.New(def.types[i]).Elem()\n\t\t\t}\n\t\t}\n\n\t\t// Init local frame values\n\t\tfor i, t := range def.types[numRet:] {\n\t\t\tnf.data[numRet+i] = reflect.New(t).Elem()\n\t\t}\n\n\t\t// Init variadic argument vector\n\t\tif variadic >= 0 {\n\t\t\tvararg = nf.data[numRet+variadic]\n\t\t}\n\n\t\t// Copy input parameters from caller\n\t\tif dest := nf.data[numRet:]; len(dest) > 0 {\n\t\t\tfor i, v := range values {\n\t\t\t\tswitch {\n\t\t\t\tcase variadic >= 0 && i >= variadic:\n\t\t\t\t\tif v(f).Type() == vararg.Type() {\n\t\t\t\t\t\tvararg.Set(v(f))\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvararg.Set(reflect.Append(vararg, v(f)))\n\t\t\t\t\t}\n\t\t\t\tdefault:\n\t\t\t\t\tval := v(f)\n\t\t\t\t\tif val.IsZero() && dest[i].Kind() != reflect.Interface {\n\t\t\t\t\t\t// Work around a recursive struct zero interface issue.\n\t\t\t\t\t\t// Once there is a better way to handle this case, the dest can just be set.\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tif nod, ok := val.Interface().(*node); ok && nod.recv != nil {\n\t\t\t\t\t\t// An interpreted method is passed as value in a function call.\n\t\t\t\t\t\t// It must be wrapped now, otherwise the receiver will be missing\n\t\t\t\t\t\t// at the method call (#1332).\n\t\t\t\t\t\t// TODO (marc): wrapping interpreted functions should be always done\n\t\t\t\t\t\t// everywhere at runtime to simplify the whole code,\n\t\t\t\t\t\t// but it requires deeper refactoring.\n\t\t\t\t\t\tdest[i] = genFunctionWrapper(nod)(f)\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tdest[i].Set(val)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Execute function body\n\t\tif goroutine {\n\t\t\tgo runCfg(def.child[3].start, nf, def, n)\n\t\t\treturn tnext\n\t\t}\n\t\trunCfg(def.child[3].start, nf, def, n)\n\n\t\t// Set return values\n\t\tfor i, v := range rvalues {\n\t\t\tif v != nil {\n\t\t\t\tv(f).Set(nf.data[i])\n\t\t\t}\n\t\t}\n\n\t\t// Handle branching according to boolean result\n\t\tif fnext != nil && !nf.data[0].Bool() {\n\t\t\treturn fnext\n\t\t}\n\t\treturn tnext\n\t}\n}\n\nfunc getFrame(f *frame, l int) *frame {\n\tswitch l {\n\tcase globalFrame:\n\t\treturn f.root\n\tcase 0:\n\t\treturn f\n\tcase 1:\n\t\treturn f.anc\n\tcase 2:\n\t\treturn f.anc.anc\n\t}\n\tfor ; l > 0; l-- {\n\t\tf = f.anc\n\t}\n\treturn f\n}\n\n// Callbin calls a function from a bin import, accessible through reflect.\nfunc callBin(n *node) {\n\ttnext := getExec(n.tnext)\n\tfnext := getExec(n.fnext)\n\tchild := n.child[1:]\n\tc0 := n.child[0]\n\tvalue := genValue(c0)\n\tvar values []func(*frame) reflect.Value\n\tfuncType := c0.typ.rtype\n\twt := wrappedType(c0)\n\tvariadic := -1\n\tif funcType.IsVariadic() {\n\t\tvariadic = funcType.NumIn() - 1\n\t}\n\t// A method signature obtained from reflect.Type includes receiver as 1st arg, except for interface types.\n\trcvrOffset := 0\n\tif recv := c0.recv; recv != nil && !isInterface(recv.node.typ) {\n\t\tif variadic > 0 || funcType.NumIn() > len(child) {\n\t\t\trcvrOffset = 1\n\t\t}\n\t}\n\n\t// getMapType returns a reflect type suitable for interface wrapper for functions\n\t// with some special processing in case of interface{} argument, i.e. fmt.Printf.\n\tvar getMapType func(*itype) reflect.Type\n\tif lr, ok := n.interp.mapTypes[c0.rval]; ok {\n\t\tgetMapType = func(typ *itype) reflect.Type {\n\t\t\tfor _, rt := range lr {\n\t\t\t\tif typ.implements(&itype{cat: valueT, rtype: rt}) {\n\t\t\t\t\treturn rt\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn nil\n\t\t}\n\t}\n\n\t// Determine if we should use `Call` or `CallSlice` on the function Value.\n\tcallFn := func(v reflect.Value, in []reflect.Value) []reflect.Value { return v.Call(in) }\n\tif n.action == aCallSlice {\n\t\tcallFn = func(v reflect.Value, in []reflect.Value) []reflect.Value { return v.CallSlice(in) }\n\t}\n\n\tfor i, c := range child {\n\t\tswitch {\n\t\tcase isBinCall(c, c.scope):\n\t\t\t// Handle nested function calls: pass returned values as arguments\n\t\t\tnumOut := c.child[0].typ.rtype.NumOut()\n\t\t\tfor j := 0; j < numOut; j++ {\n\t\t\t\tind := c.findex + j\n\t\t\t\tvalues = append(values, func(f *frame) reflect.Value { return valueInterfaceValue(f.data[ind]) })\n\t\t\t}\n\t\tcase isRegularCall(c):\n\t\t\t// Handle nested function calls: pass returned values as arguments\n\t\t\tfor j := range c.child[0].typ.ret {\n\t\t\t\tind := c.findex + j\n\t\t\t\tvalues = append(values, func(f *frame) reflect.Value { return valueInterfaceValue(f.data[ind]) })\n\t\t\t}\n\t\tdefault:\n\t\t\tif c.kind == basicLit || c.rval.IsValid() {\n\t\t\t\t// Convert literal value (untyped) to function argument type (if not an interface{})\n\t\t\t\tvar argType reflect.Type\n\t\t\t\tif variadic >= 0 && i+rcvrOffset >= variadic {\n\t\t\t\t\targType = funcType.In(variadic).Elem()\n\t\t\t\t} else {\n\t\t\t\t\targType = funcType.In(i + rcvrOffset)\n\t\t\t\t}\n\t\t\t\tconvertLiteralValue(c, argType)\n\t\t\t\tif !reflect.ValueOf(c.val).IsValid() { //  Handle \"nil\"\n\t\t\t\t\tc.val = reflect.Zero(argType)\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif wt != nil && isInterfaceSrc(wt.arg[i]) {\n\t\t\t\tvalues = append(values, genValueInterface(c))\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\t// defType is the target type for a potential interface wrapper.\n\t\t\tvar defType reflect.Type\n\t\t\tif variadic >= 0 && i+rcvrOffset >= variadic {\n\t\t\t\tdefType = funcType.In(variadic)\n\t\t\t} else {\n\t\t\t\tdefType = funcType.In(rcvrOffset + i)\n\t\t\t}\n\t\t\tif getMapType != nil {\n\t\t\t\tif rt := getMapType(c.typ); rt != nil {\n\t\t\t\t\tdefType = rt\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tswitch {\n\t\t\tcase isEmptyInterface(c.typ):\n\t\t\t\tvalues = append(values, genValue(c))\n\t\t\tcase isInterfaceSrc(c.typ):\n\t\t\t\tvalues = append(values, genValueInterfaceValue(c))\n\t\t\tcase isFuncSrc(c.typ):\n\t\t\t\tvalues = append(values, genFunctionWrapper(c))\n\t\t\tcase c.typ.cat == arrayT || c.typ.cat == variadicT:\n\t\t\t\tif isEmptyInterface(c.typ.val) {\n\t\t\t\t\tvalues = append(values, genValueArray(c))\n\t\t\t\t} else {\n\t\t\t\t\tvalues = append(values, genInterfaceWrapper(c, defType))\n\t\t\t\t}\n\t\t\tcase isPtrSrc(c.typ):\n\t\t\t\tif c.typ.val.cat == valueT {\n\t\t\t\t\tvalues = append(values, genValue(c))\n\t\t\t\t} else {\n\t\t\t\t\tvalues = append(values, genInterfaceWrapper(c, defType))\n\t\t\t\t}\n\t\t\tcase c.typ.cat == valueT:\n\t\t\t\tvalues = append(values, genValue(c))\n\t\t\tdefault:\n\t\t\t\tvalues = append(values, genInterfaceWrapper(c, defType))\n\t\t\t}\n\t\t}\n\t}\n\tl := len(values)\n\n\tswitch {\n\tcase n.anc.kind == deferStmt:\n\t\t// Store function call in frame for deferred execution.\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tval := make([]reflect.Value, l+1)\n\t\t\tval[0] = value(f)\n\t\t\tfor i, v := range values {\n\t\t\t\tval[i+1] = getBinValue(getMapType, v, f)\n\t\t\t}\n\t\t\tf.deferred = append([][]reflect.Value{val}, f.deferred...)\n\t\t\treturn tnext\n\t\t}\n\tcase n.anc.kind == goStmt:\n\t\t// Execute function in a goroutine, discard results.\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tin := make([]reflect.Value, l)\n\t\t\tfor i, v := range values {\n\t\t\t\tin[i] = getBinValue(getMapType, v, f)\n\t\t\t}\n\t\t\tgo callFn(value(f), in)\n\t\t\treturn tnext\n\t\t}\n\tcase fnext != nil:\n\t\t// Handle branching according to boolean result.\n\t\tindex := n.findex\n\t\tlevel := n.level\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tin := make([]reflect.Value, l)\n\t\t\tfor i, v := range values {\n\t\t\t\tin[i] = getBinValue(getMapType, v, f)\n\t\t\t}\n\t\t\tres := callFn(value(f), in)\n\t\t\tb := res[0].Bool()\n\t\t\tgetFrame(f, level).data[index].SetBool(b)\n\t\t\tif b {\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t\treturn fnext\n\t\t}\n\tdefault:\n\t\tswitch n.anc.action {\n\t\tcase aAssignX:\n\t\t\t// The function call is part of an assign expression, store results direcly\n\t\t\t// to assigned location, to avoid an additional frame copy.\n\t\t\t// The optimization of aAssign is handled in assign(), and should not\n\t\t\t// be handled here.\n\t\t\trvalues := make([]func(*frame) reflect.Value, funcType.NumOut())\n\t\t\tfor i := range rvalues {\n\t\t\t\tc := n.anc.child[i]\n\t\t\t\tif c.ident == \"_\" {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tif isInterfaceSrc(c.typ) {\n\t\t\t\t\trvalues[i] = genValueInterfaceValue(c)\n\t\t\t\t} else {\n\t\t\t\t\trvalues[i] = genValue(c)\n\t\t\t\t}\n\t\t\t}\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tin := make([]reflect.Value, l)\n\t\t\t\tfor i, v := range values {\n\t\t\t\t\tin[i] = getBinValue(getMapType, v, f)\n\t\t\t\t}\n\t\t\t\tout := callFn(value(f), in)\n\t\t\t\tfor i, v := range rvalues {\n\t\t\t\t\tif v == nil {\n\t\t\t\t\t\tcontinue // Skip assign \"_\".\n\t\t\t\t\t}\n\t\t\t\t\tc := n.anc.child[i]\n\t\t\t\t\tif n.anc.kind == defineXStmt && !c.redeclared {\n\t\t\t\t\t\t// In case of a define statement, the destination value in the frame\n\t\t\t\t\t\t// must be recreated. This is necessary to preserve the previous value\n\t\t\t\t\t\t// which may be still used in a separate closure.\n\t\t\t\t\t\tdata := getFrame(f, c.level).data\n\t\t\t\t\t\tdata[c.findex] = reflect.New(data[c.findex].Type()).Elem()\n\t\t\t\t\t\tdata[c.findex].Set(out[i])\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tv(f).Set(out[i])\n\t\t\t\t}\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase aReturn:\n\t\t\t// The function call is part of a return statement, store output results\n\t\t\t// directly in the frame location of outputs of the current function.\n\t\t\tb := childPos(n)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tin := make([]reflect.Value, l)\n\t\t\t\tfor i, v := range values {\n\t\t\t\t\tin[i] = getBinValue(getMapType, v, f)\n\t\t\t\t}\n\t\t\t\tout := callFn(value(f), in)\n\t\t\t\tfor i, v := range out {\n\t\t\t\t\tdest := f.data[b+i]\n\t\t\t\t\tif _, ok := dest.Interface().(valueInterface); ok {\n\t\t\t\t\t\tv = reflect.ValueOf(valueInterface{value: v})\n\t\t\t\t\t}\n\t\t\t\t\tdest.Set(v)\n\t\t\t\t}\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tdefault:\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tin := make([]reflect.Value, l)\n\t\t\t\tfor i, v := range values {\n\t\t\t\t\tin[i] = getBinValue(getMapType, v, f)\n\t\t\t\t}\n\t\t\t\tout := callFn(value(f), in)\n\t\t\t\tfor i := 0; i < len(out); i++ {\n\t\t\t\t\tr := out[i]\n\t\t\t\t\tif r.Kind() == reflect.Func {\n\t\t\t\t\t\tgetFrame(f, n.level).data[n.findex+i] = r\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tdest := getFrame(f, n.level).data[n.findex+i]\n\t\t\t\t\tif _, ok := dest.Interface().(valueInterface); ok {\n\t\t\t\t\t\tr = reflect.ValueOf(valueInterface{value: r})\n\t\t\t\t\t}\n\t\t\t\t\tdest.Set(r)\n\t\t\t\t}\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc getIndexBinMethod(n *node) {\n\t// dest := genValue(n)\n\ti := n.findex\n\tl := n.level\n\tm := n.val.(int)\n\tvalue := genValue(n.child[0])\n\tnext := getExec(n.tnext)\n\n\tn.exec = func(f *frame) bltn {\n\t\t// Can not use .Set() because dest type contains the receiver and source not\n\t\t// dest(f).Set(value(f).Method(m))\n\t\tgetFrame(f, l).data[i] = value(f).Method(m)\n\t\treturn next\n\t}\n}\n\nfunc getIndexBinElemMethod(n *node) {\n\ti := n.findex\n\tl := n.level\n\tm := n.val.(int)\n\tvalue := genValue(n.child[0])\n\tnext := getExec(n.tnext)\n\n\tn.exec = func(f *frame) bltn {\n\t\t// Can not use .Set() because dest type contains the receiver and source not\n\t\tgetFrame(f, l).data[i] = value(f).Elem().Method(m)\n\t\treturn next\n\t}\n}\n\nfunc getIndexBinPtrMethod(n *node) {\n\ti := n.findex\n\tl := n.level\n\tm := n.val.(int)\n\tvalue := genValue(n.child[0])\n\tnext := getExec(n.tnext)\n\n\tn.exec = func(f *frame) bltn {\n\t\t// Can not use .Set() because dest type contains the receiver and source not\n\t\tgetFrame(f, l).data[i] = value(f).Addr().Method(m)\n\t\treturn next\n\t}\n}\n\n// getIndexArray returns array value from index.\nfunc getIndexArray(n *node) {\n\ttnext := getExec(n.tnext)\n\tvalue0 := genValueArray(n.child[0]) // array\n\ti := n.findex\n\tl := n.level\n\n\tif n.child[1].rval.IsValid() { // constant array index\n\t\tai := int(vInt(n.child[1].rval))\n\t\tif n.fnext != nil {\n\t\t\tfnext := getExec(n.fnext)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tr := value0(f).Index(ai)\n\t\t\t\tgetFrame(f, l).data[i] = r\n\t\t\t\tif r.Bool() {\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t\treturn fnext\n\t\t\t}\n\t\t} else {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tgetFrame(f, l).data[i] = value0(f).Index(ai)\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t}\n\t} else {\n\t\tvalue1 := genValueInt(n.child[1]) // array index\n\n\t\tif n.fnext != nil {\n\t\t\tfnext := getExec(n.fnext)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, vi := value1(f)\n\t\t\t\tr := value0(f).Index(int(vi))\n\t\t\t\tgetFrame(f, l).data[i] = r\n\t\t\t\tif r.Bool() {\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t\treturn fnext\n\t\t\t}\n\t\t} else {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t_, vi := value1(f)\n\t\t\t\tgetFrame(f, l).data[i] = value0(f).Index(int(vi))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t}\n\t}\n}\n\n// getIndexMap retrieves map value from index.\nfunc getIndexMap(n *node) {\n\tdest := genValue(n)\n\tvalue0 := genValue(n.child[0]) // map\n\ttnext := getExec(n.tnext)\n\tz := reflect.New(n.child[0].typ.frameType().Elem()).Elem()\n\n\tif n.child[1].rval.IsValid() { // constant map index\n\t\tmi := n.child[1].rval\n\n\t\tswitch {\n\t\tcase n.fnext != nil:\n\t\t\tfnext := getExec(n.fnext)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tif v := value0(f).MapIndex(mi); v.IsValid() && v.Bool() {\n\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t\tdest(f).Set(z)\n\t\t\t\treturn fnext\n\t\t\t}\n\t\tdefault:\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tif v := value0(f).MapIndex(mi); v.IsValid() {\n\t\t\t\t\tdest(f).Set(v)\n\t\t\t\t} else {\n\t\t\t\t\tdest(f).Set(z)\n\t\t\t\t}\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t}\n\t} else {\n\t\tvalue1 := genValue(n.child[1]) // map index\n\n\t\tswitch {\n\t\tcase n.fnext != nil:\n\t\t\tfnext := getExec(n.fnext)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tif v := value0(f).MapIndex(value1(f)); v.IsValid() && v.Bool() {\n\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t\tdest(f).Set(z)\n\t\t\t\treturn fnext\n\t\t\t}\n\t\tdefault:\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tif v := value0(f).MapIndex(value1(f)); v.IsValid() {\n\t\t\t\t\tdest(f).Set(v)\n\t\t\t\t} else {\n\t\t\t\t\tdest(f).Set(z)\n\t\t\t\t}\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t}\n\t}\n}\n\n// getIndexMap2 retrieves map value from index and set status.\nfunc getIndexMap2(n *node) {\n\tdest := genValue(n.anc.child[0])   // result\n\tvalue0 := genValue(n.child[0])     // map\n\tvalue2 := genValue(n.anc.child[1]) // status\n\tnext := getExec(n.tnext)\n\tdoValue := n.anc.child[0].ident != \"_\"\n\tdoStatus := n.anc.child[1].ident != \"_\"\n\n\tif !doValue && !doStatus {\n\t\tnop(n)\n\t\treturn\n\t}\n\tif n.child[1].rval.IsValid() { // constant map index\n\t\tmi := n.child[1].rval\n\t\tswitch {\n\t\tcase !doValue:\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv := value0(f).MapIndex(mi)\n\t\t\t\tvalue2(f).SetBool(v.IsValid())\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv := value0(f).MapIndex(mi)\n\t\t\t\tif v.IsValid() {\n\t\t\t\t\tdest(f).Set(v)\n\t\t\t\t}\n\t\t\t\tif doStatus {\n\t\t\t\t\tvalue2(f).SetBool(v.IsValid())\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t} else {\n\t\tvalue1 := genValue(n.child[1]) // map index\n\t\tswitch {\n\t\tcase !doValue:\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv := value0(f).MapIndex(value1(f))\n\t\t\t\tvalue2(f).SetBool(v.IsValid())\n\t\t\t\treturn next\n\t\t\t}\n\t\tdefault:\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv := value0(f).MapIndex(value1(f))\n\t\t\t\tif v.IsValid() {\n\t\t\t\t\tdest(f).Set(v)\n\t\t\t\t}\n\t\t\t\tif doStatus {\n\t\t\t\t\tvalue2(f).SetBool(v.IsValid())\n\t\t\t\t}\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\n// getFunc compiles a closure function generator for anonymous functions.\nfunc getFunc(n *node) {\n\ti := n.findex\n\tl := n.level\n\tnext := getExec(n.tnext)\n\tnumRet := len(n.typ.ret)\n\n\tn.exec = func(f *frame) bltn {\n\t\tfr := f.clone()\n\t\to := getFrame(f, l).data[i]\n\n\t\tfct := reflect.MakeFunc(n.typ.TypeOf(), func(in []reflect.Value) []reflect.Value {\n\t\t\t// Allocate and init local frame. All values to be settable and addressable.\n\t\t\tfr2 := newFrame(fr, len(n.types), fr.runid())\n\t\t\td := fr2.data\n\t\t\tfor i, t := range n.types {\n\t\t\t\td[i] = reflect.New(t).Elem()\n\t\t\t}\n\t\t\td = d[numRet:]\n\n\t\t\t// Copy function input arguments in local frame.\n\t\t\tfor i, arg := range in {\n\t\t\t\tif i >= len(d) {\n\t\t\t\t\t// In case of unused arg, there may be not even a frame entry allocated, just skip.\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\ttyp := n.typ.arg[i]\n\t\t\t\tswitch {\n\t\t\t\tcase isEmptyInterface(typ) || typ.TypeOf() == valueInterfaceType:\n\t\t\t\t\td[i].Set(arg)\n\t\t\t\tcase isInterfaceSrc(typ):\n\t\t\t\t\td[i].Set(reflect.ValueOf(valueInterface{value: arg.Elem()}))\n\t\t\t\tdefault:\n\t\t\t\t\td[i].Set(arg)\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Interpreter code execution.\n\t\t\trunCfg(n.child[3].start, fr2, n, n)\n\n\t\t\tf.mutex.Lock()\n\t\t\tgetFrame(f, l).data[i] = o\n\t\t\tf.mutex.Unlock()\n\n\t\t\treturn fr2.data[:numRet]\n\t\t})\n\n\t\tf.mutex.Lock()\n\t\tgetFrame(f, l).data[i] = fct\n\t\tf.mutex.Unlock()\n\n\t\treturn next\n\t}\n}\n\nfunc getMethod(n *node) {\n\ti := n.findex\n\tl := n.level\n\tnext := getExec(n.tnext)\n\n\tn.exec = func(f *frame) bltn {\n\t\tnod := *(n.val.(*node))\n\t\tnod.val = &nod\n\t\tnod.recv = n.recv\n\t\tgetFrame(f, l).data[i] = genFuncValue(&nod)(f)\n\t\treturn next\n\t}\n}\n\nfunc getMethodByName(n *node) {\n\tnext := getExec(n.tnext)\n\tvalue0 := genValue(n.child[0])\n\tname := n.child[1].ident\n\ti := n.findex\n\tl := n.level\n\n\tn.exec = func(f *frame) bltn {\n\t\t// The interface object must be directly accessible, or embedded in a struct (exported anonymous field).\n\t\tval0 := value0(f)\n\t\tval, ok := value0(f).Interface().(valueInterface)\n\t\tif !ok {\n\t\t\t// Search the first embedded valueInterface.\n\t\t\tfor val0.Kind() == reflect.Ptr {\n\t\t\t\tval0 = val0.Elem()\n\t\t\t}\n\t\t\tfor i := 0; i < val0.NumField(); i++ {\n\t\t\t\tfld := val0.Type().Field(i)\n\t\t\t\tif !fld.Anonymous || !fld.IsExported() {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tif val, ok = val0.Field(i).Interface().(valueInterface); ok {\n\t\t\t\t\tbreak\n\t\t\t\t\t// TODO: should we keep track of all the vals that are indeed valueInterface,\n\t\t\t\t\t// so that later on we can call MethodByName on all of them until one matches?\n\t\t\t\t}\n\t\t\t}\n\t\t\tif !ok {\n\t\t\t\tpanic(n.cfgErrorf(\"invalid interface value %v\", val0))\n\t\t\t}\n\t\t}\n\t\t// Traverse nested interface values to get the concrete value.\n\t\tfor {\n\t\t\tv, ok := val.value.Interface().(valueInterface)\n\t\t\tif !ok {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tval = v\n\t\t}\n\n\t\tif met := val.value.MethodByName(name); met.IsValid() {\n\t\t\tgetFrame(f, l).data[i] = met\n\t\t\treturn next\n\t\t}\n\n\t\ttyp := val.node.typ\n\t\tif typ.node == nil && typ.cat == valueT {\n\t\t\t// It happens with a var of empty interface type, that has value of concrete type\n\t\t\t// from runtime, being asserted to \"user-defined\" interface.\n\t\t\tif _, ok := typ.rtype.MethodByName(name); !ok {\n\t\t\t\tpanic(n.cfgErrorf(\"method not found: %s\", name))\n\t\t\t}\n\t\t\treturn next\n\t\t}\n\n\t\t// Finally search method recursively in embedded valueInterfaces.\n\t\tr, m, li := lookupMethodValue(val, name)\n\t\tif r.IsValid() {\n\t\t\tgetFrame(f, l).data[i] = r\n\t\t\treturn next\n\t\t}\n\t\tif m == nil {\n\t\t\tpanic(n.cfgErrorf(\"method not found: %s\", name))\n\t\t}\n\n\t\tnod := *m\n\t\tnod.val = &nod\n\t\tnod.recv = &receiver{nil, val.value, li}\n\t\tgetFrame(f, l).data[i] = genFuncValue(&nod)(f)\n\t\treturn next\n\t}\n}\n\n// lookupMethodValue recursively looks within val for the method with the given\n// name. If a runtime value is found, it is returned in r, otherwise it is returned\n// in m, with li as the list of recursive field indexes.\nfunc lookupMethodValue(val valueInterface, name string) (r reflect.Value, m *node, li []int) {\n\tif r = val.value.MethodByName(name); r.IsValid() {\n\t\treturn\n\t}\n\tif m, li = val.node.typ.lookupMethod(name); m != nil {\n\t\treturn\n\t}\n\tif !isStruct(val.node.typ) {\n\t\treturn\n\t}\n\tv := val.value\n\tfor v.Type().Kind() == reflect.Ptr {\n\t\tv = v.Elem()\n\t}\n\tnf := v.NumField()\n\tfor i := 0; i < nf; i++ {\n\t\tvi, ok := v.Field(i).Interface().(valueInterface)\n\t\tif !ok {\n\t\t\tcontinue\n\t\t}\n\t\tif r, m, li = lookupMethodValue(vi, name); m != nil {\n\t\t\tli = append([]int{i}, li...)\n\t\t\treturn\n\t\t}\n\t}\n\treturn\n}\n\nfunc getIndexSeq(n *node) {\n\tvalue := genValue(n.child[0])\n\tindex := n.val.([]int)\n\ttnext := getExec(n.tnext)\n\ti := n.findex\n\tl := n.level\n\n\t// Note:\n\t// Here we have to store the result using\n\t//    f.data[i] = value(...)\n\t// instead of normal\n\t//    dest(f).Set(value(...)\n\t// because the value returned by FieldByIndex() must be preserved\n\t// for possible future Set operations on the struct field (avoid a\n\t// dereference from Set, resulting in setting a copy of the\n\t// original field).\n\n\tif n.fnext != nil {\n\t\tfnext := getExec(n.fnext)\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tv := value(f)\n\t\t\tr := v.FieldByIndex(index)\n\t\t\tgetFrame(f, l).data[i] = r\n\t\t\tif r.Bool() {\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t\treturn fnext\n\t\t}\n\t} else {\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tv := value(f)\n\t\t\tgetFrame(f, l).data[i] = v.FieldByIndex(index)\n\t\t\treturn tnext\n\t\t}\n\t}\n}\n\nfunc getPtrIndexSeq(n *node) {\n\tindex := n.val.([]int)\n\ttnext := getExec(n.tnext)\n\tvalue := genValue(n.child[0])\n\ti := n.findex\n\tl := n.level\n\n\tif n.fnext != nil {\n\t\tfnext := getExec(n.fnext)\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tr := value(f).Elem().FieldByIndex(index)\n\t\t\tgetFrame(f, l).data[i] = r\n\t\t\tif r.Bool() {\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t\treturn fnext\n\t\t}\n\t} else {\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tgetFrame(f, l).data[i] = value(f).Elem().FieldByIndex(index)\n\t\t\treturn tnext\n\t\t}\n\t}\n}\n\nfunc getIndexSeqField(n *node) {\n\tvalue := genValue(n.child[0])\n\tindex := n.val.([]int)\n\ti := n.findex\n\tl := n.level\n\ttnext := getExec(n.tnext)\n\n\tif n.fnext != nil {\n\t\tfnext := getExec(n.fnext)\n\t\tif n.child[0].typ.TypeOf().Kind() == reflect.Ptr {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tr := value(f).Elem().FieldByIndex(index)\n\t\t\t\tgetFrame(f, l).data[i] = r\n\t\t\t\tif r.Bool() {\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t\treturn fnext\n\t\t\t}\n\t\t} else {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tr := value(f).FieldByIndex(index)\n\t\t\t\tgetFrame(f, l).data[i] = r\n\t\t\t\tif r.Bool() {\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t\treturn fnext\n\t\t\t}\n\t\t}\n\t} else {\n\t\tif n.child[0].typ.TypeOf().Kind() == reflect.Ptr {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tgetFrame(f, l).data[i] = value(f).Elem().FieldByIndex(index)\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t} else {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tgetFrame(f, l).data[i] = value(f).FieldByIndex(index)\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc getIndexSeqPtrMethod(n *node) {\n\tvalue := genValue(n.child[0])\n\tindex := n.val.([]int)\n\tfi := index[1:]\n\tmi := index[0]\n\ti := n.findex\n\tl := n.level\n\tnext := getExec(n.tnext)\n\n\tif n.child[0].typ.TypeOf().Kind() == reflect.Ptr {\n\t\tif len(fi) == 0 {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tgetFrame(f, l).data[i] = value(f).Method(mi)\n\t\t\t\treturn next\n\t\t\t}\n\t\t} else {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tgetFrame(f, l).data[i] = value(f).Elem().FieldByIndex(fi).Addr().Method(mi)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t} else {\n\t\tif len(fi) == 0 {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tgetFrame(f, l).data[i] = value(f).Addr().Method(mi)\n\t\t\t\treturn next\n\t\t\t}\n\t\t} else {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tgetFrame(f, l).data[i] = value(f).FieldByIndex(fi).Addr().Method(mi)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc getIndexSeqMethod(n *node) {\n\tvalue := genValue(n.child[0])\n\tindex := n.val.([]int)\n\tfi := index[1:]\n\tmi := index[0]\n\ti := n.findex\n\tl := n.level\n\tnext := getExec(n.tnext)\n\n\tif n.child[0].typ.TypeOf().Kind() == reflect.Ptr {\n\t\tif len(fi) == 0 {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tgetFrame(f, l).data[i] = value(f).Elem().Method(mi)\n\t\t\t\treturn next\n\t\t\t}\n\t\t} else {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tgetFrame(f, l).data[i] = value(f).Elem().FieldByIndex(fi).Method(mi)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t} else {\n\t\tif len(fi) == 0 {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tgetFrame(f, l).data[i] = value(f).Method(mi)\n\t\t\t\treturn next\n\t\t\t}\n\t\t} else {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tgetFrame(f, l).data[i] = value(f).FieldByIndex(fi).Method(mi)\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc neg(n *node) {\n\tdest := genValue(n)\n\tvalue := genValue(n.child[0])\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\n\tswitch n.typ.TypeOf().Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tif isInterface {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).Set(reflect.ValueOf(-value(f).Int()).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\t\treturn\n\t\t}\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tdest(f).SetInt(-value(f).Int())\n\t\t\treturn next\n\t\t}\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\tif isInterface {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).Set(reflect.ValueOf(-value(f).Uint()).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\t\treturn\n\t\t}\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tdest(f).SetUint(-value(f).Uint())\n\t\t\treturn next\n\t\t}\n\tcase reflect.Float32, reflect.Float64:\n\t\tif isInterface {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).Set(reflect.ValueOf(-value(f).Float()).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\t\treturn\n\t\t}\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tdest(f).SetFloat(-value(f).Float())\n\t\t\treturn next\n\t\t}\n\tcase reflect.Complex64, reflect.Complex128:\n\t\tif isInterface {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).Set(reflect.ValueOf(-value(f).Complex()).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\t\treturn\n\t\t}\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tdest(f).SetComplex(-value(f).Complex())\n\t\t\treturn next\n\t\t}\n\t}\n}\n\nfunc pos(n *node) {\n\tdest := genValue(n)\n\tvalue := genValue(n.child[0])\n\tnext := getExec(n.tnext)\n\n\tn.exec = func(f *frame) bltn {\n\t\tdest(f).Set(value(f))\n\t\treturn next\n\t}\n}\n\nfunc bitNot(n *node) {\n\tdest := genValue(n)\n\tvalue := genValue(n.child[0])\n\tnext := getExec(n.tnext)\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\n\tswitch typ.Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tif isInterface {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).Set(reflect.ValueOf(^value(f).Int()).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\t\treturn\n\t\t}\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tdest(f).SetInt(^value(f).Int())\n\t\t\treturn next\n\t\t}\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\tif isInterface {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).Set(reflect.ValueOf(^value(f).Uint()).Convert(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\t\treturn\n\t\t}\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tdest(f).SetUint(^value(f).Uint())\n\t\t\treturn next\n\t\t}\n\t}\n}\n\nfunc land(n *node) {\n\tvalue0 := genValue(n.child[0])\n\tvalue1 := genValue(n.child[1])\n\ttnext := getExec(n.tnext)\n\tdest := genValue(n)\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\n\tif n.fnext != nil {\n\t\tfnext := getExec(n.fnext)\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tif value0(f).Bool() && value1(f).Bool() {\n\t\t\t\tdest(f).SetBool(true)\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t\tdest(f).SetBool(false)\n\t\t\treturn fnext\n\t\t}\n\t\treturn\n\t}\n\tif isInterface {\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tdest(f).Set(reflect.ValueOf(value0(f).Bool() && value1(f).Bool()).Convert(typ))\n\t\t\treturn tnext\n\t\t}\n\t\treturn\n\t}\n\tn.exec = func(f *frame) bltn {\n\t\tdest(f).SetBool(value0(f).Bool() && value1(f).Bool())\n\t\treturn tnext\n\t}\n}\n\nfunc lor(n *node) {\n\tvalue0 := genValue(n.child[0])\n\tvalue1 := genValue(n.child[1])\n\ttnext := getExec(n.tnext)\n\tdest := genValue(n)\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\n\tif n.fnext != nil {\n\t\tfnext := getExec(n.fnext)\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tif value0(f).Bool() || value1(f).Bool() {\n\t\t\t\tdest(f).SetBool(true)\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t\tdest(f).SetBool(false)\n\t\t\treturn fnext\n\t\t}\n\t\treturn\n\t}\n\tif isInterface {\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tdest(f).Set(reflect.ValueOf(value0(f).Bool() || value1(f).Bool()).Convert(typ))\n\t\t\treturn tnext\n\t\t}\n\t\treturn\n\t}\n\tn.exec = func(f *frame) bltn {\n\t\tdest(f).SetBool(value0(f).Bool() || value1(f).Bool())\n\t\treturn tnext\n\t}\n}\n\nfunc nop(n *node) {\n\tnext := getExec(n.tnext)\n\n\tn.exec = func(f *frame) bltn {\n\t\treturn next\n\t}\n}\n\nfunc branch(n *node) {\n\ttnext := getExec(n.tnext)\n\tfnext := getExec(n.fnext)\n\tvalue := genValue(n)\n\n\tn.exec = func(f *frame) bltn {\n\t\tif value(f).Bool() {\n\t\t\treturn tnext\n\t\t}\n\t\treturn fnext\n\t}\n}\n\nfunc _return(n *node) {\n\tchild := n.child\n\tdef := n.val.(*node)\n\tvalues := make([]func(*frame) reflect.Value, len(child))\n\tfor i, c := range child {\n\t\tswitch t := def.typ.ret[i]; t.cat {\n\t\tcase errorT:\n\t\t\tvalues[i] = genInterfaceWrapper(c, t.TypeOf())\n\t\tcase funcT:\n\t\t\tvalues[i] = genValue(c)\n\t\tcase valueT:\n\t\t\tswitch t.rtype.Kind() {\n\t\t\tcase reflect.Interface:\n\t\t\t\tvalues[i] = genInterfaceWrapper(c, t.TypeOf())\n\t\t\t\tcontinue\n\t\t\tcase reflect.Func:\n\t\t\t\tvalues[i] = genFunctionWrapper(c)\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tfallthrough\n\t\tdefault:\n\t\t\tswitch {\n\t\t\tcase isInterfaceSrc(t):\n\t\t\t\tif len(t.field) == 0 {\n\t\t\t\t\t// empty interface case.\n\t\t\t\t\t// we can't let genValueInterface deal with it, because we call on c,\n\t\t\t\t\t// not on n, which means that the interfaceT knowledge is lost.\n\t\t\t\t\tvalues[i] = genValue(c)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tvalues[i] = genValueInterface(c)\n\t\t\tcase c.typ.untyped:\n\t\t\t\tvalues[i] = genValueAs(c, t.TypeOf())\n\t\t\tdefault:\n\t\t\t\tvalues[i] = genValue(c)\n\t\t\t}\n\t\t}\n\t}\n\n\tswitch len(child) {\n\tcase 0:\n\t\tn.exec = nil\n\tcase 1:\n\t\tswitch {\n\t\tcase !child[0].rval.IsValid() && child[0].kind == binaryExpr:\n\t\t\t// No additional runtime operation is necessary for constants (not in frame) or\n\t\t\t// binary expressions (stored directly at the right location in frame).\n\t\t\tn.exec = nil\n\t\tcase isCall(child[0]) && n.child[0].typ.id() == def.typ.ret[0].id():\n\t\t\t// Calls are optmized as long as no type conversion is involved.\n\t\t\tn.exec = nil\n\t\tdefault:\n\t\t\t// Regular return: store the value to return at to start of the frame.\n\t\t\tv := values[0]\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tf.data[0].Set(v(f))\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\tcase 2:\n\t\tv0, v1 := values[0], values[1]\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tf.data[0].Set(v0(f))\n\t\t\tf.data[1].Set(v1(f))\n\t\t\treturn nil\n\t\t}\n\tdefault:\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tfor i, value := range values {\n\t\t\t\tf.data[i].Set(value(f))\n\t\t\t}\n\t\t\treturn nil\n\t\t}\n\t}\n}\n\nfunc arrayLit(n *node) {\n\tvalue := valueGenerator(n, n.findex)\n\tnext := getExec(n.tnext)\n\tchild := n.child\n\tif n.nleft == 1 {\n\t\tchild = n.child[1:]\n\t}\n\n\tvalues := make([]func(*frame) reflect.Value, len(child))\n\tindex := make([]int, len(child))\n\tvar max, prev int\n\n\tntyp := n.typ.resolveAlias()\n\tfor i, c := range child {\n\t\tif c.kind == keyValueExpr {\n\t\t\tvalues[i] = genDestValue(ntyp.val, c.child[1])\n\t\t\tindex[i] = int(vInt(c.child[0].rval))\n\t\t} else {\n\t\t\tvalues[i] = genDestValue(ntyp.val, c)\n\t\t\tindex[i] = prev\n\t\t}\n\t\tprev = index[i] + 1\n\t\tif prev > max {\n\t\t\tmax = prev\n\t\t}\n\t}\n\n\ttyp := n.typ.frameType()\n\tkind := typ.Kind()\n\tn.exec = func(f *frame) bltn {\n\t\tvar a reflect.Value\n\t\tif kind == reflect.Slice {\n\t\t\ta = reflect.MakeSlice(typ, max, max)\n\t\t} else {\n\t\t\ta, _ = n.typ.zero()\n\t\t}\n\t\tfor i, v := range values {\n\t\t\ta.Index(index[i]).Set(v(f))\n\t\t}\n\t\tvalue(f).Set(a)\n\t\treturn next\n\t}\n}\n\nfunc mapLit(n *node) {\n\tvalue := valueGenerator(n, n.findex)\n\tnext := getExec(n.tnext)\n\tchild := n.child\n\tif n.nleft == 1 {\n\t\tchild = n.child[1:]\n\t}\n\ttyp := n.typ.frameType()\n\tkeys := make([]func(*frame) reflect.Value, len(child))\n\tvalues := make([]func(*frame) reflect.Value, len(child))\n\tfor i, c := range child {\n\t\tkeys[i] = genDestValue(n.typ.key, c.child[0])\n\t\tvalues[i] = genDestValue(n.typ.val, c.child[1])\n\t}\n\n\tn.exec = func(f *frame) bltn {\n\t\tm := reflect.MakeMap(typ)\n\t\tfor i, k := range keys {\n\t\t\tm.SetMapIndex(k(f), values[i](f))\n\t\t}\n\t\tvalue(f).Set(m)\n\t\treturn next\n\t}\n}\n\nfunc compositeBinMap(n *node) {\n\tvalue := valueGenerator(n, n.findex)\n\tnext := getExec(n.tnext)\n\tchild := n.child\n\tif n.nleft == 1 {\n\t\tchild = n.child[1:]\n\t}\n\ttyp := n.typ.frameType()\n\tkeys := make([]func(*frame) reflect.Value, len(child))\n\tvalues := make([]func(*frame) reflect.Value, len(child))\n\tfor i, c := range child {\n\t\tconvertLiteralValue(c.child[0], typ.Key())\n\t\tconvertLiteralValue(c.child[1], typ.Elem())\n\t\tkeys[i] = genValue(c.child[0])\n\n\t\tif isFuncSrc(c.child[1].typ) {\n\t\t\tvalues[i] = genFunctionWrapper(c.child[1])\n\t\t} else {\n\t\t\tvalues[i] = genValue(c.child[1])\n\t\t}\n\t}\n\n\tn.exec = func(f *frame) bltn {\n\t\tm := reflect.MakeMap(typ)\n\t\tfor i, k := range keys {\n\t\t\tm.SetMapIndex(k(f), values[i](f))\n\t\t}\n\t\tvalue(f).Set(m)\n\t\treturn next\n\t}\n}\n\nfunc compositeBinSlice(n *node) {\n\tvalue := valueGenerator(n, n.findex)\n\tnext := getExec(n.tnext)\n\tchild := n.child\n\tif n.nleft == 1 {\n\t\tchild = n.child[1:]\n\t}\n\n\tvalues := make([]func(*frame) reflect.Value, len(child))\n\tindex := make([]int, len(child))\n\trtype := n.typ.rtype.Elem()\n\tvar max, prev int\n\n\tfor i, c := range child {\n\t\tif c.kind == keyValueExpr {\n\t\t\tconvertLiteralValue(c.child[1], rtype)\n\t\t\tvalues[i] = genValue(c.child[1])\n\t\t\tindex[i] = int(vInt(c.child[0].rval))\n\t\t} else {\n\t\t\tconvertLiteralValue(c, rtype)\n\t\t\tvalues[i] = genValue(c)\n\t\t\tindex[i] = prev\n\t\t}\n\t\tprev = index[i] + 1\n\t\tif prev > max {\n\t\t\tmax = prev\n\t\t}\n\t}\n\n\ttyp := n.typ.frameType()\n\tkind := typ.Kind()\n\tn.exec = func(f *frame) bltn {\n\t\tvar a reflect.Value\n\t\tif kind == reflect.Slice {\n\t\t\ta = reflect.MakeSlice(typ, max, max)\n\t\t} else {\n\t\t\ta, _ = n.typ.zero()\n\t\t}\n\t\tfor i, v := range values {\n\t\t\ta.Index(index[i]).Set(v(f))\n\t\t}\n\t\tvalue(f).Set(a)\n\t\treturn next\n\t}\n}\n\n// doCompositeBinStruct creates and populates a struct object from a binary type.\nfunc doCompositeBinStruct(n *node, hasType bool) {\n\tnext := getExec(n.tnext)\n\tvalue := valueGenerator(n, n.findex)\n\ttyp := baseType(n.typ).rtype\n\tchild := n.child\n\tif hasType {\n\t\tchild = n.child[1:]\n\t}\n\tvalues := make([]func(*frame) reflect.Value, len(child))\n\tfieldIndex := make([][]int, len(child))\n\tfor i, c := range child {\n\t\tif c.kind == keyValueExpr {\n\t\t\tif sf, ok := typ.FieldByName(c.child[0].ident); ok {\n\t\t\t\tfieldIndex[i] = sf.Index\n\t\t\t\tconvertLiteralValue(c.child[1], sf.Type)\n\t\t\t\tif isFuncSrc(c.child[1].typ) {\n\t\t\t\t\tvalues[i] = genFunctionWrapper(c.child[1])\n\t\t\t\t} else {\n\t\t\t\t\tvalues[i] = genValue(c.child[1])\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tfieldIndex[i] = []int{i}\n\t\t\tif isFuncSrc(c.typ) && len(c.child) > 1 {\n\t\t\t\tconvertLiteralValue(c.child[1], typ.Field(i).Type)\n\t\t\t\tvalues[i] = genFunctionWrapper(c.child[1])\n\t\t\t} else {\n\t\t\t\tconvertLiteralValue(c, typ.Field(i).Type)\n\t\t\t\tvalues[i] = genValue(c)\n\t\t\t}\n\t\t}\n\t}\n\n\tframeIndex := n.findex\n\tl := n.level\n\n\tn.exec = func(f *frame) bltn {\n\t\ts := reflect.New(typ).Elem()\n\t\tfor i, v := range values {\n\t\t\ts.FieldByIndex(fieldIndex[i]).Set(v(f))\n\t\t}\n\t\td := value(f)\n\t\tswitch {\n\t\tcase d.Kind() == reflect.Ptr:\n\t\t\td.Set(s.Addr())\n\t\tdefault:\n\t\t\tgetFrame(f, l).data[frameIndex] = s\n\t\t}\n\t\treturn next\n\t}\n}\n\nfunc compositeBinStruct(n *node)       { doCompositeBinStruct(n, true) }\nfunc compositeBinStructNotype(n *node) { doCompositeBinStruct(n, false) }\n\nfunc destType(n *node) *itype {\n\tswitch n.anc.kind {\n\tcase assignStmt, defineStmt:\n\t\treturn n.anc.child[0].typ\n\tdefault:\n\t\treturn n.typ\n\t}\n}\n\nfunc doComposite(n *node, hasType bool, keyed bool) {\n\tvalue := valueGenerator(n, n.findex)\n\tnext := getExec(n.tnext)\n\ttyp := baseType(n.typ)\n\tchild := n.child\n\tif hasType {\n\t\tchild = n.child[1:]\n\t}\n\tdestInterface := isInterfaceSrc(destType(n))\n\n\tvalues := make(map[int]func(*frame) reflect.Value)\n\tfor i, c := range child {\n\t\tvar val *node\n\t\tvar fieldIndex int\n\t\tif keyed {\n\t\t\tval = c.child[1]\n\t\t\tfieldIndex = typ.fieldIndex(c.child[0].ident)\n\t\t} else {\n\t\t\tval = c\n\t\t\tfieldIndex = i\n\t\t}\n\t\tft := typ.field[fieldIndex].typ\n\t\trft := ft.TypeOf()\n\t\tconvertLiteralValue(val, rft)\n\t\tswitch {\n\t\tcase val.typ.cat == nilT:\n\t\t\tvalues[fieldIndex] = func(*frame) reflect.Value { return reflect.New(rft).Elem() }\n\t\tcase isNamedFuncSrc(val.typ):\n\t\t\tvalues[fieldIndex] = genValueAsFunctionWrapper(val)\n\t\tcase isInterfaceSrc(ft) && (!isEmptyInterface(ft) || len(val.typ.method) > 0):\n\t\t\tvalues[fieldIndex] = genValueInterface(val)\n\t\tcase isInterface(ft):\n\t\t\tvalues[fieldIndex] = genInterfaceWrapper(val, rft)\n\t\tdefault:\n\t\t\tvalues[fieldIndex] = genValue(val)\n\t\t}\n\t}\n\n\tframeIndex := n.findex\n\tl := n.level\n\trt := typ.TypeOf()\n\n\tn.exec = func(f *frame) bltn {\n\t\ta := reflect.New(rt).Elem()\n\t\tfor i, v := range values {\n\t\t\ta.Field(i).Set(v(f))\n\t\t}\n\t\td := value(f)\n\t\tswitch {\n\t\tcase d.Kind() == reflect.Ptr:\n\t\t\td.Set(a.Addr())\n\t\tcase destInterface:\n\t\t\tif len(destType(n).field) > 0 {\n\t\t\t\td.Set(reflect.ValueOf(valueInterface{n, a}))\n\t\t\t\tbreak\n\t\t\t}\n\t\t\td.Set(a)\n\t\tdefault:\n\t\t\tgetFrame(f, l).data[frameIndex] = a\n\t\t}\n\t\treturn next\n\t}\n}\n\n// doCompositeLit creates and populates a struct object.\nfunc doCompositeLit(n *node, hasType bool) {\n\tdoComposite(n, hasType, false)\n}\n\nfunc compositeLit(n *node)       { doCompositeLit(n, true) }\nfunc compositeLitNotype(n *node) { doCompositeLit(n, false) }\n\n// doCompositeLitKeyed creates a struct Object, filling fields from sparse key-values.\nfunc doCompositeLitKeyed(n *node, hasType bool) {\n\tdoComposite(n, hasType, true)\n}\n\nfunc compositeLitKeyed(n *node)       { doCompositeLitKeyed(n, true) }\nfunc compositeLitKeyedNotype(n *node) { doCompositeLitKeyed(n, false) }\n\nfunc empty(n *node) {}\n\nvar rat = reflect.ValueOf((*[]rune)(nil)).Type().Elem() // runes array type\n\nfunc _range(n *node) {\n\tindex0 := n.child[0].findex // array index location in frame\n\tindex2 := index0 - 1        // shallow array for range, always just behind index0\n\tindex3 := index2 - 1        // additional location to store string char position\n\tfnext := getExec(n.fnext)\n\ttnext := getExec(n.tnext)\n\n\tvar value func(*frame) reflect.Value\n\tvar an *node\n\tif len(n.child) == 4 {\n\t\tan = n.child[2]\n\t\tindex1 := n.child[1].findex // array value location in frame\n\t\tif isString(an.typ.TypeOf()) {\n\t\t\t// Special variant of \"range\" for string, where the index indicates the byte position\n\t\t\t// of the rune in the string, rather than the index of the rune in array.\n\t\t\tstringType := reflect.TypeOf(\"\")\n\t\t\tvalue = genValueAs(an, rat) // range on string iterates over runes\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\ta := f.data[index2]\n\t\t\t\tv0 := f.data[index3]\n\t\t\t\tv0.SetInt(v0.Int() + 1)\n\t\t\t\ti := int(v0.Int())\n\t\t\t\tif i >= a.Len() {\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t\t// Compute byte position of the rune in string\n\t\t\t\tpos := a.Slice(0, i).Convert(stringType).Len()\n\t\t\t\tf.data[index0].SetInt(int64(pos))\n\t\t\t\tf.data[index1].Set(a.Index(i))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t} else {\n\t\t\tvalue = genValueRangeArray(an)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\ta := f.data[index2]\n\t\t\t\tv0 := f.data[index0]\n\t\t\t\tv0.SetInt(v0.Int() + 1)\n\t\t\t\ti := int(v0.Int())\n\t\t\t\tif i >= a.Len() {\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t\tf.data[index1].Set(a.Index(i))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t}\n\t} else {\n\t\tan = n.child[1]\n\t\tif isString(an.typ.TypeOf()) {\n\t\t\tvalue = genValueAs(an, rat) // range on string iterates over runes\n\t\t} else {\n\t\t\tvalue = genValueRangeArray(an)\n\t\t}\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tv0 := f.data[index0]\n\t\t\tv0.SetInt(v0.Int() + 1)\n\t\t\tif int(v0.Int()) >= f.data[index2].Len() {\n\t\t\t\treturn fnext\n\t\t\t}\n\t\t\treturn tnext\n\t\t}\n\t}\n\n\t// Init sequence\n\tnext := n.exec\n\tindex := index0\n\tif isString(an.typ.TypeOf()) && len(n.child) == 4 {\n\t\tindex = index3\n\t}\n\tn.child[0].exec = func(f *frame) bltn {\n\t\tf.data[index2] = value(f) // set array shallow copy for range\n\t\tf.data[index].SetInt(-1)  // assing index value\n\t\treturn next\n\t}\n}\n\nfunc rangeInt(n *node) {\n\tixn := n.child[0]\n\tindex0 := ixn.findex // array index location in frame\n\tindex2 := index0 - 1 // max\n\tfnext := getExec(n.fnext)\n\ttnext := getExec(n.tnext)\n\n\tvar value func(*frame) reflect.Value\n\tmxn := n.child[1]\n\tvalue = genValue(mxn)\n\tn.exec = func(f *frame) bltn {\n\t\trv := f.data[index0]\n\t\trv.SetInt(rv.Int() + 1)\n\t\tif int(rv.Int()) >= int(f.data[index2].Int()) {\n\t\t\treturn fnext\n\t\t}\n\t\treturn tnext\n\t}\n\n\t// Init sequence\n\tnext := n.exec\n\tindex := index0\n\tixn.exec = func(f *frame) bltn {\n\t\tf.data[index2] = value(f) // set max\n\t\tf.data[index].SetInt(-1)  // assing index value\n\t\treturn next\n\t}\n}\n\nfunc loopVarKey(n *node) {\n\tixn := n.anc.anc.child[0]\n\tnext := getExec(n.tnext)\n\tn.exec = func(f *frame) bltn {\n\t\trv := f.data[ixn.findex]\n\t\tnv := reflect.New(rv.Type()).Elem()\n\t\tnv.Set(rv)\n\t\tf.data[n.findex] = nv\n\t\treturn next\n\t}\n}\n\nfunc loopVarVal(n *node) {\n\tvln := n.anc.anc.child[1]\n\tnext := getExec(n.tnext)\n\tn.exec = func(f *frame) bltn {\n\t\trv := f.data[vln.findex]\n\t\tnv := reflect.New(rv.Type()).Elem()\n\t\tnv.Set(rv)\n\t\tf.data[n.findex] = nv\n\t\treturn next\n\t}\n}\n\nfunc loopVarFor(n *node) {\n\tixn := n.anc.anc.child[0].child[0]\n\tnext := getExec(n.tnext)\n\tn.exec = func(f *frame) bltn {\n\t\tfv := f.data[ixn.findex]\n\t\tnv := reflect.New(fv.Type()).Elem()\n\t\tnv.Set(fv)\n\t\tf.data[n.findex] = nv\n\t\treturn next\n\t}\n}\n\nfunc rangeChan(n *node) {\n\ti := n.child[0].findex        // element index location in frame\n\tvalue := genValue(n.child[1]) // chan\n\tfnext := getExec(n.fnext)\n\ttnext := getExec(n.tnext)\n\n\tn.exec = func(f *frame) bltn {\n\t\tf.mutex.RLock()\n\t\tdone := f.done\n\t\tf.mutex.RUnlock()\n\n\t\tchosen, v, ok := reflect.Select([]reflect.SelectCase{done, {Dir: reflect.SelectRecv, Chan: value(f)}})\n\t\tif chosen == 0 {\n\t\t\treturn nil\n\t\t}\n\t\tif !ok {\n\t\t\treturn fnext\n\t\t}\n\t\tf.data[i].Set(v)\n\t\treturn tnext\n\t}\n}\n\nfunc rangeMap(n *node) {\n\tindex0 := n.child[0].findex // map index location in frame\n\tindex2 := index0 - 1        // iterator for range, always just behind index0\n\tfnext := getExec(n.fnext)\n\ttnext := getExec(n.tnext)\n\tvalue := genValue(n.child[len(n.child)-2]) // map value\n\n\tif len(n.child) == 4 && n.child[1].ident != \"_\" {\n\t\tindex1 := n.child[1].findex // map value location in frame\n\t\tn.exec = func(f *frame) bltn {\n\t\t\titer := f.data[index2].Interface().(*reflect.MapIter)\n\t\t\tif !iter.Next() {\n\t\t\t\treturn fnext\n\t\t\t}\n\t\t\tf.data[index0].Set(iter.Key())\n\t\t\tf.data[index1].Set(iter.Value())\n\t\t\treturn tnext\n\t\t}\n\t} else {\n\t\tn.exec = func(f *frame) bltn {\n\t\t\titer := f.data[index2].Interface().(*reflect.MapIter)\n\t\t\tif !iter.Next() {\n\t\t\t\treturn fnext\n\t\t\t}\n\t\t\tf.data[index0].Set(iter.Key())\n\t\t\treturn tnext\n\t\t}\n\t}\n\n\t// Init sequence\n\tnext := n.exec\n\tn.child[0].exec = func(f *frame) bltn {\n\t\tf.data[index2].Set(reflect.ValueOf(value(f).MapRange()))\n\t\treturn next\n\t}\n}\n\nfunc _case(n *node) {\n\ttnext := getExec(n.tnext)\n\n\t// TODO(mpl): a lot of what is done in typeAssert should probably be redone/reused here.\n\tswitch {\n\tcase n.anc.anc.kind == typeSwitch:\n\t\tfnext := getExec(n.fnext)\n\t\tsn := n.anc.anc // switch node\n\t\ttypes := make([]*itype, len(n.child)-1)\n\t\tfor i := range types {\n\t\t\ttypes[i] = n.child[i].typ\n\t\t}\n\t\tsrcValue := genValue(sn.child[1].lastChild().child[0])\n\n\t\tif len(sn.child[1].child) != 2 {\n\t\t\t// no assign in switch guard\n\t\t\tif len(n.child) <= 1 {\n\t\t\t\tn.exec = func(f *frame) bltn { return tnext }\n\t\t\t} else {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\tival := srcValue(f).Interface()\n\t\t\t\t\tval, ok := ival.(valueInterface)\n\t\t\t\t\t// TODO(mpl): I'm assuming here that !ok means that we're dealing with the empty\n\t\t\t\t\t// interface case. But maybe we should make sure by checking the relevant cat\n\t\t\t\t\t// instead? later. Use t := v.Type(); t.Kind() == reflect.Interface , like above.\n\t\t\t\t\tif !ok {\n\t\t\t\t\t\tvar stype string\n\t\t\t\t\t\tif ival != nil {\n\t\t\t\t\t\t\tstype = strings.ReplaceAll(reflect.TypeOf(ival).String(), \" {}\", \"{}\")\n\t\t\t\t\t\t}\n\t\t\t\t\t\tfor _, typ := range types {\n\t\t\t\t\t\t\t// TODO(mpl): we should actually use canAssertTypes, but need to find a valid\n\t\t\t\t\t\t\t// rtype for typ. Plus we need to refactor with typeAssert().\n\t\t\t\t\t\t\t// weak check instead for now.\n\t\t\t\t\t\t\tif ival == nil {\n\t\t\t\t\t\t\t\tif typ.cat == nilT {\n\t\t\t\t\t\t\t\t\treturn tnext\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tcontinue\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif stype == typ.id() {\n\t\t\t\t\t\t\t\treturn tnext\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn fnext\n\t\t\t\t\t}\n\t\t\t\t\tif v := val.node; v != nil {\n\t\t\t\t\t\tfor _, typ := range types {\n\t\t\t\t\t\t\tif v.typ.id() == typ.id() {\n\t\t\t\t\t\t\t\treturn tnext\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t}\n\t\t\tbreak\n\t\t}\n\n\t\t// assign in switch guard\n\t\tdestValue := genValue(n.lastChild().child[0])\n\t\tswitch len(types) {\n\t\tcase 0:\n\t\t\t// default clause: assign var to interface value\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdestValue(f).Set(srcValue(f))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\tcase 1:\n\t\t\t// match against 1 type: assign var to concrete value\n\t\t\ttyp := types[0]\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv := srcValue(f)\n\t\t\t\tif !v.IsValid() {\n\t\t\t\t\t// match zero value against nil\n\t\t\t\t\tif typ.cat == nilT {\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t\tif t := v.Type(); t.Kind() == reflect.Interface {\n\t\t\t\t\tif typ.cat == nilT && v.IsNil() {\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\trtyp := typ.TypeOf()\n\t\t\t\t\tif rtyp == nil {\n\t\t\t\t\t\treturn fnext\n\t\t\t\t\t}\n\t\t\t\t\telem := v.Elem()\n\t\t\t\t\tif rtyp.String() == t.String() && implementsInterface(v, typ) {\n\t\t\t\t\t\tdestValue(f).Set(elem)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tival := v.Interface()\n\t\t\t\t\tif ival != nil && rtyp.String() == reflect.TypeOf(ival).String() {\n\t\t\t\t\t\tdestValue(f).Set(elem)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\tif typ.cat == valueT && rtyp.Kind() == reflect.Interface && elem.IsValid() && elem.Type().Implements(rtyp) {\n\t\t\t\t\t\tdestValue(f).Set(elem)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t\tif vi, ok := v.Interface().(valueInterface); ok {\n\t\t\t\t\tif vi.node != nil {\n\t\t\t\t\t\tif vi.node.typ.id() == typ.id() {\n\t\t\t\t\t\t\tdestValue(f).Set(vi.value)\n\t\t\t\t\t\t\treturn tnext\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t\tif v.Type() == typ.TypeOf() {\n\t\t\t\t\tdestValue(f).Set(v)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t\treturn fnext\n\t\t\t}\n\n\t\tdefault:\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tval := srcValue(f)\n\t\t\t\tif t := val.Type(); t.Kind() == reflect.Interface {\n\t\t\t\t\tfor _, typ := range types {\n\t\t\t\t\t\tif typ.cat == nilT && val.IsNil() {\n\t\t\t\t\t\t\treturn tnext\n\t\t\t\t\t\t}\n\t\t\t\t\t\trtyp := typ.TypeOf()\n\t\t\t\t\t\tif rtyp == nil {\n\t\t\t\t\t\t\tcontinue\n\t\t\t\t\t\t}\n\t\t\t\t\t\telem := val.Elem()\n\t\t\t\t\t\tif rtyp.String() == t.String() && implementsInterface(val, typ) {\n\t\t\t\t\t\t\tdestValue(f).Set(elem)\n\t\t\t\t\t\t\treturn tnext\n\t\t\t\t\t\t}\n\t\t\t\t\t\tival := val.Interface()\n\t\t\t\t\t\tif ival != nil && rtyp.String() == reflect.TypeOf(ival).String() {\n\t\t\t\t\t\t\tdestValue(f).Set(elem)\n\t\t\t\t\t\t\treturn tnext\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif typ.cat == valueT && rtyp.Kind() == reflect.Interface && elem.IsValid() && elem.Type().Implements(rtyp) {\n\t\t\t\t\t\t\tdestValue(f).Set(elem)\n\t\t\t\t\t\t\treturn tnext\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t\tif vi, ok := val.Interface().(valueInterface); ok {\n\t\t\t\t\tif v := vi.node; v != nil {\n\t\t\t\t\t\tfor _, typ := range types {\n\t\t\t\t\t\t\tif v.typ.id() == typ.id() {\n\t\t\t\t\t\t\t\tdestValue(f).Set(val)\n\t\t\t\t\t\t\t\treturn tnext\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t\tvt := val.Type()\n\t\t\t\tfor _, typ := range types {\n\t\t\t\t\tif vt == typ.TypeOf() {\n\t\t\t\t\t\tdestValue(f).Set(val)\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn fnext\n\t\t\t}\n\t\t}\n\n\tcase len(n.child) <= 1: // default clause\n\t\tn.exec = func(f *frame) bltn { return tnext }\n\n\tdefault:\n\t\tfnext := getExec(n.fnext)\n\t\tl := len(n.anc.anc.child)\n\t\tvalue := genValue(n.anc.anc.child[l-2])\n\t\tvalues := make([]func(*frame) reflect.Value, len(n.child)-1)\n\t\tfor i := range values {\n\t\t\tvalues[i] = genValue(n.child[i])\n\t\t}\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tv0 := value(f)\n\t\t\tfor _, v := range values {\n\t\t\t\tv1 := v(f)\n\t\t\t\tif !v0.Type().AssignableTo(v1.Type()) {\n\t\t\t\t\tv0 = v0.Convert(v1.Type())\n\t\t\t\t}\n\t\t\t\tif v0.Interface() == v1.Interface() {\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn fnext\n\t\t}\n\t}\n}\n\nfunc implementsInterface(v reflect.Value, t *itype) bool {\n\trt := v.Type()\n\tif t.cat == valueT {\n\t\treturn rt.Implements(t.rtype)\n\t}\n\tvt := &itype{cat: valueT, rtype: rt}\n\tif vt.methods().contains(t.methods()) {\n\t\treturn true\n\t}\n\tvi, ok := v.Interface().(valueInterface)\n\tif !ok {\n\t\treturn false\n\t}\n\treturn vi.node != nil && vi.node.typ.methods().contains(t.methods())\n}\n\nfunc appendSlice(n *node) {\n\tdest := genValueOutput(n, n.typ.rtype)\n\tnext := getExec(n.tnext)\n\tvalue := genValue(n.child[1])\n\tvalue0 := genValue(n.child[2])\n\n\tif isString(n.child[2].typ.TypeOf()) {\n\t\ttyp := reflect.TypeOf([]byte{})\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tdest(f).Set(reflect.AppendSlice(value(f), value0(f).Convert(typ)))\n\t\t\treturn next\n\t\t}\n\t} else {\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tdest(f).Set(reflect.AppendSlice(value(f), value0(f)))\n\t\t\treturn next\n\t\t}\n\t}\n}\n\nfunc _append(n *node) {\n\tif len(n.child) == 3 {\n\t\tc1, c2 := n.child[1], n.child[2]\n\t\tif (c1.typ.cat == valueT || c2.typ.cat == valueT) && c1.typ.rtype == c2.typ.rtype ||\n\t\t\tisArray(c2.typ) && c2.typ.elem().id() == n.typ.elem().id() ||\n\t\t\tisByteArray(c1.typ.TypeOf()) && isString(c2.typ.TypeOf()) {\n\t\t\tappendSlice(n)\n\t\t\treturn\n\t\t}\n\t}\n\n\tdest := genValueOutput(n, n.typ.rtype)\n\tvalue := genValue(n.child[1])\n\tnext := getExec(n.tnext)\n\n\tswitch l := len(n.child); {\n\tcase l == 2:\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tdest(f).Set(value(f))\n\t\t\treturn next\n\t\t}\n\tcase l > 3:\n\t\targs := n.child[2:]\n\t\tl := len(args)\n\t\tvalues := make([]func(*frame) reflect.Value, l)\n\t\tfor i, arg := range args {\n\t\t\tswitch elem := n.typ.elem(); {\n\t\t\tcase isInterfaceSrc(elem) && (!isEmptyInterface(elem) || len(arg.typ.method) > 0):\n\t\t\t\tvalues[i] = genValueInterface(arg)\n\t\t\tcase isInterfaceBin(elem):\n\t\t\t\tvalues[i] = genInterfaceWrapper(arg, elem.rtype)\n\t\t\tcase arg.typ.untyped:\n\t\t\t\tvalues[i] = genValueAs(arg, n.child[1].typ.TypeOf().Elem())\n\t\t\tdefault:\n\t\t\t\tvalues[i] = genValue(arg)\n\t\t\t}\n\t\t}\n\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tsl := make([]reflect.Value, l)\n\t\t\tfor i, v := range values {\n\t\t\t\tsl[i] = v(f)\n\t\t\t}\n\t\t\tdest(f).Set(reflect.Append(value(f), sl...))\n\t\t\treturn next\n\t\t}\n\tdefault:\n\t\tvar value0 func(*frame) reflect.Value\n\t\tswitch elem := n.typ.elem(); {\n\t\tcase isInterfaceSrc(elem) && (!isEmptyInterface(elem) || len(n.child[2].typ.method) > 0):\n\t\t\tvalue0 = genValueInterface(n.child[2])\n\t\tcase isInterfaceBin(elem):\n\t\t\tvalue0 = genInterfaceWrapper(n.child[2], elem.rtype)\n\t\tcase n.child[2].typ.untyped:\n\t\t\tvalue0 = genValueAs(n.child[2], n.child[1].typ.TypeOf().Elem())\n\t\tdefault:\n\t\t\tvalue0 = genValue(n.child[2])\n\t\t}\n\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tdest(f).Set(reflect.Append(value(f), value0(f)))\n\t\t\treturn next\n\t\t}\n\t}\n}\n\nfunc _cap(n *node) {\n\tdest := genValueOutput(n, reflect.TypeOf(int(0)))\n\tvalue := genValue(n.child[1])\n\tnext := getExec(n.tnext)\n\n\tif wantEmptyInterface(n) {\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tdest(f).Set(reflect.ValueOf(value(f).Cap()))\n\t\t\treturn next\n\t\t}\n\t\treturn\n\t}\n\tn.exec = func(f *frame) bltn {\n\t\tdest(f).SetInt(int64(value(f).Cap()))\n\t\treturn next\n\t}\n}\n\nfunc _copy(n *node) {\n\tin := []func(*frame) reflect.Value{genValueArray(n.child[1]), genValue(n.child[2])}\n\tout := []func(*frame) reflect.Value{genValueOutput(n, reflect.TypeOf(0))}\n\n\tgenBuiltinDeferWrapper(n, in, out, func(args []reflect.Value) []reflect.Value {\n\t\tcnt := reflect.Copy(args[0], args[1])\n\t\treturn []reflect.Value{reflect.ValueOf(cnt)}\n\t})\n}\n\nfunc _close(n *node) {\n\tin := []func(*frame) reflect.Value{genValue(n.child[1])}\n\n\tgenBuiltinDeferWrapper(n, in, nil, func(args []reflect.Value) []reflect.Value {\n\t\targs[0].Close()\n\t\treturn nil\n\t})\n}\n\nfunc _complex(n *node) {\n\tdest := genValueOutput(n, reflect.TypeOf(complex(0, 0)))\n\tc1, c2 := n.child[1], n.child[2]\n\tconvertLiteralValue(c1, floatType)\n\tconvertLiteralValue(c2, floatType)\n\tvalue0 := genValue(c1)\n\tvalue1 := genValue(c2)\n\tnext := getExec(n.tnext)\n\n\ttyp := n.typ.TypeOf()\n\tif isComplex(typ) {\n\t\tif wantEmptyInterface(n) {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).Set(reflect.ValueOf(complex(value0(f).Float(), value1(f).Float())))\n\t\t\t\treturn next\n\t\t\t}\n\t\t\treturn\n\t\t}\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tdest(f).SetComplex(complex(value0(f).Float(), value1(f).Float()))\n\t\t\treturn next\n\t\t}\n\t\treturn\n\t}\n\t// Not a complex type: ignore imaginary part\n\tn.exec = func(f *frame) bltn {\n\t\tdest(f).Set(value0(f).Convert(typ))\n\t\treturn next\n\t}\n}\n\nfunc _imag(n *node) {\n\tdest := genValueOutput(n, reflect.TypeOf(float64(0)))\n\tconvertLiteralValue(n.child[1], complexType)\n\tvalue := genValue(n.child[1])\n\tnext := getExec(n.tnext)\n\n\tif wantEmptyInterface(n) {\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tdest(f).Set(reflect.ValueOf(imag(value(f).Complex())))\n\t\t\treturn next\n\t\t}\n\t\treturn\n\t}\n\tn.exec = func(f *frame) bltn {\n\t\tdest(f).SetFloat(imag(value(f).Complex()))\n\t\treturn next\n\t}\n}\n\nfunc _real(n *node) {\n\tdest := genValueOutput(n, reflect.TypeOf(float64(0)))\n\tconvertLiteralValue(n.child[1], complexType)\n\tvalue := genValue(n.child[1])\n\tnext := getExec(n.tnext)\n\n\tif wantEmptyInterface(n) {\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tdest(f).Set(reflect.ValueOf(real(value(f).Complex())))\n\t\t\treturn next\n\t\t}\n\t\treturn\n\t}\n\tn.exec = func(f *frame) bltn {\n\t\tdest(f).SetFloat(real(value(f).Complex()))\n\t\treturn next\n\t}\n}\n\nfunc _delete(n *node) {\n\tvalue0 := genValue(n.child[1]) // map\n\tvalue1 := genValue(n.child[2]) // key\n\tin := []func(*frame) reflect.Value{value0, value1}\n\tvar z reflect.Value\n\n\tgenBuiltinDeferWrapper(n, in, nil, func(args []reflect.Value) []reflect.Value {\n\t\targs[0].SetMapIndex(args[1], z)\n\t\treturn nil\n\t})\n}\n\nfunc capConst(n *node) {\n\t// There is no Cap() method for reflect.Type, just return Len() instead.\n\tlenConst(n)\n}\n\nfunc lenConst(n *node) {\n\tn.rval = reflect.New(reflect.TypeOf(int(0))).Elem()\n\tc1 := n.child[1]\n\tif c1.rval.IsValid() {\n\t\tn.rval.SetInt(int64(len(vString(c1.rval))))\n\t\treturn\n\t}\n\tt := c1.typ.TypeOf()\n\tfor t.Kind() == reflect.Ptr {\n\t\tt = t.Elem()\n\t}\n\tn.rval.SetInt(int64(t.Len()))\n}\n\nfunc _len(n *node) {\n\tdest := genValueOutput(n, reflect.TypeOf(int(0)))\n\tvalue := genValue(n.child[1])\n\tif isPtr(n.child[1].typ) {\n\t\tval := value\n\t\tvalue = func(f *frame) reflect.Value {\n\t\t\tv := val(f).Elem()\n\t\t\tfor v.Kind() == reflect.Ptr {\n\t\t\t\tv = v.Elem()\n\t\t\t}\n\t\t\treturn v\n\t\t}\n\t}\n\tnext := getExec(n.tnext)\n\n\tif wantEmptyInterface(n) {\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tdest(f).Set(reflect.ValueOf(value(f).Len()))\n\t\t\treturn next\n\t\t}\n\t\treturn\n\t}\n\tn.exec = func(f *frame) bltn {\n\t\tdest(f).SetInt(int64(value(f).Len()))\n\t\treturn next\n\t}\n}\n\nfunc _new(n *node) {\n\tnext := getExec(n.tnext)\n\tt1 := n.child[1].typ\n\ttyp := t1.TypeOf()\n\tdest := genValueOutput(n, reflect.PtrTo(typ))\n\n\tif isInterfaceSrc(t1) && (!isEmptyInterface(t1) || len(t1.method) > 0) {\n\t\ttyp = zeroInterfaceValue().Type()\n\t}\n\n\tn.exec = func(f *frame) bltn {\n\t\tv := reflect.New(typ)\n\t\tif vi, ok := v.Interface().(*valueInterface); ok {\n\t\t\tvi.node = n\n\t\t}\n\t\tdest(f).Set(v)\n\t\treturn next\n\t}\n}\n\n// _make allocates and initializes a slice, a map or a chan.\nfunc _make(n *node) {\n\tnext := getExec(n.tnext)\n\ttyp := n.child[1].typ.frameType()\n\tdest := genValueOutput(n, typ)\n\n\tswitch typ.Kind() {\n\tcase reflect.Array, reflect.Slice:\n\t\tvalue := genValue(n.child[2])\n\n\t\tswitch len(n.child) {\n\t\tcase 3:\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tlength := int(vInt(value(f)))\n\t\t\t\tdest(f).Set(reflect.MakeSlice(typ, length, length))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase 4:\n\t\t\tvalue1 := genValue(n.child[3])\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).Set(reflect.MakeSlice(typ, int(vInt(value(f))), int(vInt(value1(f)))))\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\n\tcase reflect.Chan:\n\t\tswitch len(n.child) {\n\t\tcase 2:\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).Set(reflect.MakeChan(typ, 0))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase 3:\n\t\t\tvalue := genValue(n.child[2])\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).Set(reflect.MakeChan(typ, int(vInt(value(f)))))\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\n\tcase reflect.Map:\n\t\tswitch len(n.child) {\n\t\tcase 2:\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).Set(reflect.MakeMap(typ))\n\t\t\t\treturn next\n\t\t\t}\n\t\tcase 3:\n\t\t\tvalue := genValue(n.child[2])\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).Set(reflect.MakeMapWithSize(typ, int(vInt(value(f)))))\n\t\t\t\treturn next\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc reset(n *node) {\n\tnext := getExec(n.tnext)\n\n\tswitch l := len(n.child) - 1; l {\n\tcase 1:\n\t\ttyp := n.child[0].typ.frameType()\n\t\ti := n.child[0].findex\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tf.data[i] = reflect.New(typ).Elem()\n\t\t\treturn next\n\t\t}\n\tcase 2:\n\t\tc0, c1 := n.child[0], n.child[1]\n\t\ti0, i1 := c0.findex, c1.findex\n\t\tt0, t1 := c0.typ.frameType(), c1.typ.frameType()\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tf.data[i0] = reflect.New(t0).Elem()\n\t\t\tf.data[i1] = reflect.New(t1).Elem()\n\t\t\treturn next\n\t\t}\n\tdefault:\n\t\ttypes := make([]reflect.Type, l)\n\t\tindex := make([]int, l)\n\t\tfor i, c := range n.child[:l] {\n\t\t\tindex[i] = c.findex\n\t\t\ttypes[i] = c.typ.frameType()\n\t\t}\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tfor i, ind := range index {\n\t\t\t\tf.data[ind] = reflect.New(types[i]).Elem()\n\t\t\t}\n\t\t\treturn next\n\t\t}\n\t}\n}\n\n// recv reads from a channel.\nfunc recv(n *node) {\n\tvalue := genValue(n.child[0])\n\ttnext := getExec(n.tnext)\n\ti := n.findex\n\tl := n.level\n\n\tif n.interp.cancelChan {\n\t\t// Cancellable channel read\n\t\tif n.fnext != nil {\n\t\t\tfnext := getExec(n.fnext)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t// Fast: channel read doesn't block\n\t\t\t\tch := value(f)\n\t\t\t\tif r, ok := ch.TryRecv(); ok {\n\t\t\t\t\tgetFrame(f, l).data[i] = r\n\t\t\t\t\tif r.Bool() {\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\treturn fnext\n\t\t\t\t}\n\t\t\t\t// Slow: channel read blocks, allow cancel\n\t\t\t\tf.mutex.RLock()\n\t\t\t\tdone := f.done\n\t\t\t\tf.mutex.RUnlock()\n\n\t\t\t\tchosen, v, _ := reflect.Select([]reflect.SelectCase{done, {Dir: reflect.SelectRecv, Chan: ch}})\n\t\t\t\tif chosen == 0 {\n\t\t\t\t\treturn nil\n\t\t\t\t}\n\t\t\t\tif v.Bool() {\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t\treturn fnext\n\t\t\t}\n\t\t} else {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t// Fast: channel read doesn't block\n\t\t\t\tch := value(f)\n\t\t\t\tif r, ok := ch.TryRecv(); ok {\n\t\t\t\t\tgetFrame(f, l).data[i] = r\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t\t// Slow: channel is blocked, allow cancel\n\t\t\t\tf.mutex.RLock()\n\t\t\t\tdone := f.done\n\t\t\t\tf.mutex.RUnlock()\n\n\t\t\t\tvar chosen int\n\t\t\t\tchosen, getFrame(f, l).data[i], _ = reflect.Select([]reflect.SelectCase{done, {Dir: reflect.SelectRecv, Chan: ch}})\n\t\t\t\tif chosen == 0 {\n\t\t\t\t\treturn nil\n\t\t\t\t}\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t}\n\t} else {\n\t\t// Blocking channel read (less overhead)\n\t\tif n.fnext != nil {\n\t\t\tfnext := getExec(n.fnext)\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tif r, _ := value(f).Recv(); r.Bool() {\n\t\t\t\t\tgetFrame(f, l).data[i] = r\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t\treturn fnext\n\t\t\t}\n\t\t} else {\n\t\t\ti := n.findex\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tgetFrame(f, l).data[i], _ = value(f).Recv()\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc recv2(n *node) {\n\tvchan := genValue(n.child[0])    // chan\n\tvres := genValue(n.anc.child[0]) // result\n\tvok := genValue(n.anc.child[1])  // status\n\ttnext := getExec(n.tnext)\n\n\tif n.interp.cancelChan {\n\t\t// Cancellable channel read\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tch, result, status := vchan(f), vres(f), vok(f)\n\t\t\t//  Fast: channel read doesn't block\n\t\t\tif v, ok := ch.TryRecv(); ok {\n\t\t\t\tresult.Set(v)\n\t\t\t\tstatus.SetBool(true)\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t\t// Slow: channel is blocked, allow cancel\n\t\t\tf.mutex.RLock()\n\t\t\tdone := f.done\n\t\t\tf.mutex.RUnlock()\n\n\t\t\tchosen, v, ok := reflect.Select([]reflect.SelectCase{done, {Dir: reflect.SelectRecv, Chan: ch}})\n\t\t\tif chosen == 0 {\n\t\t\t\treturn nil\n\t\t\t}\n\t\t\tresult.Set(v)\n\t\t\tstatus.SetBool(ok)\n\t\t\treturn tnext\n\t\t}\n\t} else {\n\t\t// Blocking channel read (less overhead)\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tv, ok := vchan(f).Recv()\n\t\t\tvres(f).Set(v)\n\t\t\tvok(f).SetBool(ok)\n\t\t\treturn tnext\n\t\t}\n\t}\n}\n\nfunc convertLiteralValue(n *node, t reflect.Type) {\n\tswitch {\n\tcase n.typ.cat == nilT:\n\t\t// Create a zero value of target type.\n\t\tn.rval = reflect.New(t).Elem()\n\tcase !(n.kind == basicLit || n.rval.IsValid()) || t == nil || t.Kind() == reflect.Interface || t == valueInterfaceType || t.Kind() == reflect.Slice && t.Elem().Kind() == reflect.Interface:\n\t\t// Skip non-constant values, undefined target type or interface target type.\n\tcase n.rval.IsValid():\n\t\t// Convert constant value to target type.\n\t\tconvertConstantValue(n)\n\t\tn.rval = n.rval.Convert(t)\n\tdefault:\n\t\t// Create a zero value of target type.\n\t\tn.rval = reflect.New(t).Elem()\n\t}\n}\n\nfunc convertConstantValue(n *node) {\n\tif !n.rval.IsValid() {\n\t\treturn\n\t}\n\tc, ok := n.rval.Interface().(constant.Value)\n\tif !ok {\n\t\treturn\n\t}\n\n\tvar v reflect.Value\n\n\tswitch c.Kind() {\n\tcase constant.Bool:\n\t\tv = reflect.ValueOf(constant.BoolVal(c))\n\tcase constant.String:\n\t\tv = reflect.ValueOf(constant.StringVal(c))\n\tcase constant.Int:\n\t\ti, x := constant.Int64Val(c)\n\t\tif !x {\n\t\t\tpanic(n.cfgErrorf(\"constant %s overflows int64\", c.ExactString()))\n\t\t}\n\t\tv = reflect.ValueOf(int(i))\n\tcase constant.Float:\n\t\tf, _ := constant.Float64Val(c)\n\t\tv = reflect.ValueOf(f)\n\tcase constant.Complex:\n\t\tr, _ := constant.Float64Val(constant.Real(c))\n\t\ti, _ := constant.Float64Val(constant.Imag(c))\n\t\tv = reflect.ValueOf(complex(r, i))\n\t}\n\n\tn.rval = v.Convert(n.typ.TypeOf())\n}\n\n// Write to a channel.\nfunc send(n *node) {\n\tnext := getExec(n.tnext)\n\tc0, c1 := n.child[0], n.child[1]\n\tvalue0 := genValue(c0) // Send channel.\n\tvalue1 := genDestValue(c0.typ.elem(), c1)\n\n\tif !n.interp.cancelChan {\n\t\t// Send is non-cancellable, has the least overhead.\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tvalue0(f).Send(value1(f))\n\t\t\treturn next\n\t\t}\n\t\treturn\n\t}\n\n\t// Send is cancellable, may have some overhead.\n\tn.exec = func(f *frame) bltn {\n\t\tch, data := value0(f), value1(f)\n\t\t// Fast: send on channel doesn't block.\n\t\tif ok := ch.TrySend(data); ok {\n\t\t\treturn next\n\t\t}\n\t\t// Slow: send on channel blocks, allow cancel.\n\t\tf.mutex.RLock()\n\t\tdone := f.done\n\t\tf.mutex.RUnlock()\n\n\t\tchosen, _, _ := reflect.Select([]reflect.SelectCase{done, {Dir: reflect.SelectSend, Chan: ch, Send: data}})\n\t\tif chosen == 0 {\n\t\t\treturn nil\n\t\t}\n\t\treturn next\n\t}\n}\n\nfunc clauseChanDir(n *node) (*node, *node, *node, reflect.SelectDir) {\n\tdir := reflect.SelectDefault\n\tvar nod, assigned, ok *node\n\tvar stop bool\n\n\tn.Walk(func(m *node) bool {\n\t\tswitch m.action {\n\t\tcase aRecv:\n\t\t\tdir = reflect.SelectRecv\n\t\t\tnod = m.child[0]\n\t\t\tswitch m.anc.action {\n\t\t\tcase aAssign:\n\t\t\t\tassigned = m.anc.child[0]\n\t\t\tcase aAssignX:\n\t\t\t\tassigned = m.anc.child[0]\n\t\t\t\tok = m.anc.child[1]\n\t\t\t}\n\t\t\tstop = true\n\t\tcase aSend:\n\t\t\tdir = reflect.SelectSend\n\t\t\tnod = m.child[0]\n\t\t\tassigned = m.child[1]\n\t\t\tstop = true\n\t\t}\n\t\treturn !stop\n\t}, nil)\n\treturn nod, assigned, ok, dir\n}\n\nfunc _select(n *node) {\n\tnbClause := len(n.child)\n\tchans := make([]*node, nbClause)\n\tassigned := make([]*node, nbClause)\n\tok := make([]*node, nbClause)\n\tclause := make([]bltn, nbClause)\n\tchanValues := make([]func(*frame) reflect.Value, nbClause)\n\tassignedValues := make([]func(*frame) reflect.Value, nbClause)\n\tokValues := make([]func(*frame) reflect.Value, nbClause)\n\tcases := make([]reflect.SelectCase, nbClause+1)\n\tnext := getExec(n.tnext)\n\n\tfor i := 0; i < nbClause; i++ {\n\t\tcl := n.child[i]\n\t\tif cl.kind == commClauseDefault {\n\t\t\tcases[i].Dir = reflect.SelectDefault\n\t\t\tif len(cl.child) == 0 {\n\t\t\t\tclause[i] = func(*frame) bltn { return next }\n\t\t\t} else {\n\t\t\t\tclause[i] = getExec(cl.child[0].start)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\t// The comm clause is in send or recv direction.\n\t\tswitch c0 := cl.child[0]; {\n\t\tcase len(cl.child) > 1:\n\t\t\t// The comm clause contains a channel operation and a clause body.\n\t\t\tclause[i] = getExec(cl.child[1].start)\n\t\t\tchans[i], assigned[i], ok[i], cases[i].Dir = clauseChanDir(c0)\n\t\t\tchanValues[i] = genValue(chans[i])\n\t\t\tif assigned[i] != nil {\n\t\t\t\tassignedValues[i] = genValue(assigned[i])\n\t\t\t}\n\t\t\tif ok[i] != nil {\n\t\t\t\tokValues[i] = genValue(ok[i])\n\t\t\t}\n\t\tcase c0.kind == exprStmt && len(c0.child) == 1 && c0.child[0].action == aRecv:\n\t\t\t// The comm clause has an empty body clause after channel receive.\n\t\t\tchanValues[i] = genValue(c0.child[0].child[0])\n\t\t\tcases[i].Dir = reflect.SelectRecv\n\t\t\tclause[i] = func(*frame) bltn { return next }\n\t\tcase c0.kind == sendStmt:\n\t\t\t// The comm clause as an empty body clause after channel send.\n\t\t\tchanValues[i] = genValue(c0.child[0])\n\t\t\tcases[i].Dir = reflect.SelectSend\n\t\t\tassignedValues[i] = genValue(c0.child[1])\n\t\t\tclause[i] = func(*frame) bltn { return next }\n\t\t}\n\t}\n\n\tn.exec = func(f *frame) bltn {\n\t\tf.mutex.RLock()\n\t\tcases[nbClause] = f.done\n\t\tf.mutex.RUnlock()\n\n\t\tfor i := range cases[:nbClause] {\n\t\t\tswitch cases[i].Dir {\n\t\t\tcase reflect.SelectRecv:\n\t\t\t\tcases[i].Chan = chanValues[i](f)\n\t\t\tcase reflect.SelectSend:\n\t\t\t\tcases[i].Chan = chanValues[i](f)\n\t\t\t\tcases[i].Send = assignedValues[i](f)\n\t\t\tcase reflect.SelectDefault:\n\t\t\t\t// Keep zero values for comm clause\n\t\t\t}\n\t\t}\n\t\tj, v, s := reflect.Select(cases)\n\t\tif j == nbClause {\n\t\t\treturn nil\n\t\t}\n\t\tif cases[j].Dir == reflect.SelectRecv && assignedValues[j] != nil {\n\t\t\tassignedValues[j](f).Set(v)\n\t\t\tif ok[j] != nil {\n\t\t\t\tokValues[j](f).SetBool(s)\n\t\t\t}\n\t\t}\n\t\treturn clause[j]\n\t}\n}\n\n// slice expression: array[low:high:max].\nfunc slice(n *node) {\n\ti := n.findex\n\tl := n.level\n\tnext := getExec(n.tnext)\n\tvalue0 := genValueArray(n.child[0]) // array\n\tvalue1 := genValue(n.child[1])      // low (if 2 or 3 args) or high (if 1 arg)\n\n\tswitch len(n.child) {\n\tcase 2:\n\t\tn.exec = func(f *frame) bltn {\n\t\t\ta := value0(f)\n\t\t\tgetFrame(f, l).data[i] = a.Slice(int(vInt(value1(f))), a.Len())\n\t\t\treturn next\n\t\t}\n\tcase 3:\n\t\tvalue2 := genValue(n.child[2]) // max\n\n\t\tn.exec = func(f *frame) bltn {\n\t\t\ta := value0(f)\n\t\t\tgetFrame(f, l).data[i] = a.Slice(int(vInt(value1(f))), int(vInt(value2(f))))\n\t\t\treturn next\n\t\t}\n\tcase 4:\n\t\tvalue2 := genValue(n.child[2])\n\t\tvalue3 := genValue(n.child[3])\n\n\t\tn.exec = func(f *frame) bltn {\n\t\t\ta := value0(f)\n\t\t\tgetFrame(f, l).data[i] = a.Slice3(int(vInt(value1(f))), int(vInt(value2(f))), int(vInt(value3(f))))\n\t\t\treturn next\n\t\t}\n\t}\n}\n\n// slice expression, no low value: array[:high:max].\nfunc slice0(n *node) {\n\ti := n.findex\n\tl := n.level\n\tnext := getExec(n.tnext)\n\tvalue0 := genValueArray(n.child[0])\n\n\tswitch len(n.child) {\n\tcase 1:\n\t\tn.exec = func(f *frame) bltn {\n\t\t\ta := value0(f)\n\t\t\tgetFrame(f, l).data[i] = a.Slice(0, a.Len())\n\t\t\treturn next\n\t\t}\n\tcase 2:\n\t\tvalue1 := genValue(n.child[1])\n\t\tn.exec = func(f *frame) bltn {\n\t\t\ta := value0(f)\n\t\t\tgetFrame(f, l).data[i] = a.Slice(0, int(vInt(value1(f))))\n\t\t\treturn next\n\t\t}\n\tcase 3:\n\t\tvalue1 := genValue(n.child[1])\n\t\tvalue2 := genValue(n.child[2])\n\t\tn.exec = func(f *frame) bltn {\n\t\t\ta := value0(f)\n\t\t\tgetFrame(f, l).data[i] = a.Slice3(0, int(vInt(value1(f))), int(vInt(value2(f))))\n\t\t\treturn next\n\t\t}\n\t}\n}\n\nfunc isNilChild(child int) func(n *node) {\n\treturn func(n *node) {\n\t\tvar value func(*frame) reflect.Value\n\t\tchild := n.child[child]\n\t\tvalue = genValue(child)\n\t\ttyp := n.typ.concrete().TypeOf()\n\t\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\t\ttnext := getExec(n.tnext)\n\t\tdest := genValue(n)\n\t\tif n.fnext == nil {\n\t\t\tif !isInterfaceSrc(child.typ) {\n\t\t\t\tif isInterface {\n\t\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\t\tdest(f).Set(reflect.ValueOf(value(f).IsNil()).Convert(typ))\n\t\t\t\t\t\treturn tnext\n\t\t\t\t\t}\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\tdest(f).SetBool(value(f).IsNil())\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t\treturn\n\t\t\t}\n\t\t\tif isInterface {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\tv := value(f)\n\t\t\t\t\tvar r bool\n\t\t\t\t\tif vi, ok := v.Interface().(valueInterface); ok {\n\t\t\t\t\t\tr = (vi == valueInterface{} || vi.node.kind == basicLit && vi.node.typ.cat == nilT)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tr = v.IsNil()\n\t\t\t\t\t}\n\t\t\t\t\tdest(f).Set(reflect.ValueOf(r).Convert(typ))\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t\treturn\n\t\t\t}\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv := value(f)\n\t\t\t\tvar r bool\n\t\t\t\tif vi, ok := v.Interface().(valueInterface); ok {\n\t\t\t\t\tr = (vi == valueInterface{} || vi.node.kind == basicLit && vi.node.typ.cat == nilT)\n\t\t\t\t} else {\n\t\t\t\t\tr = v.IsNil()\n\t\t\t\t}\n\t\t\t\tdest(f).SetBool(r)\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t\treturn\n\t\t}\n\n\t\tfnext := getExec(n.fnext)\n\n\t\tif !isInterfaceSrc(child.typ) {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tif value(f).IsNil() {\n\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t\tdest(f).SetBool(false)\n\t\t\t\treturn fnext\n\t\t\t}\n\t\t\treturn\n\t\t}\n\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tv := value(f)\n\t\t\tif vi, ok := v.Interface().(valueInterface); ok {\n\t\t\t\tif (vi == valueInterface{} || vi.node.kind == basicLit && vi.node.typ.cat == nilT) {\n\t\t\t\t\tdest(f).SetBool(true)\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t\tdest(f).SetBool(false)\n\t\t\t\treturn fnext\n\t\t\t}\n\t\t\tif v.IsNil() {\n\t\t\t\tdest(f).SetBool(true)\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t\tdest(f).SetBool(false)\n\t\t\treturn fnext\n\t\t}\n\t}\n}\n\nfunc isNotNil(n *node) {\n\tvar value func(*frame) reflect.Value\n\tc0 := n.child[0]\n\tvalue = genValue(c0)\n\ttyp := n.typ.concrete().TypeOf()\n\tisInterface := n.typ.TypeOf().Kind() == reflect.Interface\n\ttnext := getExec(n.tnext)\n\tdest := genValue(n)\n\n\tif n.fnext == nil {\n\t\tif isInterfaceSrc(c0.typ) && c0.typ.TypeOf() != valueInterfaceType {\n\t\t\tif isInterface {\n\t\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\t\tdest(f).Set(reflect.ValueOf(!value(f).IsNil()).Convert(typ))\n\t\t\t\t\treturn tnext\n\t\t\t\t}\n\t\t\t\treturn\n\t\t\t}\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tdest(f).SetBool(!value(f).IsNil())\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t\treturn\n\t\t}\n\n\t\tif isInterface {\n\t\t\tn.exec = func(f *frame) bltn {\n\t\t\t\tv := value(f)\n\t\t\t\tvar r bool\n\t\t\t\tif vi, ok := v.Interface().(valueInterface); ok {\n\t\t\t\t\tr = (vi == valueInterface{} || vi.node.kind == basicLit && vi.node.typ.cat == nilT)\n\t\t\t\t} else {\n\t\t\t\t\tr = v.IsNil()\n\t\t\t\t}\n\t\t\t\tdest(f).Set(reflect.ValueOf(!r).Convert(typ))\n\t\t\t\treturn tnext\n\t\t\t}\n\t\t\treturn\n\t\t}\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tv := value(f)\n\t\t\tvar r bool\n\t\t\tif vi, ok := v.Interface().(valueInterface); ok {\n\t\t\t\tr = (vi == valueInterface{} || vi.node.kind == basicLit && vi.node.typ.cat == nilT)\n\t\t\t} else {\n\t\t\t\tr = v.IsNil()\n\t\t\t}\n\t\t\tdest(f).SetBool(!r)\n\t\t\treturn tnext\n\t\t}\n\t\treturn\n\t}\n\n\tfnext := getExec(n.fnext)\n\n\tif isInterfaceSrc(c0.typ) && c0.typ.TypeOf() != valueInterfaceType {\n\t\tn.exec = func(f *frame) bltn {\n\t\t\tif value(f).IsNil() {\n\t\t\t\tdest(f).SetBool(false)\n\t\t\t\treturn fnext\n\t\t\t}\n\t\t\tdest(f).SetBool(true)\n\t\t\treturn tnext\n\t\t}\n\t\treturn\n\t}\n\n\tn.exec = func(f *frame) bltn {\n\t\tv := value(f)\n\t\tif vi, ok := v.Interface().(valueInterface); ok {\n\t\t\tif (vi == valueInterface{} || vi.node.kind == basicLit && vi.node.typ.cat == nilT) {\n\t\t\t\tdest(f).SetBool(false)\n\t\t\t\treturn fnext\n\t\t\t}\n\t\t\tdest(f).SetBool(true)\n\t\t\treturn tnext\n\t\t}\n\t\tif v.IsNil() {\n\t\t\tdest(f).SetBool(false)\n\t\t\treturn fnext\n\t\t}\n\t\tdest(f).SetBool(true)\n\t\treturn tnext\n\t}\n}\n\nfunc complexConst(n *node) {\n\tif v0, v1 := n.child[1].rval, n.child[2].rval; v0.IsValid() && v1.IsValid() {\n\t\tn.rval = reflect.ValueOf(complex(vFloat(v0), vFloat(v1)))\n\t\tn.gen = nop\n\t}\n}\n\nfunc imagConst(n *node) {\n\tif v := n.child[1].rval; v.IsValid() {\n\t\tn.rval = reflect.ValueOf(imag(v.Complex()))\n\t\tn.gen = nop\n\t}\n}\n\nfunc realConst(n *node) {\n\tif v := n.child[1].rval; v.IsValid() {\n\t\tn.rval = reflect.ValueOf(real(v.Complex()))\n\t\tn.gen = nop\n\t}\n}\n"
  },
  {
    "path": "interp/scope.go",
    "content": "package interp\n\nimport (\n\t\"log\"\n\t\"reflect\"\n\t\"strconv\"\n)\n\n// A sKind represents the kind of symbol.\ntype sKind uint\n\n// Symbol kinds for the Go interpreter.\nconst (\n\tundefSym   sKind = iota\n\tbinSym           // Binary from runtime\n\tbltnSym          // Builtin\n\tconstSym         // Constant\n\tfuncSym          // Function\n\tlabelSym         // Label\n\tpkgSym           // Package\n\ttypeSym          // Type\n\tvarTypeSym       // Variable type (generic)\n\tvarSym           // Variable\n)\n\nvar symKinds = [...]string{\n\tundefSym:   \"undefSym\",\n\tbinSym:     \"binSym\",\n\tbltnSym:    \"bltnSym\",\n\tconstSym:   \"constSym\",\n\tfuncSym:    \"funcSym\",\n\tlabelSym:   \"labelSym\",\n\tpkgSym:     \"pkgSym\",\n\ttypeSym:    \"typeSym\",\n\tvarTypeSym: \"varTypeSym\",\n\tvarSym:     \"varSym\",\n}\n\nfunc (k sKind) String() string {\n\tif k < sKind(len(symKinds)) {\n\t\treturn symKinds[k]\n\t}\n\treturn \"SymKind(\" + strconv.Itoa(int(k)) + \")\"\n}\n\n// A symbol represents an interpreter object such as type, constant, var, func,\n// label, builtin or binary object. Symbols are defined within a scope.\ntype symbol struct {\n\tkind    sKind\n\ttyp     *itype        // Type of value\n\tnode    *node         // Node value if index is negative\n\tfrom    []*node       // list of goto nodes jumping to this label node, or nil\n\trecv    *receiver     // receiver node value, if sym refers to a method\n\tindex   int           // index of value in frame or -1\n\trval    reflect.Value // default value (used for constants)\n\tbuiltin bltnGenerator // Builtin function or nil\n\tglobal  bool          // true if symbol is defined in global space\n}\n\n// scope type stores symbols in maps, and frame layout as array of types\n// The purposes of scopes are to manage the visibility of each symbol\n// and to store the memory frame layout information (type and index in frame)\n// at each level (global, package, functions)\n//\n// scopes are organized in a stack fashion: a first scope (universe) is created\n// once at global level, and for each block (package, func, for, etc...), a new\n// scope is pushed at entry, and poped at exit.\n//\n// Nested scopes with the same level value use the same frame: it allows to have\n// exactly one frame per function, with a fixed position for each variable (named\n// or not), no matter the inner complexity (number of nested blocks in the function)\n//\n// In symbols, the index value corresponds to the index in scope.types, and at\n// execution to the index in frame, created exactly from the types layout.\ntype scope struct {\n\tanc         *scope             // ancestor upper scope\n\tchild       []*scope           // included scopes\n\tdef         *node              // function definition node this scope belongs to, or nil\n\tloop        *node              // loop exit node for break statement\n\tloopRestart *node              // loop restart node for continue statement\n\tpkgID       string             // unique id of package in which scope is defined\n\tpkgName     string             // package name for the package\n\ttypes       []reflect.Type     // frame layout, may be shared by same level scopes\n\tlevel       int                // frame level: number of frame indirections to access var during execution\n\tsym         map[string]*symbol // map of symbols defined in this current scope\n\tglobal      bool               // true if scope refers to global space (single frame for universe and package level scopes)\n\tiota        int                // iota value in this scope\n}\n\n// push creates a new child scope and chain it to the current one.\nfunc (s *scope) push(indirect bool) *scope {\n\tsc := &scope{anc: s, level: s.level, sym: map[string]*symbol{}}\n\ts.child = append(s.child, sc)\n\tif indirect {\n\t\tsc.types = []reflect.Type{}\n\t\tsc.level = s.level + 1\n\t} else {\n\t\t// Propagate size, types, def and global as scopes at same level share the same frame.\n\t\tsc.types = s.types\n\t\tsc.def = s.def\n\t\tsc.global = s.global\n\t\tsc.level = s.level\n\t}\n\t// inherit loop state and pkgID from ancestor\n\tsc.loop, sc.loopRestart, sc.pkgID = s.loop, s.loopRestart, s.pkgID\n\treturn sc\n}\n\nfunc (s *scope) pushBloc() *scope { return s.push(false) }\nfunc (s *scope) pushFunc() *scope { return s.push(true) }\n\nfunc (s *scope) pop() *scope {\n\tif s.level == s.anc.level {\n\t\t// Propagate size and types, as scopes at same level share the same frame.\n\t\ts.anc.types = s.types\n\t}\n\treturn s.anc\n}\n\nfunc (s *scope) upperLevel() *scope {\n\tlevel := s.level\n\tfor s != nil && s.level == level {\n\t\ts = s.anc\n\t}\n\treturn s\n}\n\n// lookup searches for a symbol in the current scope, and upper ones if not found\n// it returns the symbol, the number of indirections level from the current scope\n// and status (false if no result).\nfunc (s *scope) lookup(ident string) (*symbol, int, bool) {\n\tlevel := s.level\n\tfor {\n\t\tif sym, ok := s.sym[ident]; ok {\n\t\t\tif sym.global {\n\t\t\t\treturn sym, globalFrame, true\n\t\t\t}\n\t\t\treturn sym, level - s.level, true\n\t\t}\n\t\tif s.anc == nil {\n\t\t\tbreak\n\t\t}\n\t\ts = s.anc\n\t}\n\treturn nil, 0, false\n}\n\nfunc (s *scope) isRedeclared(n *node) bool {\n\tif !isNewDefine(n, s) {\n\t\treturn false\n\t}\n\t// Existing symbol in the scope indicates a redeclaration.\n\treturn s.sym[n.ident] != nil\n}\n\nfunc (s *scope) rangeChanType(n *node) *itype {\n\tif sym, _, found := s.lookup(n.child[1].ident); found {\n\t\tif t := sym.typ; len(n.child) == 3 && t != nil && (t.cat == chanT || t.cat == chanRecvT) {\n\t\t\treturn t\n\t\t}\n\t}\n\n\tc := n.child[1]\n\tif c.typ == nil {\n\t\treturn nil\n\t}\n\tswitch {\n\tcase c.typ.cat == chanT, c.typ.cat == chanRecvT:\n\t\treturn c.typ\n\tcase c.typ.cat == valueT && c.typ.rtype.Kind() == reflect.Chan:\n\t\tdir := chanSendRecv\n\t\tswitch c.typ.rtype.ChanDir() {\n\t\tcase reflect.RecvDir:\n\t\t\tdir = chanRecv\n\t\tcase reflect.SendDir:\n\t\t\tdir = chanSend\n\t\t}\n\t\treturn chanOf(valueTOf(c.typ.rtype.Elem()), dir)\n\t}\n\n\treturn nil\n}\n\n// fixType returns the input type, or a valid default type for untyped constant.\nfunc (s *scope) fixType(t *itype) *itype {\n\tif !t.untyped || t.cat != valueT {\n\t\treturn t\n\t}\n\tswitch typ := t.TypeOf(); typ.Kind() {\n\tcase reflect.Int64:\n\t\treturn s.getType(\"int\")\n\tcase reflect.Uint64:\n\t\treturn s.getType(\"uint\")\n\tcase reflect.Float64:\n\t\treturn s.getType(\"float64\")\n\tcase reflect.Complex128:\n\t\treturn s.getType(\"complex128\")\n\t}\n\treturn t\n}\n\nfunc (s *scope) getType(ident string) *itype {\n\tvar t *itype\n\tif sym, _, found := s.lookup(ident); found {\n\t\tif sym.kind == typeSym {\n\t\t\tt = sym.typ\n\t\t}\n\t}\n\treturn t\n}\n\n// add adds a type to the scope types array, and returns its index.\nfunc (s *scope) add(typ *itype) (index int) {\n\tif typ == nil {\n\t\tlog.Panic(\"nil type\")\n\t}\n\tindex = len(s.types)\n\tt := typ.frameType()\n\tif t == nil {\n\t\tlog.Panic(\"nil reflect type\")\n\t}\n\ts.types = append(s.types, t)\n\treturn\n}\n\nfunc (interp *Interpreter) initScopePkg(pkgID, pkgName string) *scope {\n\tsc := interp.universe\n\n\tinterp.mutex.Lock()\n\tif _, ok := interp.scopes[pkgID]; !ok {\n\t\tinterp.scopes[pkgID] = sc.pushBloc()\n\t}\n\tsc = interp.scopes[pkgID]\n\tsc.pkgID = pkgID\n\tsc.pkgName = pkgName\n\tinterp.mutex.Unlock()\n\treturn sc\n}\n\n// Globals returns a map of global variables and constants in the main package.\nfunc (interp *Interpreter) Globals() map[string]reflect.Value {\n\tsyms := map[string]reflect.Value{}\n\tinterp.mutex.RLock()\n\tdefer interp.mutex.RUnlock()\n\n\tv, ok := interp.srcPkg[\"main\"]\n\tif !ok {\n\t\treturn syms\n\t}\n\n\tfor n, s := range v {\n\t\tswitch s.kind {\n\t\tcase constSym:\n\t\t\tsyms[n] = s.rval\n\t\tcase varSym:\n\t\t\tsyms[n] = interp.frame.data[s.index]\n\t\t}\n\t}\n\n\treturn syms\n}\n"
  },
  {
    "path": "interp/self_example_test.go",
    "content": "package interp_test\n\nimport (\n\t\"log\"\n\n\t\"github.com/traefik/yaegi/interp\"\n\t\"github.com/traefik/yaegi/stdlib\"\n)\n\nfunc ExampleInterpreter_self() {\n\ti := interp.New(interp.Options{})\n\n\tif err := i.Use(stdlib.Symbols); err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tif err := i.Use(interp.Symbols); err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\t_, err := i.Eval(`import (\n\t\"fmt\"\n\t\"log\"\n\n\t// Import interp to gain access to Self.\n\t\"github.com/traefik/yaegi/interp\"\n)`)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\t_, err = i.Eval(`\n\t\t// Evaluate code directly.\n\t\tfmt.Println(\"Hello Yaegi from Go\")\n\n\t\t// Evaluate code indirectly via the Self access point.\n\t\t_, err := interp.Self.Eval(\"fmt.Println(\\\"Hello Yaegi from Yaegi\\\")\")\n\t\tif err != nil {\n\t\t\tlog.Fatal(err)\n\t\t}\n`)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\t// Output:\n\t//\n\t// Hello Yaegi from Go\n\t// Hello Yaegi from Yaegi\n}\n"
  },
  {
    "path": "interp/src.go",
    "content": "package interp\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"io/fs\"\n\t\"path\"\n\t\"path/filepath\"\n\t\"strings\"\n)\n\n// importSrc calls gta on the source code for the package identified by\n// importPath. rPath is the relative path to the directory containing the source\n// code for the package. It can also be \"main\" as a special value.\nfunc (interp *Interpreter) importSrc(rPath, importPath string, skipTest bool) (string, error) {\n\tvar dir string\n\tvar err error\n\n\tif interp.srcPkg[importPath] != nil {\n\t\tname, ok := interp.pkgNames[importPath]\n\t\tif !ok {\n\t\t\treturn \"\", fmt.Errorf(\"inconsistent knowledge about %s\", importPath)\n\t\t}\n\t\treturn name, nil\n\t}\n\n\t// For relative import paths in the form \"./xxx\" or \"../xxx\", the initial\n\t// base path is the directory of the interpreter input file, or \".\" if no file\n\t// was provided.\n\t// In all other cases, absolute import paths are resolved from the GOPATH\n\t// and the nested \"vendor\" directories.\n\tif isPathRelative(importPath) {\n\t\tif rPath == mainID {\n\t\t\trPath = \".\"\n\t\t}\n\t\tdir = path.Join(path.Dir(interp.name), rPath, importPath)\n\t} else if dir, rPath, err = interp.pkgDir(filepath.ToSlash(interp.context.GOPATH), rPath, importPath); err != nil {\n\t\t// Try again, assuming a root dir at the source location.\n\t\tif rPath, err = interp.rootFromSourceLocation(); err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t\tif dir, rPath, err = interp.pkgDir(filepath.ToSlash(interp.context.GOPATH), rPath, importPath); err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t}\n\n\tif interp.rdir[importPath] {\n\t\treturn \"\", fmt.Errorf(\"import cycle not allowed\\n\\timports %s\", importPath)\n\t}\n\tinterp.rdir[importPath] = true\n\n\tfiles, err := fs.ReadDir(interp.opt.filesystem, dir)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\n\tvar initNodes []*node\n\tvar rootNodes []*node\n\trevisit := make(map[string][]*node)\n\n\tvar root *node\n\tvar pkgName string\n\n\t// Parse source files.\n\tfor _, file := range files {\n\t\tname := file.Name()\n\t\tif skipFile(&interp.context, name, skipTest) {\n\t\t\tcontinue\n\t\t}\n\n\t\tname = path.Join(dir, name)\n\t\tvar buf []byte\n\t\tif buf, err = fs.ReadFile(interp.opt.filesystem, name); err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\n\t\tn, err := interp.parse(string(buf), name, false)\n\t\tif err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t\tif n == nil {\n\t\t\tcontinue\n\t\t}\n\n\t\tvar pname string\n\t\tif pname, root, err = interp.ast(n); err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t\tif root == nil {\n\t\t\tcontinue\n\t\t}\n\n\t\tif interp.astDot {\n\t\t\tdotCmd := interp.dotCmd\n\t\t\tif dotCmd == \"\" {\n\t\t\t\tdotCmd = defaultDotCmd(name, \"yaegi-ast-\")\n\t\t\t}\n\t\t\troot.astDot(dotWriter(dotCmd), name)\n\t\t}\n\t\tif pkgName == \"\" {\n\t\t\tpkgName = pname\n\t\t} else if pkgName != pname && skipTest {\n\t\t\treturn \"\", fmt.Errorf(\"found packages %s and %s in %s\", pkgName, pname, dir)\n\t\t}\n\t\trootNodes = append(rootNodes, root)\n\n\t\tsubRPath := effectivePkg(rPath, importPath)\n\t\tvar list []*node\n\t\tlist, err = interp.gta(root, subRPath, importPath, pkgName)\n\t\tif err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t\trevisit[subRPath] = append(revisit[subRPath], list...)\n\t}\n\n\t// Revisit incomplete nodes where GTA could not complete.\n\tfor _, nodes := range revisit {\n\t\tif err = interp.gtaRetry(nodes, importPath, pkgName); err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t}\n\n\t// Generate control flow graphs.\n\tfor _, root := range rootNodes {\n\t\tvar nodes []*node\n\t\tif nodes, err = interp.cfg(root, nil, importPath, pkgName); err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t\tinitNodes = append(initNodes, nodes...)\n\t}\n\n\t// Register source package in the interpreter. The package contains only\n\t// the global symbols in the package scope.\n\tinterp.mutex.Lock()\n\tgs := interp.scopes[importPath]\n\tif gs == nil {\n\t\tinterp.mutex.Unlock()\n\t\t// A nil scope means that no even an empty package is created from source.\n\t\treturn \"\", fmt.Errorf(\"no Go files in %s\", dir)\n\t}\n\tinterp.srcPkg[importPath] = gs.sym\n\tinterp.pkgNames[importPath] = pkgName\n\n\tinterp.frame.mutex.Lock()\n\tinterp.resizeFrame()\n\tinterp.frame.mutex.Unlock()\n\tinterp.mutex.Unlock()\n\n\t// Once all package sources have been parsed, execute entry points then init functions.\n\tfor _, n := range rootNodes {\n\t\tif err = genRun(n); err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t\tinterp.run(n, nil)\n\t}\n\n\t// Wire and execute global vars in global scope gs.\n\tn, err := genGlobalVars(rootNodes, gs)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\tinterp.run(n, nil)\n\n\t// Add main to list of functions to run, after all inits.\n\tif m := gs.sym[mainID]; pkgName == mainID && m != nil && skipTest {\n\t\tinitNodes = append(initNodes, m.node)\n\t}\n\n\tfor _, n := range initNodes {\n\t\tinterp.run(n, interp.frame)\n\t}\n\n\treturn pkgName, nil\n}\n\n// rootFromSourceLocation returns the path to the directory containing the input\n// Go file given to the interpreter, relative to $GOPATH/src.\n// It is meant to be called in the case when the initial input is a main package.\nfunc (interp *Interpreter) rootFromSourceLocation() (string, error) {\n\tsourceFile := interp.name\n\tif sourceFile == DefaultSourceName {\n\t\treturn \"\", nil\n\t}\n\n\t_, isRealFS := interp.opt.filesystem.(*realFS)\n\tif isRealFS {\n\t\t// In the \"real\" FS, GOPATH will be an absolute path, so we need to convert\n\t\t// the source file to an absolute path to compare them.\n\t\tabsPath, err := filepath.Abs(filepath.FromSlash(sourceFile))\n\t\tif err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t\tsourceFile = filepath.ToSlash(absPath)\n\t}\n\tpkgDir := path.Dir(sourceFile)\n\tgoPath := path.Join(filepath.ToSlash(interp.context.GOPATH), \"src\") + \"/\"\n\tif !strings.HasPrefix(pkgDir, goPath) {\n\t\treturn \"\", fmt.Errorf(\"package location %s not in GOPATH\", pkgDir)\n\t}\n\treturn strings.TrimPrefix(pkgDir, goPath), nil\n}\n\n// pkgDir returns the absolute path in filesystem for a package given its import path\n// and the root of the subtree dependencies.\nfunc (interp *Interpreter) pkgDir(goPath string, root, importPath string) (string, string, error) {\n\trPath := path.Join(root, \"vendor\")\n\tdir := path.Join(goPath, \"src\", rPath, importPath)\n\n\tif _, err := fs.Stat(interp.opt.filesystem, dir); err == nil {\n\t\treturn dir, rPath, nil // found!\n\t}\n\n\tdir = path.Join(goPath, \"src\", effectivePkg(root, importPath))\n\n\tif _, err := fs.Stat(interp.opt.filesystem, dir); err == nil {\n\t\treturn dir, root, nil // found!\n\t}\n\n\tif root == \"\" {\n\t\tif interp.context.GOPATH == \"\" {\n\t\t\treturn \"\", \"\", fmt.Errorf(\"unable to find source related to: %q. Either the GOPATH environment variable, or the Interpreter.Options.GoPath needs to be set\", importPath)\n\t\t}\n\t\treturn \"\", \"\", fmt.Errorf(\"unable to find source related to: %q\", importPath)\n\t}\n\n\trootPath := path.Join(goPath, \"src\", root)\n\tprevRoot, err := previousRoot(interp.opt.filesystem, rootPath, root)\n\tif err != nil {\n\t\treturn \"\", \"\", err\n\t}\n\n\treturn interp.pkgDir(goPath, prevRoot, importPath)\n}\n\nconst vendor = \"vendor\"\n\n// Find the previous source root (vendor > vendor > ... > GOPATH).\nfunc previousRoot(filesystem fs.FS, rootPath, root string) (string, error) {\n\trootPath = path.Clean(rootPath)\n\tparent, final := path.Split(rootPath)\n\tparent = path.Clean(parent)\n\n\t// TODO(mpl): maybe it works for the special case main, but can't be bothered for now.\n\tif root != mainID && final != vendor {\n\t\troot = strings.TrimSuffix(root, \"/\")\n\t\tprefix := strings.TrimSuffix(strings.TrimSuffix(rootPath, root), \"/\")\n\n\t\t// look for the closest vendor in one of our direct ancestors, as it takes priority.\n\t\tvar vendored string\n\t\tfor {\n\t\t\tfi, err := fs.Stat(filesystem, path.Join(parent, vendor))\n\t\t\tif err == nil && fi.IsDir() {\n\t\t\t\tvendored = strings.TrimPrefix(strings.TrimPrefix(parent, prefix), \"/\")\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tif !errors.Is(err, fs.ErrNotExist) {\n\t\t\t\treturn \"\", err\n\t\t\t}\n\t\t\t// stop when we reach GOPATH/src\n\t\t\tif parent == prefix {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\t// stop when we reach GOPATH/src/blah\n\t\t\tparent = path.Dir(parent)\n\t\t\tif parent == prefix {\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\t// just an additional failsafe, stop if we reach the filesystem root, or dot (if\n\t\t\t// we are dealing with relative paths).\n\t\t\t// TODO(mpl): It should probably be a critical error actually,\n\t\t\t// as we shouldn't have gone that high up in the tree.\n\t\t\t// TODO(dennwc): This partially fails on Windows, since it cannot recognize drive letters as \"root\".\n\t\t\tif parent == \"/\" || parent == \".\" || parent == \"\" {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\n\t\tif vendored != \"\" {\n\t\t\treturn vendored, nil\n\t\t}\n\t}\n\n\t// TODO(mpl): the algorithm below might be redundant with the one above,\n\t// but keeping it for now. Investigate/simplify/remove later.\n\tsplitRoot := strings.Split(root, \"/\")\n\tvar index int\n\tfor i := len(splitRoot) - 1; i >= 0; i-- {\n\t\tif splitRoot[i] == \"vendor\" {\n\t\t\tindex = i\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif index == 0 {\n\t\treturn \"\", nil\n\t}\n\n\treturn path.Join(splitRoot[:index]...), nil\n}\n\nfunc effectivePkg(root, p string) string {\n\tsplitRoot := strings.Split(root, \"/\")\n\tsplitPath := strings.Split(p, \"/\")\n\n\tvar result []string\n\n\trootIndex := 0\n\tprevRootIndex := 0\n\tfor i := 0; i < len(splitPath); i++ {\n\t\tpart := splitPath[len(splitPath)-1-i]\n\n\t\tindex := len(splitRoot) - 1 - rootIndex\n\t\tif index > 0 && part == splitRoot[index] && i != 0 {\n\t\t\tprevRootIndex = rootIndex\n\t\t\trootIndex++\n\t\t} else if prevRootIndex == rootIndex {\n\t\t\tresult = append(result, part)\n\t\t}\n\t}\n\n\tvar frag string\n\tfor i := len(result) - 1; i >= 0; i-- {\n\t\tfrag = path.Join(frag, result[i])\n\t}\n\n\treturn path.Join(root, frag)\n}\n\n// isPathRelative returns true if path starts with \"./\" or \"../\".\n// It is intended for use on import paths, where \"/\" is always the directory separator.\nfunc isPathRelative(s string) bool {\n\treturn strings.HasPrefix(s, \"./\") || strings.HasPrefix(s, \"../\")\n}\n"
  },
  {
    "path": "interp/src_test.go",
    "content": "package interp\n\nimport (\n\t\"os\"\n\t\"path\"\n\t\"path/filepath\"\n\t\"testing\"\n)\n\nfunc Test_effectivePkg(t *testing.T) {\n\ttestCases := []struct {\n\t\tdesc     string\n\t\troot     string\n\t\tpath     string\n\t\texpected string\n\t}{\n\t\t{\n\t\t\tdesc:     \"path is a subpackage\",\n\t\t\troot:     \"github.com/foo/plugin/vendor/guthib.com/traefik/fromage\",\n\t\t\tpath:     \"guthib.com/traefik/fromage/couteau/lol\",\n\t\t\texpected: \"github.com/foo/plugin/vendor/guthib.com/traefik/fromage/couteau/lol\",\n\t\t},\n\t\t{\n\t\t\tdesc:     \"path is a vendored package\",\n\t\t\troot:     \"github.com/foo/plugin/vendor/guthib.com/traefik/fromage\",\n\t\t\tpath:     \"vendor/guthib.com/traefik/vin\",\n\t\t\texpected: \"github.com/foo/plugin/vendor/guthib.com/traefik/fromage/vendor/guthib.com/traefik/vin\",\n\t\t},\n\t\t{\n\t\t\tdesc:     \"path is non-existent\",\n\t\t\troot:     \"foo\",\n\t\t\tpath:     \"githib.com/foo/app\",\n\t\t\texpected: \"foo/githib.com/foo/app\",\n\t\t},\n\t}\n\n\tfor _, test := range testCases {\n\t\ttest := test\n\t\tt.Run(test.desc, func(t *testing.T) {\n\t\t\tt.Parallel()\n\n\t\t\tpkg := effectivePkg(test.root, test.path)\n\n\t\t\tif pkg != test.expected {\n\t\t\t\tt.Errorf(\"Got %s, want %s\", pkg, test.expected)\n\t\t\t}\n\t\t})\n\t}\n}\n\nfunc Test_pkgDir(t *testing.T) {\n\t// create GOPATH\n\tgoPath := t.TempDir()\n\n\t// Create project\n\tproject := filepath.Join(goPath, \"src\", \"guthib.com\", \"foo\", \"root\")\n\tif err := os.MkdirAll(project, 0o700); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\ttype expected struct {\n\t\tdir   string\n\t\trpath string\n\t}\n\n\ttestCases := []struct {\n\t\tdesc     string\n\t\tpath     string\n\t\troot     string\n\t\tsetup    func() error\n\t\texpected expected\n\t}{\n\t\t{\n\t\t\tdesc: \"GOPATH only\",\n\t\t\tpath: \"guthib.com/foo/bar\",\n\t\t\troot: \"\",\n\t\t\tsetup: func() error {\n\t\t\t\treturn os.MkdirAll(filepath.Join(goPath, \"src\", \"guthib.com\", \"foo\", \"bar\"), 0o700)\n\t\t\t},\n\t\t\texpected: expected{\n\t\t\t\tdir:   filepath.Join(goPath, \"src\", \"guthib.com\", \"foo\", \"bar\"),\n\t\t\t\trpath: \"\",\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tdesc: \"vendor\",\n\t\t\tpath: \"guthib.com/foo/bar\",\n\t\t\troot: path.Join(\"guthib.com\", \"foo\", \"root\"),\n\t\t\tsetup: func() error {\n\t\t\t\treturn os.MkdirAll(filepath.Join(project, \"vendor\", \"guthib.com\", \"foo\", \"bar\"), 0o700)\n\t\t\t},\n\t\t\texpected: expected{\n\t\t\t\tdir:   filepath.Join(goPath, \"src\", \"guthib.com\", \"foo\", \"root\", \"vendor\", \"guthib.com\", \"foo\", \"bar\"),\n\t\t\t\trpath: filepath.Join(\"guthib.com\", \"foo\", \"root\", \"vendor\"),\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tdesc: \"GOPATH flat\",\n\t\t\tpath: \"guthib.com/foo/bar\",\n\t\t\troot: path.Join(\"guthib.com\", \"foo\", \"root\"),\n\t\t\tsetup: func() error {\n\t\t\t\treturn os.MkdirAll(filepath.Join(goPath, \"src\", \"guthib.com\", \"foo\", \"bar\"), 0o700)\n\t\t\t},\n\t\t\texpected: expected{\n\t\t\t\tdir:   filepath.Join(goPath, \"src\", \"guthib.com\", \"foo\", \"bar\"),\n\t\t\t\trpath: \"\",\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tdesc: \"vendor flat\",\n\t\t\tpath: \"guthib.com/foo/bar\",\n\t\t\troot: path.Join(\"guthib.com\", \"foo\", \"root\", \"vendor\", \"guthib.com\", \"foo\", \"bir\"),\n\t\t\tsetup: func() error {\n\t\t\t\tif err := os.MkdirAll(filepath.Join(project, \"vendor\", \"guthib.com\", \"foo\", \"bar\"), 0o700); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\treturn os.MkdirAll(filepath.Join(project, \"vendor\", \"guthib.com\", \"foo\", \"bir\"), 0o700)\n\t\t\t},\n\t\t\texpected: expected{\n\t\t\t\tdir:   filepath.Join(goPath, \"src\", \"guthib.com\", \"foo\", \"root\", \"vendor\", \"guthib.com\", \"foo\", \"bar\"),\n\t\t\t\trpath: filepath.Join(\"guthib.com\", \"foo\", \"root\", \"vendor\"),\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tdesc: \"fallback to GOPATH\",\n\t\t\tpath: \"guthib.com/foo/bar\",\n\t\t\troot: path.Join(\"guthib.com\", \"foo\", \"root\", \"vendor\", \"guthib.com\", \"foo\", \"bir\"),\n\t\t\tsetup: func() error {\n\t\t\t\tif err := os.MkdirAll(filepath.Join(goPath, \"src\", \"guthib.com\", \"foo\", \"bar\"), 0o700); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\treturn os.MkdirAll(filepath.Join(project, \"vendor\", \"guthib.com\", \"foo\", \"bir\"), 0o700)\n\t\t\t},\n\t\t\texpected: expected{\n\t\t\t\tdir:   filepath.Join(goPath, \"src\", \"guthib.com\", \"foo\", \"bar\"),\n\t\t\t\trpath: \"\",\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tdesc: \"vendor recursive\",\n\t\t\tpath: \"guthib.com/foo/bar\",\n\t\t\troot: path.Join(\"guthib.com\", \"foo\", \"root\", \"vendor\", \"guthib.com\", \"foo\", \"bir\", \"vendor\", \"guthib.com\", \"foo\", \"bur\"),\n\t\t\tsetup: func() error {\n\t\t\t\tif err := os.MkdirAll(\n\t\t\t\t\tfilepath.Join(goPath, \"src\", \"guthib.com\", \"foo\", \"root\", \"vendor\", \"guthib.com\", \"foo\", \"bir\", \"vendor\", \"guthib.com\", \"foo\", \"bur\"),\n\t\t\t\t\t0o700); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\treturn os.MkdirAll(filepath.Join(project, \"vendor\", \"guthib.com\", \"foo\", \"bar\"), 0o700)\n\t\t\t},\n\t\t\texpected: expected{\n\t\t\t\tdir:   filepath.Join(project, \"vendor\", \"guthib.com\", \"foo\", \"bar\"),\n\t\t\t\trpath: filepath.Join(\"guthib.com\", \"foo\", \"root\", \"vendor\"),\n\t\t\t},\n\t\t},\n\t}\n\n\tinterp := &Interpreter{\n\t\topt: opt{\n\t\t\tfilesystem: &realFS{},\n\t\t},\n\t}\n\n\tfor _, test := range testCases {\n\t\ttest := test\n\t\tt.Run(test.desc, func(t *testing.T) {\n\t\t\tif err := os.RemoveAll(goPath); err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\t\t\tif err := os.MkdirAll(goPath, 0o700); err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\n\t\t\tif test.setup != nil {\n\t\t\t\terr := test.setup()\n\t\t\t\tif err != nil {\n\t\t\t\t\tt.Fatal(err)\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tgoPath := filepath.ToSlash(goPath)\n\t\t\tdir, rPath, err := interp.pkgDir(goPath, test.root, test.path)\n\t\t\tif err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\n\t\t\texpectedDir := filepath.ToSlash(test.expected.dir)\n\t\t\tif dir != expectedDir {\n\t\t\t\tt.Errorf(\"[dir] got: %s, want: %s\", dir, expectedDir)\n\t\t\t}\n\n\t\t\texpectedRpath := filepath.ToSlash(test.expected.rpath)\n\t\t\tif rPath != expectedRpath {\n\t\t\t\tt.Errorf(\" [rpath] got: %s, want: %s\", rPath, expectedRpath)\n\t\t\t}\n\t\t})\n\t}\n}\n\nfunc Test_previousRoot(t *testing.T) {\n\ttestCases := []struct {\n\t\tdesc           string\n\t\troot           string\n\t\trootPathSuffix string\n\t\texpected       string\n\t}{\n\t\t{\n\t\t\tdesc:     \"GOPATH\",\n\t\t\troot:     \"github.com/foo/pkg/\",\n\t\t\texpected: \"\",\n\t\t},\n\t\t{\n\t\t\tdesc:     \"vendor level 1\",\n\t\t\troot:     \"github.com/foo/pkg/vendor/guthib.com/traefik/fromage\",\n\t\t\texpected: \"github.com/foo/pkg\",\n\t\t},\n\t\t{\n\t\t\tdesc:     \"vendor level 2\",\n\t\t\troot:     \"github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendor/guthib.com/traefik/fuu\",\n\t\t\texpected: \"github.com/foo/pkg/vendor/guthib.com/traefik/fromage\",\n\t\t},\n\t\t{\n\t\t\tdesc:           \"vendor is sibling\",\n\t\t\troot:           \"github.com/foo/bar\",\n\t\t\trootPathSuffix: \"testdata/src/github.com/foo/bar\",\n\t\t\texpected:       \"github.com/foo\",\n\t\t},\n\t\t{\n\t\t\tdesc:           \"vendor is uncle\",\n\t\t\troot:           \"github.com/foo/bar/baz\",\n\t\t\trootPathSuffix: \"testdata/src/github.com/foo/bar/baz\",\n\t\t\texpected:       \"github.com/foo\",\n\t\t},\n\t}\n\n\tfor _, test := range testCases {\n\t\ttest := test\n\t\tt.Run(test.desc, func(t *testing.T) {\n\t\t\tt.Parallel()\n\n\t\t\tvar rootPath string\n\t\t\tif test.rootPathSuffix != \"\" {\n\t\t\t\twd, err := os.Getwd()\n\t\t\t\tif err != nil {\n\t\t\t\t\tt.Fatal(err)\n\t\t\t\t}\n\t\t\t\trootPath = filepath.ToSlash(filepath.Join(wd, test.rootPathSuffix))\n\t\t\t} else {\n\t\t\t\trootPath = vendor\n\t\t\t}\n\t\t\tp, err := previousRoot(&realFS{}, rootPath, test.root)\n\t\t\tif err != nil {\n\t\t\t\tt.Error(err)\n\t\t\t}\n\n\t\t\tif p != test.expected {\n\t\t\t\tpreviousRoot(&realFS{}, rootPath, test.root)\n\t\t\t\tt.Errorf(\"got: %s, want: %s\", p, test.expected)\n\t\t\t}\n\t\t})\n\t}\n}\n"
  },
  {
    "path": "interp/testdata/concurrent/composite/composite_lit.go",
    "content": "package main\n\nimport (\n\t\"time\"\n)\n\ntype foo struct {\n\tbar string\n}\n\nfunc main() {\n\tfor i := 0; i < 2; i++ {\n\t\tgo func() {\n\t\t\ta := foo{\"hello\"}\n\t\t\tprintln(a)\n\t\t}()\n\t}\n\ttime.Sleep(time.Second)\n}\n"
  },
  {
    "path": "interp/testdata/concurrent/composite/composite_sparse.go",
    "content": "package main\n\nimport (\n\t\"time\"\n)\n\ntype foo struct {\n\tbar string\n}\n\nfunc main() {\n\tfor i := 0; i < 2; i++ {\n\t\tgo func() {\n\t\t\ta := foo{bar: \"hello\"}\n\t\t\tprintln(a)\n\t\t}()\n\t}\n\ttime.Sleep(time.Second)\n}\n"
  },
  {
    "path": "interp/testdata/concurrent/hello1.go",
    "content": "package main\n\nimport \"time\"\n\nfunc main() {\n\tgo func() {\n\t\ttime.Sleep(3 * time.Second)\n\t\tprintln(\"hello world1\")\n\t}()\n}\n"
  },
  {
    "path": "interp/testdata/concurrent/hello2.go",
    "content": "package main\n\nimport \"time\"\n\nfunc main() {\n\tgo func() {\n\t\ttime.Sleep(3 * time.Second)\n\t\tprintln(\"hello world2\")\n\t}()\n}\n"
  },
  {
    "path": "interp/testdata/multi/731/sample1.go",
    "content": "package subpkg\n\nimport \"fmt\"\n\nfunc PrintA() {\n\tfmt.Println(\"A\")\n}\n"
  },
  {
    "path": "interp/testdata/multi/731/sample2.go",
    "content": "package subpkg\n\nimport \"fmt\"\n\nfunc PrintB() {\n\tfmt.Println(\"B\")\n}\n"
  },
  {
    "path": "interp/testdata/multi/731/sample3.go",
    "content": "package main\n\nimport \"subpkg\"\n\nfunc main() {\n\tsubpkg.PrintA()\n\tsubpkg.PrintB()\n}\n"
  },
  {
    "path": "interp/testdata/src/github.com/foo/bar/baz/baz.go",
    "content": "package baz\n"
  },
  {
    "path": "interp/testdata/src/github.com/foo/vendor/whatever/whatever.go",
    "content": "package whatever\n"
  },
  {
    "path": "interp/trace.go",
    "content": "package interp\n\nimport (\n\t\"fmt\"\n\t\"reflect\"\n\t\"strings\"\n)\n\n// Set trace to true for debugging the cfg and other processes.\nvar trace = false\n\nfunc traceIndent(n *node) string {\n\treturn strings.Repeat(\"  \", n.depth())\n}\n\n// tracePrintln works like fmt.Println, with indenting by depth\n// and key info on given node.\nfunc tracePrintln(n *node, v ...any) {\n\tif !trace {\n\t\treturn\n\t}\n\tfmt.Println(append([]any{traceIndent(n), n}, v...)...)\n}\n\n// tracePrintTree is particularly useful in post-order for seeing the full\n// structure of a given code segment of interest.\n//\n//nolint:unused // debugging facility\nfunc tracePrintTree(n *node, v ...any) {\n\tif !trace {\n\t\treturn\n\t}\n\ttracePrintln(n, v...)\n\tn.Walk(func(n *node) bool {\n\t\ttracePrintln(n)\n\t\treturn true\n\t}, nil)\n}\n\n// nodeAddr returns the pointer address of node, short version.\nfunc ptrAddr(v any) string {\n\tp := fmt.Sprintf(\"%p\", v)\n\treturn p[:2] + p[9:] // unique bits\n}\n\n// valString returns string rep of given value, showing underlying pointers etc.\n//\n//nolint:unused // debugging facility\nfunc valString(v reflect.Value) string {\n\ts := v.String()\n\tif v.Kind() == reflect.Func || v.Kind() == reflect.Map || v.Kind() == reflect.Pointer || v.Kind() == reflect.Slice || v.Kind() == reflect.UnsafePointer {\n\t\tp := fmt.Sprintf(\"%#x\", v.Pointer())\n\t\tln := len(p)\n\t\ts += \" \" + p[:2] + p[max(2, ln-4):]\n\t}\n\treturn s\n}\n\nfunc (n *node) String() string {\n\ts := n.kind.String()\n\tif n.ident != \"\" {\n\t\ts += \" \" + n.ident\n\t}\n\ts += \" \" + ptrAddr(n)\n\tif n.sym != nil {\n\t\ts += \" sym:\" + n.sym.String()\n\t} else if n.typ != nil {\n\t\ts += \" typ:\" + n.typ.String()\n\t}\n\tif n.findex >= 0 {\n\t\ts += fmt.Sprintf(\" fidx: %d lev: %d\", n.findex, n.level)\n\t}\n\tif n.start != nil && n.start != n {\n\t\ts += fmt.Sprintf(\" ->start: %s %s\", n.start.kind.String(), ptrAddr(n.start))\n\t}\n\tif n.tnext != nil {\n\t\ts += fmt.Sprintf(\" ->tnext: %s %s\", n.tnext.kind.String(), ptrAddr(n.tnext))\n\t}\n\tif n.fnext != nil {\n\t\ts += fmt.Sprintf(\" ->fnext: %s %s\", n.fnext.kind.String(), ptrAddr(n.fnext))\n\t}\n\treturn s\n}\n\nfunc (n *node) depth() int {\n\tif n.anc != nil {\n\t\treturn n.anc.depth() + 1\n\t}\n\treturn 0\n}\n\nfunc (sy *symbol) String() string {\n\ts := sy.kind.String()\n\tif sy.typ != nil {\n\t\ts += \" (\" + sy.typ.String() + \")\"\n\t}\n\tif sy.rval.IsValid() {\n\t\ts += \" = \" + sy.rval.String()\n\t}\n\tif sy.index >= 0 {\n\t\ts += fmt.Sprintf(\" idx: %d\", sy.index)\n\t}\n\tif sy.node != nil {\n\t\ts += \" \" + sy.node.String()\n\t}\n\treturn s\n}\n\nfunc (t *itype) String() string {\n\tif t.str != \"\" {\n\t\treturn t.str\n\t}\n\ts := t.cat.String()\n\tif t.name != \"\" {\n\t\ts += \" (\" + t.name + \")\"\n\t}\n\treturn s\n}\n"
  },
  {
    "path": "interp/type.go",
    "content": "package interp\n\nimport (\n\t\"fmt\"\n\t\"go/constant\"\n\t\"path\"\n\t\"reflect\"\n\t\"strconv\"\n\t\"strings\"\n\n\t\"github.com/traefik/yaegi/internal/unsafe2\"\n)\n\n// tcat defines interpreter type categories.\ntype tcat uint\n\n// Types for go language.\nconst (\n\tnilT tcat = iota\n\tarrayT\n\tbinT\n\tbinPkgT\n\tboolT\n\tbuiltinT\n\tchanT\n\tchanSendT\n\tchanRecvT\n\tcomparableT\n\tcomplex64T\n\tcomplex128T\n\tconstraintT\n\terrorT\n\tfloat32T\n\tfloat64T\n\tfuncT\n\tgenericT\n\tinterfaceT\n\tintT\n\tint8T\n\tint16T\n\tint32T\n\tint64T\n\tlinkedT\n\tmapT\n\tptrT\n\tsliceT\n\tsrcPkgT\n\tstringT\n\tstructT\n\tuintT\n\tuint8T\n\tuint16T\n\tuint32T\n\tuint64T\n\tuintptrT\n\tvalueT\n\tvariadicT\n\tmaxT\n)\n\nvar cats = [...]string{\n\tnilT:        \"nilT\",\n\tarrayT:      \"arrayT\",\n\tbinT:        \"binT\",\n\tbinPkgT:     \"binPkgT\",\n\tboolT:       \"boolT\",\n\tbuiltinT:    \"builtinT\",\n\tchanT:       \"chanT\",\n\tcomparableT: \"comparableT\",\n\tcomplex64T:  \"complex64T\",\n\tcomplex128T: \"complex128T\",\n\tconstraintT: \"constraintT\",\n\terrorT:      \"errorT\",\n\tfloat32T:    \"float32\",\n\tfloat64T:    \"float64T\",\n\tfuncT:       \"funcT\",\n\tgenericT:    \"genericT\",\n\tinterfaceT:  \"interfaceT\",\n\tintT:        \"intT\",\n\tint8T:       \"int8T\",\n\tint16T:      \"int16T\",\n\tint32T:      \"int32T\",\n\tint64T:      \"int64T\",\n\tlinkedT:     \"linkedT\",\n\tmapT:        \"mapT\",\n\tptrT:        \"ptrT\",\n\tsliceT:      \"sliceT\",\n\tsrcPkgT:     \"srcPkgT\",\n\tstringT:     \"stringT\",\n\tstructT:     \"structT\",\n\tuintT:       \"uintT\",\n\tuint8T:      \"uint8T\",\n\tuint16T:     \"uint16T\",\n\tuint32T:     \"uint32T\",\n\tuint64T:     \"uint64T\",\n\tuintptrT:    \"uintptrT\",\n\tvalueT:      \"valueT\",\n\tvariadicT:   \"variadicT\",\n}\n\nfunc (c tcat) String() string {\n\tif c < tcat(len(cats)) {\n\t\treturn cats[c]\n\t}\n\treturn \"Cat(\" + strconv.Itoa(int(c)) + \")\"\n}\n\n// structField type defines a field in a struct.\ntype structField struct {\n\tname  string\n\ttag   string\n\tembed bool\n\ttyp   *itype\n}\n\n// itype defines the internal representation of types in the interpreter.\ntype itype struct {\n\tcat          tcat          // Type category\n\tfield        []structField // Array of struct fields if structT or interfaceT\n\tkey          *itype        // Type of key element if MapT or nil\n\tval          *itype        // Type of value element if chanT, chanSendT, chanRecvT, mapT, ptrT, linkedT, arrayT, sliceT, variadicT or genericT\n\trecv         *itype        // Receiver type for funcT or nil\n\targ          []*itype      // Argument types if funcT or nil\n\tret          []*itype      // Return types if funcT or nil\n\tptr          *itype        // Pointer to this type. Might be nil\n\tmethod       []*node       // Associated methods or nil\n\tconstraint   []*itype      // For interfaceT: list of types part of interface set\n\tulconstraint []*itype      // For interfaceT: list of underlying types part of interface set\n\tinstance     []*itype      // For genericT: list of instantiated types\n\tname         string        // name of type within its package for a defined type\n\tpath         string        // for a defined type, the package import path\n\tlength       int           // length of array if ArrayT\n\trtype        reflect.Type  // Reflection type if ValueT, or nil\n\tnode         *node         // root AST node of type definition\n\tscope        *scope        // type declaration scope (in case of re-parse incomplete type)\n\tstr          string        // String representation of the type\n\tincomplete   bool          // true if type must be parsed again (out of order declarations)\n\tuntyped      bool          // true for a literal value (string or number)\n\tisBinMethod  bool          // true if the type refers to a bin method function\n}\n\ntype generic struct{}\n\nfunc untypedBool(n *node) *itype {\n\treturn &itype{cat: boolT, name: \"bool\", untyped: true, str: \"untyped bool\", node: n}\n}\n\nfunc untypedString(n *node) *itype {\n\treturn &itype{cat: stringT, name: \"string\", untyped: true, str: \"untyped string\", node: n}\n}\n\nfunc untypedRune(n *node) *itype {\n\treturn &itype{cat: int32T, name: \"int32\", untyped: true, str: \"untyped rune\", node: n}\n}\n\nfunc untypedInt(n *node) *itype {\n\treturn &itype{cat: intT, name: \"int\", untyped: true, str: \"untyped int\", node: n}\n}\n\nfunc untypedFloat(n *node) *itype {\n\treturn &itype{cat: float64T, name: \"float64\", untyped: true, str: \"untyped float\", node: n}\n}\n\nfunc untypedComplex(n *node) *itype {\n\treturn &itype{cat: complex128T, name: \"complex128\", untyped: true, str: \"untyped complex\", node: n}\n}\n\nfunc errorMethodType(sc *scope) *itype {\n\treturn &itype{cat: funcT, ret: []*itype{sc.getType(\"string\")}, str: \"func() string\"}\n}\n\ntype itypeOption func(*itype)\n\nfunc isBinMethod() itypeOption {\n\treturn func(t *itype) {\n\t\tt.isBinMethod = true\n\t}\n}\n\nfunc withRecv(typ *itype) itypeOption {\n\treturn func(t *itype) {\n\t\tt.recv = typ\n\t}\n}\n\nfunc withNode(n *node) itypeOption {\n\treturn func(t *itype) {\n\t\tt.node = n\n\t}\n}\n\nfunc withScope(sc *scope) itypeOption {\n\treturn func(t *itype) {\n\t\tt.scope = sc\n\t}\n}\n\nfunc withUntyped(b bool) itypeOption {\n\treturn func(t *itype) {\n\t\tt.untyped = b\n\t}\n}\n\n// valueTOf returns a valueT itype.\nfunc valueTOf(rtype reflect.Type, opts ...itypeOption) *itype {\n\tt := &itype{cat: valueT, rtype: rtype, str: rtype.String()}\n\tfor _, opt := range opts {\n\t\topt(t)\n\t}\n\tif t.untyped {\n\t\tt.str = \"untyped \" + t.str\n\t}\n\treturn t\n}\n\n// wrapperValueTOf returns a valueT itype wrapping an itype.\nfunc wrapperValueTOf(rtype reflect.Type, val *itype, opts ...itypeOption) *itype {\n\tt := &itype{cat: valueT, rtype: rtype, val: val, str: rtype.String()}\n\tfor _, opt := range opts {\n\t\topt(t)\n\t}\n\treturn t\n}\n\nfunc variadicOf(val *itype, opts ...itypeOption) *itype {\n\tt := &itype{cat: variadicT, val: val, str: \"...\" + val.str}\n\tfor _, opt := range opts {\n\t\topt(t)\n\t}\n\treturn t\n}\n\n// ptrOf returns a pointer to t.\nfunc ptrOf(val *itype, opts ...itypeOption) *itype {\n\tif val.ptr != nil {\n\t\treturn val.ptr\n\t}\n\tt := &itype{cat: ptrT, val: val, str: \"*\" + val.str}\n\tfor _, opt := range opts {\n\t\topt(t)\n\t}\n\tval.ptr = t\n\treturn t\n}\n\n// namedOf returns a named type of val.\nfunc namedOf(val *itype, path, name string, opts ...itypeOption) *itype {\n\tstr := name\n\tif path != \"\" {\n\t\tstr = path + \".\" + name\n\t}\n\tt := &itype{cat: linkedT, val: val, path: path, name: name, str: str}\n\tfor _, opt := range opts {\n\t\topt(t)\n\t}\n\treturn t\n}\n\n// funcOf returns a function type with the given args and returns.\nfunc funcOf(args []*itype, ret []*itype, opts ...itypeOption) *itype {\n\tb := []byte{}\n\tb = append(b, \"func(\"...)\n\tb = append(b, paramsTypeString(args)...)\n\tb = append(b, ')')\n\tif len(ret) != 0 {\n\t\tb = append(b, ' ')\n\t\tif len(ret) > 1 {\n\t\t\tb = append(b, '(')\n\t\t}\n\t\tb = append(b, paramsTypeString(ret)...)\n\t\tif len(ret) > 1 {\n\t\t\tb = append(b, ')')\n\t\t}\n\t}\n\n\tt := &itype{cat: funcT, arg: args, ret: ret, str: string(b)}\n\tfor _, opt := range opts {\n\t\topt(t)\n\t}\n\treturn t\n}\n\ntype chanDir uint8\n\nconst (\n\tchanSendRecv chanDir = iota\n\tchanSend\n\tchanRecv\n)\n\n// chanOf returns a channel of the underlying type val.\nfunc chanOf(val *itype, dir chanDir, opts ...itypeOption) *itype {\n\tcat := chanT\n\tstr := \"chan \"\n\tswitch dir {\n\tcase chanSend:\n\t\tcat = chanSendT\n\t\tstr = \"chan<- \"\n\tcase chanRecv:\n\t\tcat = chanRecvT\n\t\tstr = \"<-chan \"\n\t}\n\tt := &itype{cat: cat, val: val, str: str + val.str}\n\tfor _, opt := range opts {\n\t\topt(t)\n\t}\n\treturn t\n}\n\n// arrayOf returns am array type of the underlying val with the given length.\nfunc arrayOf(val *itype, l int, opts ...itypeOption) *itype {\n\tlstr := strconv.Itoa(l)\n\tt := &itype{cat: arrayT, val: val, length: l, str: \"[\" + lstr + \"]\" + val.str}\n\tfor _, opt := range opts {\n\t\topt(t)\n\t}\n\treturn t\n}\n\n// sliceOf returns a slice type of the underlying val.\nfunc sliceOf(val *itype, opts ...itypeOption) *itype {\n\tt := &itype{cat: sliceT, val: val, str: \"[]\" + val.str}\n\tfor _, opt := range opts {\n\t\topt(t)\n\t}\n\treturn t\n}\n\n// mapOf returns a map type of the underlying key and val.\nfunc mapOf(key, val *itype, opts ...itypeOption) *itype {\n\tt := &itype{cat: mapT, key: key, val: val, str: \"map[\" + key.str + \"]\" + val.str}\n\tfor _, opt := range opts {\n\t\topt(t)\n\t}\n\treturn t\n}\n\n// interfaceOf returns an interface type with the given fields.\nfunc interfaceOf(t *itype, fields []structField, constraint, ulconstraint []*itype, opts ...itypeOption) *itype {\n\tstr := \"interface{}\"\n\tif len(fields) > 0 {\n\t\tstr = \"interface { \" + methodsTypeString(fields) + \"}\"\n\t}\n\tif t == nil {\n\t\tt = &itype{}\n\t}\n\tt.cat = interfaceT\n\tt.field = fields\n\tt.constraint = constraint\n\tt.ulconstraint = ulconstraint\n\tt.str = str\n\tfor _, opt := range opts {\n\t\topt(t)\n\t}\n\treturn t\n}\n\n// structOf returns a struct type with the given fields.\nfunc structOf(t *itype, fields []structField, opts ...itypeOption) *itype {\n\tstr := \"struct {}\"\n\tif len(fields) > 0 {\n\t\tstr = \"struct { \" + fieldsTypeString(fields) + \"}\"\n\t}\n\tif t == nil {\n\t\tt = &itype{}\n\t}\n\tt.cat = structT\n\tt.field = fields\n\tt.str = str\n\tfor _, opt := range opts {\n\t\topt(t)\n\t}\n\treturn t\n}\n\n// genericOf returns a generic type.\nfunc genericOf(val *itype, name, path string, opts ...itypeOption) *itype {\n\tt := &itype{cat: genericT, name: name, path: path, str: name, val: val}\n\tfor _, opt := range opts {\n\t\topt(t)\n\t}\n\treturn t\n}\n\n// seenNode determines if a node has been seen.\n//\n// seenNode treats the slice of nodes as the path traveled down a node\n// tree.\nfunc seenNode(ns []*node, n *node) bool {\n\tfor _, nn := range ns {\n\t\tif nn == n {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\n// nodeType returns a type definition for the corresponding AST subtree.\nfunc nodeType(interp *Interpreter, sc *scope, n *node) (*itype, error) {\n\treturn nodeType2(interp, sc, n, nil)\n}\n\nfunc nodeType2(interp *Interpreter, sc *scope, n *node, seen []*node) (t *itype, err error) {\n\tif n.typ != nil && !n.typ.incomplete {\n\t\treturn n.typ, nil\n\t}\n\tif sname := typeName(n); sname != \"\" {\n\t\tsym, _, found := sc.lookup(sname)\n\t\tif found && sym.kind == typeSym && sym.typ != nil {\n\t\t\tif sym.typ.isComplete() {\n\t\t\t\treturn sym.typ, nil\n\t\t\t}\n\t\t\tif seenNode(seen, n) {\n\t\t\t\t// We have seen this node in our tree, so it must be recursive.\n\t\t\t\tsym.typ.incomplete = false\n\t\t\t\treturn sym.typ, nil\n\t\t\t}\n\t\t}\n\t}\n\tseen = append(seen, n)\n\tdefer func() { seen = seen[:len(seen)-1] }()\n\n\tswitch n.kind {\n\tcase addressExpr, starExpr:\n\t\tval, err := nodeType2(interp, sc, n.child[0], seen)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tt = ptrOf(val, withNode(n), withScope(sc))\n\t\tt.incomplete = val.incomplete\n\n\tcase arrayType:\n\t\tc0 := n.child[0]\n\t\tif len(n.child) == 1 {\n\t\t\tval, err := nodeType2(interp, sc, c0, seen)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tt = sliceOf(val, withNode(n), withScope(sc))\n\t\t\tt.incomplete = val.incomplete\n\t\t\tbreak\n\t\t}\n\t\t// Array size is defined.\n\t\tvar (\n\t\t\tlength     int\n\t\t\tincomplete bool\n\t\t)\n\t\tswitch v := c0.rval; {\n\t\tcase v.IsValid():\n\t\t\t// Size if defined by a constant literal value.\n\t\t\tif isConstantValue(v.Type()) {\n\t\t\t\tc := v.Interface().(constant.Value)\n\t\t\t\tlength = constToInt(c)\n\t\t\t} else {\n\t\t\t\tswitch v.Type().Kind() {\n\t\t\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\t\t\tlength = int(v.Int())\n\t\t\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\t\t\tlength = int(v.Uint())\n\t\t\t\tdefault:\n\t\t\t\t\treturn nil, c0.cfgErrorf(\"non integer constant %v\", v)\n\t\t\t\t}\n\t\t\t}\n\t\tcase c0.kind == ellipsisExpr:\n\t\t\t// [...]T expression, get size from the length of composite array.\n\t\t\tlength, err = arrayTypeLen(n.anc, sc)\n\t\t\tif err != nil {\n\t\t\t\tincomplete = true\n\t\t\t}\n\t\tcase c0.kind == identExpr:\n\t\t\tsym, _, ok := sc.lookup(c0.ident)\n\t\t\tif !ok {\n\t\t\t\tincomplete = true\n\t\t\t\tbreak\n\t\t\t}\n\t\t\t// Size is defined by a symbol which must be a constant integer.\n\t\t\tif sym.kind != constSym {\n\t\t\t\treturn nil, c0.cfgErrorf(\"non-constant array bound %q\", c0.ident)\n\t\t\t}\n\t\t\tif sym.typ == nil || !isInt(sym.typ.TypeOf()) || !sym.rval.IsValid() {\n\t\t\t\tincomplete = true\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tlength = int(vInt(sym.rval))\n\t\tdefault:\n\t\t\t// Size is defined by a numeric constant expression.\n\t\t\tvar ok bool\n\t\t\tif _, err := interp.cfg(c0, sc, sc.pkgID, sc.pkgName); err != nil {\n\t\t\t\tif strings.Contains(err.Error(), \" undefined: \") {\n\t\t\t\t\tincomplete = true\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tif !c0.rval.IsValid() {\n\t\t\t\treturn nil, c0.cfgErrorf(\"undefined array size\")\n\t\t\t}\n\t\t\tif length, ok = c0.rval.Interface().(int); !ok {\n\t\t\t\tv, ok := c0.rval.Interface().(constant.Value)\n\t\t\t\tif !ok {\n\t\t\t\t\tincomplete = true\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tlength = constToInt(v)\n\t\t\t}\n\t\t}\n\t\tval, err := nodeType2(interp, sc, n.child[1], seen)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tt = arrayOf(val, length, withNode(n), withScope(sc))\n\t\tt.incomplete = incomplete || val.incomplete\n\n\tcase basicLit:\n\t\tswitch v := n.rval.Interface().(type) {\n\t\tcase bool:\n\t\t\tn.rval = reflect.ValueOf(constant.MakeBool(v))\n\t\t\tt = untypedBool(n)\n\t\tcase rune:\n\t\t\t// It is impossible to work out rune const literals in AST\n\t\t\t// with the correct type so we must make the const type here.\n\t\t\tn.rval = reflect.ValueOf(constant.MakeInt64(int64(v)))\n\t\t\tt = untypedRune(n)\n\t\tcase constant.Value:\n\t\t\tswitch v.Kind() {\n\t\t\tcase constant.Bool:\n\t\t\t\tt = untypedBool(n)\n\t\t\tcase constant.String:\n\t\t\t\tt = untypedString(n)\n\t\t\tcase constant.Int:\n\t\t\t\tt = untypedInt(n)\n\t\t\tcase constant.Float:\n\t\t\t\tt = untypedFloat(n)\n\t\t\tcase constant.Complex:\n\t\t\t\tt = untypedComplex(n)\n\t\t\tdefault:\n\t\t\t\terr = n.cfgErrorf(\"missing support for type %v\", n.rval)\n\t\t\t}\n\t\tdefault:\n\t\t\terr = n.cfgErrorf(\"missing support for type %T: %v\", v, n.rval)\n\t\t}\n\n\tcase unaryExpr:\n\t\t// In interfaceType, we process an underlying type constraint definition.\n\t\tif isInInterfaceType(n) {\n\t\t\tt1, err := nodeType2(interp, sc, n.child[0], seen)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tt = &itype{cat: constraintT, ulconstraint: []*itype{t1}}\n\t\t\tbreak\n\t\t}\n\t\tt, err = nodeType2(interp, sc, n.child[0], seen)\n\n\tcase binaryExpr:\n\t\t// In interfaceType, we process a type constraint union definition.\n\t\tif isInInterfaceType(n) {\n\t\t\tt = &itype{cat: constraintT, constraint: []*itype{}, ulconstraint: []*itype{}}\n\t\t\tfor _, c := range n.child {\n\t\t\t\tt1, err := nodeType2(interp, sc, c, seen)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\tswitch t1.cat {\n\t\t\t\tcase constraintT:\n\t\t\t\t\tt.constraint = append(t.constraint, t1.constraint...)\n\t\t\t\t\tt.ulconstraint = append(t.ulconstraint, t1.ulconstraint...)\n\t\t\t\tdefault:\n\t\t\t\t\tt.constraint = append(t.constraint, t1)\n\t\t\t\t}\n\t\t\t}\n\t\t\tbreak\n\t\t}\n\t\t// Get type of first operand.\n\t\tif t, err = nodeType2(interp, sc, n.child[0], seen); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\t// For operators other than shift, get the type from the 2nd operand if the first is untyped.\n\t\tif t.untyped && !isShiftNode(n) {\n\t\t\tvar t1 *itype\n\t\t\tt1, err = nodeType2(interp, sc, n.child[1], seen)\n\t\t\tif !(t1.untyped && isInt(t1.TypeOf()) && isFloat(t.TypeOf())) {\n\t\t\t\tt = t1\n\t\t\t}\n\t\t}\n\n\t\t// If the node is to be assigned or returned, the node type is the destination type.\n\t\tdt := t\n\n\t\tswitch a := n.anc; {\n\t\tcase a.kind == assignStmt && isEmptyInterface(a.child[0].typ):\n\t\t\t// Because an empty interface concrete type \"mutates\" as different values are\n\t\t\t// assigned to it, we need to make a new itype from scratch everytime a new\n\t\t\t// assignment is made, and not let different nodes (of the same variable) share the\n\t\t\t// same itype. Otherwise they would overwrite each other.\n\t\t\ta.child[0].typ = &itype{cat: interfaceT, val: dt, str: \"interface{}\"}\n\n\t\tcase a.kind == defineStmt && len(a.child) > a.nleft+a.nright:\n\t\t\tif dt, err = nodeType2(interp, sc, a.child[a.nleft], seen); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\n\t\tcase a.kind == returnStmt:\n\t\t\tdt = sc.def.typ.ret[childPos(n)]\n\t\t}\n\n\t\tif isInterfaceSrc(dt) {\n\t\t\t// Set a new interface type preserving the concrete type (.val field).\n\t\t\tt2 := *dt\n\t\t\tt2.val = t\n\t\t\tdt = &t2\n\t\t}\n\t\tt = dt\n\n\tcase callExpr:\n\t\tif isBuiltinCall(n, sc) {\n\t\t\t// Builtin types are special and may depend from their input arguments.\n\t\t\tswitch n.child[0].ident {\n\t\t\tcase bltnComplex:\n\t\t\t\tvar nt0, nt1 *itype\n\t\t\t\tif nt0, err = nodeType2(interp, sc, n.child[1], seen); err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\tif nt1, err = nodeType2(interp, sc, n.child[2], seen); err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\tif nt0.incomplete || nt1.incomplete {\n\t\t\t\t\tt.incomplete = true\n\t\t\t\t} else {\n\t\t\t\t\tswitch t0, t1 := nt0.TypeOf(), nt1.TypeOf(); {\n\t\t\t\t\tcase isFloat32(t0) && isFloat32(t1):\n\t\t\t\t\t\tt = sc.getType(\"complex64\")\n\t\t\t\t\tcase isFloat64(t0) && isFloat64(t1):\n\t\t\t\t\t\tt = sc.getType(\"complex128\")\n\t\t\t\t\tcase nt0.untyped && isNumber(t0) && nt1.untyped && isNumber(t1):\n\t\t\t\t\t\tt = untypedComplex(n)\n\t\t\t\t\tcase nt0.untyped && isFloat32(t1) || nt1.untyped && isFloat32(t0):\n\t\t\t\t\t\tt = sc.getType(\"complex64\")\n\t\t\t\t\tcase nt0.untyped && isFloat64(t1) || nt1.untyped && isFloat64(t0):\n\t\t\t\t\t\tt = sc.getType(\"complex128\")\n\t\t\t\t\tdefault:\n\t\t\t\t\t\terr = n.cfgErrorf(\"invalid types %s and %s\", t0.Kind(), t1.Kind())\n\t\t\t\t\t}\n\t\t\t\t\tif nt0.untyped && nt1.untyped {\n\t\t\t\t\t\tt = untypedComplex(n)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\tcase bltnReal, bltnImag:\n\t\t\t\tif t, err = nodeType2(interp, sc, n.child[1], seen); err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\tif !t.incomplete {\n\t\t\t\t\tswitch k := t.TypeOf().Kind(); {\n\t\t\t\t\tcase t.untyped && isNumber(t.TypeOf()):\n\t\t\t\t\t\tt = untypedFloat(n)\n\t\t\t\t\tcase k == reflect.Complex64:\n\t\t\t\t\t\tt = sc.getType(\"float32\")\n\t\t\t\t\tcase k == reflect.Complex128:\n\t\t\t\t\t\tt = sc.getType(\"float64\")\n\t\t\t\t\tdefault:\n\t\t\t\t\t\terr = n.cfgErrorf(\"invalid complex type %s\", k)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\tcase bltnCap, bltnCopy, bltnLen:\n\t\t\t\tt = sc.getType(\"int\")\n\t\t\tcase bltnAppend, bltnMake:\n\t\t\t\tt, err = nodeType2(interp, sc, n.child[1], seen)\n\t\t\tcase bltnNew:\n\t\t\t\tt, err = nodeType2(interp, sc, n.child[1], seen)\n\t\t\t\tincomplete := t.incomplete\n\t\t\t\tt = ptrOf(t, withScope(sc))\n\t\t\t\tt.incomplete = incomplete\n\t\t\tcase bltnRecover:\n\t\t\t\tt = sc.getType(\"interface{}\")\n\t\t\tdefault:\n\t\t\t\tt = &itype{cat: builtinT}\n\t\t\t}\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t} else {\n\t\t\tif t, err = nodeType2(interp, sc, n.child[0], seen); err != nil || t == nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tswitch t.cat {\n\t\t\tcase valueT:\n\t\t\t\tif rt := t.rtype; rt.Kind() == reflect.Func && rt.NumOut() == 1 {\n\t\t\t\t\tt = valueTOf(rt.Out(0), withScope(sc))\n\t\t\t\t}\n\t\t\tdefault:\n\t\t\t\tif len(t.ret) == 1 {\n\t\t\t\t\tt = t.ret[0]\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\tcase compositeLitExpr:\n\t\tt, err = nodeType2(interp, sc, n.child[0], seen)\n\n\tcase chanType, chanTypeRecv, chanTypeSend:\n\t\tdir := chanSendRecv\n\t\tswitch n.kind {\n\t\tcase chanTypeRecv:\n\t\t\tdir = chanRecv\n\t\tcase chanTypeSend:\n\t\t\tdir = chanSend\n\t\t}\n\t\tval, err := nodeType2(interp, sc, n.child[0], seen)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tt = chanOf(val, dir, withNode(n), withScope(sc))\n\t\tt.incomplete = val.incomplete\n\n\tcase ellipsisExpr:\n\t\tval, err := nodeType2(interp, sc, n.child[0], seen)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tt = variadicOf(val, withNode(n), withScope(sc))\n\t\tt.incomplete = t.val.incomplete\n\n\tcase funcLit:\n\t\tt, err = nodeType2(interp, sc, n.child[2], seen)\n\n\tcase funcType:\n\t\tvar incomplete bool\n\n\t\t// Handle type parameters.\n\t\tfor _, arg := range n.child[0].child {\n\t\t\tcl := len(arg.child) - 1\n\t\t\ttyp, err := nodeType2(interp, sc, arg.child[cl], seen)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tfor _, c := range arg.child[:cl] {\n\t\t\t\tsc.sym[c.ident] = &symbol{index: -1, kind: varTypeSym, typ: typ}\n\t\t\t}\n\t\t\tincomplete = incomplete || typ.incomplete\n\t\t}\n\n\t\t// Handle input parameters.\n\t\targs := make([]*itype, 0, len(n.child[1].child))\n\t\tfor _, arg := range n.child[1].child {\n\t\t\tcl := len(arg.child) - 1\n\t\t\ttyp, err := nodeType2(interp, sc, arg.child[cl], seen)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\targs = append(args, typ)\n\t\t\t// Several arguments may be factorized on the same field type.\n\t\t\tfor i := 1; i < cl; i++ {\n\t\t\t\targs = append(args, typ)\n\t\t\t}\n\t\t\tincomplete = incomplete || typ.incomplete\n\t\t}\n\n\t\t// Handle returned values.\n\t\tvar rets []*itype\n\t\tif len(n.child) == 3 {\n\t\t\tfor _, ret := range n.child[2].child {\n\t\t\t\tcl := len(ret.child) - 1\n\t\t\t\ttyp, err := nodeType2(interp, sc, ret.child[cl], seen)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\trets = append(rets, typ)\n\t\t\t\t// Several arguments may be factorized on the same field type.\n\t\t\t\tfor i := 1; i < cl; i++ {\n\t\t\t\t\trets = append(rets, typ)\n\t\t\t\t}\n\t\t\t\tincomplete = incomplete || typ.incomplete\n\t\t\t}\n\t\t}\n\t\tt = funcOf(args, rets, withNode(n), withScope(sc))\n\t\tt.incomplete = incomplete\n\n\tcase identExpr:\n\t\tsym, _, found := sc.lookup(n.ident)\n\t\tif !found {\n\t\t\t// retry with the filename, in case ident is a package name.\n\t\t\tbaseName := path.Base(interp.fset.Position(n.pos).Filename)\n\t\t\tident := path.Join(n.ident, baseName)\n\t\t\tsym, _, found = sc.lookup(ident)\n\t\t\tif !found {\n\t\t\t\tt = &itype{name: n.ident, path: sc.pkgName, node: n, incomplete: true, scope: sc}\n\t\t\t\tsc.sym[n.ident] = &symbol{kind: typeSym, typ: t}\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tif sym.kind == varTypeSym {\n\t\t\tt = genericOf(sym.typ, n.ident, sc.pkgName, withNode(n), withScope(sc))\n\t\t} else {\n\t\t\tt = sym.typ\n\t\t}\n\t\tif t == nil {\n\t\t\tif t, err = nodeType2(interp, sc, sym.node, seen); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t}\n\t\tif t.incomplete && t.cat == linkedT && t.val != nil && t.val.cat != nilT {\n\t\t\tt.incomplete = false\n\t\t}\n\t\tif t.incomplete && t.node != n {\n\t\t\tm := t.method\n\t\t\tif t, err = nodeType2(interp, sc, t.node, seen); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tt.method = m\n\t\t\tsym.typ = t\n\t\t}\n\t\tif t.node == nil {\n\t\t\tt.node = n\n\t\t}\n\n\tcase indexExpr:\n\t\tvar lt *itype\n\t\tif lt, err = nodeType2(interp, sc, n.child[0], seen); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tif lt.incomplete {\n\t\t\tif t == nil {\n\t\t\t\tt = lt\n\t\t\t} else {\n\t\t\t\tt.incomplete = true\n\t\t\t}\n\t\t\tbreak\n\t\t}\n\t\tswitch lt.cat {\n\t\tcase arrayT, mapT, sliceT, variadicT:\n\t\t\tt = lt.val\n\t\tcase genericT:\n\t\t\tt1, err := nodeType2(interp, sc, n.child[1], seen)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tif t1.cat == genericT || t1.incomplete {\n\t\t\t\tt = lt\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tname := lt.id() + \"[\" + t1.id() + \"]\"\n\t\t\tif sym, _, found := sc.lookup(name); found {\n\t\t\t\tt = sym.typ\n\t\t\t\tbreak\n\t\t\t}\n\t\t\t// A generic type is being instantiated. Generate it.\n\t\t\tt, err = genType(interp, sc, name, lt, []*itype{t1}, seen)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t}\n\n\tcase indexListExpr:\n\t\t// Similar to above indexExpr for generic types, but handle multiple type parameters.\n\t\tvar lt *itype\n\t\tif lt, err = nodeType2(interp, sc, n.child[0], seen); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tif lt.incomplete {\n\t\t\tif t == nil {\n\t\t\t\tt = lt\n\t\t\t} else {\n\t\t\t\tt.incomplete = true\n\t\t\t}\n\t\t\tbreak\n\t\t}\n\n\t\t// Index list expressions can be used only in context of generic types.\n\t\tif lt.cat != genericT {\n\t\t\terr = n.cfgErrorf(\"not a generic type: %s\", lt.id())\n\t\t\treturn nil, err\n\t\t}\n\t\tname := lt.id() + \"[\"\n\t\tout := false\n\t\ttypes := []*itype{}\n\t\tfor _, c := range n.child[1:] {\n\t\t\tt1, err := nodeType2(interp, sc, c, seen)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tif t1.cat == genericT || t1.incomplete {\n\t\t\t\tt = lt\n\t\t\t\tout = true\n\t\t\t\tbreak\n\t\t\t}\n\t\t\ttypes = append(types, t1)\n\t\t\tname += t1.id() + \",\"\n\t\t}\n\t\tif out {\n\t\t\tbreak\n\t\t}\n\t\tname = strings.TrimSuffix(name, \",\") + \"]\"\n\t\tif sym, _, found := sc.lookup(name); found {\n\t\t\tt = sym.typ\n\t\t\tbreak\n\t\t}\n\t\t// A generic type is being instantiated. Generate it.\n\t\tt, err = genType(interp, sc, name, lt, types, seen)\n\n\tcase interfaceType:\n\t\tif sname := typeName(n); sname != \"\" {\n\t\t\tif sym, _, found := sc.lookup(sname); found && sym.kind == typeSym {\n\t\t\t\tt = interfaceOf(sym.typ, sym.typ.field, sym.typ.constraint, sym.typ.ulconstraint, withNode(n), withScope(sc))\n\t\t\t}\n\t\t}\n\t\tvar incomplete bool\n\t\tfields := []structField{}\n\t\tconstraint := []*itype{}\n\t\tulconstraint := []*itype{}\n\t\tfor _, c := range n.child[0].child {\n\t\t\tc0 := c.child[0]\n\t\t\tif len(c.child) == 1 {\n\t\t\t\tif c0.ident == \"error\" {\n\t\t\t\t\t// Unwrap error interface inplace rather than embedding it, because\n\t\t\t\t\t// \"error\" is lower case which may cause problems with reflect for method lookup.\n\t\t\t\t\ttyp := errorMethodType(sc)\n\t\t\t\t\tfields = append(fields, structField{name: \"Error\", typ: typ})\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\ttyp, err := nodeType2(interp, sc, c0, seen)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\tincomplete = incomplete || typ.incomplete\n\t\t\t\tif typ.cat == constraintT {\n\t\t\t\t\tconstraint = append(constraint, typ.constraint...)\n\t\t\t\t\tulconstraint = append(ulconstraint, typ.ulconstraint...)\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tfields = append(fields, structField{name: fieldName(c0), embed: true, typ: typ})\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\ttyp, err := nodeType2(interp, sc, c.child[1], seen)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tfields = append(fields, structField{name: c0.ident, typ: typ})\n\t\t\tincomplete = incomplete || typ.incomplete\n\t\t}\n\t\tt = interfaceOf(t, fields, constraint, ulconstraint, withNode(n), withScope(sc))\n\t\tt.incomplete = incomplete\n\n\tcase landExpr, lorExpr:\n\t\tt = sc.getType(\"bool\")\n\n\tcase mapType:\n\t\tkey, err := nodeType2(interp, sc, n.child[0], seen)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tval, err := nodeType2(interp, sc, n.child[1], seen)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tt = mapOf(key, val, withNode(n), withScope(sc))\n\t\tt.incomplete = key.incomplete || val.incomplete\n\n\tcase parenExpr:\n\t\tt, err = nodeType2(interp, sc, n.child[0], seen)\n\n\tcase selectorExpr:\n\t\t// Resolve the left part of selector, then lookup the right part on it\n\t\tvar lt *itype\n\n\t\t// Lookup the package symbol first if we are in a field expression as\n\t\t// a previous parameter has the same name as the package, we need to\n\t\t// prioritize the package type.\n\t\tif n.anc.kind == fieldExpr {\n\t\t\tlt = findPackageType(interp, sc, n.child[0])\n\t\t}\n\t\tif lt == nil {\n\t\t\t// No package was found or we are not in a field expression, we are looking for a variable.\n\t\t\tif lt, err = nodeType2(interp, sc, n.child[0], seen); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t}\n\n\t\tif lt.incomplete {\n\t\t\tbreak\n\t\t}\n\t\tname := n.child[1].ident\n\t\tswitch lt.cat {\n\t\tcase binPkgT:\n\t\t\tpkg := interp.binPkg[lt.path]\n\t\t\tif v, ok := pkg[name]; ok {\n\t\t\t\trtype := v.Type()\n\t\t\t\tif isBinType(v) {\n\t\t\t\t\t// A bin type is encoded as a pointer on a typed nil value.\n\t\t\t\t\trtype = rtype.Elem()\n\t\t\t\t}\n\t\t\t\tt = valueTOf(rtype, withNode(n), withScope(sc))\n\t\t\t\tbreak\n\t\t\t}\n\t\t\t// Continue search in source package, as it may exist if package contains generics.\n\t\t\tfallthrough\n\t\tcase srcPkgT:\n\t\t\tif pkg, ok := interp.srcPkg[lt.path]; ok {\n\t\t\t\tif s, ok := pkg[name]; ok {\n\t\t\t\t\tt = s.typ\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\terr = n.cfgErrorf(\"undefined selector %s.%s\", lt.path, name)\n\t\tdefault:\n\t\t\tif m, _ := lt.lookupMethod(name); m != nil {\n\t\t\t\tt, err = nodeType2(interp, sc, m.child[2], seen)\n\t\t\t} else if bm, _, _, ok := lt.lookupBinMethod(name); ok {\n\t\t\t\tt = valueTOf(bm.Type, isBinMethod(), withRecv(lt), withScope(sc))\n\t\t\t} else if ti := lt.lookupField(name); len(ti) > 0 {\n\t\t\t\tt = lt.fieldSeq(ti)\n\t\t\t} else if bs, _, ok := lt.lookupBinField(name); ok {\n\t\t\t\tt = valueTOf(bs.Type, withScope(sc))\n\t\t\t} else {\n\t\t\t\terr = lt.node.cfgErrorf(\"undefined selector %s\", name)\n\t\t\t}\n\t\t}\n\n\tcase sliceExpr:\n\t\tt, err = nodeType2(interp, sc, n.child[0], seen)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t\tif t.cat == valueT {\n\t\t\tswitch t.rtype.Kind() {\n\t\t\tcase reflect.Array, reflect.Ptr:\n\t\t\t\tt = valueTOf(reflect.SliceOf(t.rtype.Elem()), withScope(sc))\n\t\t\t}\n\t\t\tbreak\n\t\t}\n\t\tif t.cat == ptrT {\n\t\t\tt = t.val\n\t\t}\n\t\tif t.cat == arrayT {\n\t\t\tincomplete := t.incomplete\n\t\t\tt = sliceOf(t.val, withNode(n), withScope(sc))\n\t\t\tt.incomplete = incomplete\n\t\t}\n\n\tcase structType:\n\t\tvar sym *symbol\n\t\tvar found bool\n\t\tsname := structName(n)\n\t\tif sname != \"\" {\n\t\t\tsym, _, found = sc.lookup(sname)\n\t\t\tif found && sym.kind == typeSym && sym.typ != nil {\n\t\t\t\tt = structOf(sym.typ, sym.typ.field, withNode(n), withScope(sc))\n\t\t\t} else {\n\t\t\t\tt = structOf(nil, nil, withNode(n), withScope(sc))\n\t\t\t\tsc.sym[sname] = &symbol{index: -1, kind: typeSym, typ: t, node: n}\n\t\t\t}\n\t\t}\n\t\tvar incomplete bool\n\t\tfields := make([]structField, 0, len(n.child[0].child))\n\t\tfor _, c := range n.child[0].child {\n\t\t\tswitch {\n\t\t\tcase len(c.child) == 1:\n\t\t\t\ttyp, err := nodeType2(interp, sc, c.child[0], seen)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\tfields = append(fields, structField{name: fieldName(c.child[0]), embed: true, typ: typ})\n\t\t\t\tincomplete = incomplete || typ.incomplete\n\t\t\tcase len(c.child) == 2 && c.child[1].kind == basicLit:\n\t\t\t\ttag := vString(c.child[1].rval)\n\t\t\t\ttyp, err := nodeType2(interp, sc, c.child[0], seen)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\tfields = append(fields, structField{name: fieldName(c.child[0]), embed: true, typ: typ, tag: tag})\n\t\t\t\tincomplete = incomplete || typ.incomplete\n\t\t\tdefault:\n\t\t\t\tvar tag string\n\t\t\t\tl := len(c.child)\n\t\t\t\tif c.lastChild().kind == basicLit {\n\t\t\t\t\ttag = vString(c.lastChild().rval)\n\t\t\t\t\tl--\n\t\t\t\t}\n\t\t\t\ttyp, err := nodeType2(interp, sc, c.child[l-1], seen)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\tincomplete = incomplete || typ.incomplete\n\t\t\t\tfor _, d := range c.child[:l-1] {\n\t\t\t\t\tfields = append(fields, structField{name: d.ident, typ: typ, tag: tag})\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tt = structOf(t, fields, withNode(n), withScope(sc))\n\t\tt.incomplete = incomplete\n\t\tif sname != \"\" {\n\t\t\tif sc.sym[sname] == nil {\n\t\t\t\tsc.sym[sname] = &symbol{index: -1, kind: typeSym, node: n}\n\t\t\t}\n\t\t\tsc.sym[sname].typ = t\n\t\t}\n\n\tcase typeAssertExpr:\n\t\tt, err = nodeType2(interp, sc, n.child[1], seen)\n\n\tdefault:\n\t\terr = n.cfgErrorf(\"type definition not implemented: %s\", n.kind)\n\t}\n\n\tif err == nil && t != nil && t.cat == nilT && !t.incomplete {\n\t\terr = n.cfgErrorf(\"use of untyped nil %s\", t.name)\n\t}\n\n\t// The existing symbol data needs to be recovered, but not in the\n\t// case where we are aliasing another type.\n\tif n.anc.kind == typeSpec && n.kind != selectorExpr && n.kind != identExpr {\n\t\tname := n.anc.child[0].ident\n\t\tif sym := sc.sym[name]; sym != nil {\n\t\t\tt.path = sc.pkgName\n\t\t\tt.name = name\n\t\t}\n\t}\n\n\tswitch {\n\tcase t == nil:\n\tcase t.name != \"\" && t.path != \"\":\n\t\tt.str = t.path + \".\" + t.name\n\tcase t.cat == nilT:\n\t\tt.str = \"nil\"\n\t}\n\n\treturn t, err\n}\n\nfunc genType(interp *Interpreter, sc *scope, name string, lt *itype, types []*itype, seen []*node) (t *itype, err error) {\n\t// A generic type is being instantiated. Generate it.\n\tg, _, err := genAST(sc, lt.node.anc, types)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tt, err = nodeType2(interp, sc, g.lastChild(), seen)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tlt.instance = append(lt.instance, t)\n\t// Add generated symbol in the scope of generic source and user.\n\tsc.sym[name] = &symbol{index: -1, kind: typeSym, typ: t, node: g}\n\tif lt.scope.sym[name] == nil {\n\t\tlt.scope.sym[name] = sc.sym[name]\n\t}\n\n\tfor _, nod := range lt.method {\n\t\tif err := genMethod(interp, sc, t, nod, types); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\treturn t, err\n}\n\nfunc genMethod(interp *Interpreter, sc *scope, t *itype, nod *node, types []*itype) error {\n\tgm, _, err := genAST(sc, nod, types)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif gm.typ, err = nodeType(interp, sc, gm.child[2]); err != nil {\n\t\treturn err\n\t}\n\tt.addMethod(gm)\n\n\t// If the receiver is a pointer to a generic type, generate also the pointer type.\n\tif rtn := gm.child[0].child[0].lastChild(); rtn != nil && rtn.kind == starExpr {\n\t\tpt := ptrOf(t, withNode(t.node), withScope(sc))\n\t\tpt.addMethod(gm)\n\t\trtn.typ = pt\n\t}\n\n\t// Compile the method AST in the scope of the generic type.\n\tscop := nod.typ.scope\n\tif _, err = interp.cfg(gm, scop, scop.pkgID, scop.pkgName); err != nil {\n\t\treturn err\n\t}\n\n\t// Generate closures for function body.\n\treturn genRun(gm)\n}\n\n// findPackageType searches the top level scope for a package type.\nfunc findPackageType(interp *Interpreter, sc *scope, n *node) *itype {\n\t// Find the root scope, the package symbols will exist there.\n\tfor sc.level != 0 {\n\t\tsc = sc.anc\n\t}\n\n\tbaseName := path.Base(interp.fset.Position(n.pos).Filename)\n\tsym, _, found := sc.lookup(path.Join(n.ident, baseName))\n\tif !found || sym.typ == nil && sym.typ.cat != srcPkgT && sym.typ.cat != binPkgT {\n\t\treturn nil\n\t}\n\treturn sym.typ\n}\n\nfunc isBuiltinCall(n *node, sc *scope) bool {\n\tif n.kind != callExpr {\n\t\treturn false\n\t}\n\ts := n.child[0].sym\n\tif s == nil {\n\t\tif sym, _, found := sc.lookup(n.child[0].ident); found {\n\t\t\ts = sym\n\t\t}\n\t}\n\treturn s != nil && s.kind == bltnSym\n}\n\n// struct name returns the name of a struct type.\nfunc typeName(n *node) string {\n\tif n.anc.kind == typeSpec && len(n.anc.child) == 2 {\n\t\treturn n.anc.child[0].ident\n\t}\n\treturn \"\"\n}\n\nfunc structName(n *node) string {\n\tif n.anc.kind == typeSpec {\n\t\treturn n.anc.child[0].ident\n\t}\n\treturn \"\"\n}\n\n// fieldName returns an implicit struct field name according to node kind.\nfunc fieldName(n *node) string {\n\tswitch n.kind {\n\tcase selectorExpr:\n\t\treturn fieldName(n.child[1])\n\tcase starExpr:\n\t\treturn fieldName(n.child[0])\n\tcase indexExpr:\n\t\treturn fieldName(n.child[0])\n\tcase identExpr:\n\t\treturn n.ident\n\tdefault:\n\t\treturn \"\"\n\t}\n}\n\nvar zeroValues [maxT]reflect.Value\n\nfunc init() {\n\tzeroValues[boolT] = reflect.ValueOf(false)\n\tzeroValues[complex64T] = reflect.ValueOf(complex64(0))\n\tzeroValues[complex128T] = reflect.ValueOf(complex128(0))\n\tzeroValues[errorT] = reflect.ValueOf(new(error)).Elem()\n\tzeroValues[float32T] = reflect.ValueOf(float32(0))\n\tzeroValues[float64T] = reflect.ValueOf(float64(0))\n\tzeroValues[intT] = reflect.ValueOf(int(0))\n\tzeroValues[int8T] = reflect.ValueOf(int8(0))\n\tzeroValues[int16T] = reflect.ValueOf(int16(0))\n\tzeroValues[int32T] = reflect.ValueOf(int32(0))\n\tzeroValues[int64T] = reflect.ValueOf(int64(0))\n\tzeroValues[stringT] = reflect.ValueOf(\"\")\n\tzeroValues[uintT] = reflect.ValueOf(uint(0))\n\tzeroValues[uint8T] = reflect.ValueOf(uint8(0))\n\tzeroValues[uint16T] = reflect.ValueOf(uint16(0))\n\tzeroValues[uint32T] = reflect.ValueOf(uint32(0))\n\tzeroValues[uint64T] = reflect.ValueOf(uint64(0))\n\tzeroValues[uintptrT] = reflect.ValueOf(uintptr(0))\n}\n\n// Finalize returns a type pointer and error. It reparses a type from the\n// partial AST if necessary (after missing dependecy data is available).\n// If error is nil, the type is guarranteed to be completely defined and\n// usable for CFG.\nfunc (t *itype) finalize() (*itype, error) {\n\tvar err error\n\tif t.incomplete {\n\t\tsym, _, found := t.scope.lookup(t.name)\n\t\tif found && !sym.typ.incomplete {\n\t\t\tsym.typ.method = append(sym.typ.method, t.method...)\n\t\t\tt.method = sym.typ.method\n\t\t\tt.incomplete = false\n\t\t\treturn sym.typ, nil\n\t\t}\n\t\tm := t.method\n\t\tif t, err = nodeType(t.node.interp, t.scope, t.node); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tif t.incomplete {\n\t\t\treturn nil, t.node.cfgErrorf(\"incomplete type %s\", t.name)\n\t\t}\n\t\tt.method = m\n\t\tt.node.typ = t\n\t\tif sym != nil {\n\t\t\tsym.typ = t\n\t\t}\n\t}\n\treturn t, err\n}\n\nfunc (t *itype) addMethod(n *node) {\n\tfor _, m := range t.method {\n\t\tif m == n {\n\t\t\treturn\n\t\t}\n\t}\n\tt.method = append(t.method, n)\n}\n\nfunc (t *itype) numIn() int {\n\tswitch t.cat {\n\tcase funcT:\n\t\treturn len(t.arg)\n\tcase valueT:\n\t\tif t.rtype.Kind() != reflect.Func {\n\t\t\treturn 0\n\t\t}\n\t\tin := t.rtype.NumIn()\n\t\tif t.recv != nil {\n\t\t\tin--\n\t\t}\n\t\treturn in\n\t}\n\treturn 0\n}\n\nfunc (t *itype) in(i int) *itype {\n\tswitch t.cat {\n\tcase funcT:\n\t\treturn t.arg[i]\n\tcase valueT:\n\t\tif t.rtype.Kind() == reflect.Func {\n\t\t\tif t.recv != nil && !isInterface(t.recv) {\n\t\t\t\ti++\n\t\t\t}\n\t\t\tif t.rtype.IsVariadic() && i == t.rtype.NumIn()-1 {\n\t\t\t\tval := valueTOf(t.rtype.In(i).Elem())\n\t\t\t\treturn &itype{cat: variadicT, val: val, str: \"...\" + val.str}\n\t\t\t}\n\t\t\treturn valueTOf(t.rtype.In(i))\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc (t *itype) numOut() int {\n\tswitch t.cat {\n\tcase funcT:\n\t\treturn len(t.ret)\n\tcase valueT:\n\t\tif t.rtype.Kind() == reflect.Func {\n\t\t\treturn t.rtype.NumOut()\n\t\t}\n\tcase builtinT:\n\t\tswitch t.name {\n\t\tcase \"append\", \"cap\", \"complex\", \"copy\", \"imag\", \"len\", \"make\", \"new\", \"real\", \"recover\", \"unsafe.Alignof\", \"unsafe.Offsetof\", \"unsafe.Sizeof\":\n\t\t\treturn 1\n\t\t}\n\t}\n\treturn 0\n}\n\nfunc (t *itype) out(i int) *itype {\n\tswitch t.cat {\n\tcase funcT:\n\t\treturn t.ret[i]\n\tcase valueT:\n\t\tif t.rtype.Kind() == reflect.Func {\n\t\t\treturn valueTOf(t.rtype.Out(i))\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc (t *itype) concrete() *itype {\n\tif isInterface(t) && t.val != nil {\n\t\treturn t.val.concrete()\n\t}\n\treturn t\n}\n\nfunc (t *itype) underlying() *itype {\n\tif t.cat == linkedT {\n\t\treturn t.val.underlying()\n\t}\n\treturn t\n}\n\n// typeDefined returns true if type t1 is defined from type t2 or t2 from t1.\nfunc typeDefined(t1, t2 *itype) bool {\n\tif t1.cat == linkedT && t1.val == t2 {\n\t\treturn true\n\t}\n\tif t2.cat == linkedT && t2.val == t1 {\n\t\treturn true\n\t}\n\treturn false\n}\n\n// isVariadic returns true if the function type is variadic.\n// If the type is not a function or is not variadic, it will\n// return false.\nfunc (t *itype) isVariadic() bool {\n\tswitch t.cat {\n\tcase funcT:\n\t\treturn len(t.arg) > 0 && t.arg[len(t.arg)-1].cat == variadicT\n\tcase valueT:\n\t\tif t.rtype.Kind() == reflect.Func {\n\t\t\treturn t.rtype.IsVariadic()\n\t\t}\n\t}\n\treturn false\n}\n\n// isComplete returns true if type definition is complete.\nfunc (t *itype) isComplete() bool { return isComplete(t, map[string]bool{}) }\n\nfunc isComplete(t *itype, visited map[string]bool) bool {\n\tif t.incomplete {\n\t\treturn false\n\t}\n\tname := t.path + \"/\" + t.name\n\tif visited[name] {\n\t\treturn true\n\t}\n\tif t.name != \"\" {\n\t\tvisited[name] = true\n\t}\n\tswitch t.cat {\n\tcase linkedT:\n\t\tif t.val != nil && t.val.cat != nilT {\n\t\t\t// A type aliased to a partially defined type is considered complete, to allow recursivity.\n\t\t\treturn true\n\t\t}\n\t\tfallthrough\n\tcase arrayT, chanT, chanRecvT, chanSendT, ptrT, sliceT, variadicT:\n\t\treturn isComplete(t.val, visited)\n\tcase funcT:\n\t\tcomplete := true\n\t\tfor _, a := range t.arg {\n\t\t\tcomplete = complete && isComplete(a, visited)\n\t\t}\n\t\tfor _, a := range t.ret {\n\t\t\tcomplete = complete && isComplete(a, visited)\n\t\t}\n\t\treturn complete\n\tcase interfaceT, structT:\n\t\tcomplete := true\n\t\tfor _, f := range t.field {\n\t\t\t// Field implicit type names must be marked as visited, to break false circles.\n\t\t\tvisited[f.typ.path+\"/\"+f.typ.name] = true\n\t\t\tcomplete = complete && isComplete(f.typ, visited)\n\t\t}\n\t\treturn complete\n\tcase mapT:\n\t\treturn isComplete(t.key, visited) && isComplete(t.val, visited)\n\tcase nilT:\n\t\treturn false\n\t}\n\treturn true\n}\n\n// comparable returns true if the type is comparable.\nfunc (t *itype) comparable() bool {\n\ttyp := t.TypeOf()\n\treturn t.cat == nilT || typ != nil && typ.Comparable()\n}\n\nfunc (t *itype) assignableTo(o *itype) bool {\n\tif t.equals(o) {\n\t\treturn true\n\t}\n\n\tif t.cat == linkedT && o.cat == linkedT && (t.underlying().id() != o.underlying().id() || !typeDefined(t, o)) {\n\t\treturn false\n\t}\n\n\tif t.isNil() && o.hasNil() || o.isNil() && t.hasNil() {\n\t\treturn true\n\t}\n\n\tif t.TypeOf().AssignableTo(o.TypeOf()) {\n\t\treturn true\n\t}\n\n\tif isInterface(o) && t.implements(o) {\n\t\treturn true\n\t}\n\n\tif t.cat == sliceT && o.cat == sliceT {\n\t\treturn t.val.assignableTo(o.val)\n\t}\n\n\tif t.isBinMethod && isFunc(o) {\n\t\t// TODO (marc): check that t without receiver as first parameter is equivalent to o.\n\t\treturn true\n\t}\n\n\tif t.untyped && isNumber(t.TypeOf()) && isNumber(o.TypeOf()) {\n\t\t// Assignability depends on constant numeric value (overflow check), to be tested elsewhere.\n\t\treturn true\n\t}\n\n\tn := t.node\n\tif n == nil || !n.rval.IsValid() {\n\t\treturn false\n\t}\n\tcon, ok := n.rval.Interface().(constant.Value)\n\tif !ok {\n\t\treturn false\n\t}\n\tif con == nil || !isConstType(o) {\n\t\treturn false\n\t}\n\treturn representableConst(con, o.TypeOf())\n}\n\n// convertibleTo returns true if t is convertible to o.\nfunc (t *itype) convertibleTo(o *itype) bool {\n\tif t.assignableTo(o) {\n\t\treturn true\n\t}\n\n\t// unsafe checks\n\ttt, ot := t.TypeOf(), o.TypeOf()\n\tif (tt.Kind() == reflect.Ptr || tt.Kind() == reflect.Uintptr) && ot.Kind() == reflect.UnsafePointer {\n\t\treturn true\n\t}\n\tif tt.Kind() == reflect.UnsafePointer && (ot.Kind() == reflect.Ptr || ot.Kind() == reflect.Uintptr) {\n\t\treturn true\n\t}\n\n\treturn t.TypeOf().ConvertibleTo(o.TypeOf())\n}\n\n// ordered returns true if the type is ordered.\nfunc (t *itype) ordered() bool {\n\ttyp := t.TypeOf()\n\treturn isInt(typ) || isFloat(typ) || isString(typ)\n}\n\n// equals returns true if the given type is identical to the receiver one.\nfunc (t *itype) equals(o *itype) bool {\n\tswitch ti, oi := isInterface(t), isInterface(o); {\n\tcase ti && oi:\n\t\treturn t.methods().equals(o.methods())\n\tcase ti && !oi:\n\t\treturn o.methods().contains(t.methods())\n\tcase oi && !ti:\n\t\treturn t.methods().contains(o.methods())\n\tdefault:\n\t\treturn t.id() == o.id()\n\t}\n}\n\n// matchDefault returns true if the receiver default type is the same as the given one.\nfunc (t *itype) matchDefault(o *itype) bool {\n\treturn t.untyped && t.id() == \"untyped \"+o.id()\n}\n\n// MethodSet defines the set of methods signatures as strings, indexed per method name.\ntype methodSet map[string]string\n\n// Contains returns true if the method set m contains the method set n.\nfunc (m methodSet) contains(n methodSet) bool {\n\tfor k := range n {\n\t\t// Only check the presence of method, not its complete signature,\n\t\t// as the receiver may be part of the arguments, which makes a\n\t\t// robust check complex.\n\t\tif _, ok := m[k]; !ok {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\n// Equal returns true if the method set m is equal to the method set n.\nfunc (m methodSet) equals(n methodSet) bool {\n\treturn m.contains(n) && n.contains(m)\n}\n\n// Methods returns a map of method type strings, indexed by method names.\nfunc (t *itype) methods() methodSet {\n\tseen := map[*itype]bool{}\n\tvar getMethods func(typ *itype) methodSet\n\n\tgetMethods = func(typ *itype) methodSet {\n\t\tres := make(methodSet)\n\n\t\tif seen[typ] {\n\t\t\t// Stop the recursion, we have seen this type.\n\t\t\treturn res\n\t\t}\n\t\tseen[typ] = true\n\n\t\tswitch typ.cat {\n\t\tcase linkedT:\n\t\t\tfor k, v := range getMethods(typ.val) {\n\t\t\t\tres[k] = v\n\t\t\t}\n\t\tcase interfaceT:\n\t\t\t// Get methods from recursive analysis of interface fields.\n\t\t\tfor _, f := range typ.field {\n\t\t\t\tif f.typ.cat == funcT {\n\t\t\t\t\tres[f.name] = f.typ.TypeOf().String()\n\t\t\t\t} else {\n\t\t\t\t\tfor k, v := range getMethods(f.typ) {\n\t\t\t\t\t\tres[k] = v\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\tcase valueT, errorT:\n\t\t\t// Get method from corresponding reflect.Type.\n\t\t\tfor i := typ.TypeOf().NumMethod() - 1; i >= 0; i-- {\n\t\t\t\tm := typ.rtype.Method(i)\n\t\t\t\tres[m.Name] = m.Type.String()\n\t\t\t}\n\t\tcase ptrT:\n\t\t\tif typ.val.cat == valueT {\n\t\t\t\t// Ptr receiver methods need to be found with the ptr type.\n\t\t\t\ttyp.TypeOf() // Ensure the rtype exists.\n\t\t\t\tfor i := typ.rtype.NumMethod() - 1; i >= 0; i-- {\n\t\t\t\t\tm := typ.rtype.Method(i)\n\t\t\t\t\tres[m.Name] = m.Type.String()\n\t\t\t\t}\n\t\t\t}\n\t\t\tfor k, v := range getMethods(typ.val) {\n\t\t\t\tres[k] = v\n\t\t\t}\n\t\tcase structT:\n\t\t\tfor _, f := range typ.field {\n\t\t\t\tif !f.embed {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tfor k, v := range getMethods(f.typ) {\n\t\t\t\t\tres[k] = v\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t// Get all methods defined on this type.\n\t\tfor _, m := range typ.method {\n\t\t\tres[m.ident] = m.typ.TypeOf().String()\n\t\t}\n\t\treturn res\n\t}\n\n\treturn getMethods(t)\n}\n\n// id returns a unique type identificator string.\nfunc (t *itype) id() (res string) {\n\t// Prefer the wrapped type string over the rtype string.\n\tif t.cat == valueT && t.val != nil {\n\t\treturn t.val.str\n\t}\n\treturn t.str\n}\n\n// fixPossibleConstType returns the input type if it not a constant value,\n// otherwise, it returns the default Go type corresponding to the\n// constant.Value.\nfunc fixPossibleConstType(t reflect.Type) (r reflect.Type) {\n\tcv, ok := reflect.New(t).Elem().Interface().(constant.Value)\n\tif !ok {\n\t\treturn t\n\t}\n\tswitch cv.Kind() {\n\tcase constant.Bool:\n\t\tr = reflect.TypeOf(true)\n\tcase constant.Int:\n\t\tr = reflect.TypeOf(0)\n\tcase constant.String:\n\t\tr = reflect.TypeOf(\"\")\n\tcase constant.Float:\n\t\tr = reflect.TypeOf(float64(0))\n\tcase constant.Complex:\n\t\tr = reflect.TypeOf(complex128(0))\n\t}\n\treturn r\n}\n\n// zero instantiates and return a zero value object for the given type during execution.\nfunc (t *itype) zero() (v reflect.Value, err error) {\n\tif t, err = t.finalize(); err != nil {\n\t\treturn v, err\n\t}\n\tswitch t.cat {\n\tcase linkedT:\n\t\tv, err = t.val.zero()\n\n\tcase arrayT, ptrT, structT, sliceT:\n\t\tv = reflect.New(t.frameType()).Elem()\n\n\tcase valueT:\n\t\tv = reflect.New(t.rtype).Elem()\n\n\tdefault:\n\t\tv = zeroValues[t.cat]\n\t}\n\treturn v, err\n}\n\n// fieldIndex returns the field index from name in a struct, or -1 if not found.\nfunc (t *itype) fieldIndex(name string) int {\n\tswitch t.cat {\n\tcase linkedT, ptrT:\n\t\treturn t.val.fieldIndex(name)\n\t}\n\tfor i, field := range t.field {\n\t\tif name == field.name {\n\t\t\treturn i\n\t\t}\n\t}\n\treturn -1\n}\n\n// fieldSeq returns the field type from the list of field indexes.\nfunc (t *itype) fieldSeq(seq []int) *itype {\n\tft := t\n\tfor _, i := range seq {\n\t\tft = baseType(ft).field[i].typ\n\t}\n\treturn ft\n}\n\n// lookupField returns a list of indices, i.e. a path to access a field in a struct object.\nfunc (t *itype) lookupField(name string) []int {\n\tseen := map[*itype]bool{}\n\tvar lookup func(*itype) []int\n\ttias := isStruct(t)\n\n\tlookup = func(typ *itype) []int {\n\t\tif seen[typ] {\n\t\t\treturn nil\n\t\t}\n\t\tseen[typ] = true\n\n\t\tswitch typ.cat {\n\t\tcase linkedT, ptrT:\n\t\t\treturn lookup(typ.val)\n\t\t}\n\t\tif fi := typ.fieldIndex(name); fi >= 0 {\n\t\t\treturn []int{fi}\n\t\t}\n\n\t\tfor i, f := range typ.field {\n\t\t\tswitch f.typ.cat {\n\t\t\tcase ptrT, structT, interfaceT, linkedT:\n\t\t\t\tif tias != isStruct(f.typ) {\n\t\t\t\t\t// Interface fields are not valid embedded struct fields.\n\t\t\t\t\t// Struct fields are not valid interface fields.\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tif index2 := lookup(f.typ); len(index2) > 0 {\n\t\t\t\t\treturn append([]int{i}, index2...)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn nil\n\t}\n\n\treturn lookup(t)\n}\n\n// lookupBinField returns a structfield and a path to access an embedded binary field in a struct object.\nfunc (t *itype) lookupBinField(name string) (s reflect.StructField, index []int, ok bool) {\n\tif t.cat == ptrT {\n\t\treturn t.val.lookupBinField(name)\n\t}\n\tif !isStruct(t) {\n\t\treturn\n\t}\n\trt := t.TypeOf()\n\tfor t.cat == valueT && rt.Kind() == reflect.Ptr {\n\t\trt = rt.Elem()\n\t}\n\tif rt.Kind() != reflect.Struct {\n\t\treturn\n\t}\n\ts, ok = rt.FieldByName(name)\n\tif !ok {\n\t\tfor i, f := range t.field {\n\t\t\tif f.embed {\n\t\t\t\tif s2, index2, ok2 := f.typ.lookupBinField(name); ok2 {\n\t\t\t\t\tindex = append([]int{i}, index2...)\n\t\t\t\t\treturn s2, index, ok2\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\treturn s, index, ok\n}\n\n// MethodCallType returns a method function type without the receiver defined.\n// The input type must be a method function type with the receiver as the first input argument.\nfunc (t *itype) methodCallType() reflect.Type {\n\tit := []reflect.Type{}\n\tni := t.rtype.NumIn()\n\tfor i := 1; i < ni; i++ {\n\t\tit = append(it, t.rtype.In(i))\n\t}\n\tot := []reflect.Type{}\n\tno := t.rtype.NumOut()\n\tfor i := 0; i < no; i++ {\n\t\tot = append(ot, t.rtype.Out(i))\n\t}\n\treturn reflect.FuncOf(it, ot, t.rtype.IsVariadic())\n}\n\nfunc (t *itype) resolveAlias() *itype {\n\tfor t.cat == linkedT {\n\t\tt = t.val\n\t}\n\treturn t\n}\n\n// GetMethod returns a pointer to the method definition.\nfunc (t *itype) getMethod(name string) *node {\n\tfor _, m := range t.method {\n\t\tif name == m.ident {\n\t\t\treturn m\n\t\t}\n\t}\n\treturn nil\n}\n\n// LookupMethod returns a pointer to method definition associated to type t\n// and the list of indices to access the right struct field, in case of an embedded method.\nfunc (t *itype) lookupMethod(name string) (*node, []int) {\n\treturn t.lookupMethod2(name, nil)\n}\n\nfunc (t *itype) lookupMethod2(name string, seen map[*itype]bool) (*node, []int) {\n\tif seen == nil {\n\t\tseen = map[*itype]bool{}\n\t}\n\tif seen[t] {\n\t\treturn nil, nil\n\t}\n\tseen[t] = true\n\tif t.cat == ptrT {\n\t\treturn t.val.lookupMethod2(name, seen)\n\t}\n\tvar index []int\n\tm := t.getMethod(name)\n\tif m == nil {\n\t\tfor i, f := range t.field {\n\t\t\tif f.embed {\n\t\t\t\tif n, index2 := f.typ.lookupMethod2(name, seen); n != nil {\n\t\t\t\t\tindex = append([]int{i}, index2...)\n\t\t\t\t\treturn n, index\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif t.cat == linkedT || isInterfaceSrc(t) && t.val != nil {\n\t\t\treturn t.val.lookupMethod2(name, seen)\n\t\t}\n\t}\n\treturn m, index\n}\n\n// interfaceMethod returns type of method matching an interface method name (not as a concrete method).\nfunc (t *itype) interfaceMethod(name string) *itype {\n\treturn t.interfaceMethod2(name, nil)\n}\n\nfunc (t *itype) interfaceMethod2(name string, seen map[*itype]bool) *itype {\n\tif seen == nil {\n\t\tseen = map[*itype]bool{}\n\t}\n\tif seen[t] {\n\t\treturn nil\n\t}\n\tseen[t] = true\n\tif t.cat == ptrT {\n\t\treturn t.val.interfaceMethod2(name, seen)\n\t}\n\tfor _, f := range t.field {\n\t\tif f.name == name && isInterface(t) {\n\t\t\treturn f.typ\n\t\t}\n\t\tif !f.embed {\n\t\t\tcontinue\n\t\t}\n\t\tif typ := f.typ.interfaceMethod2(name, seen); typ != nil {\n\t\t\treturn typ\n\t\t}\n\t}\n\tif t.cat == linkedT || isInterfaceSrc(t) && t.val != nil {\n\t\treturn t.val.interfaceMethod2(name, seen)\n\t}\n\treturn nil\n}\n\n// methodDepth returns a depth greater or equal to 0, or -1 if no match.\nfunc (t *itype) methodDepth(name string) int {\n\tif m, lint := t.lookupMethod(name); m != nil {\n\t\treturn len(lint)\n\t}\n\tif _, lint, _, ok := t.lookupBinMethod(name); ok {\n\t\treturn len(lint)\n\t}\n\treturn -1\n}\n\n// LookupBinMethod returns a method and a path to access a field in a struct object (the receiver).\nfunc (t *itype) lookupBinMethod(name string) (m reflect.Method, index []int, isPtr, ok bool) {\n\treturn t.lookupBinMethod2(name, nil)\n}\n\nfunc (t *itype) lookupBinMethod2(name string, seen map[*itype]bool) (m reflect.Method, index []int, isPtr, ok bool) {\n\tif seen == nil {\n\t\tseen = map[*itype]bool{}\n\t}\n\tif seen[t] {\n\t\treturn\n\t}\n\tseen[t] = true\n\tif t.cat == ptrT {\n\t\treturn t.val.lookupBinMethod2(name, seen)\n\t}\n\tfor i, f := range t.field {\n\t\tif f.embed {\n\t\t\tif m2, index2, isPtr2, ok2 := f.typ.lookupBinMethod2(name, seen); ok2 {\n\t\t\t\tindex = append([]int{i}, index2...)\n\t\t\t\treturn m2, index, isPtr2, ok2\n\t\t\t}\n\t\t}\n\t}\n\tm, ok = t.TypeOf().MethodByName(name)\n\tif !ok {\n\t\tm, ok = reflect.PtrTo(t.TypeOf()).MethodByName(name)\n\t\tisPtr = ok\n\t}\n\treturn m, index, isPtr, ok\n}\n\nfunc lookupFieldOrMethod(t *itype, name string) *itype {\n\tswitch {\n\tcase t.cat == valueT || t.cat == ptrT && t.val.cat == valueT:\n\t\tm, _, isPtr, ok := t.lookupBinMethod(name)\n\t\tif !ok {\n\t\t\treturn nil\n\t\t}\n\t\tvar recv *itype\n\t\tif t.rtype.Kind() != reflect.Interface {\n\t\t\trecv = t\n\t\t\tif isPtr && t.cat != ptrT && t.rtype.Kind() != reflect.Ptr {\n\t\t\t\trecv = ptrOf(t)\n\t\t\t}\n\t\t}\n\t\treturn valueTOf(m.Type, withRecv(recv))\n\tcase t.cat == interfaceT:\n\t\tseq := t.lookupField(name)\n\t\tif seq == nil {\n\t\t\treturn nil\n\t\t}\n\t\treturn t.fieldSeq(seq)\n\tdefault:\n\t\tn, _ := t.lookupMethod(name)\n\t\tif n == nil {\n\t\t\treturn nil\n\t\t}\n\t\treturn n.typ\n\t}\n}\n\nfunc exportName(s string) string {\n\tif canExport(s) {\n\t\treturn s\n\t}\n\treturn \"X\" + s\n}\n\nvar (\n\t// TODO(mpl): generators.\n\temptyInterfaceType = reflect.TypeOf((*interface{})(nil)).Elem()\n\tvalueInterfaceType = reflect.TypeOf((*valueInterface)(nil)).Elem()\n\tconstVal           = reflect.TypeOf((*constant.Value)(nil)).Elem()\n)\n\ntype refTypeContext struct {\n\tdefined map[string]*itype\n\n\t// refs keeps track of all the places (in the same type recursion) where the\n\t// type name (as key) is used as a field of another (or possibly the same) struct\n\t// type. Each of these fields will then live as an unsafe2.dummy type until the\n\t// whole recursion is fully resolved, and the type is fixed.\n\trefs map[string][]*itype\n\n\t// When we detect for the first time that we are in a recursive type (thanks to\n\t// defined), we keep track of the first occurrence of the type where the recursion\n\t// started, so we can restart the last step that fixes all the types from the same\n\t// \"top-level\" point.\n\trect       *itype\n\trebuilding bool\n\tslevel     int\n}\n\n// Clone creates a copy of the ref type context.\nfunc (c *refTypeContext) Clone() *refTypeContext {\n\treturn &refTypeContext{defined: c.defined, refs: c.refs, rebuilding: c.rebuilding}\n}\n\nfunc (c *refTypeContext) isComplete() bool {\n\tfor _, t := range c.defined {\n\t\tif t.rtype == nil {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nfunc (t *itype) fixDummy(typ reflect.Type) reflect.Type {\n\tif typ == unsafe2.DummyType {\n\t\treturn t.rtype\n\t}\n\tswitch typ.Kind() {\n\tcase reflect.Array:\n\t\treturn reflect.ArrayOf(typ.Len(), t.fixDummy(typ.Elem()))\n\tcase reflect.Chan:\n\t\treturn reflect.ChanOf(typ.ChanDir(), t.fixDummy(typ.Elem()))\n\tcase reflect.Func:\n\t\tin := make([]reflect.Type, typ.NumIn())\n\t\tfor i := range in {\n\t\t\tin[i] = t.fixDummy(typ.In(i))\n\t\t}\n\t\tout := make([]reflect.Type, typ.NumOut())\n\t\tfor i := range out {\n\t\t\tout[i] = t.fixDummy(typ.Out(i))\n\t\t}\n\t\treturn reflect.FuncOf(in, out, typ.IsVariadic())\n\tcase reflect.Map:\n\t\treturn reflect.MapOf(t.fixDummy(typ.Key()), t.fixDummy(typ.Elem()))\n\tcase reflect.Ptr:\n\t\treturn reflect.PtrTo(t.fixDummy(typ.Elem()))\n\tcase reflect.Slice:\n\t\treturn reflect.SliceOf(t.fixDummy(typ.Elem()))\n\tcase reflect.Struct:\n\t\tfields := make([]reflect.StructField, typ.NumField())\n\t\tfor i := range fields {\n\t\t\tfields[i] = typ.Field(i)\n\t\t\tfields[i].Type = t.fixDummy(fields[i].Type)\n\t\t}\n\t\treturn reflect.StructOf(fields)\n\t}\n\treturn typ\n}\n\n// RefType returns a reflect.Type representation from an interpreter type.\n// In simple cases, reflect types are directly mapped from the interpreter\n// counterpart.\n// For recursive named struct or interfaces, as reflect does not permit to\n// create a recursive named struct, a dummy type is set temporarily for each recursive\n// field. When done, the dummy type fields are updated with the original reflect type\n// pointer using unsafe. We thus obtain a usable recursive type definition, except\n// for string representation, as created reflect types are still unnamed.\nfunc (t *itype) refType(ctx *refTypeContext) reflect.Type {\n\tif ctx == nil {\n\t\tctx = &refTypeContext{\n\t\t\tdefined: map[string]*itype{},\n\t\t\trefs:    map[string][]*itype{},\n\t\t}\n\t}\n\tif t.incomplete || t.cat == nilT {\n\t\tvar err error\n\t\tif t, err = t.finalize(); err != nil {\n\t\t\tpanic(err)\n\t\t}\n\t}\n\tname := t.path + \"/\" + t.name\n\n\tif t.rtype != nil && !ctx.rebuilding {\n\t\treturn t.rtype\n\t}\n\tif dt := ctx.defined[name]; dt != nil {\n\t\t// We get here when we are a struct field, and our type name has already been\n\t\t// seen at least once in one of our englobing structs. i.e. there's at least one\n\t\t// level of type recursion.\n\t\tif dt.rtype != nil {\n\t\t\tt.rtype = dt.rtype\n\t\t\treturn dt.rtype\n\t\t}\n\n\t\t// The recursion has not been fully resolved yet.\n\t\t// To indicate that a rebuild is needed on the englobing struct,\n\t\t// return a dummy field type and create an empty entry.\n\t\tflds := ctx.refs[name]\n\t\tctx.rect = dt\n\n\t\t// We know we are used as a field by someone, but we don't know by who\n\t\t// at this point in the code, so we just mark it as an empty *itype for now.\n\t\t// We'll complete the *itype in the caller.\n\t\tctx.refs[name] = append(flds, (*itype)(nil))\n\t\treturn unsafe2.DummyType\n\t}\n\tif isGeneric(t) {\n\t\treturn reflect.TypeOf((*generic)(nil)).Elem()\n\t}\n\tswitch t.cat {\n\tcase linkedT:\n\t\tt.rtype = t.val.refType(ctx)\n\tcase arrayT:\n\t\tt.rtype = reflect.ArrayOf(t.length, t.val.refType(ctx))\n\tcase sliceT, variadicT:\n\t\tt.rtype = reflect.SliceOf(t.val.refType(ctx))\n\tcase chanT:\n\t\tt.rtype = reflect.ChanOf(reflect.BothDir, t.val.refType(ctx))\n\tcase chanRecvT:\n\t\tt.rtype = reflect.ChanOf(reflect.RecvDir, t.val.refType(ctx))\n\tcase chanSendT:\n\t\tt.rtype = reflect.ChanOf(reflect.SendDir, t.val.refType(ctx))\n\tcase errorT:\n\t\tt.rtype = reflect.TypeOf(new(error)).Elem()\n\tcase funcT:\n\t\tvariadic := false\n\t\tin := make([]reflect.Type, len(t.arg))\n\t\tout := make([]reflect.Type, len(t.ret))\n\t\tfor i, v := range t.arg {\n\t\t\tin[i] = v.refType(ctx)\n\t\t\tvariadic = v.cat == variadicT\n\t\t}\n\t\tfor i, v := range t.ret {\n\t\t\tout[i] = v.refType(ctx)\n\t\t}\n\t\tt.rtype = reflect.FuncOf(in, out, variadic)\n\tcase interfaceT:\n\t\tif len(t.field) == 0 {\n\t\t\t// empty interface, do not wrap it\n\t\t\tt.rtype = emptyInterfaceType\n\t\t\tbreak\n\t\t}\n\t\tt.rtype = valueInterfaceType\n\tcase mapT:\n\t\tt.rtype = reflect.MapOf(t.key.refType(ctx), t.val.refType(ctx))\n\tcase ptrT:\n\t\trt := t.val.refType(ctx)\n\t\tif rt == unsafe2.DummyType && ctx.slevel > 1 {\n\t\t\t// We have a pointer to a recursive struct which is not yet fully computed.\n\t\t\t// Return it but do not yet store it in rtype, so the complete version can\n\t\t\t// be stored in future.\n\t\t\treturn reflect.PtrTo(rt)\n\t\t}\n\t\tt.rtype = reflect.PtrTo(rt)\n\tcase structT:\n\t\tif t.name != \"\" {\n\t\t\tctx.defined[name] = t\n\t\t}\n\t\tctx.slevel++\n\t\tvar fields []reflect.StructField\n\t\tfor _, f := range t.field {\n\t\t\tfield := reflect.StructField{\n\t\t\t\tName: exportName(f.name),\n\t\t\t\tType: f.typ.refType(ctx),\n\t\t\t\tTag:  reflect.StructTag(f.tag),\n\t\t\t}\n\t\t\tif len(t.field) == 1 && f.embed {\n\t\t\t\t// Mark the field as embedded (anonymous) only if it is the\n\t\t\t\t// only one, to avoid a panic due to golang/go#15924 issue.\n\t\t\t\tfield.Anonymous = true\n\t\t\t}\n\t\t\tfields = append(fields, field)\n\t\t\t// Find any nil type refs that indicates a rebuild is needed on this field.\n\t\t\tfor _, flds := range ctx.refs {\n\t\t\t\tfor j, fld := range flds {\n\t\t\t\t\tif fld == nil {\n\t\t\t\t\t\tflds[j] = t\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tctx.slevel--\n\t\ttype fixStructField struct {\n\t\t\tname  string\n\t\t\tindex int\n\t\t}\n\t\tfieldFix := []fixStructField{} // Slice of field indices to fix for recursivity.\n\t\tt.rtype = reflect.StructOf(fields)\n\t\tif ctx.isComplete() {\n\t\t\tfor _, s := range ctx.defined {\n\t\t\t\tfor i := 0; i < s.rtype.NumField(); i++ {\n\t\t\t\t\tf := s.rtype.Field(i)\n\t\t\t\t\tif strings.HasSuffix(f.Type.String(), \"unsafe2.dummy\") {\n\t\t\t\t\t\tunsafe2.SetFieldType(s.rtype, i, ctx.rect.fixDummy(s.rtype.Field(i).Type))\n\t\t\t\t\t\tif name == s.path+\"/\"+s.name {\n\t\t\t\t\t\t\tfieldFix = append(fieldFix, fixStructField{s.name, i})\n\t\t\t\t\t\t}\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tif f.Type.Kind() == reflect.Func && strings.Contains(f.Type.String(), \"unsafe2.dummy\") {\n\t\t\t\t\t\tfieldFix = append(fieldFix, fixStructField{s.name, i})\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// The rtype has now been built, we can go back and rebuild\n\t\t// all the recursive types that relied on this type.\n\t\t// However, as we are keyed by type name, if two or more (recursive) fields at\n\t\t// the same depth level are of the same type, or a \"variation\" of the same type\n\t\t// (slice of, map of, etc), they \"mask\" each other, and only one\n\t\t// of them is in ctx.refs. That is why the code around here is a bit convoluted,\n\t\t// and we need both the loop above, around all the struct fields, and the loop\n\t\t// below, around the ctx.refs.\n\t\tfor _, f := range ctx.refs[name] {\n\t\t\tfor _, ff := range fieldFix {\n\t\t\t\tif ff.name == f.name {\n\t\t\t\t\tftyp := f.field[ff.index].typ.refType(&refTypeContext{defined: ctx.defined, rebuilding: true})\n\t\t\t\t\tunsafe2.SetFieldType(f.rtype, ff.index, ftyp)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\tdefault:\n\t\tif z, _ := t.zero(); z.IsValid() {\n\t\t\tt.rtype = z.Type()\n\t\t}\n\t}\n\treturn t.rtype\n}\n\n// TypeOf returns the reflection type of dynamic interpreter type t.\nfunc (t *itype) TypeOf() reflect.Type {\n\treturn t.refType(nil)\n}\n\nfunc (t *itype) frameType() (r reflect.Type) {\n\tvar err error\n\tif t, err = t.finalize(); err != nil {\n\t\tpanic(err)\n\t}\n\tswitch t.cat {\n\tcase linkedT:\n\t\tr = t.val.frameType()\n\tcase arrayT:\n\t\tr = reflect.ArrayOf(t.length, t.val.frameType())\n\tcase sliceT, variadicT:\n\t\tr = reflect.SliceOf(t.val.frameType())\n\tcase interfaceT:\n\t\tif len(t.field) == 0 {\n\t\t\t// empty interface, do not wrap it\n\t\t\tr = emptyInterfaceType\n\t\t\tbreak\n\t\t}\n\t\tr = valueInterfaceType\n\tcase mapT:\n\t\tr = reflect.MapOf(t.key.frameType(), t.val.frameType())\n\tcase ptrT:\n\t\tr = reflect.PtrTo(t.val.frameType())\n\tdefault:\n\t\tr = t.TypeOf()\n\t}\n\treturn r\n}\n\nfunc (t *itype) implements(it *itype) bool {\n\tif isBin(t) {\n\t\t// Note: in case of a valueInterfaceType, we\n\t\t// miss required data which will be available\n\t\t// later, so we optimistically return true to progress,\n\t\t// and additional checks will be hopefully performed at\n\t\t// runtime.\n\t\tif rt := it.TypeOf(); rt == valueInterfaceType {\n\t\t\treturn true\n\t\t}\n\t\treturn t.TypeOf().Implements(it.TypeOf())\n\t}\n\treturn t.methods().contains(it.methods())\n}\n\n// defaultType returns the default type of an untyped type.\nfunc (t *itype) defaultType(v reflect.Value, sc *scope) *itype {\n\tif !t.untyped {\n\t\treturn t\n\t}\n\n\ttyp := t\n\t// The default type can also be derived from a constant value.\n\tif v.IsValid() && v.Type().Implements(constVal) {\n\t\tswitch v.Interface().(constant.Value).Kind() {\n\t\tcase constant.String:\n\t\t\ttyp = sc.getType(\"string\")\n\t\tcase constant.Bool:\n\t\t\ttyp = sc.getType(\"bool\")\n\t\tcase constant.Int:\n\t\t\tswitch t.cat {\n\t\t\tcase int32T:\n\t\t\t\ttyp = sc.getType(\"int32\")\n\t\t\tdefault:\n\t\t\t\ttyp = sc.getType(\"int\")\n\t\t\t}\n\t\tcase constant.Float:\n\t\t\ttyp = sc.getType(\"float64\")\n\t\tcase constant.Complex:\n\t\t\ttyp = sc.getType(\"complex128\")\n\t\t}\n\t}\n\tif typ.untyped {\n\t\tswitch t.cat {\n\t\tcase stringT:\n\t\t\ttyp = sc.getType(\"string\")\n\t\tcase boolT:\n\t\t\ttyp = sc.getType(\"bool\")\n\t\tcase intT:\n\t\t\ttyp = sc.getType(\"int\")\n\t\tcase float64T:\n\t\t\ttyp = sc.getType(\"float64\")\n\t\tcase complex128T:\n\t\t\ttyp = sc.getType(\"complex128\")\n\t\tdefault:\n\t\t\t*typ = *t\n\t\t\ttyp.untyped = false\n\t\t}\n\t}\n\treturn typ\n}\n\nfunc (t *itype) isNil() bool { return t.cat == nilT }\n\nfunc (t *itype) hasNil() bool {\n\tswitch rt := t.TypeOf(); rt.Kind() {\n\tcase reflect.UnsafePointer:\n\t\treturn true\n\tcase reflect.Slice, reflect.Ptr, reflect.Func, reflect.Interface, reflect.Map, reflect.Chan:\n\t\treturn true\n\tcase reflect.Struct:\n\t\tif rt == valueInterfaceType {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\nfunc (t *itype) elem() *itype {\n\tif t.cat == valueT {\n\t\treturn valueTOf(t.rtype.Elem())\n\t}\n\treturn t.val\n}\n\nfunc hasElem(t reflect.Type) bool {\n\tswitch t.Kind() {\n\tcase reflect.Array, reflect.Chan, reflect.Map, reflect.Ptr, reflect.Slice:\n\t\treturn true\n\t}\n\treturn false\n}\n\nfunc constToInt(c constant.Value) int {\n\tif constant.BitLen(c) > 64 {\n\t\tpanic(fmt.Sprintf(\"constant %s overflows int64\", c.ExactString()))\n\t}\n\ti, _ := constant.Int64Val(c)\n\treturn int(i)\n}\n\nfunc constToString(v reflect.Value) string {\n\tc := v.Interface().(constant.Value)\n\treturn constant.StringVal(c)\n}\n\nfunc wrappedType(n *node) *itype {\n\tif n.typ.cat != valueT {\n\t\treturn nil\n\t}\n\treturn n.typ.val\n}\n\nfunc isShiftNode(n *node) bool {\n\tswitch n.action {\n\tcase aShl, aShr, aShlAssign, aShrAssign:\n\t\treturn true\n\t}\n\treturn false\n}\n\n// chanElement returns the channel element type.\nfunc chanElement(t *itype) *itype {\n\tswitch t.cat {\n\tcase linkedT:\n\t\treturn chanElement(t.val)\n\tcase chanT, chanSendT, chanRecvT:\n\t\treturn t.val\n\tcase valueT:\n\t\treturn valueTOf(t.rtype.Elem(), withNode(t.node), withScope(t.scope))\n\t}\n\treturn nil\n}\n\nfunc isBool(t *itype) bool { return t.TypeOf().Kind() == reflect.Bool }\nfunc isChan(t *itype) bool { return t.TypeOf().Kind() == reflect.Chan }\nfunc isFunc(t *itype) bool { return t.TypeOf().Kind() == reflect.Func }\nfunc isMap(t *itype) bool  { return t.TypeOf().Kind() == reflect.Map }\nfunc isPtr(t *itype) bool  { return t.TypeOf().Kind() == reflect.Ptr }\n\nfunc isEmptyInterface(t *itype) bool {\n\treturn t != nil && t.cat == interfaceT && len(t.field) == 0\n}\n\nfunc isGeneric(t *itype) bool {\n\treturn t.cat == funcT && t.node != nil && len(t.node.child) > 0 && len(t.node.child[0].child) > 0\n}\n\nfunc isNamedFuncSrc(t *itype) bool {\n\treturn isFuncSrc(t) && t.node.anc.kind == funcDecl\n}\n\nfunc isFuncSrc(t *itype) bool {\n\treturn t.cat == funcT || (t.cat == linkedT && isFuncSrc(t.val))\n}\n\nfunc isPtrSrc(t *itype) bool {\n\treturn t.cat == ptrT || (t.cat == linkedT && isPtrSrc(t.val))\n}\n\nfunc isSendChan(t *itype) bool {\n\trt := t.TypeOf()\n\treturn rt.Kind() == reflect.Chan && rt.ChanDir() == reflect.SendDir\n}\n\nfunc isArray(t *itype) bool {\n\tif t.cat == nilT {\n\t\treturn false\n\t}\n\tk := t.TypeOf().Kind()\n\treturn k == reflect.Array || k == reflect.Slice\n}\n\nfunc isInterfaceSrc(t *itype) bool {\n\treturn t.cat == interfaceT || (t.cat == linkedT && isInterfaceSrc(t.val))\n}\n\nfunc isInterfaceBin(t *itype) bool {\n\treturn t.cat == valueT && t.rtype.Kind() == reflect.Interface || t.cat == errorT\n}\n\nfunc isInterface(t *itype) bool {\n\treturn isInterfaceSrc(t) || t.TypeOf() == valueInterfaceType || t.TypeOf() != nil && t.TypeOf().Kind() == reflect.Interface\n}\n\nfunc isBin(t *itype) bool {\n\tswitch t.cat {\n\tcase valueT:\n\t\treturn true\n\tcase linkedT, ptrT:\n\t\treturn isBin(t.val)\n\tdefault:\n\t\treturn false\n\t}\n}\n\nfunc isStruct(t *itype) bool {\n\t// Test first for a struct category, because a recursive interpreter struct may be\n\t// represented by an interface{} at reflect level.\n\tswitch t.cat {\n\tcase structT:\n\t\treturn true\n\tcase linkedT, ptrT:\n\t\treturn isStruct(t.val)\n\tcase valueT:\n\t\tk := t.rtype.Kind()\n\t\treturn k == reflect.Struct || (k == reflect.Ptr && t.rtype.Elem().Kind() == reflect.Struct)\n\tdefault:\n\t\treturn false\n\t}\n}\n\nfunc isConstType(t *itype) bool {\n\trt := t.TypeOf()\n\treturn isBoolean(rt) || isString(rt) || isNumber(rt)\n}\n\nfunc isInt(t reflect.Type) bool {\n\tif t == nil {\n\t\treturn false\n\t}\n\tswitch t.Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64, reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\treturn true\n\t}\n\treturn false\n}\n\nfunc isUint(t reflect.Type) bool {\n\tif t == nil {\n\t\treturn false\n\t}\n\tswitch t.Kind() {\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\treturn true\n\t}\n\treturn false\n}\n\nfunc isComplex(t reflect.Type) bool {\n\tif t == nil {\n\t\treturn false\n\t}\n\tswitch t.Kind() {\n\tcase reflect.Complex64, reflect.Complex128:\n\t\treturn true\n\t}\n\treturn false\n}\n\nfunc isFloat(t reflect.Type) bool {\n\tif t == nil {\n\t\treturn false\n\t}\n\tswitch t.Kind() {\n\tcase reflect.Float32, reflect.Float64:\n\t\treturn true\n\t}\n\treturn false\n}\n\nfunc isByteArray(t reflect.Type) bool {\n\tif t == nil {\n\t\treturn false\n\t}\n\tk := t.Kind()\n\treturn (k == reflect.Array || k == reflect.Slice) && t.Elem().Kind() == reflect.Uint8\n}\n\nfunc isFloat32(t reflect.Type) bool { return t != nil && t.Kind() == reflect.Float32 }\nfunc isFloat64(t reflect.Type) bool { return t != nil && t.Kind() == reflect.Float64 }\nfunc isNumber(t reflect.Type) bool {\n\treturn isInt(t) || isFloat(t) || isComplex(t) || isConstantValue(t)\n}\nfunc isBoolean(t reflect.Type) bool       { return t != nil && t.Kind() == reflect.Bool }\nfunc isString(t reflect.Type) bool        { return t != nil && t.Kind() == reflect.String }\nfunc isConstantValue(t reflect.Type) bool { return t != nil && t.Implements(constVal) }\n"
  },
  {
    "path": "interp/typecheck.go",
    "content": "package interp\n\nimport (\n\t\"errors\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"math\"\n\t\"reflect\"\n)\n\ntype opPredicates map[action]func(reflect.Type) bool\n\n// typecheck handles all type checking following \"go/types\" logic.\n//\n// Due to variant type systems (itype vs reflect.Type) a single\n// type system should used, namely reflect.Type with exception\n// of the untyped flag on itype.\ntype typecheck struct {\n\tscope *scope\n}\n\n// op type checks an expression against a set of expression predicates.\nfunc (check typecheck) op(p opPredicates, a action, n, c *node, t reflect.Type) error {\n\tif pred := p[a]; pred != nil {\n\t\tif !pred(t) {\n\t\t\treturn n.cfgErrorf(\"invalid operation: operator %v not defined on %s\", n.action, c.typ.id())\n\t\t}\n\t} else {\n\t\treturn n.cfgErrorf(\"invalid operation: unknown operator %v\", n.action)\n\t}\n\treturn nil\n}\n\n// assignment checks if n can be assigned to typ.\n//\n// Use typ == nil to indicate assignment to an untyped blank identifier.\nfunc (check typecheck) assignment(n *node, typ *itype, context string) error {\n\tif n.typ == nil {\n\t\treturn n.cfgErrorf(\"invalid type in %s\", context)\n\t}\n\tif n.typ.untyped {\n\t\tif typ == nil || isInterface(typ) {\n\t\t\tif typ == nil && n.typ.cat == nilT {\n\t\t\t\treturn n.cfgErrorf(\"use of untyped nil in %s\", context)\n\t\t\t}\n\t\t\ttyp = n.typ.defaultType(n.rval, check.scope)\n\t\t}\n\t\tif err := check.convertUntyped(n, typ); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\tif typ == nil {\n\t\treturn nil\n\t}\n\n\tif !n.typ.assignableTo(typ) && typ.str != \"*unsafe2.dummy\" {\n\t\tif context == \"\" {\n\t\t\treturn n.cfgErrorf(\"cannot use type %s as type %s\", n.typ.id(), typ.id())\n\t\t}\n\t\treturn n.cfgErrorf(\"cannot use type %s as type %s in %s\", n.typ.id(), typ.id(), context)\n\t}\n\treturn nil\n}\n\n// assignExpr type checks an assign expression.\n//\n// This is done per pair of assignments.\nfunc (check typecheck) assignExpr(n, dest, src *node) error {\n\tif n.action == aAssign {\n\t\tisConst := n.anc.kind == constDecl\n\t\tif !isConst {\n\t\t\t// var operations must be typed\n\t\t\tdest.typ = dest.typ.defaultType(src.rval, check.scope)\n\t\t}\n\n\t\treturn check.assignment(src, dest.typ, \"assignment\")\n\t}\n\n\t// assignment operations.\n\tif n.nleft > 1 || n.nright > 1 {\n\t\treturn n.cfgErrorf(\"assignment operation %s requires single-valued expressions\", n.action)\n\t}\n\n\treturn check.binaryExpr(n)\n}\n\n// addressExpr type checks a unary address expression.\nfunc (check typecheck) addressExpr(n *node) error {\n\tc0 := n.child[0]\n\tfound := false\n\tfor !found {\n\t\tswitch c0.kind {\n\t\tcase parenExpr:\n\t\t\tc0 = c0.child[0]\n\t\t\tcontinue\n\t\tcase selectorExpr:\n\t\t\tc0 = c0.child[1]\n\t\t\tcontinue\n\t\tcase starExpr:\n\t\t\tc0 = c0.child[0]\n\t\t\tcontinue\n\t\tcase indexExpr, sliceExpr:\n\t\t\tc := c0.child[0]\n\t\t\tif isArray(c.typ) || isMap(c.typ) {\n\t\t\t\tc0 = c\n\t\t\t\tfound = true\n\t\t\t\tcontinue\n\t\t\t}\n\t\tcase compositeLitExpr, identExpr:\n\t\t\tfound = true\n\t\t\tcontinue\n\t\t}\n\t\treturn n.cfgErrorf(\"invalid operation: cannot take address of %s [kind: %s]\", c0.typ.id(), kinds[c0.kind])\n\t}\n\treturn nil\n}\n\n// starExpr type checks a star expression on a variable.\nfunc (check typecheck) starExpr(n *node) error {\n\tif n.typ.TypeOf().Kind() != reflect.Ptr {\n\t\treturn n.cfgErrorf(\"invalid operation: cannot indirect %q\", n.name())\n\t}\n\treturn nil\n}\n\nvar unaryOpPredicates = opPredicates{\n\taInc:    isNumber,\n\taDec:    isNumber,\n\taPos:    isNumber,\n\taNeg:    isNumber,\n\taBitNot: isInt,\n\taNot:    isBoolean,\n}\n\n// unaryExpr type checks a unary expression.\nfunc (check typecheck) unaryExpr(n *node) error {\n\tc0 := n.child[0]\n\tif isBlank(c0) {\n\t\treturn n.cfgErrorf(\"cannot use _ as value\")\n\t}\n\tt0 := c0.typ.TypeOf()\n\n\tif n.action == aRecv {\n\t\tif !isChan(c0.typ) {\n\t\t\treturn n.cfgErrorf(\"invalid operation: cannot receive from non-channel %s\", c0.typ.id())\n\t\t}\n\t\tif isSendChan(c0.typ) {\n\t\t\treturn n.cfgErrorf(\"invalid operation: cannot receive from send-only channel %s\", c0.typ.id())\n\t\t}\n\t\treturn nil\n\t}\n\n\treturn check.op(unaryOpPredicates, n.action, n, c0, t0)\n}\n\n// shift type checks a shift binary expression.\nfunc (check typecheck) shift(n *node) error {\n\tc0, c1 := n.child[0], n.child[1]\n\tt0, t1 := c0.typ.TypeOf(), c1.typ.TypeOf()\n\n\tvar v0 constant.Value\n\tif c0.typ.untyped && c0.rval.IsValid() {\n\t\tv0 = constant.ToInt(c0.rval.Interface().(constant.Value))\n\t\tc0.rval = reflect.ValueOf(v0)\n\t}\n\n\tif !(c0.typ.untyped && v0 != nil && v0.Kind() == constant.Int || isInt(t0)) {\n\t\treturn n.cfgErrorf(\"invalid operation: shift of type %v\", c0.typ.id())\n\t}\n\n\tswitch {\n\tcase c1.typ.untyped:\n\t\tif err := check.convertUntyped(c1, check.scope.getType(\"uint\")); err != nil {\n\t\t\treturn n.cfgErrorf(\"invalid operation: shift count type %v, must be integer\", c1.typ.id())\n\t\t}\n\tcase isInt(t1):\n\t\t// nothing to do\n\tdefault:\n\t\treturn n.cfgErrorf(\"invalid operation: shift count type %v, must be integer\", c1.typ.id())\n\t}\n\treturn nil\n}\n\n// comparison type checks a comparison binary expression.\nfunc (check typecheck) comparison(n *node) error {\n\tt0, t1 := n.child[0].typ, n.child[1].typ\n\n\tif !t0.assignableTo(t1) && !t1.assignableTo(t0) {\n\t\treturn n.cfgErrorf(\"invalid operation: mismatched types %s and %s\", t0.id(), t1.id())\n\t}\n\n\tok := false\n\n\tif !isInterface(t0) && !isInterface(t1) && !t0.isNil() && !t1.isNil() && t0.untyped == t1.untyped && t0.id() != t1.id() && !typeDefined(t0, t1) {\n\t\t// Non interface types must be really equals.\n\t\treturn n.cfgErrorf(\"invalid operation: mismatched types %s and %s\", t0.id(), t1.id())\n\t}\n\n\tswitch n.action {\n\tcase aEqual, aNotEqual:\n\t\tok = t0.comparable() && t1.comparable() || t0.isNil() && t1.hasNil() || t1.isNil() && t0.hasNil()\n\tcase aLower, aLowerEqual, aGreater, aGreaterEqual:\n\t\tok = t0.ordered() && t1.ordered()\n\t}\n\tif !ok {\n\t\ttyp := t0\n\t\tif typ.isNil() {\n\t\t\ttyp = t1\n\t\t}\n\t\treturn n.cfgErrorf(\"invalid operation: operator %v not defined on %s\", n.action, typ.id())\n\t}\n\treturn nil\n}\n\nvar binaryOpPredicates = opPredicates{\n\taAdd: func(typ reflect.Type) bool { return isNumber(typ) || isString(typ) },\n\taSub: isNumber,\n\taMul: isNumber,\n\taQuo: isNumber,\n\taRem: isInt,\n\n\taAnd:    isInt,\n\taOr:     isInt,\n\taXor:    isInt,\n\taAndNot: isInt,\n\n\taLand: isBoolean,\n\taLor:  isBoolean,\n}\n\n// binaryExpr type checks a binary expression.\nfunc (check typecheck) binaryExpr(n *node) error {\n\tc0, c1 := n.child[0], n.child[1]\n\n\tif isBlank(c0) || isBlank(c1) {\n\t\treturn n.cfgErrorf(\"cannot use _ as value\")\n\t}\n\n\ta := n.action\n\tif isAssignAction(a) {\n\t\ta--\n\t}\n\n\tif isShiftAction(a) {\n\t\treturn check.shift(n)\n\t}\n\n\tswitch n.action {\n\tcase aAdd:\n\t\tif n.typ == nil {\n\t\t\tbreak\n\t\t}\n\t\t// Catch mixing string and number for \"+\" operator use.\n\t\tk, k0, k1 := isNumber(n.typ.TypeOf()), isNumber(c0.typ.TypeOf()), isNumber(c1.typ.TypeOf())\n\t\tif k != k0 || k != k1 {\n\t\t\treturn n.cfgErrorf(\"cannot use type %s as type %s in assignment\", c0.typ.id(), n.typ.id())\n\t\t}\n\tcase aRem:\n\t\tif zeroConst(c1) {\n\t\t\treturn n.cfgErrorf(\"invalid operation: division by zero\")\n\t\t}\n\tcase aQuo:\n\t\tif zeroConst(c1) {\n\t\t\treturn n.cfgErrorf(\"invalid operation: division by zero\")\n\t\t}\n\t\tif c0.rval.IsValid() && c1.rval.IsValid() {\n\t\t\t// Avoid constant conversions below to ensure correct constant integer quotient.\n\t\t\treturn nil\n\t\t}\n\t}\n\n\t// Ensure that if values are untyped, both are converted to the same type\n\t_ = check.convertUntyped(c0, c1.typ)\n\t_ = check.convertUntyped(c1, c0.typ)\n\n\tif isComparisonAction(a) {\n\t\treturn check.comparison(n)\n\t}\n\n\tif !c0.typ.equals(c1.typ) {\n\t\treturn n.cfgErrorf(\"invalid operation: mismatched types %s and %s\", c0.typ.id(), c1.typ.id())\n\t}\n\n\tt0 := c0.typ.TypeOf()\n\n\treturn check.op(binaryOpPredicates, a, n, c0, t0)\n}\n\nfunc zeroConst(n *node) bool {\n\treturn n.typ.untyped && constant.Sign(n.rval.Interface().(constant.Value)) == 0\n}\n\nfunc (check typecheck) index(n *node, max int) error {\n\tif err := check.convertUntyped(n, check.scope.getType(\"int\")); err != nil {\n\t\treturn err\n\t}\n\n\tif !isInt(n.typ.TypeOf()) {\n\t\treturn n.cfgErrorf(\"index %s must be integer\", n.typ.id())\n\t}\n\n\tif !n.rval.IsValid() || max < 1 {\n\t\treturn nil\n\t}\n\n\tif int(vInt(n.rval)) >= max {\n\t\treturn n.cfgErrorf(\"index %s is out of bounds\", n.typ.id())\n\t}\n\n\treturn nil\n}\n\n// arrayLitExpr type checks an array composite literal expression.\nfunc (check typecheck) arrayLitExpr(child []*node, typ *itype) error {\n\tcat := typ.cat\n\tlength := typ.length\n\ttyp = typ.val\n\tvisited := make(map[int]bool, len(child))\n\tindex := 0\n\tfor _, c := range child {\n\t\tn := c\n\t\tswitch {\n\t\tcase c.kind == keyValueExpr:\n\t\t\tif err := check.index(c.child[0], length); err != nil {\n\t\t\t\treturn c.cfgErrorf(\"index %s must be integer constant\", c.child[0].typ.id())\n\t\t\t}\n\t\t\tn = c.child[1]\n\t\t\tindex = int(vInt(c.child[0].rval))\n\t\tcase cat == arrayT && index >= length:\n\t\t\treturn c.cfgErrorf(\"index %d is out of bounds (>= %d)\", index, length)\n\t\t}\n\n\t\tif visited[index] {\n\t\t\treturn n.cfgErrorf(\"duplicate index %d in array or slice literal\", index)\n\t\t}\n\t\tvisited[index] = true\n\t\tindex++\n\n\t\tif err := check.assignment(n, typ, \"array or slice literal\"); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn nil\n}\n\n// mapLitExpr type checks an map composite literal expression.\nfunc (check typecheck) mapLitExpr(child []*node, ktyp, vtyp *itype) error {\n\tvisited := make(map[interface{}]bool, len(child))\n\tfor _, c := range child {\n\t\tif c.kind != keyValueExpr {\n\t\t\treturn c.cfgErrorf(\"missing key in map literal\")\n\t\t}\n\n\t\tkey, val := c.child[0], c.child[1]\n\t\tif err := check.assignment(key, ktyp, \"map literal\"); err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tif key.rval.IsValid() {\n\t\t\tkval := key.rval.Interface()\n\t\t\tif visited[kval] {\n\t\t\t\treturn c.cfgErrorf(\"duplicate key %s in map literal\", kval)\n\t\t\t}\n\t\t\tvisited[kval] = true\n\t\t}\n\n\t\tif err := check.assignment(val, vtyp, \"map literal\"); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn nil\n}\n\n// structLitExpr type checks a struct composite literal expression.\nfunc (check typecheck) structLitExpr(child []*node, typ *itype) error {\n\tif len(child) == 0 {\n\t\treturn nil\n\t}\n\n\tif child[0].kind == keyValueExpr {\n\t\t// All children must be keyValueExpr\n\t\tvisited := make([]bool, len(typ.field))\n\t\tfor _, c := range child {\n\t\t\tif c.kind != keyValueExpr {\n\t\t\t\treturn c.cfgErrorf(\"mixture of field:value and value elements in struct literal\")\n\t\t\t}\n\n\t\t\tkey, val := c.child[0], c.child[1]\n\t\t\tname := key.ident\n\t\t\tif name == \"\" {\n\t\t\t\treturn c.cfgErrorf(\"invalid field name %s in struct literal\", key.typ.id())\n\t\t\t}\n\t\t\ti := typ.fieldIndex(name)\n\t\t\tif i < 0 {\n\t\t\t\treturn c.cfgErrorf(\"unknown field %s in struct literal\", name)\n\t\t\t}\n\t\t\tfield := typ.field[i]\n\n\t\t\tif err := check.assignment(val, field.typ, \"struct literal\"); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\n\t\t\tif visited[i] {\n\t\t\t\treturn c.cfgErrorf(\"duplicate field name %s in struct literal\", name)\n\t\t\t}\n\t\t\tvisited[i] = true\n\t\t}\n\t\treturn nil\n\t}\n\n\t// No children can be keyValueExpr\n\tfor i, c := range child {\n\t\tif c.kind == keyValueExpr {\n\t\t\treturn c.cfgErrorf(\"mixture of field:value and value elements in struct literal\")\n\t\t}\n\n\t\tif i >= len(typ.field) {\n\t\t\treturn c.cfgErrorf(\"too many values in struct literal\")\n\t\t}\n\t\tfield := typ.field[i]\n\t\t// TODO(nick): check if this field is not exported and in a different package.\n\n\t\tif err := check.assignment(c, field.typ, \"struct literal\"); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\tif len(child) < len(typ.field) {\n\t\treturn child[len(child)-1].cfgErrorf(\"too few values in struct literal\")\n\t}\n\treturn nil\n}\n\n// structBinLitExpr type checks a struct composite literal expression on a binary type.\nfunc (check typecheck) structBinLitExpr(child []*node, typ reflect.Type) error {\n\tif len(child) == 0 {\n\t\treturn nil\n\t}\n\n\tif child[0].kind == keyValueExpr {\n\t\t// All children must be keyValueExpr\n\t\tvisited := make(map[string]bool, typ.NumField())\n\t\tfor _, c := range child {\n\t\t\tif c.kind != keyValueExpr {\n\t\t\t\treturn c.cfgErrorf(\"mixture of field:value and value elements in struct literal\")\n\t\t\t}\n\n\t\t\tkey, val := c.child[0], c.child[1]\n\t\t\tname := key.ident\n\t\t\tif name == \"\" {\n\t\t\t\treturn c.cfgErrorf(\"invalid field name %s in struct literal\", key.typ.id())\n\t\t\t}\n\t\t\tfield, ok := typ.FieldByName(name)\n\t\t\tif !ok {\n\t\t\t\treturn c.cfgErrorf(\"unknown field %s in struct literal\", name)\n\t\t\t}\n\n\t\t\tif err := check.assignment(val, valueTOf(field.Type), \"struct literal\"); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\n\t\t\tif visited[field.Name] {\n\t\t\t\treturn c.cfgErrorf(\"duplicate field name %s in struct literal\", name)\n\t\t\t}\n\t\t\tvisited[field.Name] = true\n\t\t}\n\t\treturn nil\n\t}\n\n\t// No children can be keyValueExpr\n\tfor i, c := range child {\n\t\tif c.kind == keyValueExpr {\n\t\t\treturn c.cfgErrorf(\"mixture of field:value and value elements in struct literal\")\n\t\t}\n\n\t\tif i >= typ.NumField() {\n\t\t\treturn c.cfgErrorf(\"too many values in struct literal\")\n\t\t}\n\t\tfield := typ.Field(i)\n\t\tif !canExport(field.Name) {\n\t\t\treturn c.cfgErrorf(\"implicit assignment to unexported field %s in %s literal\", field.Name, typ)\n\t\t}\n\n\t\tif err := check.assignment(c, valueTOf(field.Type), \"struct literal\"); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\tif len(child) < typ.NumField() {\n\t\treturn child[len(child)-1].cfgErrorf(\"too few values in struct literal\")\n\t}\n\treturn nil\n}\n\n// sliceExpr type checks a slice expression.\nfunc (check typecheck) sliceExpr(n *node) error {\n\tfor _, c := range n.child {\n\t\tif isBlank(c) {\n\t\t\treturn n.cfgErrorf(\"cannot use _ as value\")\n\t\t}\n\t}\n\n\tc, child := n.child[0], n.child[1:]\n\n\tt := c.typ.TypeOf()\n\tvar low, high, max *node\n\tif len(child) >= 1 {\n\t\tif n.action == aSlice {\n\t\t\tlow = child[0]\n\t\t} else {\n\t\t\thigh = child[0]\n\t\t}\n\t}\n\tif len(child) >= 2 {\n\t\tif n.action == aSlice {\n\t\t\thigh = child[1]\n\t\t} else {\n\t\t\tmax = child[1]\n\t\t}\n\t}\n\tif len(child) == 3 && n.action == aSlice {\n\t\tmax = child[2]\n\t}\n\n\tl := -1\n\tvalid := false\n\tswitch t.Kind() {\n\tcase reflect.String:\n\t\tvalid = true\n\t\tif c.rval.IsValid() {\n\t\t\tl = len(vString(c.rval))\n\t\t}\n\t\tif max != nil {\n\t\t\treturn max.cfgErrorf(\"invalid operation: 3-index slice of string\")\n\t\t}\n\tcase reflect.Array:\n\t\tvalid = true\n\t\tl = t.Len()\n\t\t// TODO(marc): check addressable status of array object (i.e. composite arrays are not).\n\tcase reflect.Slice:\n\t\tvalid = true\n\tcase reflect.Ptr:\n\t\tif t.Elem().Kind() == reflect.Array {\n\t\t\tvalid = true\n\t\t\tl = t.Elem().Len()\n\t\t}\n\t}\n\tif !valid {\n\t\treturn c.cfgErrorf(\"cannot slice type %s\", c.typ.id())\n\t}\n\n\tvar ind [3]int64\n\tfor i, nod := range []*node{low, high, max} {\n\t\tx := int64(-1)\n\t\tswitch {\n\t\tcase nod != nil:\n\t\t\tmax := -1\n\t\t\tif l >= 0 {\n\t\t\t\tmax = l + 1\n\t\t\t}\n\t\t\tif err := check.index(nod, max); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif nod.rval.IsValid() {\n\t\t\t\tx = vInt(nod.rval)\n\t\t\t}\n\t\tcase i == 0:\n\t\t\tx = 0\n\t\tcase l >= 0:\n\t\t\tx = int64(l)\n\t\t}\n\t\tind[i] = x\n\t}\n\n\tfor i, x := range ind[:len(ind)-1] {\n\t\tif x <= 0 {\n\t\t\tcontinue\n\t\t}\n\t\tfor _, y := range ind[i+1:] {\n\t\t\tif y < 0 || x <= y {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\treturn n.cfgErrorf(\"invalid index values, must be low <= high <= max\")\n\t\t}\n\t}\n\treturn nil\n}\n\n// typeAssertionExpr type checks a type assert expression.\nfunc (check typecheck) typeAssertionExpr(n *node, typ *itype) error {\n\t// TODO(nick): This type check is not complete and should be revisited once\n\t// https://github.com/golang/go/issues/39717 lands. It is currently impractical to\n\t// type check Named types as they cannot be asserted.\n\n\tif rt := n.typ.TypeOf(); rt.Kind() != reflect.Interface && rt != valueInterfaceType {\n\t\treturn n.cfgErrorf(\"invalid type assertion: non-interface type %s on left\", n.typ.id())\n\t}\n\tims := n.typ.methods()\n\tif len(ims) == 0 {\n\t\t// Empty interface must be a dynamic check.\n\t\treturn nil\n\t}\n\n\tif isInterface(typ) {\n\t\t// Asserting to an interface is a dynamic check as we must look to the\n\t\t// underlying struct.\n\t\treturn nil\n\t}\n\n\tfor name := range ims {\n\t\tim := lookupFieldOrMethod(n.typ, name)\n\t\ttm := lookupFieldOrMethod(typ, name)\n\t\tif im == nil {\n\t\t\t// This should not be possible.\n\t\t\tcontinue\n\t\t}\n\t\tif tm == nil {\n\t\t\t// Lookup for non-exported methods is impossible\n\t\t\t// for bin types, ignore them as they can't be used\n\t\t\t// directly by the interpreted programs.\n\t\t\tif !token.IsExported(name) && isBin(typ) {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\treturn n.cfgErrorf(\"impossible type assertion: %s does not implement %s (missing %v method)\", typ.id(), n.typ.id(), name)\n\t\t}\n\t\tif tm.recv != nil && tm.recv.TypeOf().Kind() == reflect.Ptr && typ.TypeOf().Kind() != reflect.Ptr {\n\t\t\treturn n.cfgErrorf(\"impossible type assertion: %s does not implement %s as %q method has a pointer receiver\", typ.id(), n.typ.id(), name)\n\t\t}\n\n\t\tif im.cat != funcT || tm.cat != funcT {\n\t\t\t// It only makes sense to compare in/out parameter types if both types are functions.\n\t\t\tcontinue\n\t\t}\n\n\t\terr := n.cfgErrorf(\"impossible type assertion: %s does not implement %s\", typ.id(), n.typ.id())\n\t\tif im.numIn() != tm.numIn() || im.numOut() != tm.numOut() {\n\t\t\treturn err\n\t\t}\n\t\tfor i := 0; i < im.numIn(); i++ {\n\t\t\tif !im.in(i).equals(tm.in(i)) {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t\tfor i := 0; i < im.numOut(); i++ {\n\t\t\tif !im.out(i).equals(tm.out(i)) {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t}\n\treturn nil\n}\n\n// conversion type checks the conversion of n to typ.\nfunc (check typecheck) conversion(n *node, typ *itype) error {\n\tvar c constant.Value\n\tif n.rval.IsValid() {\n\t\tif con, ok := n.rval.Interface().(constant.Value); ok {\n\t\t\tc = con\n\t\t}\n\t}\n\n\tvar ok bool\n\tswitch {\n\tcase c != nil && isConstType(typ):\n\t\tswitch t := typ.TypeOf(); {\n\t\tcase representableConst(c, t):\n\t\t\tok = true\n\t\tcase isInt(n.typ.TypeOf()) && isString(t):\n\t\t\tcodepoint := int64(-1)\n\t\t\tif i, ok := constant.Int64Val(c); ok {\n\t\t\t\tcodepoint = i\n\t\t\t}\n\t\t\tn.rval = reflect.ValueOf(constant.MakeString(string(rune(codepoint))))\n\t\t\tok = true\n\t\t}\n\n\tcase n.typ.convertibleTo(typ):\n\t\tok = true\n\t}\n\tif !ok {\n\t\treturn n.cfgErrorf(\"cannot convert expression of type %s to type %s\", n.typ.id(), typ.id())\n\t}\n\tif !n.typ.untyped || c == nil {\n\t\treturn nil\n\t}\n\tif isInterface(typ) || !isConstType(typ) {\n\t\ttyp = n.typ.defaultType(n.rval, check.scope)\n\t}\n\treturn check.convertUntyped(n, typ)\n}\n\ntype param struct {\n\tnod *node\n\ttyp *itype\n}\n\nfunc (p param) Type() *itype {\n\tif p.typ != nil {\n\t\treturn p.typ\n\t}\n\treturn p.nod.typ\n}\n\n// unpackParams unpacks child parameters into a slice of param.\n// If there is only 1 child and it is a callExpr with an n-value return,\n// the return types are returned, otherwise the original child nodes are\n// returned with nil typ.\nfunc (check typecheck) unpackParams(child []*node) (params []param) {\n\tif len(child) == 1 && isCall(child[0]) && child[0].child[0].typ.numOut() > 1 {\n\t\tc0 := child[0]\n\t\tftyp := child[0].child[0].typ\n\t\tfor i := 0; i < ftyp.numOut(); i++ {\n\t\t\tparams = append(params, param{nod: c0, typ: ftyp.out(i)})\n\t\t}\n\t\treturn params\n\t}\n\n\tfor _, c := range child {\n\t\tparams = append(params, param{nod: c})\n\t}\n\treturn params\n}\n\nvar builtinFuncs = map[string]struct {\n\targs     int\n\tvariadic bool\n}{\n\tbltnAlignof:  {args: 1, variadic: false},\n\tbltnAppend:   {args: 1, variadic: true},\n\tbltnCap:      {args: 1, variadic: false},\n\tbltnClose:    {args: 1, variadic: false},\n\tbltnComplex:  {args: 2, variadic: false},\n\tbltnImag:     {args: 1, variadic: false},\n\tbltnCopy:     {args: 2, variadic: false},\n\tbltnDelete:   {args: 2, variadic: false},\n\tbltnLen:      {args: 1, variadic: false},\n\tbltnMake:     {args: 1, variadic: true},\n\tbltnNew:      {args: 1, variadic: false},\n\tbltnOffsetof: {args: 1, variadic: false},\n\tbltnPanic:    {args: 1, variadic: false},\n\tbltnPrint:    {args: 0, variadic: true},\n\tbltnPrintln:  {args: 0, variadic: true},\n\tbltnReal:     {args: 1, variadic: false},\n\tbltnRecover:  {args: 0, variadic: false},\n\tbltnSizeof:   {args: 1, variadic: false},\n}\n\nfunc (check typecheck) builtin(name string, n *node, child []*node, ellipsis bool) error {\n\tfun := builtinFuncs[name]\n\tif ellipsis && name != bltnAppend {\n\t\treturn n.cfgErrorf(\"invalid use of ... with builtin %s\", name)\n\t}\n\n\tvar params []param\n\tnparams := len(child)\n\tswitch name {\n\tcase bltnMake, bltnNew:\n\t\t// Special param handling\n\tdefault:\n\t\tparams = check.unpackParams(child)\n\t\tnparams = len(params)\n\t}\n\n\tif nparams < fun.args {\n\t\treturn n.cfgErrorf(\"not enough arguments in call to %s\", name)\n\t} else if !fun.variadic && nparams > fun.args {\n\t\treturn n.cfgErrorf(\"too many arguments for %s\", name)\n\t}\n\n\tswitch name {\n\tcase bltnAppend:\n\t\ttyp := params[0].Type()\n\t\tt := typ.TypeOf()\n\t\tif t == nil || t.Kind() != reflect.Slice {\n\t\t\treturn params[0].nod.cfgErrorf(\"first argument to append must be slice; have %s\", typ.id())\n\t\t}\n\n\t\tif nparams == 1 {\n\t\t\treturn nil\n\t\t}\n\t\t// Special case append([]byte, \"test\"...) is allowed.\n\t\tt1 := params[1].Type()\n\t\tif nparams == 2 && ellipsis && t.Elem().Kind() == reflect.Uint8 && t1.TypeOf().Kind() == reflect.String {\n\t\t\tif t1.untyped {\n\t\t\t\treturn check.convertUntyped(params[1].nod, check.scope.getType(\"string\"))\n\t\t\t}\n\t\t\treturn nil\n\t\t}\n\n\t\tfun := &node{\n\t\t\ttyp: &itype{\n\t\t\t\tcat: funcT,\n\t\t\t\targ: []*itype{\n\t\t\t\t\ttyp,\n\t\t\t\t\t{cat: variadicT, val: valueTOf(t.Elem())},\n\t\t\t\t},\n\t\t\t\tret: []*itype{typ},\n\t\t\t},\n\t\t\tident: \"append\",\n\t\t}\n\t\treturn check.arguments(n, child, fun, ellipsis)\n\tcase bltnCap, bltnLen:\n\t\ttyp := arrayDeref(params[0].Type())\n\t\tok := false\n\t\tswitch typ.TypeOf().Kind() {\n\t\tcase reflect.Array, reflect.Slice, reflect.Chan:\n\t\t\tok = true\n\t\tcase reflect.String, reflect.Map:\n\t\t\tok = name == bltnLen\n\t\t}\n\t\tif !ok {\n\t\t\treturn params[0].nod.cfgErrorf(\"invalid argument for %s\", name)\n\t\t}\n\tcase bltnClose:\n\t\tp := params[0]\n\t\ttyp := p.Type()\n\t\tt := typ.TypeOf()\n\t\tif t.Kind() != reflect.Chan {\n\t\t\treturn p.nod.cfgErrorf(\"invalid operation: non-chan type %s\", p.nod.typ.id())\n\t\t}\n\t\tif t.ChanDir() == reflect.RecvDir {\n\t\t\treturn p.nod.cfgErrorf(\"invalid operation: cannot close receive-only channel\")\n\t\t}\n\tcase bltnComplex:\n\t\tvar err error\n\t\tp0, p1 := params[0], params[1]\n\t\ttyp0, typ1 := p0.Type(), p1.Type()\n\t\tswitch {\n\t\tcase typ0.untyped && !typ1.untyped:\n\t\t\terr = check.convertUntyped(p0.nod, typ1)\n\t\tcase !typ0.untyped && typ1.untyped:\n\t\t\terr = check.convertUntyped(p1.nod, typ0)\n\t\tcase typ0.untyped && typ1.untyped:\n\t\t\tfltType := untypedFloat(nil)\n\t\t\terr = check.convertUntyped(p0.nod, fltType)\n\t\t\tif err != nil {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\terr = check.convertUntyped(p1.nod, fltType)\n\t\t}\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\t// check we have the correct types after conversion.\n\t\ttyp0, typ1 = p0.Type(), p1.Type()\n\t\tif !typ0.equals(typ1) {\n\t\t\treturn n.cfgErrorf(\"invalid operation: mismatched types %s and %s\", typ0.id(), typ1.id())\n\t\t}\n\t\tif !isFloat(typ0.TypeOf()) {\n\t\t\treturn n.cfgErrorf(\"invalid operation: arguments have type %s, expected floating-point\", typ0.id())\n\t\t}\n\tcase bltnImag, bltnReal:\n\t\tp := params[0]\n\t\ttyp := p.Type()\n\t\tif typ.untyped {\n\t\t\tif err := check.convertUntyped(p.nod, untypedComplex(nil)); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t\ttyp = p.Type()\n\t\tif !isComplex(typ.TypeOf()) {\n\t\t\treturn p.nod.cfgErrorf(\"invalid argument type %s for %s\", typ.id(), name)\n\t\t}\n\tcase bltnCopy:\n\t\ttyp0, typ1 := params[0].Type(), params[1].Type()\n\t\tvar t0, t1 reflect.Type\n\t\tif t := typ0.TypeOf(); t.Kind() == reflect.Slice {\n\t\t\tt0 = t.Elem()\n\t\t}\n\n\t\tswitch t := typ1.TypeOf(); t.Kind() {\n\t\tcase reflect.String:\n\t\t\tt1 = reflect.TypeOf(byte(1))\n\t\tcase reflect.Slice:\n\t\t\tt1 = t.Elem()\n\t\t}\n\n\t\tif t0 == nil || t1 == nil {\n\t\t\treturn n.cfgErrorf(\"copy expects slice arguments\")\n\t\t}\n\t\tif !reflect.DeepEqual(t0, t1) {\n\t\t\treturn n.cfgErrorf(\"arguments to copy have different element types %s and %s\", typ0.id(), typ1.id())\n\t\t}\n\tcase bltnDelete:\n\t\ttyp := params[0].Type()\n\t\tif typ.TypeOf().Kind() != reflect.Map {\n\t\t\treturn params[0].nod.cfgErrorf(\"first argument to delete must be map; have %s\", typ.id())\n\t\t}\n\t\tktyp := params[1].Type()\n\t\tif typ.key != nil && !ktyp.assignableTo(typ.key) {\n\t\t\treturn params[1].nod.cfgErrorf(\"cannot use %s as type %s in delete\", ktyp.id(), typ.key.id())\n\t\t}\n\tcase bltnMake:\n\t\tvar min int\n\t\tswitch child[0].typ.TypeOf().Kind() {\n\t\tcase reflect.Slice:\n\t\t\tmin = 2\n\t\tcase reflect.Map, reflect.Chan:\n\t\t\tmin = 1\n\t\tdefault:\n\t\t\treturn child[0].cfgErrorf(\"cannot make %s; type must be slice, map, or channel\", child[0].typ.id())\n\t\t}\n\t\tif nparams < min {\n\t\t\treturn n.cfgErrorf(\"not enough arguments in call to make\")\n\t\t} else if nparams > min+1 {\n\t\t\treturn n.cfgErrorf(\"too many arguments for make\")\n\t\t}\n\n\t\tvar sizes []int\n\t\tfor _, c := range child[1:] {\n\t\t\tif err := check.index(c, -1); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif c.rval.IsValid() {\n\t\t\t\tsizes = append(sizes, int(vInt(c.rval)))\n\t\t\t}\n\t\t}\n\t\tfor len(sizes) == 2 && sizes[0] > sizes[1] {\n\t\t\treturn n.cfgErrorf(\"len larger than cap in make\")\n\t\t}\n\n\tcase bltnPanic:\n\t\treturn check.assignment(params[0].nod, check.scope.getType(\"interface{}\"), \"argument to panic\")\n\tcase bltnPrint, bltnPrintln:\n\t\tfor _, param := range params {\n\t\t\tif param.typ != nil {\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\tif err := check.assignment(param.nod, nil, \"argument to \"+name); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\tcase bltnRecover, bltnNew, bltnAlignof, bltnOffsetof, bltnSizeof:\n\t\t// Nothing to do.\n\tdefault:\n\t\treturn n.cfgErrorf(\"unsupported builtin %s\", name)\n\t}\n\treturn nil\n}\n\n// arrayDeref returns A if typ is *A, otherwise typ.\nfunc arrayDeref(typ *itype) *itype {\n\tif typ.cat == valueT && typ.TypeOf().Kind() == reflect.Ptr {\n\t\tt := typ.TypeOf()\n\t\tif t.Elem().Kind() == reflect.Array {\n\t\t\treturn valueTOf(t.Elem())\n\t\t}\n\t\treturn typ\n\t}\n\n\tif typ.cat == ptrT && typ.val.cat == arrayT {\n\t\treturn typ.val\n\t}\n\treturn typ\n}\n\n// arguments type checks the call expression arguments.\nfunc (check typecheck) arguments(n *node, child []*node, fun *node, ellipsis bool) error {\n\tparams := check.unpackParams(child)\n\tl := len(child)\n\tif ellipsis {\n\t\tif !fun.typ.isVariadic() {\n\t\t\treturn n.cfgErrorf(\"invalid use of ..., corresponding parameter is non-variadic\")\n\t\t}\n\t\tif len(params) > l {\n\t\t\treturn child[0].cfgErrorf(\"cannot use ... with %d-valued %s\", child[0].child[0].typ.numOut(), child[0].child[0].typ.id())\n\t\t}\n\t}\n\n\tvar cnt int\n\tfor i, param := range params {\n\t\tellip := i == l-1 && ellipsis\n\t\tif err := check.argument(param, fun.typ, cnt, l, ellip); err != nil {\n\t\t\treturn err\n\t\t}\n\t\tcnt++\n\t}\n\n\tif fun.typ.isVariadic() {\n\t\tcnt++\n\t}\n\tif cnt < fun.typ.numIn() {\n\t\treturn n.cfgErrorf(\"not enough arguments in call to %s\", fun.name())\n\t}\n\treturn nil\n}\n\nfunc (check typecheck) argument(p param, ftyp *itype, i, l int, ellipsis bool) error {\n\tatyp := getArg(ftyp, i)\n\tif atyp == nil {\n\t\treturn p.nod.cfgErrorf(\"too many arguments\")\n\t}\n\n\tif p.typ == nil && isCall(p.nod) && p.nod.child[0].typ.numOut() != 1 {\n\t\tif l == 1 {\n\t\t\treturn p.nod.cfgErrorf(\"cannot use %s as type %s\", p.nod.child[0].typ.id(), getArgsID(ftyp))\n\t\t}\n\t\treturn p.nod.cfgErrorf(\"cannot use %s as type %s\", p.nod.child[0].typ.id(), atyp.id())\n\t}\n\n\tif ellipsis {\n\t\tif i != ftyp.numIn()-1 {\n\t\t\treturn p.nod.cfgErrorf(\"can only use ... with matching parameter\")\n\t\t}\n\t\tt := p.Type().TypeOf()\n\t\tif t.Kind() != reflect.Slice || !(valueTOf(t.Elem())).assignableTo(atyp) {\n\t\t\treturn p.nod.cfgErrorf(\"cannot use %s as type %s\", p.nod.typ.id(), (sliceOf(atyp)).id())\n\t\t}\n\t\treturn nil\n\t}\n\n\tif p.typ != nil {\n\t\tif !p.typ.assignableTo(atyp) {\n\t\t\treturn p.nod.cfgErrorf(\"cannot use %s as type %s\", p.nod.child[0].typ.id(), getArgsID(ftyp))\n\t\t}\n\t\treturn nil\n\t}\n\treturn check.assignment(p.nod, atyp, \"\")\n}\n\nfunc getArg(ftyp *itype, i int) *itype {\n\tl := ftyp.numIn()\n\tswitch {\n\tcase ftyp.isVariadic() && i >= l-1:\n\t\targ := ftyp.in(l - 1).val\n\t\treturn arg\n\tcase i < l:\n\t\treturn ftyp.in(i)\n\tcase ftyp.cat == valueT && i < ftyp.rtype.NumIn():\n\t\treturn valueTOf(ftyp.rtype.In(i))\n\tdefault:\n\t\treturn nil\n\t}\n}\n\nfunc getArgsID(ftyp *itype) string {\n\tres := \"(\"\n\tfor i, arg := range ftyp.arg {\n\t\tif i > 0 {\n\t\t\tres += \",\"\n\t\t}\n\t\tres += arg.id()\n\t}\n\tres += \")\"\n\treturn res\n}\n\nvar errCantConvert = errors.New(\"cannot convert\")\n\nfunc (check typecheck) convertUntyped(n *node, typ *itype) error {\n\tif n.typ == nil || !n.typ.untyped || typ == nil {\n\t\treturn nil\n\t}\n\n\tconvErr := n.cfgErrorf(\"cannot convert %s to %s\", n.typ.id(), typ.id())\n\n\tntyp, ttyp := n.typ.TypeOf(), typ.TypeOf()\n\tif typ.untyped {\n\t\t// Both n and target are untyped.\n\t\tnkind, tkind := ntyp.Kind(), ttyp.Kind()\n\t\tif isNumber(ntyp) && isNumber(ttyp) {\n\t\t\tif nkind <= tkind {\n\t\t\t\tn.typ = typ\n\t\t\t}\n\t\t} else if nkind != tkind {\n\t\t\treturn convErr\n\t\t}\n\t\treturn nil\n\t}\n\n\tvar (\n\t\tityp *itype\n\t\trtyp reflect.Type\n\t\terr  error\n\t)\n\tswitch {\n\tcase typ.isNil() && n.typ.isNil():\n\t\tn.typ = typ\n\t\treturn nil\n\tcase isNumber(ttyp) || isString(ttyp) || isBoolean(ttyp):\n\t\tityp = typ\n\t\trtyp = ttyp\n\tcase isInterface(typ):\n\t\tif n.typ.isNil() {\n\t\t\treturn nil\n\t\t}\n\t\tif len(n.typ.methods()) > 0 { // untyped cannot be set to iface\n\t\t\treturn convErr\n\t\t}\n\t\tityp = n.typ.defaultType(n.rval, check.scope)\n\t\trtyp = ntyp\n\tcase isArray(typ) || isMap(typ) || isChan(typ) || isFunc(typ) || isPtr(typ):\n\t\t// TODO(nick): above we are acting on itype, but really it is an rtype check. This is not clear which type\n\t\t// \t\t \t   plain we are in. Fix this later.\n\t\tif !n.typ.isNil() {\n\t\t\treturn convErr\n\t\t}\n\t\treturn nil\n\tcase n.typ.isNil() && typ.id() == \"unsafe.Pointer\":\n\t\tn.typ = typ\n\t\treturn nil\n\tdefault:\n\t\treturn convErr\n\t}\n\n\tif err := check.representable(n, rtyp); err != nil {\n\t\treturn err\n\t}\n\tn.rval, err = check.convertConst(n.rval, rtyp)\n\tif err != nil {\n\t\tif errors.Is(err, errCantConvert) {\n\t\t\treturn convErr\n\t\t}\n\t\treturn n.cfgErrorf(err.Error())\n\t}\n\tn.typ = ityp\n\treturn nil\n}\n\nfunc (check typecheck) representable(n *node, t reflect.Type) error {\n\tif !n.rval.IsValid() {\n\t\t// TODO(nick): This should be an error as the const is in the frame which is undesirable.\n\t\treturn nil\n\t}\n\tc, ok := n.rval.Interface().(constant.Value)\n\tif !ok {\n\t\t// TODO(nick): This should be an error as untyped strings and bools should be constant.Values.\n\t\treturn nil\n\t}\n\n\tif !representableConst(c, t) {\n\t\ttyp := n.typ.TypeOf()\n\t\tif isNumber(typ) && isNumber(t) {\n\t\t\t// numeric conversion : error msg\n\t\t\t//\n\t\t\t// integer -> integer : overflows\n\t\t\t// integer -> float   : overflows (actually not possible)\n\t\t\t// float   -> integer : truncated\n\t\t\t// float   -> float   : overflows\n\t\t\t//\n\t\t\tif !isInt(typ) && isInt(t) {\n\t\t\t\treturn n.cfgErrorf(\"%s truncated to %s\", c.ExactString(), t.Kind().String())\n\t\t\t}\n\t\t\treturn n.cfgErrorf(\"%s overflows %s\", c.ExactString(), t.Kind().String())\n\t\t}\n\t\treturn n.cfgErrorf(\"cannot convert %s to %s\", c.ExactString(), t.Kind().String())\n\t}\n\treturn nil\n}\n\nfunc (check typecheck) convertConst(v reflect.Value, t reflect.Type) (reflect.Value, error) {\n\tif !v.IsValid() {\n\t\t// TODO(nick): This should be an error as the const is in the frame which is undesirable.\n\t\treturn v, nil\n\t}\n\tc, ok := v.Interface().(constant.Value)\n\tif !ok {\n\t\t// TODO(nick): This should be an error as untyped strings and bools should be constant.Values.\n\t\treturn v, nil\n\t}\n\n\tkind := t.Kind()\n\tswitch kind {\n\tcase reflect.Bool:\n\t\tv = reflect.ValueOf(constant.BoolVal(c))\n\tcase reflect.String:\n\t\tv = reflect.ValueOf(constant.StringVal(c))\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\ti, _ := constant.Int64Val(constant.ToInt(c))\n\t\tv = reflect.ValueOf(i).Convert(t)\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\ti, _ := constant.Uint64Val(constant.ToInt(c))\n\t\tv = reflect.ValueOf(i).Convert(t)\n\tcase reflect.Float32:\n\t\tf, _ := constant.Float32Val(constant.ToFloat(c))\n\t\tv = reflect.ValueOf(f)\n\tcase reflect.Float64:\n\t\tf, _ := constant.Float64Val(constant.ToFloat(c))\n\t\tv = reflect.ValueOf(f)\n\tcase reflect.Complex64:\n\t\tr, _ := constant.Float32Val(constant.Real(c))\n\t\ti, _ := constant.Float32Val(constant.Imag(c))\n\t\tv = reflect.ValueOf(complex(r, i)).Convert(t)\n\tcase reflect.Complex128:\n\t\tr, _ := constant.Float64Val(constant.Real(c))\n\t\ti, _ := constant.Float64Val(constant.Imag(c))\n\t\tv = reflect.ValueOf(complex(r, i)).Convert(t)\n\tdefault:\n\t\treturn v, errCantConvert\n\t}\n\treturn v, nil\n}\n\nvar bitlen = [...]int{\n\treflect.Int:     64,\n\treflect.Int8:    8,\n\treflect.Int16:   16,\n\treflect.Int32:   32,\n\treflect.Int64:   64,\n\treflect.Uint:    64,\n\treflect.Uint8:   8,\n\treflect.Uint16:  16,\n\treflect.Uint32:  32,\n\treflect.Uint64:  64,\n\treflect.Uintptr: 64,\n}\n\nfunc representableConst(c constant.Value, t reflect.Type) bool {\n\tswitch {\n\tcase isInt(t):\n\t\tx := constant.ToInt(c)\n\t\tif x.Kind() != constant.Int {\n\t\t\treturn false\n\t\t}\n\t\tswitch t.Kind() {\n\t\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\t\tif _, ok := constant.Int64Val(x); !ok {\n\t\t\t\treturn false\n\t\t\t}\n\t\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\t\tif _, ok := constant.Uint64Val(x); !ok {\n\t\t\t\treturn false\n\t\t\t}\n\t\tdefault:\n\t\t\treturn false\n\t\t}\n\t\treturn constant.BitLen(x) <= bitlen[t.Kind()]\n\tcase isFloat(t):\n\t\tx := constant.ToFloat(c)\n\t\tif x.Kind() != constant.Float {\n\t\t\treturn false\n\t\t}\n\t\tswitch t.Kind() {\n\t\tcase reflect.Float32:\n\t\t\tf, _ := constant.Float32Val(x)\n\t\t\treturn !math.IsInf(float64(f), 0)\n\t\tcase reflect.Float64:\n\t\t\tf, _ := constant.Float64Val(x)\n\t\t\treturn !math.IsInf(f, 0)\n\t\tdefault:\n\t\t\treturn false\n\t\t}\n\tcase isComplex(t):\n\t\tx := constant.ToComplex(c)\n\t\tif x.Kind() != constant.Complex {\n\t\t\treturn false\n\t\t}\n\t\tswitch t.Kind() {\n\t\tcase reflect.Complex64:\n\t\t\tr, _ := constant.Float32Val(constant.Real(x))\n\t\t\ti, _ := constant.Float32Val(constant.Imag(x))\n\t\t\treturn !math.IsInf(float64(r), 0) && !math.IsInf(float64(i), 0)\n\t\tcase reflect.Complex128:\n\t\t\tr, _ := constant.Float64Val(constant.Real(x))\n\t\t\ti, _ := constant.Float64Val(constant.Imag(x))\n\t\t\treturn !math.IsInf(r, 0) && !math.IsInf(i, 0)\n\t\tdefault:\n\t\t\treturn false\n\t\t}\n\tcase isString(t):\n\t\treturn c.Kind() == constant.String\n\tcase isBoolean(t):\n\t\treturn c.Kind() == constant.Bool\n\tdefault:\n\t\treturn false\n\t}\n}\n\nfunc isShiftAction(a action) bool {\n\tswitch a {\n\tcase aShl, aShr, aShlAssign, aShrAssign:\n\t\treturn true\n\t}\n\treturn false\n}\n\nfunc isComparisonAction(a action) bool {\n\tswitch a {\n\tcase aEqual, aNotEqual, aGreater, aGreaterEqual, aLower, aLowerEqual:\n\t\treturn true\n\t}\n\treturn false\n}\n"
  },
  {
    "path": "interp/typestring.go",
    "content": "package interp\n\nimport \"strings\"\n\nfunc paramsTypeString(params []*itype) string {\n\tstrs := make([]string, 0, len(params))\n\tfor _, param := range params {\n\t\tstrs = append(strs, param.str)\n\t}\n\treturn strings.Join(strs, \",\")\n}\n\nfunc methodsTypeString(fields []structField) string {\n\tstrs := make([]string, 0, len(fields))\n\tfor _, field := range fields {\n\t\tif field.embed {\n\t\t\tstr := methodsTypeString(field.typ.field)\n\t\t\tif str != \"\" {\n\t\t\t\tstrs = append(strs, str)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\tstrs = append(strs, field.name+field.typ.str[4:])\n\t}\n\treturn strings.Join(strs, \"; \")\n}\n\nfunc fieldsTypeString(fields []structField) string {\n\tstrs := make([]string, 0, len(fields))\n\tfor _, field := range fields {\n\t\tvar repr strings.Builder\n\t\tif !field.embed {\n\t\t\trepr.WriteString(field.name)\n\t\t\trepr.WriteByte(' ')\n\t\t}\n\t\trepr.WriteString(field.typ.str)\n\t\tstrs = append(strs, repr.String())\n\t}\n\treturn strings.Join(strs, \"; \")\n}\n"
  },
  {
    "path": "interp/use.go",
    "content": "package interp\n\nimport (\n\t\"flag\"\n\t\"fmt\"\n\t\"go/constant\"\n\t\"log\"\n\t\"math/bits\"\n\t\"os\"\n\t\"path\"\n\t\"reflect\"\n\n\tgen \"github.com/traefik/yaegi/stdlib/generic\"\n)\n\n// Symbols returns a map of interpreter exported symbol values for the given\n// import path. If the argument is the empty string, all known symbols are\n// returned.\nfunc (interp *Interpreter) Symbols(importPath string) Exports {\n\tm := map[string]map[string]reflect.Value{}\n\tinterp.mutex.RLock()\n\tdefer interp.mutex.RUnlock()\n\n\tfor k, v := range interp.srcPkg {\n\t\tif importPath != \"\" && k != importPath {\n\t\t\tcontinue\n\t\t}\n\t\tsyms := map[string]reflect.Value{}\n\t\tfor n, s := range v {\n\t\t\tif !canExport(n) {\n\t\t\t\t// Skip private non-exported symbols.\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tswitch s.kind {\n\t\t\tcase constSym:\n\t\t\t\tsyms[n] = s.rval\n\t\t\tcase funcSym:\n\t\t\t\tsyms[n] = genFunctionWrapper(s.node)(interp.frame)\n\t\t\tcase varSym:\n\t\t\t\tsyms[n] = interp.frame.data[s.index]\n\t\t\tcase typeSym:\n\t\t\t\tsyms[n] = reflect.New(s.typ.TypeOf())\n\t\t\t}\n\t\t}\n\n\t\tif len(syms) > 0 {\n\t\t\tm[k] = syms\n\t\t}\n\n\t\tif importPath != \"\" {\n\t\t\treturn m\n\t\t}\n\t}\n\n\tif importPath != \"\" && len(m) > 0 {\n\t\treturn m\n\t}\n\n\tfor k, v := range interp.binPkg {\n\t\tif importPath != \"\" && k != importPath {\n\t\t\tcontinue\n\t\t}\n\t\tm[k] = v\n\t\tif importPath != \"\" {\n\t\t\treturn m\n\t\t}\n\t}\n\n\treturn m\n}\n\n// getWrapper returns the wrapper type of the corresponding interface, trying\n// first the composed ones, or nil if not found.\nfunc getWrapper(n *node, t reflect.Type) reflect.Type {\n\tp, ok := n.interp.binPkg[t.PkgPath()]\n\tif !ok {\n\t\treturn nil\n\t}\n\tw := p[\"_\"+t.Name()]\n\tlm := n.typ.methods()\n\n\t// mapTypes may contain composed interfaces wrappers to test against, from\n\t// most complex to simplest (guaranteed by construction of mapTypes). Find the\n\t// first for which the interpreter type has all the methods.\n\tfor _, rt := range n.interp.mapTypes[w] {\n\t\tmatch := true\n\t\tfor i := 1; i < rt.NumField(); i++ {\n\t\t\t// The interpreter type must have all required wrapper methods.\n\t\t\tif _, ok := lm[rt.Field(i).Name[1:]]; !ok {\n\t\t\t\tmatch = false\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tif match {\n\t\t\treturn rt\n\t\t}\n\t}\n\n\t// Otherwise return the direct \"non-composed\" interface.\n\treturn w.Type().Elem()\n}\n\n// Use loads binary runtime symbols in the interpreter context so\n// they can be used in interpreted code.\nfunc (interp *Interpreter) Use(values Exports) error {\n\tfor k, v := range values {\n\t\timportPath := path.Dir(k)\n\t\tpackageName := path.Base(k)\n\n\t\tif k == \".\" && v[\"MapTypes\"].IsValid() {\n\t\t\t// Use mapping for special interface wrappers.\n\t\t\tfor kk, vv := range v[\"MapTypes\"].Interface().(map[reflect.Value][]reflect.Type) {\n\t\t\t\tinterp.mapTypes[kk] = vv\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\n\t\tif importPath == \".\" {\n\t\t\treturn fmt.Errorf(\"export path %[1]q is missing a package name; did you mean '%[1]s/%[1]s'?\", k)\n\t\t}\n\n\t\tif importPath == selfPrefix {\n\t\t\tinterp.hooks.Parse(v)\n\t\t\tcontinue\n\t\t}\n\n\t\tif interp.binPkg[importPath] == nil {\n\t\t\tinterp.binPkg[importPath] = make(map[string]reflect.Value)\n\t\t\tinterp.pkgNames[importPath] = packageName\n\t\t}\n\n\t\tfor s, sym := range v {\n\t\t\tinterp.binPkg[importPath][s] = sym\n\t\t}\n\t\tif k == selfPath {\n\t\t\tinterp.binPkg[importPath][\"Self\"] = reflect.ValueOf(interp)\n\t\t}\n\t}\n\n\t// Checks if input values correspond to stdlib packages by looking for one\n\t// well known stdlib package path.\n\tif _, ok := values[\"fmt/fmt\"]; ok {\n\t\tfixStdlib(interp)\n\n\t\t// Load stdlib generic source.\n\t\tfor _, s := range gen.Sources {\n\t\t\tif _, err := interp.Compile(s); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t}\n\treturn nil\n}\n\n// fixStdlib redefines interpreter stdlib symbols to use the standard input,\n// output and errror assigned to the interpreter. The changes are limited to\n// the interpreter only.\n// Note that it is possible to escape the virtualized stdio by\n// read/write directly to file descriptors 0, 1, 2.\nfunc fixStdlib(interp *Interpreter) {\n\tp := interp.binPkg[\"fmt\"]\n\tif p == nil {\n\t\treturn\n\t}\n\n\tstdin, stdout, stderr := interp.stdin, interp.stdout, interp.stderr\n\n\tp[\"Print\"] = reflect.ValueOf(func(a ...interface{}) (n int, err error) { return fmt.Fprint(stdout, a...) })\n\tp[\"Printf\"] = reflect.ValueOf(func(f string, a ...interface{}) (n int, err error) { return fmt.Fprintf(stdout, f, a...) })\n\tp[\"Println\"] = reflect.ValueOf(func(a ...interface{}) (n int, err error) { return fmt.Fprintln(stdout, a...) })\n\n\tp[\"Scan\"] = reflect.ValueOf(func(a ...interface{}) (n int, err error) { return fmt.Fscan(stdin, a...) })\n\tp[\"Scanf\"] = reflect.ValueOf(func(f string, a ...interface{}) (n int, err error) { return fmt.Fscanf(stdin, f, a...) })\n\tp[\"Scanln\"] = reflect.ValueOf(func(a ...interface{}) (n int, err error) { return fmt.Fscanln(stdin, a...) })\n\n\t// Update mapTypes to virtualized symbols as well.\n\tinterp.mapTypes[p[\"Print\"]] = interp.mapTypes[reflect.ValueOf(fmt.Print)]\n\tinterp.mapTypes[p[\"Printf\"]] = interp.mapTypes[reflect.ValueOf(fmt.Printf)]\n\tinterp.mapTypes[p[\"Println\"]] = interp.mapTypes[reflect.ValueOf(fmt.Println)]\n\tinterp.mapTypes[p[\"Scan\"]] = interp.mapTypes[reflect.ValueOf(fmt.Scan)]\n\tinterp.mapTypes[p[\"Scanf\"]] = interp.mapTypes[reflect.ValueOf(fmt.Scanf)]\n\tinterp.mapTypes[p[\"Scanln\"]] = interp.mapTypes[reflect.ValueOf(fmt.Scanln)]\n\n\tif p = interp.binPkg[\"flag\"]; p != nil {\n\t\tc := flag.NewFlagSet(os.Args[0], flag.PanicOnError)\n\t\tc.SetOutput(stderr)\n\t\tp[\"CommandLine\"] = reflect.ValueOf(&c).Elem()\n\t}\n\n\tif p = interp.binPkg[\"log\"]; p != nil {\n\t\tl := log.New(stderr, \"\", log.LstdFlags)\n\t\t// Restrict Fatal symbols to panic instead of exit.\n\t\tp[\"Fatal\"] = reflect.ValueOf(l.Panic)\n\t\tp[\"Fatalf\"] = reflect.ValueOf(l.Panicf)\n\t\tp[\"Fatalln\"] = reflect.ValueOf(l.Panicln)\n\n\t\tp[\"Flags\"] = reflect.ValueOf(l.Flags)\n\t\tp[\"Output\"] = reflect.ValueOf(l.Output)\n\t\tp[\"Panic\"] = reflect.ValueOf(l.Panic)\n\t\tp[\"Panicf\"] = reflect.ValueOf(l.Panicf)\n\t\tp[\"Panicln\"] = reflect.ValueOf(l.Panicln)\n\t\tp[\"Prefix\"] = reflect.ValueOf(l.Prefix)\n\t\tp[\"Print\"] = reflect.ValueOf(l.Print)\n\t\tp[\"Printf\"] = reflect.ValueOf(l.Printf)\n\t\tp[\"Println\"] = reflect.ValueOf(l.Println)\n\t\tp[\"SetFlags\"] = reflect.ValueOf(l.SetFlags)\n\t\tp[\"SetOutput\"] = reflect.ValueOf(l.SetOutput)\n\t\tp[\"SetPrefix\"] = reflect.ValueOf(l.SetPrefix)\n\t\tp[\"Writer\"] = reflect.ValueOf(l.Writer)\n\n\t\t// Update mapTypes to virtualized symbols as well.\n\t\tinterp.mapTypes[p[\"Print\"]] = interp.mapTypes[reflect.ValueOf(log.Print)]\n\t\tinterp.mapTypes[p[\"Printf\"]] = interp.mapTypes[reflect.ValueOf(log.Printf)]\n\t\tinterp.mapTypes[p[\"Println\"]] = interp.mapTypes[reflect.ValueOf(log.Println)]\n\t\tinterp.mapTypes[p[\"Panic\"]] = interp.mapTypes[reflect.ValueOf(log.Panic)]\n\t\tinterp.mapTypes[p[\"Panicf\"]] = interp.mapTypes[reflect.ValueOf(log.Panicf)]\n\t\tinterp.mapTypes[p[\"Panicln\"]] = interp.mapTypes[reflect.ValueOf(log.Panicln)]\n\t}\n\n\tif p = interp.binPkg[\"os\"]; p != nil {\n\t\tp[\"Args\"] = reflect.ValueOf(&interp.args).Elem()\n\t\tif interp.specialStdio {\n\t\t\t// Inherit streams from interpreter even if they do not have a file descriptor.\n\t\t\tp[\"Stdin\"] = reflect.ValueOf(&stdin).Elem()\n\t\t\tp[\"Stdout\"] = reflect.ValueOf(&stdout).Elem()\n\t\t\tp[\"Stderr\"] = reflect.ValueOf(&stderr).Elem()\n\t\t} else {\n\t\t\t// Inherits streams from interpreter only if they have a file descriptor and preserve original type.\n\t\t\tif s, ok := stdin.(*os.File); ok {\n\t\t\t\tp[\"Stdin\"] = reflect.ValueOf(&s).Elem()\n\t\t\t}\n\t\t\tif s, ok := stdout.(*os.File); ok {\n\t\t\t\tp[\"Stdout\"] = reflect.ValueOf(&s).Elem()\n\t\t\t}\n\t\t\tif s, ok := stderr.(*os.File); ok {\n\t\t\t\tp[\"Stderr\"] = reflect.ValueOf(&s).Elem()\n\t\t\t}\n\t\t}\n\t\tif !interp.unrestricted {\n\t\t\t// In restricted mode, scripts can only access to a passed virtualized env, and can not write the real one.\n\t\t\tgetenv := func(key string) string { return interp.env[key] }\n\t\t\tp[\"Clearenv\"] = reflect.ValueOf(func() { interp.env = map[string]string{} })\n\t\t\tp[\"ExpandEnv\"] = reflect.ValueOf(func(s string) string { return os.Expand(s, getenv) })\n\t\t\tp[\"Getenv\"] = reflect.ValueOf(getenv)\n\t\t\tp[\"LookupEnv\"] = reflect.ValueOf(func(key string) (s string, ok bool) { s, ok = interp.env[key]; return })\n\t\t\tp[\"Setenv\"] = reflect.ValueOf(func(key, value string) error { interp.env[key] = value; return nil })\n\t\t\tp[\"Unsetenv\"] = reflect.ValueOf(func(key string) error { delete(interp.env, key); return nil })\n\t\t\tp[\"Environ\"] = reflect.ValueOf(func() (a []string) {\n\t\t\t\tfor k, v := range interp.env {\n\t\t\t\t\ta = append(a, k+\"=\"+v)\n\t\t\t\t}\n\t\t\t\treturn\n\t\t\t})\n\t\t}\n\t}\n\n\tif p = interp.binPkg[\"math/bits\"]; p != nil {\n\t\t// Do not trust extracted value maybe from another arch.\n\t\tp[\"UintSize\"] = reflect.ValueOf(constant.MakeInt64(bits.UintSize))\n\t}\n}\n"
  },
  {
    "path": "interp/value.go",
    "content": "package interp\n\nimport (\n\t\"go/constant\"\n\t\"reflect\"\n)\n\nconst (\n\tnotInFrame  = -1 // value of node.findex for literal values (not in frame)\n\tglobalFrame = -1 // value of node.level for global symbols\n)\n\nfunc valueGenerator(n *node, i int) func(*frame) reflect.Value {\n\tswitch n.level {\n\tcase globalFrame:\n\t\treturn func(f *frame) reflect.Value { return valueOf(f.root.data, i) }\n\tcase 0:\n\t\treturn func(f *frame) reflect.Value { return valueOf(f.data, i) }\n\tcase 1:\n\t\treturn func(f *frame) reflect.Value { return valueOf(f.anc.data, i) }\n\tcase 2:\n\t\treturn func(f *frame) reflect.Value { return valueOf(f.anc.anc.data, i) }\n\tdefault:\n\t\treturn func(f *frame) reflect.Value {\n\t\t\tfor level := n.level; level > 0; level-- {\n\t\t\t\tf = f.anc\n\t\t\t}\n\t\t\treturn valueOf(f.data, i)\n\t\t}\n\t}\n}\n\n// valueOf safely recovers the ith element of data. This is necessary\n// because a cancellation prior to any evaluation result may leave\n// the frame's data empty.\nfunc valueOf(data []reflect.Value, i int) reflect.Value {\n\tif i < 0 || i >= len(data) {\n\t\treturn reflect.Value{}\n\t}\n\treturn data[i]\n}\n\nfunc genValueRecv(n *node) func(*frame) reflect.Value {\n\tvar v func(*frame) reflect.Value\n\tif n.recv.node == nil {\n\t\tv = func(*frame) reflect.Value { return n.recv.val }\n\t} else {\n\t\tv = genValue(n.recv.node)\n\t}\n\tfi := n.recv.index\n\n\tif len(fi) == 0 {\n\t\treturn v\n\t}\n\n\treturn func(f *frame) reflect.Value {\n\t\tr := v(f)\n\t\tfor _, i := range fi {\n\t\t\tif r.Kind() == reflect.Ptr {\n\t\t\t\tr = r.Elem()\n\t\t\t}\n\t\t\t// Note that we can't use reflect FieldByIndex method, as we may\n\t\t\t// traverse valueInterface wrappers to access the embedded receiver.\n\t\t\tr = r.Field(i)\n\t\t\tvi, ok := r.Interface().(valueInterface)\n\t\t\tif ok {\n\t\t\t\tr = vi.value\n\t\t\t}\n\t\t}\n\t\treturn r\n\t}\n}\n\nfunc genValueAsFunctionWrapper(n *node) func(*frame) reflect.Value {\n\tvalue := genValue(n)\n\ttyp := n.typ.TypeOf()\n\n\treturn func(f *frame) reflect.Value {\n\t\tv := value(f)\n\t\tif v.IsNil() {\n\t\t\treturn reflect.New(typ).Elem()\n\t\t}\n\t\tif v.Kind() == reflect.Func {\n\t\t\treturn v\n\t\t}\n\t\tvn, ok := v.Interface().(*node)\n\t\tif ok && vn.rval.Kind() == reflect.Func {\n\t\t\t// The node value is already a callable func, no need to wrap it.\n\t\t\treturn vn.rval\n\t\t}\n\t\treturn genFunctionWrapper(vn)(f)\n\t}\n}\n\nfunc genValueAs(n *node, t reflect.Type) func(*frame) reflect.Value {\n\tvalue := genValue(n)\n\n\treturn func(f *frame) reflect.Value {\n\t\tv := value(f)\n\t\tswitch v.Kind() {\n\t\tcase reflect.Chan, reflect.Func, reflect.Interface, reflect.Ptr, reflect.Map, reflect.Slice, reflect.UnsafePointer:\n\t\t\tif v.IsNil() {\n\t\t\t\treturn reflect.New(t).Elem()\n\t\t\t}\n\t\t}\n\t\treturn v.Convert(t)\n\t}\n}\n\nfunc genValue(n *node) func(*frame) reflect.Value {\n\tswitch n.kind {\n\tcase basicLit:\n\t\tconvertConstantValue(n)\n\t\tv := n.rval\n\t\tif !v.IsValid() {\n\t\t\tv = reflect.New(emptyInterfaceType).Elem()\n\t\t}\n\t\treturn func(f *frame) reflect.Value { return v }\n\tcase funcDecl:\n\t\tvar v reflect.Value\n\t\tif w, ok := n.val.(reflect.Value); ok {\n\t\t\tv = w\n\t\t} else {\n\t\t\tv = reflect.ValueOf(n.val)\n\t\t}\n\t\treturn func(f *frame) reflect.Value { return v }\n\tdefault:\n\t\tif n.rval.IsValid() {\n\t\t\tconvertConstantValue(n)\n\t\t\tv := n.rval\n\t\t\treturn func(f *frame) reflect.Value { return v }\n\t\t}\n\t\tif n.sym != nil {\n\t\t\ti := n.sym.index\n\t\t\tif i < 0 && n != n.sym.node {\n\t\t\t\treturn genValue(n.sym.node)\n\t\t\t}\n\t\t\tif n.sym.global {\n\t\t\t\treturn func(f *frame) reflect.Value { return f.root.data[i] }\n\t\t\t}\n\t\t\treturn valueGenerator(n, i)\n\t\t}\n\t\tif n.findex == notInFrame {\n\t\t\tvar v reflect.Value\n\t\t\tif w, ok := n.val.(reflect.Value); ok {\n\t\t\t\tv = w\n\t\t\t} else {\n\t\t\t\tv = reflect.ValueOf(n.val)\n\t\t\t}\n\t\t\treturn func(f *frame) reflect.Value { return v }\n\t\t}\n\t\treturn valueGenerator(n, n.findex)\n\t}\n}\n\nfunc genDestValue(typ *itype, n *node) func(*frame) reflect.Value {\n\tconvertLiteralValue(n, typ.TypeOf())\n\tswitch {\n\tcase isInterfaceSrc(typ) && (!isEmptyInterface(typ) || len(n.typ.method) > 0):\n\t\treturn genValueInterface(n)\n\tcase isNamedFuncSrc(n.typ):\n\t\treturn genFunctionWrapper(n)\n\tcase isInterfaceBin(typ):\n\t\treturn genInterfaceWrapper(n, typ.rtype)\n\tcase n.kind == basicLit && n.val == nil:\n\t\treturn func(*frame) reflect.Value { return reflect.New(typ.rtype).Elem() }\n\tcase n.typ.untyped && isComplex(typ.TypeOf()):\n\t\treturn genValueComplex(n)\n\tcase n.typ.untyped && !typ.untyped:\n\t\treturn genValueAs(n, typ.TypeOf())\n\t}\n\treturn genValue(n)\n}\n\nfunc genFuncValue(n *node) func(*frame) reflect.Value {\n\tvalue := genValue(n)\n\treturn func(f *frame) reflect.Value {\n\t\tv := value(f)\n\t\tif nod, ok := v.Interface().(*node); ok {\n\t\t\treturn genFunctionWrapper(nod)(f)\n\t\t}\n\t\treturn v\n\t}\n}\n\nfunc genValueArray(n *node) func(*frame) reflect.Value {\n\tvalue := genValue(n)\n\t// dereference array pointer, to support array operations on array pointer\n\tif n.typ.TypeOf().Kind() == reflect.Ptr {\n\t\treturn func(f *frame) reflect.Value {\n\t\t\treturn value(f).Elem()\n\t\t}\n\t}\n\treturn value\n}\n\nfunc genValueRangeArray(n *node) func(*frame) reflect.Value {\n\tvalue := genValue(n)\n\n\tswitch {\n\tcase n.typ.TypeOf().Kind() == reflect.Ptr:\n\t\t// dereference array pointer, to support array operations on array pointer\n\t\treturn func(f *frame) reflect.Value {\n\t\t\treturn value(f).Elem()\n\t\t}\n\tcase n.typ.val != nil && n.typ.val.cat == interfaceT:\n\t\tif len(n.typ.val.field) > 0 {\n\t\t\treturn func(f *frame) reflect.Value {\n\t\t\t\tval := value(f)\n\t\t\t\tv := []valueInterface{}\n\t\t\t\tfor i := 0; i < val.Len(); i++ {\n\t\t\t\t\tswitch av := val.Index(i).Interface().(type) {\n\t\t\t\t\tcase []valueInterface:\n\t\t\t\t\t\tv = append(v, av...)\n\t\t\t\t\tcase valueInterface:\n\t\t\t\t\t\tv = append(v, av)\n\t\t\t\t\tdefault:\n\t\t\t\t\t\tpanic(n.cfgErrorf(\"invalid type %v\", val.Index(i).Type()))\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn reflect.ValueOf(v)\n\t\t\t}\n\t\t}\n\t\t// empty interface, do not wrap.\n\t\tfallthrough\n\tdefault:\n\t\treturn func(f *frame) reflect.Value {\n\t\t\t// This is necessary to prevent changes in the returned\n\t\t\t// reflect.Value being reflected back to the value used\n\t\t\t// for the range expression.\n\t\t\treturn reflect.ValueOf(value(f).Interface())\n\t\t}\n\t}\n}\n\nfunc genValueInterface(n *node) func(*frame) reflect.Value {\n\tvalue := genValue(n)\n\n\treturn func(f *frame) reflect.Value {\n\t\tv := value(f)\n\t\tnod := n\n\n\t\tfor v.IsValid() {\n\t\t\t// traverse interface indirections to find out concrete type\n\t\t\tvi, ok := v.Interface().(valueInterface)\n\t\t\tif !ok {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tv = vi.value\n\t\t\tnod = vi.node\n\t\t}\n\n\t\t// empty interface, do not wrap.\n\t\tif nod != nil && isEmptyInterface(nod.typ) {\n\t\t\treturn v\n\t\t}\n\n\t\treturn reflect.ValueOf(valueInterface{nod, v})\n\t}\n}\n\nfunc getConcreteValue(val reflect.Value) reflect.Value {\n\tv := val\n\tfor {\n\t\tvi, ok := v.Interface().(valueInterface)\n\t\tif !ok {\n\t\t\tbreak\n\t\t}\n\t\tv = vi.value\n\t}\n\tif v.NumMethod() > 0 {\n\t\treturn v\n\t}\n\tif v.Kind() != reflect.Struct {\n\t\treturn v\n\t}\n\t// Search a concrete value in fields of an emulated interface.\n\tfor i := v.NumField() - 1; i >= 0; i-- {\n\t\tvv := v.Field(i)\n\t\tif vv.Kind() == reflect.Interface {\n\t\t\tvv = vv.Elem()\n\t\t}\n\t\tif vv.IsValid() {\n\t\t\treturn vv\n\t\t}\n\t}\n\treturn v\n}\n\nfunc zeroInterfaceValue() reflect.Value {\n\tn := &node{kind: basicLit, typ: &itype{cat: nilT, untyped: true, str: \"nil\"}}\n\tv := reflect.New(emptyInterfaceType).Elem()\n\treturn reflect.ValueOf(valueInterface{n, v})\n}\n\nfunc wantEmptyInterface(n *node) bool {\n\treturn isEmptyInterface(n.typ) ||\n\t\tn.anc.action == aAssign && n.anc.typ.cat == interfaceT && len(n.anc.typ.field) == 0 ||\n\t\tn.anc.kind == returnStmt && n.anc.val.(*node).typ.ret[0].cat == interfaceT && len(n.anc.val.(*node).typ.ret[0].field) == 0\n}\n\nfunc genValueOutput(n *node, t reflect.Type) func(*frame) reflect.Value {\n\tvalue := genValue(n)\n\tswitch {\n\tcase n.anc.action == aAssign && n.anc.typ.cat == interfaceT:\n\t\tif len(n.anc.typ.field) == 0 {\n\t\t\t// empty interface, do not wrap\n\t\t\treturn value\n\t\t}\n\t\tfallthrough\n\tcase n.anc.kind == returnStmt && n.anc.val.(*node).typ.ret[0].cat == interfaceT:\n\t\tif nod, ok := n.anc.val.(*node); !ok || len(nod.typ.ret[0].field) == 0 {\n\t\t\t// empty interface, do not wrap\n\t\t\treturn value\n\t\t}\n\t\t// The result of the builtin has to be returned as an interface type.\n\t\t// Wrap it in a valueInterface and return the dereferenced value.\n\t\treturn func(f *frame) reflect.Value {\n\t\t\td := value(f)\n\t\t\tv := reflect.New(t).Elem()\n\t\t\td.Set(reflect.ValueOf(valueInterface{n, v}))\n\t\t\treturn v\n\t\t}\n\t}\n\treturn value\n}\n\nfunc getBinValue(getMapType func(*itype) reflect.Type, value func(*frame) reflect.Value, f *frame) reflect.Value {\n\tv := value(f)\n\tif getMapType == nil {\n\t\treturn v\n\t}\n\tval, ok := v.Interface().(valueInterface)\n\tif !ok || val.node == nil {\n\t\treturn v\n\t}\n\tif rt := getMapType(val.node.typ); rt != nil {\n\t\treturn genInterfaceWrapper(val.node, rt)(f)\n\t}\n\treturn v\n}\n\nfunc valueInterfaceValue(v reflect.Value) reflect.Value {\n\tfor {\n\t\tvv, ok := v.Interface().(valueInterface)\n\t\tif !ok {\n\t\t\tbreak\n\t\t}\n\t\tv = vv.value\n\t}\n\treturn v\n}\n\nfunc genValueInterfaceValue(n *node) func(*frame) reflect.Value {\n\tvalue := genValue(n)\n\n\treturn func(f *frame) reflect.Value {\n\t\tv := value(f)\n\t\tif vi, ok := v.Interface().(valueInterface); ok && vi.node == nil {\n\t\t\t// Uninitialized interface value, set it to a correct zero value.\n\t\t\tv.Set(zeroInterfaceValue())\n\t\t\tv = value(f)\n\t\t}\n\t\treturn valueInterfaceValue(v)\n\t}\n}\n\nfunc vInt(v reflect.Value) (i int64) {\n\tif c := vConstantValue(v); c != nil {\n\t\ti, _ = constant.Int64Val(constant.ToInt(c))\n\t\treturn i\n\t}\n\tswitch v.Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\ti = v.Int()\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\ti = int64(v.Uint())\n\tcase reflect.Float32, reflect.Float64:\n\t\ti = int64(v.Float())\n\tcase reflect.Complex64, reflect.Complex128:\n\t\ti = int64(real(v.Complex()))\n\t}\n\treturn\n}\n\nfunc vUint(v reflect.Value) (i uint64) {\n\tif c := vConstantValue(v); c != nil {\n\t\ti, _ = constant.Uint64Val(constant.ToInt(c))\n\t\treturn i\n\t}\n\tswitch v.Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\ti = uint64(v.Int())\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\ti = v.Uint()\n\tcase reflect.Float32, reflect.Float64:\n\t\ti = uint64(v.Float())\n\tcase reflect.Complex64, reflect.Complex128:\n\t\ti = uint64(real(v.Complex()))\n\t}\n\treturn\n}\n\nfunc vComplex(v reflect.Value) (c complex128) {\n\tif c := vConstantValue(v); c != nil {\n\t\tc = constant.ToComplex(c)\n\t\trel, _ := constant.Float64Val(constant.Real(c))\n\t\timg, _ := constant.Float64Val(constant.Imag(c))\n\t\treturn complex(rel, img)\n\t}\n\tswitch v.Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\tc = complex(float64(v.Int()), 0)\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\tc = complex(float64(v.Uint()), 0)\n\tcase reflect.Float32, reflect.Float64:\n\t\tc = complex(v.Float(), 0)\n\tcase reflect.Complex64, reflect.Complex128:\n\t\tc = v.Complex()\n\t}\n\treturn\n}\n\nfunc vFloat(v reflect.Value) (i float64) {\n\tif c := vConstantValue(v); c != nil {\n\t\ti, _ = constant.Float64Val(constant.ToFloat(c))\n\t\treturn i\n\t}\n\tswitch v.Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\ti = float64(v.Int())\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\ti = float64(v.Uint())\n\tcase reflect.Float32, reflect.Float64:\n\t\ti = v.Float()\n\tcase reflect.Complex64, reflect.Complex128:\n\t\ti = real(v.Complex())\n\t}\n\treturn\n}\n\nfunc vString(v reflect.Value) (s string) {\n\tif c := vConstantValue(v); c != nil {\n\t\ts = constant.StringVal(c)\n\t\treturn s\n\t}\n\treturn v.String()\n}\n\nfunc vConstantValue(v reflect.Value) (c constant.Value) {\n\tif v.Type().Implements(constVal) {\n\t\tc = v.Interface().(constant.Value)\n\t}\n\treturn\n}\n\nfunc genValueInt(n *node) func(*frame) (reflect.Value, int64) {\n\tvalue := genValue(n)\n\n\tswitch n.typ.TypeOf().Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\treturn func(f *frame) (reflect.Value, int64) { v := value(f); return v, v.Int() }\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\treturn func(f *frame) (reflect.Value, int64) { v := value(f); return v, int64(v.Uint()) }\n\tcase reflect.Float32, reflect.Float64:\n\t\treturn func(f *frame) (reflect.Value, int64) { v := value(f); return v, int64(v.Float()) }\n\tcase reflect.Complex64, reflect.Complex128:\n\t\tif n.typ.untyped && n.rval.IsValid() && imag(n.rval.Complex()) == 0 {\n\t\t\treturn func(f *frame) (reflect.Value, int64) { v := value(f); return v, int64(real(v.Complex())) }\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc genValueUint(n *node) func(*frame) (reflect.Value, uint64) {\n\tvalue := genValue(n)\n\n\tswitch n.typ.TypeOf().Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\treturn func(f *frame) (reflect.Value, uint64) { v := value(f); return v, uint64(v.Int()) }\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\treturn func(f *frame) (reflect.Value, uint64) { v := value(f); return v, v.Uint() }\n\tcase reflect.Float32, reflect.Float64:\n\t\treturn func(f *frame) (reflect.Value, uint64) { v := value(f); return v, uint64(v.Float()) }\n\tcase reflect.Complex64, reflect.Complex128:\n\t\tif n.typ.untyped && n.rval.IsValid() && imag(n.rval.Complex()) == 0 {\n\t\t\treturn func(f *frame) (reflect.Value, uint64) { v := value(f); return v, uint64(real(v.Complex())) }\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc genValueFloat(n *node) func(*frame) (reflect.Value, float64) {\n\tvalue := genValue(n)\n\n\tswitch n.typ.TypeOf().Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\treturn func(f *frame) (reflect.Value, float64) { v := value(f); return v, float64(v.Int()) }\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\treturn func(f *frame) (reflect.Value, float64) { v := value(f); return v, float64(v.Uint()) }\n\tcase reflect.Float32, reflect.Float64:\n\t\treturn func(f *frame) (reflect.Value, float64) { v := value(f); return v, v.Float() }\n\tcase reflect.Complex64, reflect.Complex128:\n\t\tif n.typ.untyped && n.rval.IsValid() && imag(n.rval.Complex()) == 0 {\n\t\t\treturn func(f *frame) (reflect.Value, float64) { v := value(f); return v, real(v.Complex()) }\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc genValueComplex(n *node) func(*frame) reflect.Value {\n\tvc := genComplex(n)\n\treturn func(f *frame) reflect.Value { return reflect.ValueOf(vc(f)) }\n}\n\nfunc genComplex(n *node) func(*frame) complex128 {\n\tvalue := genValue(n)\n\n\tswitch n.typ.TypeOf().Kind() {\n\tcase reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:\n\t\treturn func(f *frame) complex128 { return complex(float64(value(f).Int()), 0) }\n\tcase reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:\n\t\treturn func(f *frame) complex128 { return complex(float64(value(f).Uint()), 0) }\n\tcase reflect.Float32, reflect.Float64:\n\t\treturn func(f *frame) complex128 { return complex(value(f).Float(), 0) }\n\tcase reflect.Complex64, reflect.Complex128:\n\t\treturn func(f *frame) complex128 { return value(f).Complex() }\n\t}\n\treturn nil\n}\n\nfunc genValueString(n *node) func(*frame) (reflect.Value, string) {\n\tvalue := genValue(n)\n\n\treturn func(f *frame) (reflect.Value, string) { v := value(f); return v, v.String() }\n}\n"
  },
  {
    "path": "stdlib/generic/go1_21_cmp.go.txt",
    "content": "// Copyright 2023 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Package cmp provides types and functions related to comparing\n// ordered values.\npackage cmp\n\n// Ordered is a constraint that permits any ordered type: any type\n// that supports the operators < <= >= >.\n// If future releases of Go add new ordered types,\n// this constraint will be modified to include them.\n//\n// Note that floating-point types may contain NaN (\"not-a-number\") values.\n// An operator such as == or < will always report false when\n// comparing a NaN value with any other value, NaN or not.\n// See the [Compare] function for a consistent way to compare NaN values.\ntype Ordered interface {\n\t~int | ~int8 | ~int16 | ~int32 | ~int64 |\n\t\t~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr |\n\t\t~float32 | ~float64 |\n\t\t~string\n}\n\n// Less reports whether x is less than y.\n// For floating-point types, a NaN is considered less than any non-NaN,\n// and -0.0 is not less than (is equal to) 0.0.\nfunc Less[T Ordered](x, y T) bool {\n\treturn (isNaN(x) && !isNaN(y)) || x < y\n}\n\n// Compare returns\n//\n//\t-1 if x is less than y,\n//\t 0 if x equals y,\n//\t+1 if x is greater than y.\n//\n// For floating-point types, a NaN is considered less than any non-NaN,\n// a NaN is considered equal to a NaN, and -0.0 is equal to 0.0.\nfunc Compare[T Ordered](x, y T) int {\n\txNaN := isNaN(x)\n\tyNaN := isNaN(y)\n\tif xNaN && yNaN {\n\t\treturn 0\n\t}\n\tif xNaN || x < y {\n\t\treturn -1\n\t}\n\tif yNaN || x > y {\n\t\treturn +1\n\t}\n\treturn 0\n}\n\n// isNaN reports whether x is a NaN without requiring the math package.\n// This will always return false if T is not floating-point.\nfunc isNaN[T Ordered](x T) bool {\n\treturn x != x\n}\n"
  },
  {
    "path": "stdlib/generic/go1_21_generic.go",
    "content": "//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage generic\n\nimport _ \"embed\"\n\n//go:embed go1_21_cmp.go.txt\nvar cmpSource string\n\n//go:embed go1_21_maps.go.txt\nvar mapsSource string\n\n//go:embed go1_21_slices.go.txt\nvar slicesSource string\n\n/*\n//go:embed go1_21_sync.go.txt\nvar syncSource string\n\n//go:embed go1_21_sync_atomic.go.txt\nvar syncAtomicSource string\n*/\n\n// Sources contains the list of generic packages source strings.\nvar Sources = [...]string{\n\tcmpSource,\n\tmapsSource,\n\tslicesSource,\n\t// FIXME(marc): support the following.\n\t// syncAtomicSource,\n\t// syncSource,\n}\n"
  },
  {
    "path": "stdlib/generic/go1_21_maps.go.txt",
    "content": "// Copyright 2021 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Package maps defines various functions useful with maps of any type.\npackage maps\n\n// Equal reports whether two maps contain the same key/value pairs.\n// Values are compared using ==.\nfunc Equal[M1, M2 ~map[K]V, K, V comparable](m1 M1, m2 M2) bool {\n\tif len(m1) != len(m2) {\n\t\treturn false\n\t}\n\tfor k, v1 := range m1 {\n\t\tif v2, ok := m2[k]; !ok || v1 != v2 {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\n// EqualFunc is like Equal, but compares values using eq.\n// Keys are still compared with ==.\nfunc EqualFunc[M1 ~map[K]V1, M2 ~map[K]V2, K comparable, V1, V2 any](m1 M1, m2 M2, eq func(V1, V2) bool) bool {\n\tif len(m1) != len(m2) {\n\t\treturn false\n\t}\n\tfor k, v1 := range m1 {\n\t\tif v2, ok := m2[k]; !ok || !eq(v1, v2) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\n// clone is implemented in the runtime package.\nfunc clone(m any) any { return m }\n\n// Clone returns a copy of m.  This is a shallow clone:\n// the new keys and values are set using ordinary assignment.\nfunc Clone[M ~map[K]V, K comparable, V any](m M) M {\n\t// Preserve nil in case it matters.\n\tif m == nil {\n\t\treturn nil\n\t}\n\treturn clone(m).(M)\n}\n\n// Copy copies all key/value pairs in src adding them to dst.\n// When a key in src is already present in dst,\n// the value in dst will be overwritten by the value associated\n// with the key in src.\nfunc Copy[M1 ~map[K]V, M2 ~map[K]V, K comparable, V any](dst M1, src M2) {\n\tfor k, v := range src {\n\t\tdst[k] = v\n\t}\n}\n\n// DeleteFunc deletes any key/value pairs from m for which del returns true.\nfunc DeleteFunc[M ~map[K]V, K comparable, V any](m M, del func(K, V) bool) {\n\tfor k, v := range m {\n\t\tif del(k, v) {\n\t\t\tdelete(m, k)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "stdlib/generic/go1_21_slices.go.txt",
    "content": "// Copyright 2021 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Package slices defines various functions useful with slices of any type.\npackage slices\n\nimport (\n\t\"cmp\"\n\t\"math/bits\"\n\t// \"unsafe\" // FIXME(marc): better handle special dependencies in generics.\n)\n\n// Equal reports whether two slices are equal: the same length and all\n// elements equal. If the lengths are different, Equal returns false.\n// Otherwise, the elements are compared in increasing index order, and the\n// comparison stops at the first unequal pair.\n// Floating point NaNs are not considered equal.\nfunc Equal[S ~[]E, E comparable](s1, s2 S) bool {\n\tif len(s1) != len(s2) {\n\t\treturn false\n\t}\n\tfor i := range s1 {\n\t\tif s1[i] != s2[i] {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\n// EqualFunc reports whether two slices are equal using an equality\n// function on each pair of elements. If the lengths are different,\n// EqualFunc returns false. Otherwise, the elements are compared in\n// increasing index order, and the comparison stops at the first index\n// for which eq returns false.\nfunc EqualFunc[S1 ~[]E1, S2 ~[]E2, E1, E2 any](s1 S1, s2 S2, eq func(E1, E2) bool) bool {\n\tif len(s1) != len(s2) {\n\t\treturn false\n\t}\n\tfor i, v1 := range s1 {\n\t\tv2 := s2[i]\n\t\tif !eq(v1, v2) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\n// Compare compares the elements of s1 and s2, using [cmp.Compare] on each pair\n// of elements. The elements are compared sequentially, starting at index 0,\n// until one element is not equal to the other.\n// The result of comparing the first non-matching elements is returned.\n// If both slices are equal until one of them ends, the shorter slice is\n// considered less than the longer one.\n// The result is 0 if s1 == s2, -1 if s1 < s2, and +1 if s1 > s2.\nfunc Compare[S ~[]E, E cmp.Ordered](s1, s2 S) int {\n\tfor i, v1 := range s1 {\n\t\tif i >= len(s2) {\n\t\t\treturn +1\n\t\t}\n\t\tv2 := s2[i]\n\t\tif c := cmp.Compare(v1, v2); c != 0 {\n\t\t\treturn c\n\t\t}\n\t}\n\tif len(s1) < len(s2) {\n\t\treturn -1\n\t}\n\treturn 0\n}\n\n// CompareFunc is like [Compare] but uses a custom comparison function on each\n// pair of elements.\n// The result is the first non-zero result of cmp; if cmp always\n// returns 0 the result is 0 if len(s1) == len(s2), -1 if len(s1) < len(s2),\n// and +1 if len(s1) > len(s2).\nfunc CompareFunc[S1 ~[]E1, S2 ~[]E2, E1, E2 any](s1 S1, s2 S2, cmp func(E1, E2) int) int {\n\tfor i, v1 := range s1 {\n\t\tif i >= len(s2) {\n\t\t\treturn +1\n\t\t}\n\t\tv2 := s2[i]\n\t\tif c := cmp(v1, v2); c != 0 {\n\t\t\treturn c\n\t\t}\n\t}\n\tif len(s1) < len(s2) {\n\t\treturn -1\n\t}\n\treturn 0\n}\n\n// Index returns the index of the first occurrence of v in s,\n// or -1 if not present.\nfunc Index[S ~[]E, E comparable](s S, v E) int {\n\tfor i := range s {\n\t\tif v == s[i] {\n\t\t\treturn i\n\t\t}\n\t}\n\treturn -1\n}\n\n// IndexFunc returns the first index i satisfying f(s[i]),\n// or -1 if none do.\nfunc IndexFunc[S ~[]E, E any](s S, f func(E) bool) int {\n\tfor i := range s {\n\t\tif f(s[i]) {\n\t\t\treturn i\n\t\t}\n\t}\n\treturn -1\n}\n\n// Contains reports whether v is present in s.\nfunc Contains[S ~[]E, E comparable](s S, v E) bool {\n\treturn Index(s, v) >= 0\n}\n\n// ContainsFunc reports whether at least one\n// element e of s satisfies f(e).\nfunc ContainsFunc[S ~[]E, E any](s S, f func(E) bool) bool {\n\treturn IndexFunc(s, f) >= 0\n}\n\n// Insert inserts the values v... into s at index i,\n// returning the modified slice.\n// The elements at s[i:] are shifted up to make room.\n// In the returned slice r, r[i] == v[0],\n// and r[i+len(v)] == value originally at r[i].\n// Insert panics if i is out of range.\n// This function is O(len(s) + len(v)).\nfunc Insert[S ~[]E, E any](s S, i int, v ...E) S {\n\tm := len(v)\n\tif m == 0 {\n\t\treturn s\n\t}\n\tn := len(s)\n\tif i == n {\n\t\treturn append(s, v...)\n\t}\n\tif n+m > cap(s) {\n\t\t// Use append rather than make so that we bump the size of\n\t\t// the slice up to the next storage class.\n\t\t// This is what Grow does but we don't call Grow because\n\t\t// that might copy the values twice.\n\t\ts2 := append(s[:i], make(S, n+m-i)...)\n\t\tcopy(s2[i:], v)\n\t\tcopy(s2[i+m:], s[i:])\n\t\treturn s2\n\t}\n\ts = s[:n+m]\n\n\t// before:\n\t// s: aaaaaaaabbbbccccccccdddd\n\t//            ^   ^       ^   ^\n\t//            i  i+m      n  n+m\n\t// after:\n\t// s: aaaaaaaavvvvbbbbcccccccc\n\t//            ^   ^       ^   ^\n\t//            i  i+m      n  n+m\n\t//\n\t// a are the values that don't move in s.\n\t// v are the values copied in from v.\n\t// b and c are the values from s that are shifted up in index.\n\t// d are the values that get overwritten, never to be seen again.\n\n\tif !overlaps(v, s[i+m:]) {\n\t\t// Easy case - v does not overlap either the c or d regions.\n\t\t// (It might be in some of a or b, or elsewhere entirely.)\n\t\t// The data we copy up doesn't write to v at all, so just do it.\n\n\t\tcopy(s[i+m:], s[i:])\n\n\t\t// Now we have\n\t\t// s: aaaaaaaabbbbbbbbcccccccc\n\t\t//            ^   ^       ^   ^\n\t\t//            i  i+m      n  n+m\n\t\t// Note the b values are duplicated.\n\n\t\tcopy(s[i:], v)\n\n\t\t// Now we have\n\t\t// s: aaaaaaaavvvvbbbbcccccccc\n\t\t//            ^   ^       ^   ^\n\t\t//            i  i+m      n  n+m\n\t\t// That's the result we want.\n\t\treturn s\n\t}\n\n\t// The hard case - v overlaps c or d. We can't just shift up\n\t// the data because we'd move or clobber the values we're trying\n\t// to insert.\n\t// So instead, write v on top of d, then rotate.\n\tcopy(s[n:], v)\n\n\t// Now we have\n\t// s: aaaaaaaabbbbccccccccvvvv\n\t//            ^   ^       ^   ^\n\t//            i  i+m      n  n+m\n\n\trotateRight(s[i:], m)\n\n\t// Now we have\n\t// s: aaaaaaaavvvvbbbbcccccccc\n\t//            ^   ^       ^   ^\n\t//            i  i+m      n  n+m\n\t// That's the result we want.\n\treturn s\n}\n\n// Delete removes the elements s[i:j] from s, returning the modified slice.\n// Delete panics if s[i:j] is not a valid slice of s.\n// Delete is O(len(s)-j), so if many items must be deleted, it is better to\n// make a single call deleting them all together than to delete one at a time.\n// Delete might not modify the elements s[len(s)-(j-i):len(s)]. If those\n// elements contain pointers you might consider zeroing those elements so that\n// objects they reference can be garbage collected.\nfunc Delete[S ~[]E, E any](s S, i, j int) S {\n\t_ = s[i:j] // bounds check\n\n\treturn append(s[:i], s[j:]...)\n}\n\n// DeleteFunc removes any elements from s for which del returns true,\n// returning the modified slice.\n// When DeleteFunc removes m elements, it might not modify the elements\n// s[len(s)-m:len(s)]. If those elements contain pointers you might consider\n// zeroing those elements so that objects they reference can be garbage\n// collected.\nfunc DeleteFunc[S ~[]E, E any](s S, del func(E) bool) S {\n\t// Don't start copying elements until we find one to delete.\n\tfor i, v := range s {\n\t\tif del(v) {\n\t\t\tj := i\n\t\t\tfor i++; i < len(s); i++ {\n\t\t\t\tv = s[i]\n\t\t\t\tif !del(v) {\n\t\t\t\t\ts[j] = v\n\t\t\t\t\tj++\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn s[:j]\n\t\t}\n\t}\n\treturn s\n}\n\n// Replace replaces the elements s[i:j] by the given v, and returns the\n// modified slice. Replace panics if s[i:j] is not a valid slice of s.\nfunc Replace[S ~[]E, E any](s S, i, j int, v ...E) S {\n\t_ = s[i:j] // verify that i:j is a valid subslice\n\n\tif i == j {\n\t\treturn Insert(s, i, v...)\n\t}\n\tif j == len(s) {\n\t\treturn append(s[:i], v...)\n\t}\n\n\ttot := len(s[:i]) + len(v) + len(s[j:])\n\tif tot > cap(s) {\n\t\t// Too big to fit, allocate and copy over.\n\t\ts2 := append(s[:i], make(S, tot-i)...) // See Insert\n\t\tcopy(s2[i:], v)\n\t\tcopy(s2[i+len(v):], s[j:])\n\t\treturn s2\n\t}\n\n\tr := s[:tot]\n\n\tif i+len(v) <= j {\n\t\t// Easy, as v fits in the deleted portion.\n\t\tcopy(r[i:], v)\n\t\tif i+len(v) != j {\n\t\t\tcopy(r[i+len(v):], s[j:])\n\t\t}\n\t\treturn r\n\t}\n\n\t// We are expanding (v is bigger than j-i).\n\t// The situation is something like this:\n\t// (example has i=4,j=8,len(s)=16,len(v)=6)\n\t// s: aaaaxxxxbbbbbbbbyy\n\t//        ^   ^       ^ ^\n\t//        i   j  len(s) tot\n\t// a: prefix of s\n\t// x: deleted range\n\t// b: more of s\n\t// y: area to expand into\n\n\tif !overlaps(r[i+len(v):], v) {\n\t\t// Easy, as v is not clobbered by the first copy.\n\t\tcopy(r[i+len(v):], s[j:])\n\t\tcopy(r[i:], v)\n\t\treturn r\n\t}\n\n\t// This is a situation where we don't have a single place to which\n\t// we can copy v. Parts of it need to go to two different places.\n\t// We want to copy the prefix of v into y and the suffix into x, then\n\t// rotate |y| spots to the right.\n\t//\n\t//        v[2:]      v[:2]\n\t//         |           |\n\t// s: aaaavvvvbbbbbbbbvv\n\t//        ^   ^       ^ ^\n\t//        i   j  len(s) tot\n\t//\n\t// If either of those two destinations don't alias v, then we're good.\n\ty := len(v) - (j - i) // length of y portion\n\n\tif !overlaps(r[i:j], v) {\n\t\tcopy(r[i:j], v[y:])\n\t\tcopy(r[len(s):], v[:y])\n\t\trotateRight(r[i:], y)\n\t\treturn r\n\t}\n\tif !overlaps(r[len(s):], v) {\n\t\tcopy(r[len(s):], v[:y])\n\t\tcopy(r[i:j], v[y:])\n\t\trotateRight(r[i:], y)\n\t\treturn r\n\t}\n\n\t// Now we know that v overlaps both x and y.\n\t// That means that the entirety of b is *inside* v.\n\t// So we don't need to preserve b at all; instead we\n\t// can copy v first, then copy the b part of v out of\n\t// v to the right destination.\n\tk := startIdx(v, s[j:])\n\tcopy(r[i:], v)\n\tcopy(r[i+len(v):], r[i+k:])\n\treturn r\n}\n\n// Clone returns a copy of the slice.\n// The elements are copied using assignment, so this is a shallow clone.\nfunc Clone[S ~[]E, E any](s S) S {\n\t// Preserve nil in case it matters.\n\tif s == nil {\n\t\treturn nil\n\t}\n\treturn append(S([]E{}), s...)\n}\n\n// Compact replaces consecutive runs of equal elements with a single copy.\n// This is like the uniq command found on Unix.\n// Compact modifies the contents of the slice s and returns the modified slice,\n// which may have a smaller length.\n// When Compact discards m elements in total, it might not modify the elements\n// s[len(s)-m:len(s)]. If those elements contain pointers you might consider\n// zeroing those elements so that objects they reference can be garbage collected.\nfunc Compact[S ~[]E, E comparable](s S) S {\n\tif len(s) < 2 {\n\t\treturn s\n\t}\n\ti := 1\n\tfor k := 1; k < len(s); k++ {\n\t\tif s[k] != s[k-1] {\n\t\t\tif i != k {\n\t\t\t\ts[i] = s[k]\n\t\t\t}\n\t\t\ti++\n\t\t}\n\t}\n\treturn s[:i]\n}\n\n// CompactFunc is like [Compact] but uses an equality function to compare elements.\n// For runs of elements that compare equal, CompactFunc keeps the first one.\nfunc CompactFunc[S ~[]E, E any](s S, eq func(E, E) bool) S {\n\tif len(s) < 2 {\n\t\treturn s\n\t}\n\ti := 1\n\tfor k := 1; k < len(s); k++ {\n\t\tif !eq(s[k], s[k-1]) {\n\t\t\tif i != k {\n\t\t\t\ts[i] = s[k]\n\t\t\t}\n\t\t\ti++\n\t\t}\n\t}\n\treturn s[:i]\n}\n\n// Grow increases the slice's capacity, if necessary, to guarantee space for\n// another n elements. After Grow(n), at least n elements can be appended\n// to the slice without another allocation. If n is negative or too large to\n// allocate the memory, Grow panics.\nfunc Grow[S ~[]E, E any](s S, n int) S {\n\tif n < 0 {\n\t\tpanic(\"cannot be negative\")\n\t}\n\tif n -= cap(s) - len(s); n > 0 {\n\t\ts = append(s[:cap(s)], make([]E, n)...)[:len(s)]\n\t}\n\treturn s\n}\n\n// Clip removes unused capacity from the slice, returning s[:len(s):len(s)].\nfunc Clip[S ~[]E, E any](s S) S {\n\treturn s[:len(s):len(s)]\n}\n\n// Rotation algorithm explanation:\n//\n// rotate left by 2\n// start with\n//   0123456789\n// split up like this\n//   01 234567 89\n// swap first 2 and last 2\n//   89 234567 01\n// join first parts\n//   89234567 01\n// recursively rotate first left part by 2\n//   23456789 01\n// join at the end\n//   2345678901\n//\n// rotate left by 8\n// start with\n//   0123456789\n// split up like this\n//   01 234567 89\n// swap first 2 and last 2\n//   89 234567 01\n// join last parts\n//   89 23456701\n// recursively rotate second part left by 6\n//   89 01234567\n// join at the end\n//   8901234567\n\n// TODO: There are other rotate algorithms.\n// This algorithm has the desirable property that it moves each element exactly twice.\n// The triple-reverse algorithm is simpler and more cache friendly, but takes more writes.\n// The follow-cycles algorithm can be 1-write but it is not very cache friendly.\n\n// rotateLeft rotates b left by n spaces.\n// s_final[i] = s_orig[i+r], wrapping around.\nfunc rotateLeft[E any](s []E, r int) {\n\tfor r != 0 && r != len(s) {\n\t\tif r*2 <= len(s) {\n\t\t\tswap(s[:r], s[len(s)-r:])\n\t\t\ts = s[:len(s)-r]\n\t\t} else {\n\t\t\tswap(s[:len(s)-r], s[r:])\n\t\t\ts, r = s[len(s)-r:], r*2-len(s)\n\t\t}\n\t}\n}\nfunc rotateRight[E any](s []E, r int) {\n\trotateLeft(s, len(s)-r)\n}\n\n// swap swaps the contents of x and y. x and y must be equal length and disjoint.\nfunc swap[E any](x, y []E) {\n\tfor i := 0; i < len(x); i++ {\n\t\tx[i], y[i] = y[i], x[i]\n\t}\n}\n\n// overlaps reports whether the memory ranges a[0:len(a)] and b[0:len(b)] overlap.\nfunc overlaps[E any](a, b []E) bool {\n\tif len(a) == 0 || len(b) == 0 {\n\t\treturn false\n\t}\n\telemSize := unsafe.Sizeof(a[0])\n\tif elemSize == 0 {\n\t\treturn false\n\t}\n\t// TODO: use a runtime/unsafe facility once one becomes available. See issue 12445.\n\t// Also see crypto/internal/alias/alias.go:AnyOverlap\n\treturn uintptr(unsafe.Pointer(&a[0])) <= uintptr(unsafe.Pointer(&b[len(b)-1]))+(elemSize-1) &&\n\t\tuintptr(unsafe.Pointer(&b[0])) <= uintptr(unsafe.Pointer(&a[len(a)-1]))+(elemSize-1)\n}\n\n// startIdx returns the index in haystack where the needle starts.\n// prerequisite: the needle must be aliased entirely inside the haystack.\nfunc startIdx[E any](haystack, needle []E) int {\n\tp := &needle[0]\n\tfor i := range haystack {\n\t\tif p == &haystack[i] {\n\t\t\treturn i\n\t\t}\n\t}\n\t// TODO: what if the overlap is by a non-integral number of Es?\n\tpanic(\"needle not found\")\n}\n\n// Reverse reverses the elements of the slice in place.\nfunc Reverse[S ~[]E, E any](s S) {\n\tfor i, j := 0, len(s)-1; i < j; i, j = i+1, j-1 {\n\t\ts[i], s[j] = s[j], s[i]\n\t}\n}\n// Copyright 2023 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n//package slices\n\n//import (\n//\t\"cmp\"\n//\t\"math/bits\"\n//)\n\n// Sort sorts a slice of any ordered type in ascending order.\n// When sorting floating-point numbers, NaNs are ordered before other values.\nfunc Sort[S ~[]E, E cmp.Ordered](x S) {\n\tn := len(x)\n\tpdqsortOrdered(x, 0, n, bits.Len(uint(n)))\n}\n\n// SortFunc sorts the slice x in ascending order as determined by the cmp\n// function. This sort is not guaranteed to be stable.\n// cmp(a, b) should return a negative number when a < b, a positive number when\n// a > b and zero when a == b.\n//\n// SortFunc requires that cmp is a strict weak ordering.\n// See https://en.wikipedia.org/wiki/Weak_ordering#Strict_weak_orderings.\nfunc SortFunc[S ~[]E, E any](x S, cmp func(a, b E) int) {\n\tn := len(x)\n\tpdqsortCmpFunc(x, 0, n, bits.Len(uint(n)), cmp)\n}\n\n// SortStableFunc sorts the slice x while keeping the original order of equal\n// elements, using cmp to compare elements in the same way as [SortFunc].\nfunc SortStableFunc[S ~[]E, E any](x S, cmp func(a, b E) int) {\n\tstableCmpFunc(x, len(x), cmp)\n}\n\n// IsSorted reports whether x is sorted in ascending order.\nfunc IsSorted[S ~[]E, E cmp.Ordered](x S) bool {\n\tfor i := len(x) - 1; i > 0; i-- {\n\t\tif cmp.Less(x[i], x[i-1]) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\n// IsSortedFunc reports whether x is sorted in ascending order, with cmp as the\n// comparison function as defined by [SortFunc].\nfunc IsSortedFunc[S ~[]E, E any](x S, cmp func(a, b E) int) bool {\n\tfor i := len(x) - 1; i > 0; i-- {\n\t\tif cmp(x[i], x[i-1]) < 0 {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\n// Min returns the minimal value in x. It panics if x is empty.\n// For floating-point numbers, Min propagates NaNs (any NaN value in x\n// forces the output to be NaN).\nfunc Min[S ~[]E, E cmp.Ordered](x S) E {\n\tif len(x) < 1 {\n\t\tpanic(\"slices.Min: empty list\")\n\t}\n\tm := x[0]\n\tfor i := 1; i < len(x); i++ {\n\t\tm = min(m, x[i])\n\t}\n\treturn m\n}\n\n// MinFunc returns the minimal value in x, using cmp to compare elements.\n// It panics if x is empty. If there is more than one minimal element\n// according to the cmp function, MinFunc returns the first one.\nfunc MinFunc[S ~[]E, E any](x S, cmp func(a, b E) int) E {\n\tif len(x) < 1 {\n\t\tpanic(\"slices.MinFunc: empty list\")\n\t}\n\tm := x[0]\n\tfor i := 1; i < len(x); i++ {\n\t\tif cmp(x[i], m) < 0 {\n\t\t\tm = x[i]\n\t\t}\n\t}\n\treturn m\n}\n\n// Max returns the maximal value in x. It panics if x is empty.\n// For floating-point E, Max propagates NaNs (any NaN value in x\n// forces the output to be NaN).\nfunc Max[S ~[]E, E cmp.Ordered](x S) E {\n\tif len(x) < 1 {\n\t\tpanic(\"slices.Max: empty list\")\n\t}\n\tm := x[0]\n\tfor i := 1; i < len(x); i++ {\n\t\tm = max(m, x[i])\n\t}\n\treturn m\n}\n\n// MaxFunc returns the maximal value in x, using cmp to compare elements.\n// It panics if x is empty. If there is more than one maximal element\n// according to the cmp function, MaxFunc returns the first one.\nfunc MaxFunc[S ~[]E, E any](x S, cmp func(a, b E) int) E {\n\tif len(x) < 1 {\n\t\tpanic(\"slices.MaxFunc: empty list\")\n\t}\n\tm := x[0]\n\tfor i := 1; i < len(x); i++ {\n\t\tif cmp(x[i], m) > 0 {\n\t\t\tm = x[i]\n\t\t}\n\t}\n\treturn m\n}\n\n// BinarySearch searches for target in a sorted slice and returns the position\n// where target is found, or the position where target would appear in the\n// sort order; it also returns a bool saying whether the target is really found\n// in the slice. The slice must be sorted in increasing order.\nfunc BinarySearch[S ~[]E, E cmp.Ordered](x S, target E) (int, bool) {\n\t// Inlining is faster than calling BinarySearchFunc with a lambda.\n\tn := len(x)\n\t// Define x[-1] < target and x[n] >= target.\n\t// Invariant: x[i-1] < target, x[j] >= target.\n\ti, j := 0, n\n\tfor i < j {\n\t\th := int(uint(i+j) >> 1) // avoid overflow when computing h\n\t\t// i ≤ h < j\n\t\tif cmp.Less(x[h], target) {\n\t\t\ti = h + 1 // preserves x[i-1] < target\n\t\t} else {\n\t\t\tj = h // preserves x[j] >= target\n\t\t}\n\t}\n\t// i == j, x[i-1] < target, and x[j] (= x[i]) >= target  =>  answer is i.\n\treturn i, i < n && (x[i] == target || (isNaN(x[i]) && isNaN(target)))\n}\n\n// BinarySearchFunc works like [BinarySearch], but uses a custom comparison\n// function. The slice must be sorted in increasing order, where \"increasing\"\n// is defined by cmp. cmp should return 0 if the slice element matches\n// the target, a negative number if the slice element precedes the target,\n// or a positive number if the slice element follows the target.\n// cmp must implement the same ordering as the slice, such that if\n// cmp(a, t) < 0 and cmp(b, t) >= 0, then a must precede b in the slice.\nfunc BinarySearchFunc[S ~[]E, E, T any](x S, target T, cmp func(E, T) int) (int, bool) {\n\tn := len(x)\n\t// Define cmp(x[-1], target) < 0 and cmp(x[n], target) >= 0 .\n\t// Invariant: cmp(x[i - 1], target) < 0, cmp(x[j], target) >= 0.\n\ti, j := 0, n\n\tfor i < j {\n\t\th := int(uint(i+j) >> 1) // avoid overflow when computing h\n\t\t// i ≤ h < j\n\t\tif cmp(x[h], target) < 0 {\n\t\t\ti = h + 1 // preserves cmp(x[i - 1], target) < 0\n\t\t} else {\n\t\t\tj = h // preserves cmp(x[j], target) >= 0\n\t\t}\n\t}\n\t// i == j, cmp(x[i-1], target) < 0, and cmp(x[j], target) (= cmp(x[i], target)) >= 0  =>  answer is i.\n\treturn i, i < n && cmp(x[i], target) == 0\n}\n\ntype sortedHint int // hint for pdqsort when choosing the pivot\n\nconst (\n\tunknownHint sortedHint = iota\n\tincreasingHint\n\tdecreasingHint\n)\n\n// xorshift paper: https://www.jstatsoft.org/article/view/v008i14/xorshift.pdf\ntype xorshift uint64\n\nfunc (r *xorshift) Next() uint64 {\n\t*r ^= *r << 13\n\t*r ^= *r >> 17\n\t*r ^= *r << 5\n\treturn uint64(*r)\n}\n\nfunc nextPowerOfTwo(length int) uint {\n\treturn 1 << bits.Len(uint(length))\n}\n\n// isNaN reports whether x is a NaN without requiring the math package.\n// This will always return false if T is not floating-point.\nfunc isNaN[T cmp.Ordered](x T) bool {\n\treturn x != x\n}\n// Code generated by gen_sort_variants.go; DO NOT EDIT.\n\n// Copyright 2022 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// package slices\n\n// insertionSortCmpFunc sorts data[a:b] using insertion sort.\nfunc insertionSortCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) {\n\tfor i := a + 1; i < b; i++ {\n\t\tfor j := i; j > a && (cmp(data[j], data[j-1]) < 0); j-- {\n\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t}\n\t}\n}\n\n// siftDownCmpFunc implements the heap property on data[lo:hi].\n// first is an offset into the array where the root of the heap lies.\nfunc siftDownCmpFunc[E any](data []E, lo, hi, first int, cmp func(a, b E) int) {\n\troot := lo\n\tfor {\n\t\tchild := 2*root + 1\n\t\tif child >= hi {\n\t\t\tbreak\n\t\t}\n\t\tif child+1 < hi && (cmp(data[first+child], data[first+child+1]) < 0) {\n\t\t\tchild++\n\t\t}\n\t\tif !(cmp(data[first+root], data[first+child]) < 0) {\n\t\t\treturn\n\t\t}\n\t\tdata[first+root], data[first+child] = data[first+child], data[first+root]\n\t\troot = child\n\t}\n}\n\nfunc heapSortCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) {\n\tfirst := a\n\tlo := 0\n\thi := b - a\n\n\t// Build heap with greatest element at top.\n\tfor i := (hi - 1) / 2; i >= 0; i-- {\n\t\tsiftDownCmpFunc(data, i, hi, first, cmp)\n\t}\n\n\t// Pop elements, largest first, into end of data.\n\tfor i := hi - 1; i >= 0; i-- {\n\t\tdata[first], data[first+i] = data[first+i], data[first]\n\t\tsiftDownCmpFunc(data, lo, i, first, cmp)\n\t}\n}\n\n// pdqsortCmpFunc sorts data[a:b].\n// The algorithm based on pattern-defeating quicksort(pdqsort), but without the optimizations from BlockQuicksort.\n// pdqsort paper: https://arxiv.org/pdf/2106.05123.pdf\n// C++ implementation: https://github.com/orlp/pdqsort\n// Rust implementation: https://docs.rs/pdqsort/latest/pdqsort/\n// limit is the number of allowed bad (very unbalanced) pivots before falling back to heapsort.\nfunc pdqsortCmpFunc[E any](data []E, a, b, limit int, cmp func(a, b E) int) {\n\tconst maxInsertion = 12\n\n\tvar (\n\t\twasBalanced    = true // whether the last partitioning was reasonably balanced\n\t\twasPartitioned = true // whether the slice was already partitioned\n\t)\n\n\tfor {\n\t\tlength := b - a\n\n\t\tif length <= maxInsertion {\n\t\t\tinsertionSortCmpFunc(data, a, b, cmp)\n\t\t\treturn\n\t\t}\n\n\t\t// Fall back to heapsort if too many bad choices were made.\n\t\tif limit == 0 {\n\t\t\theapSortCmpFunc(data, a, b, cmp)\n\t\t\treturn\n\t\t}\n\n\t\t// If the last partitioning was imbalanced, we need to breaking patterns.\n\t\tif !wasBalanced {\n\t\t\tbreakPatternsCmpFunc(data, a, b, cmp)\n\t\t\tlimit--\n\t\t}\n\n\t\tpivot, hint := choosePivotCmpFunc(data, a, b, cmp)\n\t\tif hint == decreasingHint {\n\t\t\treverseRangeCmpFunc(data, a, b, cmp)\n\t\t\t// The chosen pivot was pivot-a elements after the start of the array.\n\t\t\t// After reversing it is pivot-a elements before the end of the array.\n\t\t\t// The idea came from Rust's implementation.\n\t\t\tpivot = (b - 1) - (pivot - a)\n\t\t\thint = increasingHint\n\t\t}\n\n\t\t// The slice is likely already sorted.\n\t\tif wasBalanced && wasPartitioned && hint == increasingHint {\n\t\t\tif partialInsertionSortCmpFunc(data, a, b, cmp) {\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\n\t\t// Probably the slice contains many duplicate elements, partition the slice into\n\t\t// elements equal to and elements greater than the pivot.\n\t\tif a > 0 && !(cmp(data[a-1], data[pivot]) < 0) {\n\t\t\tmid := partitionEqualCmpFunc(data, a, b, pivot, cmp)\n\t\t\ta = mid\n\t\t\tcontinue\n\t\t}\n\n\t\tmid, alreadyPartitioned := partitionCmpFunc(data, a, b, pivot, cmp)\n\t\twasPartitioned = alreadyPartitioned\n\n\t\tleftLen, rightLen := mid-a, b-mid\n\t\tbalanceThreshold := length / 8\n\t\tif leftLen < rightLen {\n\t\t\twasBalanced = leftLen >= balanceThreshold\n\t\t\tpdqsortCmpFunc(data, a, mid, limit, cmp)\n\t\t\ta = mid + 1\n\t\t} else {\n\t\t\twasBalanced = rightLen >= balanceThreshold\n\t\t\tpdqsortCmpFunc(data, mid+1, b, limit, cmp)\n\t\t\tb = mid\n\t\t}\n\t}\n}\n\n// partitionCmpFunc does one quicksort partition.\n// Let p = data[pivot]\n// Moves elements in data[a:b] around, so that data[i]<p and data[j]>=p for i<newpivot and j>newpivot.\n// On return, data[newpivot] = p\nfunc partitionCmpFunc[E any](data []E, a, b, pivot int, cmp func(a, b E) int) (newpivot int, alreadyPartitioned bool) {\n\tdata[a], data[pivot] = data[pivot], data[a]\n\ti, j := a+1, b-1 // i and j are inclusive of the elements remaining to be partitioned\n\n\tfor i <= j && (cmp(data[i], data[a]) < 0) {\n\t\ti++\n\t}\n\tfor i <= j && !(cmp(data[j], data[a]) < 0) {\n\t\tj--\n\t}\n\tif i > j {\n\t\tdata[j], data[a] = data[a], data[j]\n\t\treturn j, true\n\t}\n\tdata[i], data[j] = data[j], data[i]\n\ti++\n\tj--\n\n\tfor {\n\t\tfor i <= j && (cmp(data[i], data[a]) < 0) {\n\t\t\ti++\n\t\t}\n\t\tfor i <= j && !(cmp(data[j], data[a]) < 0) {\n\t\t\tj--\n\t\t}\n\t\tif i > j {\n\t\t\tbreak\n\t\t}\n\t\tdata[i], data[j] = data[j], data[i]\n\t\ti++\n\t\tj--\n\t}\n\tdata[j], data[a] = data[a], data[j]\n\treturn j, false\n}\n\n// partitionEqualCmpFunc partitions data[a:b] into elements equal to data[pivot] followed by elements greater than data[pivot].\n// It assumed that data[a:b] does not contain elements smaller than the data[pivot].\nfunc partitionEqualCmpFunc[E any](data []E, a, b, pivot int, cmp func(a, b E) int) (newpivot int) {\n\tdata[a], data[pivot] = data[pivot], data[a]\n\ti, j := a+1, b-1 // i and j are inclusive of the elements remaining to be partitioned\n\n\tfor {\n\t\tfor i <= j && !(cmp(data[a], data[i]) < 0) {\n\t\t\ti++\n\t\t}\n\t\tfor i <= j && (cmp(data[a], data[j]) < 0) {\n\t\t\tj--\n\t\t}\n\t\tif i > j {\n\t\t\tbreak\n\t\t}\n\t\tdata[i], data[j] = data[j], data[i]\n\t\ti++\n\t\tj--\n\t}\n\treturn i\n}\n\n// partialInsertionSortCmpFunc partially sorts a slice, returns true if the slice is sorted at the end.\nfunc partialInsertionSortCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) bool {\n\tconst (\n\t\tmaxSteps         = 5  // maximum number of adjacent out-of-order pairs that will get shifted\n\t\tshortestShifting = 50 // don't shift any elements on short arrays\n\t)\n\ti := a + 1\n\tfor j := 0; j < maxSteps; j++ {\n\t\tfor i < b && !(cmp(data[i], data[i-1]) < 0) {\n\t\t\ti++\n\t\t}\n\n\t\tif i == b {\n\t\t\treturn true\n\t\t}\n\n\t\tif b-a < shortestShifting {\n\t\t\treturn false\n\t\t}\n\n\t\tdata[i], data[i-1] = data[i-1], data[i]\n\n\t\t// Shift the smaller one to the left.\n\t\tif i-a >= 2 {\n\t\t\tfor j := i - 1; j >= 1; j-- {\n\t\t\t\tif !(cmp(data[j], data[j-1]) < 0) {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t\t}\n\t\t}\n\t\t// Shift the greater one to the right.\n\t\tif b-i >= 2 {\n\t\t\tfor j := i + 1; j < b; j++ {\n\t\t\t\tif !(cmp(data[j], data[j-1]) < 0) {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t\t}\n\t\t}\n\t}\n\treturn false\n}\n\n// breakPatternsCmpFunc scatters some elements around in an attempt to break some patterns\n// that might cause imbalanced partitions in quicksort.\nfunc breakPatternsCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) {\n\tlength := b - a\n\tif length >= 8 {\n\t\trandom := xorshift(length)\n\t\tmodulus := nextPowerOfTwo(length)\n\n\t\tfor idx := a + (length/4)*2 - 1; idx <= a+(length/4)*2+1; idx++ {\n\t\t\tother := int(uint(random.Next()) & (modulus - 1))\n\t\t\tif other >= length {\n\t\t\t\tother -= length\n\t\t\t}\n\t\t\tdata[idx], data[a+other] = data[a+other], data[idx]\n\t\t}\n\t}\n}\n\n// choosePivotCmpFunc chooses a pivot in data[a:b].\n//\n// [0,8): chooses a static pivot.\n// [8,shortestNinther): uses the simple median-of-three method.\n// [shortestNinther,∞): uses the Tukey ninther method.\nfunc choosePivotCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) (pivot int, hint sortedHint) {\n\tconst (\n\t\tshortestNinther = 50\n\t\tmaxSwaps        = 4 * 3\n\t)\n\n\tl := b - a\n\n\tvar (\n\t\tswaps int\n\t\ti     = a + l/4*1\n\t\tj     = a + l/4*2\n\t\tk     = a + l/4*3\n\t)\n\n\tif l >= 8 {\n\t\tif l >= shortestNinther {\n\t\t\t// Tukey ninther method, the idea came from Rust's implementation.\n\t\t\ti = medianAdjacentCmpFunc(data, i, &swaps, cmp)\n\t\t\tj = medianAdjacentCmpFunc(data, j, &swaps, cmp)\n\t\t\tk = medianAdjacentCmpFunc(data, k, &swaps, cmp)\n\t\t}\n\t\t// Find the median among i, j, k and stores it into j.\n\t\tj = medianCmpFunc(data, i, j, k, &swaps, cmp)\n\t}\n\n\tswitch swaps {\n\tcase 0:\n\t\treturn j, increasingHint\n\tcase maxSwaps:\n\t\treturn j, decreasingHint\n\tdefault:\n\t\treturn j, unknownHint\n\t}\n}\n\n// order2CmpFunc returns x,y where data[x] <= data[y], where x,y=a,b or x,y=b,a.\nfunc order2CmpFunc[E any](data []E, a, b int, swaps *int, cmp func(a, b E) int) (int, int) {\n\tif cmp(data[b], data[a]) < 0 {\n\t\t*swaps++\n\t\treturn b, a\n\t}\n\treturn a, b\n}\n\n// medianCmpFunc returns x where data[x] is the median of data[a],data[b],data[c], where x is a, b, or c.\nfunc medianCmpFunc[E any](data []E, a, b, c int, swaps *int, cmp func(a, b E) int) int {\n\ta, b = order2CmpFunc(data, a, b, swaps, cmp)\n\tb, c = order2CmpFunc(data, b, c, swaps, cmp)\n\ta, b = order2CmpFunc(data, a, b, swaps, cmp)\n\treturn b\n}\n\n// medianAdjacentCmpFunc finds the median of data[a - 1], data[a], data[a + 1] and stores the index into a.\nfunc medianAdjacentCmpFunc[E any](data []E, a int, swaps *int, cmp func(a, b E) int) int {\n\treturn medianCmpFunc(data, a-1, a, a+1, swaps, cmp)\n}\n\nfunc reverseRangeCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) {\n\ti := a\n\tj := b - 1\n\tfor i < j {\n\t\tdata[i], data[j] = data[j], data[i]\n\t\ti++\n\t\tj--\n\t}\n}\n\nfunc swapRangeCmpFunc[E any](data []E, a, b, n int, cmp func(a, b E) int) {\n\tfor i := 0; i < n; i++ {\n\t\tdata[a+i], data[b+i] = data[b+i], data[a+i]\n\t}\n}\n\nfunc stableCmpFunc[E any](data []E, n int, cmp func(a, b E) int) {\n\tblockSize := 20 // must be > 0\n\ta, b := 0, blockSize\n\tfor b <= n {\n\t\tinsertionSortCmpFunc(data, a, b, cmp)\n\t\ta = b\n\t\tb += blockSize\n\t}\n\tinsertionSortCmpFunc(data, a, n, cmp)\n\n\tfor blockSize < n {\n\t\ta, b = 0, 2*blockSize\n\t\tfor b <= n {\n\t\t\tsymMergeCmpFunc(data, a, a+blockSize, b, cmp)\n\t\t\ta = b\n\t\t\tb += 2 * blockSize\n\t\t}\n\t\tif m := a + blockSize; m < n {\n\t\t\tsymMergeCmpFunc(data, a, m, n, cmp)\n\t\t}\n\t\tblockSize *= 2\n\t}\n}\n\n// symMergeCmpFunc merges the two sorted subsequences data[a:m] and data[m:b] using\n// the SymMerge algorithm from Pok-Son Kim and Arne Kutzner, \"Stable Minimum\n// Storage Merging by Symmetric Comparisons\", in Susanne Albers and Tomasz\n// Radzik, editors, Algorithms - ESA 2004, volume 3221 of Lecture Notes in\n// Computer Science, pages 714-723. Springer, 2004.\n//\n// Let M = m-a and N = b-n. Wolog M < N.\n// The recursion depth is bound by ceil(log(N+M)).\n// The algorithm needs O(M*log(N/M + 1)) calls to data.Less.\n// The algorithm needs O((M+N)*log(M)) calls to data.Swap.\n//\n// The paper gives O((M+N)*log(M)) as the number of assignments assuming a\n// rotation algorithm which uses O(M+N+gcd(M+N)) assignments. The argumentation\n// in the paper carries through for Swap operations, especially as the block\n// swapping rotate uses only O(M+N) Swaps.\n//\n// symMerge assumes non-degenerate arguments: a < m && m < b.\n// Having the caller check this condition eliminates many leaf recursion calls,\n// which improves performance.\nfunc symMergeCmpFunc[E any](data []E, a, m, b int, cmp func(a, b E) int) {\n\t// Avoid unnecessary recursions of symMerge\n\t// by direct insertion of data[a] into data[m:b]\n\t// if data[a:m] only contains one element.\n\tif m-a == 1 {\n\t\t// Use binary search to find the lowest index i\n\t\t// such that data[i] >= data[a] for m <= i < b.\n\t\t// Exit the search loop with i == b in case no such index exists.\n\t\ti := m\n\t\tj := b\n\t\tfor i < j {\n\t\t\th := int(uint(i+j) >> 1)\n\t\t\tif cmp(data[h], data[a]) < 0 {\n\t\t\t\ti = h + 1\n\t\t\t} else {\n\t\t\t\tj = h\n\t\t\t}\n\t\t}\n\t\t// Swap values until data[a] reaches the position before i.\n\t\tfor k := a; k < i-1; k++ {\n\t\t\tdata[k], data[k+1] = data[k+1], data[k]\n\t\t}\n\t\treturn\n\t}\n\n\t// Avoid unnecessary recursions of symMerge\n\t// by direct insertion of data[m] into data[a:m]\n\t// if data[m:b] only contains one element.\n\tif b-m == 1 {\n\t\t// Use binary search to find the lowest index i\n\t\t// such that data[i] > data[m] for a <= i < m.\n\t\t// Exit the search loop with i == m in case no such index exists.\n\t\ti := a\n\t\tj := m\n\t\tfor i < j {\n\t\t\th := int(uint(i+j) >> 1)\n\t\t\tif !(cmp(data[m], data[h]) < 0) {\n\t\t\t\ti = h + 1\n\t\t\t} else {\n\t\t\t\tj = h\n\t\t\t}\n\t\t}\n\t\t// Swap values until data[m] reaches the position i.\n\t\tfor k := m; k > i; k-- {\n\t\t\tdata[k], data[k-1] = data[k-1], data[k]\n\t\t}\n\t\treturn\n\t}\n\n\tmid := int(uint(a+b) >> 1)\n\tn := mid + m\n\tvar start, r int\n\tif m > mid {\n\t\tstart = n - b\n\t\tr = mid\n\t} else {\n\t\tstart = a\n\t\tr = m\n\t}\n\tp := n - 1\n\n\tfor start < r {\n\t\tc := int(uint(start+r) >> 1)\n\t\tif !(cmp(data[p-c], data[c]) < 0) {\n\t\t\tstart = c + 1\n\t\t} else {\n\t\t\tr = c\n\t\t}\n\t}\n\n\tend := n - start\n\tif start < m && m < end {\n\t\trotateCmpFunc(data, start, m, end, cmp)\n\t}\n\tif a < start && start < mid {\n\t\tsymMergeCmpFunc(data, a, start, mid, cmp)\n\t}\n\tif mid < end && end < b {\n\t\tsymMergeCmpFunc(data, mid, end, b, cmp)\n\t}\n}\n\n// rotateCmpFunc rotates two consecutive blocks u = data[a:m] and v = data[m:b] in data:\n// Data of the form 'x u v y' is changed to 'x v u y'.\n// rotate performs at most b-a many calls to data.Swap,\n// and it assumes non-degenerate arguments: a < m && m < b.\nfunc rotateCmpFunc[E any](data []E, a, m, b int, cmp func(a, b E) int) {\n\ti := m - a\n\tj := b - m\n\n\tfor i != j {\n\t\tif i > j {\n\t\t\tswapRangeCmpFunc(data, m-i, m, j, cmp)\n\t\t\ti -= j\n\t\t} else {\n\t\t\tswapRangeCmpFunc(data, m-i, m+j-i, i, cmp)\n\t\t\tj -= i\n\t\t}\n\t}\n\t// i == j\n\tswapRangeCmpFunc(data, m-i, m, i, cmp)\n}\n// Code generated by gen_sort_variants.go; DO NOT EDIT.\n\n// Copyright 2022 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// package slices\n\n// import \"cmp\"\n\n// insertionSortOrdered sorts data[a:b] using insertion sort.\nfunc insertionSortOrdered[E cmp.Ordered](data []E, a, b int) {\n\tfor i := a + 1; i < b; i++ {\n\t\tfor j := i; j > a && cmp.Less(data[j], data[j-1]); j-- {\n\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t}\n\t}\n}\n\n// siftDownOrdered implements the heap property on data[lo:hi].\n// first is an offset into the array where the root of the heap lies.\nfunc siftDownOrdered[E cmp.Ordered](data []E, lo, hi, first int) {\n\troot := lo\n\tfor {\n\t\tchild := 2*root + 1\n\t\tif child >= hi {\n\t\t\tbreak\n\t\t}\n\t\tif child+1 < hi && cmp.Less(data[first+child], data[first+child+1]) {\n\t\t\tchild++\n\t\t}\n\t\tif !cmp.Less(data[first+root], data[first+child]) {\n\t\t\treturn\n\t\t}\n\t\tdata[first+root], data[first+child] = data[first+child], data[first+root]\n\t\troot = child\n\t}\n}\n\nfunc heapSortOrdered[E cmp.Ordered](data []E, a, b int) {\n\tfirst := a\n\tlo := 0\n\thi := b - a\n\n\t// Build heap with greatest element at top.\n\tfor i := (hi - 1) / 2; i >= 0; i-- {\n\t\tsiftDownOrdered(data, i, hi, first)\n\t}\n\n\t// Pop elements, largest first, into end of data.\n\tfor i := hi - 1; i >= 0; i-- {\n\t\tdata[first], data[first+i] = data[first+i], data[first]\n\t\tsiftDownOrdered(data, lo, i, first)\n\t}\n}\n\n// pdqsortOrdered sorts data[a:b].\n// The algorithm based on pattern-defeating quicksort(pdqsort), but without the optimizations from BlockQuicksort.\n// pdqsort paper: https://arxiv.org/pdf/2106.05123.pdf\n// C++ implementation: https://github.com/orlp/pdqsort\n// Rust implementation: https://docs.rs/pdqsort/latest/pdqsort/\n// limit is the number of allowed bad (very unbalanced) pivots before falling back to heapsort.\nfunc pdqsortOrdered[E cmp.Ordered](data []E, a, b, limit int) {\n\tconst maxInsertion = 12\n\n\tvar (\n\t\twasBalanced    = true // whether the last partitioning was reasonably balanced\n\t\twasPartitioned = true // whether the slice was already partitioned\n\t)\n\n\tfor {\n\t\tlength := b - a\n\n\t\tif length <= maxInsertion {\n\t\t\tinsertionSortOrdered(data, a, b)\n\t\t\treturn\n\t\t}\n\n\t\t// Fall back to heapsort if too many bad choices were made.\n\t\tif limit == 0 {\n\t\t\theapSortOrdered(data, a, b)\n\t\t\treturn\n\t\t}\n\n\t\t// If the last partitioning was imbalanced, we need to breaking patterns.\n\t\tif !wasBalanced {\n\t\t\tbreakPatternsOrdered(data, a, b)\n\t\t\tlimit--\n\t\t}\n\n\t\tpivot, hint := choosePivotOrdered(data, a, b)\n\t\tif hint == decreasingHint {\n\t\t\treverseRangeOrdered(data, a, b)\n\t\t\t// The chosen pivot was pivot-a elements after the start of the array.\n\t\t\t// After reversing it is pivot-a elements before the end of the array.\n\t\t\t// The idea came from Rust's implementation.\n\t\t\tpivot = (b - 1) - (pivot - a)\n\t\t\thint = increasingHint\n\t\t}\n\n\t\t// The slice is likely already sorted.\n\t\tif wasBalanced && wasPartitioned && hint == increasingHint {\n\t\t\tif partialInsertionSortOrdered(data, a, b) {\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\n\t\t// Probably the slice contains many duplicate elements, partition the slice into\n\t\t// elements equal to and elements greater than the pivot.\n\t\tif a > 0 && !cmp.Less(data[a-1], data[pivot]) {\n\t\t\tmid := partitionEqualOrdered(data, a, b, pivot)\n\t\t\ta = mid\n\t\t\tcontinue\n\t\t}\n\n\t\tmid, alreadyPartitioned := partitionOrdered(data, a, b, pivot)\n\t\twasPartitioned = alreadyPartitioned\n\n\t\tleftLen, rightLen := mid-a, b-mid\n\t\tbalanceThreshold := length / 8\n\t\tif leftLen < rightLen {\n\t\t\twasBalanced = leftLen >= balanceThreshold\n\t\t\tpdqsortOrdered(data, a, mid, limit)\n\t\t\ta = mid + 1\n\t\t} else {\n\t\t\twasBalanced = rightLen >= balanceThreshold\n\t\t\tpdqsortOrdered(data, mid+1, b, limit)\n\t\t\tb = mid\n\t\t}\n\t}\n}\n\n// partitionOrdered does one quicksort partition.\n// Let p = data[pivot]\n// Moves elements in data[a:b] around, so that data[i]<p and data[j]>=p for i<newpivot and j>newpivot.\n// On return, data[newpivot] = p\nfunc partitionOrdered[E cmp.Ordered](data []E, a, b, pivot int) (newpivot int, alreadyPartitioned bool) {\n\tdata[a], data[pivot] = data[pivot], data[a]\n\ti, j := a+1, b-1 // i and j are inclusive of the elements remaining to be partitioned\n\n\tfor i <= j && cmp.Less(data[i], data[a]) {\n\t\ti++\n\t}\n\tfor i <= j && !cmp.Less(data[j], data[a]) {\n\t\tj--\n\t}\n\tif i > j {\n\t\tdata[j], data[a] = data[a], data[j]\n\t\treturn j, true\n\t}\n\tdata[i], data[j] = data[j], data[i]\n\ti++\n\tj--\n\n\tfor {\n\t\tfor i <= j && cmp.Less(data[i], data[a]) {\n\t\t\ti++\n\t\t}\n\t\tfor i <= j && !cmp.Less(data[j], data[a]) {\n\t\t\tj--\n\t\t}\n\t\tif i > j {\n\t\t\tbreak\n\t\t}\n\t\tdata[i], data[j] = data[j], data[i]\n\t\ti++\n\t\tj--\n\t}\n\tdata[j], data[a] = data[a], data[j]\n\treturn j, false\n}\n\n// partitionEqualOrdered partitions data[a:b] into elements equal to data[pivot] followed by elements greater than data[pivot].\n// It assumed that data[a:b] does not contain elements smaller than the data[pivot].\nfunc partitionEqualOrdered[E cmp.Ordered](data []E, a, b, pivot int) (newpivot int) {\n\tdata[a], data[pivot] = data[pivot], data[a]\n\ti, j := a+1, b-1 // i and j are inclusive of the elements remaining to be partitioned\n\n\tfor {\n\t\tfor i <= j && !cmp.Less(data[a], data[i]) {\n\t\t\ti++\n\t\t}\n\t\tfor i <= j && cmp.Less(data[a], data[j]) {\n\t\t\tj--\n\t\t}\n\t\tif i > j {\n\t\t\tbreak\n\t\t}\n\t\tdata[i], data[j] = data[j], data[i]\n\t\ti++\n\t\tj--\n\t}\n\treturn i\n}\n\n// partialInsertionSortOrdered partially sorts a slice, returns true if the slice is sorted at the end.\nfunc partialInsertionSortOrdered[E cmp.Ordered](data []E, a, b int) bool {\n\tconst (\n\t\tmaxSteps         = 5  // maximum number of adjacent out-of-order pairs that will get shifted\n\t\tshortestShifting = 50 // don't shift any elements on short arrays\n\t)\n\ti := a + 1\n\tfor j := 0; j < maxSteps; j++ {\n\t\tfor i < b && !cmp.Less(data[i], data[i-1]) {\n\t\t\ti++\n\t\t}\n\n\t\tif i == b {\n\t\t\treturn true\n\t\t}\n\n\t\tif b-a < shortestShifting {\n\t\t\treturn false\n\t\t}\n\n\t\tdata[i], data[i-1] = data[i-1], data[i]\n\n\t\t// Shift the smaller one to the left.\n\t\tif i-a >= 2 {\n\t\t\tfor j := i - 1; j >= 1; j-- {\n\t\t\t\tif !cmp.Less(data[j], data[j-1]) {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t\t}\n\t\t}\n\t\t// Shift the greater one to the right.\n\t\tif b-i >= 2 {\n\t\t\tfor j := i + 1; j < b; j++ {\n\t\t\t\tif !cmp.Less(data[j], data[j-1]) {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t\t}\n\t\t}\n\t}\n\treturn false\n}\n\n// breakPatternsOrdered scatters some elements around in an attempt to break some patterns\n// that might cause imbalanced partitions in quicksort.\nfunc breakPatternsOrdered[E cmp.Ordered](data []E, a, b int) {\n\tlength := b - a\n\tif length >= 8 {\n\t\trandom := xorshift(length)\n\t\tmodulus := nextPowerOfTwo(length)\n\n\t\tfor idx := a + (length/4)*2 - 1; idx <= a+(length/4)*2+1; idx++ {\n\t\t\tother := int(uint(random.Next()) & (modulus - 1))\n\t\t\tif other >= length {\n\t\t\t\tother -= length\n\t\t\t}\n\t\t\tdata[idx], data[a+other] = data[a+other], data[idx]\n\t\t}\n\t}\n}\n\n// choosePivotOrdered chooses a pivot in data[a:b].\n//\n// [0,8): chooses a static pivot.\n// [8,shortestNinther): uses the simple median-of-three method.\n// [shortestNinther,∞): uses the Tukey ninther method.\nfunc choosePivotOrdered[E cmp.Ordered](data []E, a, b int) (pivot int, hint sortedHint) {\n\tconst (\n\t\tshortestNinther = 50\n\t\tmaxSwaps        = 4 * 3\n\t)\n\n\tl := b - a\n\n\tvar (\n\t\tswaps int\n\t\ti     = a + l/4*1\n\t\tj     = a + l/4*2\n\t\tk     = a + l/4*3\n\t)\n\n\tif l >= 8 {\n\t\tif l >= shortestNinther {\n\t\t\t// Tukey ninther method, the idea came from Rust's implementation.\n\t\t\ti = medianAdjacentOrdered(data, i, &swaps)\n\t\t\tj = medianAdjacentOrdered(data, j, &swaps)\n\t\t\tk = medianAdjacentOrdered(data, k, &swaps)\n\t\t}\n\t\t// Find the median among i, j, k and stores it into j.\n\t\tj = medianOrdered(data, i, j, k, &swaps)\n\t}\n\n\tswitch swaps {\n\tcase 0:\n\t\treturn j, increasingHint\n\tcase maxSwaps:\n\t\treturn j, decreasingHint\n\tdefault:\n\t\treturn j, unknownHint\n\t}\n}\n\n// order2Ordered returns x,y where data[x] <= data[y], where x,y=a,b or x,y=b,a.\nfunc order2Ordered[E cmp.Ordered](data []E, a, b int, swaps *int) (int, int) {\n\tif cmp.Less(data[b], data[a]) {\n\t\t*swaps++\n\t\treturn b, a\n\t}\n\treturn a, b\n}\n\n// medianOrdered returns x where data[x] is the median of data[a],data[b],data[c], where x is a, b, or c.\nfunc medianOrdered[E cmp.Ordered](data []E, a, b, c int, swaps *int) int {\n\ta, b = order2Ordered(data, a, b, swaps)\n\tb, c = order2Ordered(data, b, c, swaps)\n\ta, b = order2Ordered(data, a, b, swaps)\n\treturn b\n}\n\n// medianAdjacentOrdered finds the median of data[a - 1], data[a], data[a + 1] and stores the index into a.\nfunc medianAdjacentOrdered[E cmp.Ordered](data []E, a int, swaps *int) int {\n\treturn medianOrdered(data, a-1, a, a+1, swaps)\n}\n\nfunc reverseRangeOrdered[E cmp.Ordered](data []E, a, b int) {\n\ti := a\n\tj := b - 1\n\tfor i < j {\n\t\tdata[i], data[j] = data[j], data[i]\n\t\ti++\n\t\tj--\n\t}\n}\n\nfunc swapRangeOrdered[E cmp.Ordered](data []E, a, b, n int) {\n\tfor i := 0; i < n; i++ {\n\t\tdata[a+i], data[b+i] = data[b+i], data[a+i]\n\t}\n}\n\nfunc stableOrdered[E cmp.Ordered](data []E, n int) {\n\tblockSize := 20 // must be > 0\n\ta, b := 0, blockSize\n\tfor b <= n {\n\t\tinsertionSortOrdered(data, a, b)\n\t\ta = b\n\t\tb += blockSize\n\t}\n\tinsertionSortOrdered(data, a, n)\n\n\tfor blockSize < n {\n\t\ta, b = 0, 2*blockSize\n\t\tfor b <= n {\n\t\t\tsymMergeOrdered(data, a, a+blockSize, b)\n\t\t\ta = b\n\t\t\tb += 2 * blockSize\n\t\t}\n\t\tif m := a + blockSize; m < n {\n\t\t\tsymMergeOrdered(data, a, m, n)\n\t\t}\n\t\tblockSize *= 2\n\t}\n}\n\n// symMergeOrdered merges the two sorted subsequences data[a:m] and data[m:b] using\n// the SymMerge algorithm from Pok-Son Kim and Arne Kutzner, \"Stable Minimum\n// Storage Merging by Symmetric Comparisons\", in Susanne Albers and Tomasz\n// Radzik, editors, Algorithms - ESA 2004, volume 3221 of Lecture Notes in\n// Computer Science, pages 714-723. Springer, 2004.\n//\n// Let M = m-a and N = b-n. Wolog M < N.\n// The recursion depth is bound by ceil(log(N+M)).\n// The algorithm needs O(M*log(N/M + 1)) calls to data.Less.\n// The algorithm needs O((M+N)*log(M)) calls to data.Swap.\n//\n// The paper gives O((M+N)*log(M)) as the number of assignments assuming a\n// rotation algorithm which uses O(M+N+gcd(M+N)) assignments. The argumentation\n// in the paper carries through for Swap operations, especially as the block\n// swapping rotate uses only O(M+N) Swaps.\n//\n// symMerge assumes non-degenerate arguments: a < m && m < b.\n// Having the caller check this condition eliminates many leaf recursion calls,\n// which improves performance.\nfunc symMergeOrdered[E cmp.Ordered](data []E, a, m, b int) {\n\t// Avoid unnecessary recursions of symMerge\n\t// by direct insertion of data[a] into data[m:b]\n\t// if data[a:m] only contains one element.\n\tif m-a == 1 {\n\t\t// Use binary search to find the lowest index i\n\t\t// such that data[i] >= data[a] for m <= i < b.\n\t\t// Exit the search loop with i == b in case no such index exists.\n\t\ti := m\n\t\tj := b\n\t\tfor i < j {\n\t\t\th := int(uint(i+j) >> 1)\n\t\t\tif cmp.Less(data[h], data[a]) {\n\t\t\t\ti = h + 1\n\t\t\t} else {\n\t\t\t\tj = h\n\t\t\t}\n\t\t}\n\t\t// Swap values until data[a] reaches the position before i.\n\t\tfor k := a; k < i-1; k++ {\n\t\t\tdata[k], data[k+1] = data[k+1], data[k]\n\t\t}\n\t\treturn\n\t}\n\n\t// Avoid unnecessary recursions of symMerge\n\t// by direct insertion of data[m] into data[a:m]\n\t// if data[m:b] only contains one element.\n\tif b-m == 1 {\n\t\t// Use binary search to find the lowest index i\n\t\t// such that data[i] > data[m] for a <= i < m.\n\t\t// Exit the search loop with i == m in case no such index exists.\n\t\ti := a\n\t\tj := m\n\t\tfor i < j {\n\t\t\th := int(uint(i+j) >> 1)\n\t\t\tif !cmp.Less(data[m], data[h]) {\n\t\t\t\ti = h + 1\n\t\t\t} else {\n\t\t\t\tj = h\n\t\t\t}\n\t\t}\n\t\t// Swap values until data[m] reaches the position i.\n\t\tfor k := m; k > i; k-- {\n\t\t\tdata[k], data[k-1] = data[k-1], data[k]\n\t\t}\n\t\treturn\n\t}\n\n\tmid := int(uint(a+b) >> 1)\n\tn := mid + m\n\tvar start, r int\n\tif m > mid {\n\t\tstart = n - b\n\t\tr = mid\n\t} else {\n\t\tstart = a\n\t\tr = m\n\t}\n\tp := n - 1\n\n\tfor start < r {\n\t\tc := int(uint(start+r) >> 1)\n\t\tif !cmp.Less(data[p-c], data[c]) {\n\t\t\tstart = c + 1\n\t\t} else {\n\t\t\tr = c\n\t\t}\n\t}\n\n\tend := n - start\n\tif start < m && m < end {\n\t\trotateOrdered(data, start, m, end)\n\t}\n\tif a < start && start < mid {\n\t\tsymMergeOrdered(data, a, start, mid)\n\t}\n\tif mid < end && end < b {\n\t\tsymMergeOrdered(data, mid, end, b)\n\t}\n}\n\n// rotateOrdered rotates two consecutive blocks u = data[a:m] and v = data[m:b] in data:\n// Data of the form 'x u v y' is changed to 'x v u y'.\n// rotate performs at most b-a many calls to data.Swap,\n// and it assumes non-degenerate arguments: a < m && m < b.\nfunc rotateOrdered[E cmp.Ordered](data []E, a, m, b int) {\n\ti := m - a\n\tj := b - m\n\n\tfor i != j {\n\t\tif i > j {\n\t\t\tswapRangeOrdered(data, m-i, m, j)\n\t\t\ti -= j\n\t\t} else {\n\t\t\tswapRangeOrdered(data, m-i, m+j-i, i)\n\t\t\tj -= i\n\t\t}\n\t}\n\t// i == j\n\tswapRangeOrdered(data, m-i, m, i)\n}\n"
  },
  {
    "path": "stdlib/generic/go1_21_sync.go.txt",
    "content": "// Copyright 2022 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage sync\n  \nimport (\n \t\"sync/atomic\"\n)\n\n// OnceFunc returns a function that invokes f only once. The returned function\n// may be called concurrently.\n//\n// If f panics, the returned function will panic with the same value on every call.\nfunc OnceFunc(f func()) func() {\n\tvar (\n\t\tonce  Once\n\t\tvalid bool\n\t\tp     any\n\t)\n\t// Construct the inner closure just once to reduce costs on the fast path.\n\tg := func() {\n\t\tdefer func() {\n\t\t\tp = recover()\n\t\t\tif !valid {\n\t\t\t\t// Re-panic immediately so on the first call the user gets a\n\t\t\t\t// complete stack trace into f.\n\t\t\t\tpanic(p)\n\t\t\t}\n\t\t}()\n\t\tf()\n\t\tvalid = true // Set only if f does not panic\n\t}\n\treturn func() {\n\t\tonce.Do(g)\n\t\tif !valid {\n\t\t\tpanic(p)\n\t\t}\n\t}\n}\n\n// OnceValue returns a function that invokes f only once and returns the value\n// returned by f. The returned function may be called concurrently.\n//\n// If f panics, the returned function will panic with the same value on every call.\nfunc OnceValue[T any](f func() T) func() T {\n\tvar (\n\t\tonce   Once\n\t\tvalid  bool\n\t\tp      any\n\t\tresult T\n\t)\n\tg := func() {\n\t\tdefer func() {\n\t\t\tp = recover()\n\t\t\tif !valid {\n\t\t\t\tpanic(p)\n\t\t\t}\n\t\t}()\n\t\tresult = f()\n\t\tvalid = true\n\t}\n\treturn func() T {\n\t\tonce.Do(g)\n\t\tif !valid {\n\t\t\tpanic(p)\n\t\t}\n\t\treturn result\n\t}\n}\n\n// OnceValues returns a function that invokes f only once and returns the values\n// returned by f. The returned function may be called concurrently.\n//\n// If f panics, the returned function will panic with the same value on every call.\nfunc OnceValues[T1, T2 any](f func() (T1, T2)) func() (T1, T2) {\n\tvar (\n\t\tonce  Once\n\t\tvalid bool\n\t\tp     any\n\t\tr1    T1\n\t\tr2    T2\n\t)\n\tg := func() {\n\t\tdefer func() {\n\t\t\tp = recover()\n\t\t\tif !valid {\n\t\t\t\tpanic(p)\n\t\t\t}\n\t\t}()\n\t\tr1, r2 = f()\n\t\tvalid = true\n\t}\n\treturn func() (T1, T2) {\n\t\tonce.Do(g)\n\t\tif !valid {\n\t\t\tpanic(p)\n\t\t}\n\t\treturn r1, r2\n\t}\n}\n// Copyright 2009 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n//package sync\n\n// import (\n// \t\"sync/atomic\"\n// )\n\n// Once is an object that will perform exactly one action.\n//\n// A Once must not be copied after first use.\n//\n// In the terminology of the Go memory model,\n// the return from f “synchronizes before”\n// the return from any call of once.Do(f).\ntype Once struct {\n\t// done indicates whether the action has been performed.\n\t// It is first in the struct because it is used in the hot path.\n\t// The hot path is inlined at every call site.\n\t// Placing done first allows more compact instructions on some architectures (amd64/386),\n\t// and fewer instructions (to calculate offset) on other architectures.\n\tdone uint32\n\tm    Mutex\n}\n\n// Do calls the function f if and only if Do is being called for the\n// first time for this instance of Once. In other words, given\n//\n//\tvar once Once\n//\n// if once.Do(f) is called multiple times, only the first call will invoke f,\n// even if f has a different value in each invocation. A new instance of\n// Once is required for each function to execute.\n//\n// Do is intended for initialization that must be run exactly once. Since f\n// is niladic, it may be necessary to use a function literal to capture the\n// arguments to a function to be invoked by Do:\n//\n//\tconfig.once.Do(func() { config.init(filename) })\n//\n// Because no call to Do returns until the one call to f returns, if f causes\n// Do to be called, it will deadlock.\n//\n// If f panics, Do considers it to have returned; future calls of Do return\n// without calling f.\nfunc (o *Once) Do(f func()) {\n\t// Note: Here is an incorrect implementation of Do:\n\t//\n\t//\tif atomic.CompareAndSwapUint32(&o.done, 0, 1) {\n\t//\t\tf()\n\t//\t}\n\t//\n\t// Do guarantees that when it returns, f has finished.\n\t// This implementation would not implement that guarantee:\n\t// given two simultaneous calls, the winner of the cas would\n\t// call f, and the second would return immediately, without\n\t// waiting for the first's call to f to complete.\n\t// This is why the slow path falls back to a mutex, and why\n\t// the atomic.StoreUint32 must be delayed until after f returns.\n\n\tif atomic.LoadUint32(&o.done) == 0 {\n\t\t// Outlined slow-path to allow inlining of the fast-path.\n\t\to.doSlow(f)\n\t}\n}\n\nfunc (o *Once) doSlow(f func()) {\n\to.m.Lock()\n\tdefer o.m.Unlock()\n\tif o.done == 0 {\n\t\tdefer atomic.StoreUint32(&o.done, 1)\n\t\tf()\n\t}\n}\n"
  },
  {
    "path": "stdlib/generic/go1_21_sync_atomic.go.txt",
    "content": "// Copyright 2022 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage atomic\n\nimport \"unsafe\"\n\n// A Bool is an atomic boolean value.\n// The zero value is false.\ntype Bool struct {\n\t_ noCopy\n\tv uint32\n}\n\n// Load atomically loads and returns the value stored in x.\nfunc (x *Bool) Load() bool { return LoadUint32(&x.v) != 0 }\n\n// Store atomically stores val into x.\nfunc (x *Bool) Store(val bool) { StoreUint32(&x.v, b32(val)) }\n\n// Swap atomically stores new into x and returns the previous value.\nfunc (x *Bool) Swap(new bool) (old bool) { return SwapUint32(&x.v, b32(new)) != 0 }\n\n// CompareAndSwap executes the compare-and-swap operation for the boolean value x.\nfunc (x *Bool) CompareAndSwap(old, new bool) (swapped bool) {\n\treturn CompareAndSwapUint32(&x.v, b32(old), b32(new))\n}\n\n// b32 returns a uint32 0 or 1 representing b.\nfunc b32(b bool) uint32 {\n\tif b {\n\t\treturn 1\n\t}\n\treturn 0\n}\n\n// For testing *Pointer[T]'s methods can be inlined.\n// Keep in sync with cmd/compile/internal/test/inl_test.go:TestIntendedInlining.\nvar _ = &Pointer[int]{}\n\n// A Pointer is an atomic pointer of type *T. The zero value is a nil *T.\ntype Pointer[T any] struct {\n\t// Mention *T in a field to disallow conversion between Pointer types.\n\t// See go.dev/issue/56603 for more details.\n\t// Use *T, not T, to avoid spurious recursive type definition errors.\n\t_ [0]*T\n\n\t_ noCopy\n\tv unsafe.Pointer\n}\n\n// Load atomically loads and returns the value stored in x.\nfunc (x *Pointer[T]) Load() *T { return (*T)(LoadPointer(&x.v)) }\n\n// Store atomically stores val into x.\nfunc (x *Pointer[T]) Store(val *T) { StorePointer(&x.v, unsafe.Pointer(val)) }\n\n// Swap atomically stores new into x and returns the previous value.\nfunc (x *Pointer[T]) Swap(new *T) (old *T) { return (*T)(SwapPointer(&x.v, unsafe.Pointer(new))) }\n\n// CompareAndSwap executes the compare-and-swap operation for x.\nfunc (x *Pointer[T]) CompareAndSwap(old, new *T) (swapped bool) {\n\treturn CompareAndSwapPointer(&x.v, unsafe.Pointer(old), unsafe.Pointer(new))\n}\n\n// An Int32 is an atomic int32. The zero value is zero.\ntype Int32 struct {\n\t_ noCopy\n\tv int32\n}\n\n// Load atomically loads and returns the value stored in x.\nfunc (x *Int32) Load() int32 { return LoadInt32(&x.v) }\n\n// Store atomically stores val into x.\nfunc (x *Int32) Store(val int32) { StoreInt32(&x.v, val) }\n\n// Swap atomically stores new into x and returns the previous value.\nfunc (x *Int32) Swap(new int32) (old int32) { return SwapInt32(&x.v, new) }\n\n// CompareAndSwap executes the compare-and-swap operation for x.\nfunc (x *Int32) CompareAndSwap(old, new int32) (swapped bool) {\n\treturn CompareAndSwapInt32(&x.v, old, new)\n}\n\n// Add atomically adds delta to x and returns the new value.\nfunc (x *Int32) Add(delta int32) (new int32) { return AddInt32(&x.v, delta) }\n\n// An Int64 is an atomic int64. The zero value is zero.\ntype Int64 struct {\n\t_ noCopy\n\t_ align64\n\tv int64\n}\n\n// Load atomically loads and returns the value stored in x.\nfunc (x *Int64) Load() int64 { return LoadInt64(&x.v) }\n\n// Store atomically stores val into x.\nfunc (x *Int64) Store(val int64) { StoreInt64(&x.v, val) }\n\n// Swap atomically stores new into x and returns the previous value.\nfunc (x *Int64) Swap(new int64) (old int64) { return SwapInt64(&x.v, new) }\n\n// CompareAndSwap executes the compare-and-swap operation for x.\nfunc (x *Int64) CompareAndSwap(old, new int64) (swapped bool) {\n\treturn CompareAndSwapInt64(&x.v, old, new)\n}\n\n// Add atomically adds delta to x and returns the new value.\nfunc (x *Int64) Add(delta int64) (new int64) { return AddInt64(&x.v, delta) }\n\n// A Uint32 is an atomic uint32. The zero value is zero.\ntype Uint32 struct {\n\t_ noCopy\n\tv uint32\n}\n\n// Load atomically loads and returns the value stored in x.\nfunc (x *Uint32) Load() uint32 { return LoadUint32(&x.v) }\n\n// Store atomically stores val into x.\nfunc (x *Uint32) Store(val uint32) { StoreUint32(&x.v, val) }\n\n// Swap atomically stores new into x and returns the previous value.\nfunc (x *Uint32) Swap(new uint32) (old uint32) { return SwapUint32(&x.v, new) }\n\n// CompareAndSwap executes the compare-and-swap operation for x.\nfunc (x *Uint32) CompareAndSwap(old, new uint32) (swapped bool) {\n\treturn CompareAndSwapUint32(&x.v, old, new)\n}\n\n// Add atomically adds delta to x and returns the new value.\nfunc (x *Uint32) Add(delta uint32) (new uint32) { return AddUint32(&x.v, delta) }\n\n// A Uint64 is an atomic uint64. The zero value is zero.\ntype Uint64 struct {\n\t_ noCopy\n\t_ align64\n\tv uint64\n}\n\n// Load atomically loads and returns the value stored in x.\nfunc (x *Uint64) Load() uint64 { return LoadUint64(&x.v) }\n\n// Store atomically stores val into x.\nfunc (x *Uint64) Store(val uint64) { StoreUint64(&x.v, val) }\n\n// Swap atomically stores new into x and returns the previous value.\nfunc (x *Uint64) Swap(new uint64) (old uint64) { return SwapUint64(&x.v, new) }\n\n// CompareAndSwap executes the compare-and-swap operation for x.\nfunc (x *Uint64) CompareAndSwap(old, new uint64) (swapped bool) {\n\treturn CompareAndSwapUint64(&x.v, old, new)\n}\n\n// Add atomically adds delta to x and returns the new value.\nfunc (x *Uint64) Add(delta uint64) (new uint64) { return AddUint64(&x.v, delta) }\n\n// A Uintptr is an atomic uintptr. The zero value is zero.\ntype Uintptr struct {\n\t_ noCopy\n\tv uintptr\n}\n\n// Load atomically loads and returns the value stored in x.\nfunc (x *Uintptr) Load() uintptr { return LoadUintptr(&x.v) }\n\n// Store atomically stores val into x.\nfunc (x *Uintptr) Store(val uintptr) { StoreUintptr(&x.v, val) }\n\n// Swap atomically stores new into x and returns the previous value.\nfunc (x *Uintptr) Swap(new uintptr) (old uintptr) { return SwapUintptr(&x.v, new) }\n\n// CompareAndSwap executes the compare-and-swap operation for x.\nfunc (x *Uintptr) CompareAndSwap(old, new uintptr) (swapped bool) {\n\treturn CompareAndSwapUintptr(&x.v, old, new)\n}\n\n// Add atomically adds delta to x and returns the new value.\nfunc (x *Uintptr) Add(delta uintptr) (new uintptr) { return AddUintptr(&x.v, delta) }\n\n// noCopy may be added to structs which must not be copied\n// after the first use.\n//\n// See https://golang.org/issues/8005#issuecomment-190753527\n// for details.\n//\n// Note that it must not be embedded, due to the Lock and Unlock methods.\ntype noCopy struct{}\n\n// Lock is a no-op used by -copylocks checker from `go vet`.\nfunc (*noCopy) Lock()   {}\nfunc (*noCopy) Unlock() {}\n\n// align64 may be added to structs that must be 64-bit aligned.\n// This struct is recognized by a special case in the compiler\n// and will not work if copied to any other package.\ntype align64 struct{}\n"
  },
  {
    "path": "stdlib/generic/go1_22_cmp_cmp.go.txt",
    "content": "// Copyright 2023 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Package cmp provides types and functions related to comparing\n// ordered values.\npackage cmp\n\n// Ordered is a constraint that permits any ordered type: any type\n// that supports the operators < <= >= >.\n// If future releases of Go add new ordered types,\n// this constraint will be modified to include them.\n//\n// Note that floating-point types may contain NaN (\"not-a-number\") values.\n// An operator such as == or < will always report false when\n// comparing a NaN value with any other value, NaN or not.\n// See the [Compare] function for a consistent way to compare NaN values.\ntype Ordered interface {\n\t~int | ~int8 | ~int16 | ~int32 | ~int64 |\n\t\t~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr |\n\t\t~float32 | ~float64 |\n\t\t~string\n}\n\n// Less reports whether x is less than y.\n// For floating-point types, a NaN is considered less than any non-NaN,\n// and -0.0 is not less than (is equal to) 0.0.\nfunc Less[T Ordered](x, y T) bool {\n\treturn (isNaN(x) && !isNaN(y)) || x < y\n}\n\n// Compare returns\n//\n//\t-1 if x is less than y,\n//\t 0 if x equals y,\n//\t+1 if x is greater than y.\n//\n// For floating-point types, a NaN is considered less than any non-NaN,\n// a NaN is considered equal to a NaN, and -0.0 is equal to 0.0.\nfunc Compare[T Ordered](x, y T) int {\n\txNaN := isNaN(x)\n\tyNaN := isNaN(y)\n\tif xNaN && yNaN {\n\t\treturn 0\n\t}\n\tif xNaN || x < y {\n\t\treturn -1\n\t}\n\tif yNaN || x > y {\n\t\treturn +1\n\t}\n\treturn 0\n}\n\n// isNaN reports whether x is a NaN without requiring the math package.\n// This will always return false if T is not floating-point.\nfunc isNaN[T Ordered](x T) bool {\n\treturn x != x\n}\n\n// Or returns the first of its arguments that is not equal to the zero value.\n// If no argument is non-zero, it returns the zero value.\nfunc Or[T comparable](vals ...T) T {\n\tvar zero T\n\tfor _, val := range vals {\n\t\tif val != zero {\n\t\t\treturn val\n\t\t}\n\t}\n\treturn zero\n}\n"
  },
  {
    "path": "stdlib/generic/go1_22_generic.go",
    "content": "//go:build go1.22\n// +build go1.22\n\npackage generic\n\nimport _ \"embed\"\n\n//go:embed go1_22_cmp_cmp.go.txt\nvar cmpSource string\n\n//go:embed go1_22_maps_maps.go.txt\nvar mapsSource string\n\n//go:embed go1_22_slices_slices.go.txt\nvar slicesSource string\n\n/*\n//go:embed go1_22_slices_sort.go.txt\nvar slicesSource1 string\n\n//go:embed go1_22_slices_zsortanyfunc.go.txt\nvar slicesSource2 string\n\n//go:embed go1_22_sync_oncefunc.go.txt\nvar syncSource string\n\n//go:embed go1_22_sync_atomic_type.go.txt\nvar syncAtomicSource string\n*/\n\n// Sources contains the list of generic packages source strings.\nvar Sources = [...]string{\n\tcmpSource,\n\tmapsSource,\n\tslicesSource,\n\t// FIXME(marc): support the following.\n\t// slicesSource1,\n\t// slicesSource2,\n\t// syncAtomicSource,\n\t// syncSource,\n}\n"
  },
  {
    "path": "stdlib/generic/go1_22_maps_maps.go.txt",
    "content": "// Copyright 2021 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Package maps defines various functions useful with maps of any type.\npackage maps\n\n// Equal reports whether two maps contain the same key/value pairs.\n// Values are compared using ==.\nfunc Equal[M1, M2 ~map[K]V, K, V comparable](m1 M1, m2 M2) bool {\n\tif len(m1) != len(m2) {\n\t\treturn false\n\t}\n\tfor k, v1 := range m1 {\n\t\tif v2, ok := m2[k]; !ok || v1 != v2 {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\n// EqualFunc is like Equal, but compares values using eq.\n// Keys are still compared with ==.\nfunc EqualFunc[M1 ~map[K]V1, M2 ~map[K]V2, K comparable, V1, V2 any](m1 M1, m2 M2, eq func(V1, V2) bool) bool {\n\tif len(m1) != len(m2) {\n\t\treturn false\n\t}\n\tfor k, v1 := range m1 {\n\t\tif v2, ok := m2[k]; !ok || !eq(v1, v2) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\n// clone is implemented in the runtime package.\nfunc clone(m any) any {\n\treturn m\n}\n\n// Clone returns a copy of m.  This is a shallow clone:\n// the new keys and values are set using ordinary assignment.\nfunc Clone[M ~map[K]V, K comparable, V any](m M) M {\n\t// Preserve nil in case it matters.\n\tif m == nil {\n\t\treturn nil\n\t}\n\treturn clone(m).(M)\n}\n\n// Copy copies all key/value pairs in src adding them to dst.\n// When a key in src is already present in dst,\n// the value in dst will be overwritten by the value associated\n// with the key in src.\nfunc Copy[M1 ~map[K]V, M2 ~map[K]V, K comparable, V any](dst M1, src M2) {\n\tfor k, v := range src {\n\t\tdst[k] = v\n\t}\n}\n\n// DeleteFunc deletes any key/value pairs from m for which del returns true.\nfunc DeleteFunc[M ~map[K]V, K comparable, V any](m M, del func(K, V) bool) {\n\tfor k, v := range m {\n\t\tif del(k, v) {\n\t\t\tdelete(m, k)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "stdlib/generic/go1_22_slices_slices.go.txt",
    "content": "// Copyright 2021 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n// Package slices defines various functions useful with slices of any type.\npackage slices\n\nimport (\n\t\"cmp\"\n\t// TODO(marc) fix this.  \"unsafe\"\n)\n\n// Equal reports whether two slices are equal: the same length and all\n// elements equal. If the lengths are different, Equal returns false.\n// Otherwise, the elements are compared in increasing index order, and the\n// comparison stops at the first unequal pair.\n// Floating point NaNs are not considered equal.\nfunc Equal[S ~[]E, E comparable](s1, s2 S) bool {\n\tif len(s1) != len(s2) {\n\t\treturn false\n\t}\n\tfor i := range s1 {\n\t\tif s1[i] != s2[i] {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\n// EqualFunc reports whether two slices are equal using an equality\n// function on each pair of elements. If the lengths are different,\n// EqualFunc returns false. Otherwise, the elements are compared in\n// increasing index order, and the comparison stops at the first index\n// for which eq returns false.\nfunc EqualFunc[S1 ~[]E1, S2 ~[]E2, E1, E2 any](s1 S1, s2 S2, eq func(E1, E2) bool) bool {\n\tif len(s1) != len(s2) {\n\t\treturn false\n\t}\n\tfor i, v1 := range s1 {\n\t\tv2 := s2[i]\n\t\tif !eq(v1, v2) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\n// Compare compares the elements of s1 and s2, using [cmp.Compare] on each pair\n// of elements. The elements are compared sequentially, starting at index 0,\n// until one element is not equal to the other.\n// The result of comparing the first non-matching elements is returned.\n// If both slices are equal until one of them ends, the shorter slice is\n// considered less than the longer one.\n// The result is 0 if s1 == s2, -1 if s1 < s2, and +1 if s1 > s2.\nfunc Compare[S ~[]E, E cmp.Ordered](s1, s2 S) int {\n\tfor i, v1 := range s1 {\n\t\tif i >= len(s2) {\n\t\t\treturn +1\n\t\t}\n\t\tv2 := s2[i]\n\t\tif c := cmp.Compare(v1, v2); c != 0 {\n\t\t\treturn c\n\t\t}\n\t}\n\tif len(s1) < len(s2) {\n\t\treturn -1\n\t}\n\treturn 0\n}\n\n// CompareFunc is like [Compare] but uses a custom comparison function on each\n// pair of elements.\n// The result is the first non-zero result of cmp; if cmp always\n// returns 0 the result is 0 if len(s1) == len(s2), -1 if len(s1) < len(s2),\n// and +1 if len(s1) > len(s2).\nfunc CompareFunc[S1 ~[]E1, S2 ~[]E2, E1, E2 any](s1 S1, s2 S2, cmp func(E1, E2) int) int {\n\tfor i, v1 := range s1 {\n\t\tif i >= len(s2) {\n\t\t\treturn +1\n\t\t}\n\t\tv2 := s2[i]\n\t\tif c := cmp(v1, v2); c != 0 {\n\t\t\treturn c\n\t\t}\n\t}\n\tif len(s1) < len(s2) {\n\t\treturn -1\n\t}\n\treturn 0\n}\n\n// Index returns the index of the first occurrence of v in s,\n// or -1 if not present.\nfunc Index[S ~[]E, E comparable](s S, v E) int {\n\tfor i := range s {\n\t\tif v == s[i] {\n\t\t\treturn i\n\t\t}\n\t}\n\treturn -1\n}\n\n// IndexFunc returns the first index i satisfying f(s[i]),\n// or -1 if none do.\nfunc IndexFunc[S ~[]E, E any](s S, f func(E) bool) int {\n\tfor i := range s {\n\t\tif f(s[i]) {\n\t\t\treturn i\n\t\t}\n\t}\n\treturn -1\n}\n\n// Contains reports whether v is present in s.\nfunc Contains[S ~[]E, E comparable](s S, v E) bool {\n\treturn Index(s, v) >= 0\n}\n\n// ContainsFunc reports whether at least one\n// element e of s satisfies f(e).\nfunc ContainsFunc[S ~[]E, E any](s S, f func(E) bool) bool {\n\treturn IndexFunc(s, f) >= 0\n}\n\n// Insert inserts the values v... into s at index i,\n// returning the modified slice.\n// The elements at s[i:] are shifted up to make room.\n// In the returned slice r, r[i] == v[0],\n// and r[i+len(v)] == value originally at r[i].\n// Insert panics if i is out of range.\n// This function is O(len(s) + len(v)).\nfunc Insert[S ~[]E, E any](s S, i int, v ...E) S {\n\t_ = s[i:] // bounds check\n\n\tm := len(v)\n\tif m == 0 {\n\t\treturn s\n\t}\n\tn := len(s)\n\tif i == n {\n\t\treturn append(s, v...)\n\t}\n\tif n+m > cap(s) {\n\t\t// Use append rather than make so that we bump the size of\n\t\t// the slice up to the next storage class.\n\t\t// This is what Grow does but we don't call Grow because\n\t\t// that might copy the values twice.\n\t\ts2 := append(s[:i], make(S, n+m-i)...)\n\t\tcopy(s2[i:], v)\n\t\tcopy(s2[i+m:], s[i:])\n\t\treturn s2\n\t}\n\ts = s[:n+m]\n\n\t// before:\n\t// s: aaaaaaaabbbbccccccccdddd\n\t//            ^   ^       ^   ^\n\t//            i  i+m      n  n+m\n\t// after:\n\t// s: aaaaaaaavvvvbbbbcccccccc\n\t//            ^   ^       ^   ^\n\t//            i  i+m      n  n+m\n\t//\n\t// a are the values that don't move in s.\n\t// v are the values copied in from v.\n\t// b and c are the values from s that are shifted up in index.\n\t// d are the values that get overwritten, never to be seen again.\n\n\tif !overlaps(v, s[i+m:]) {\n\t\t// Easy case - v does not overlap either the c or d regions.\n\t\t// (It might be in some of a or b, or elsewhere entirely.)\n\t\t// The data we copy up doesn't write to v at all, so just do it.\n\n\t\tcopy(s[i+m:], s[i:])\n\n\t\t// Now we have\n\t\t// s: aaaaaaaabbbbbbbbcccccccc\n\t\t//            ^   ^       ^   ^\n\t\t//            i  i+m      n  n+m\n\t\t// Note the b values are duplicated.\n\n\t\tcopy(s[i:], v)\n\n\t\t// Now we have\n\t\t// s: aaaaaaaavvvvbbbbcccccccc\n\t\t//            ^   ^       ^   ^\n\t\t//            i  i+m      n  n+m\n\t\t// That's the result we want.\n\t\treturn s\n\t}\n\n\t// The hard case - v overlaps c or d. We can't just shift up\n\t// the data because we'd move or clobber the values we're trying\n\t// to insert.\n\t// So instead, write v on top of d, then rotate.\n\tcopy(s[n:], v)\n\n\t// Now we have\n\t// s: aaaaaaaabbbbccccccccvvvv\n\t//            ^   ^       ^   ^\n\t//            i  i+m      n  n+m\n\n\trotateRight(s[i:], m)\n\n\t// Now we have\n\t// s: aaaaaaaavvvvbbbbcccccccc\n\t//            ^   ^       ^   ^\n\t//            i  i+m      n  n+m\n\t// That's the result we want.\n\treturn s\n}\n\n// Delete removes the elements s[i:j] from s, returning the modified slice.\n// Delete panics if j > len(s) or s[i:j] is not a valid slice of s.\n// Delete is O(len(s)-i), so if many items must be deleted, it is better to\n// make a single call deleting them all together than to delete one at a time.\n// Delete zeroes the elements s[len(s)-(j-i):len(s)].\nfunc Delete[S ~[]E, E any](s S, i, j int) S {\n\t_ = s[i:j:len(s)] // bounds check\n\n\tif i == j {\n\t\treturn s\n\t}\n\n\toldlen := len(s)\n\ts = append(s[:i], s[j:]...)\n\tclear(s[len(s):oldlen]) // zero/nil out the obsolete elements, for GC\n\treturn s\n}\n\n// DeleteFunc removes any elements from s for which del returns true,\n// returning the modified slice.\n// DeleteFunc zeroes the elements between the new length and the original length.\nfunc DeleteFunc[S ~[]E, E any](s S, del func(E) bool) S {\n\ti := IndexFunc(s, del)\n\tif i == -1 {\n\t\treturn s\n\t}\n\t// Don't start copying elements until we find one to delete.\n\tfor j := i + 1; j < len(s); j++ {\n\t\tif v := s[j]; !del(v) {\n\t\t\ts[i] = v\n\t\t\ti++\n\t\t}\n\t}\n\tclear(s[i:]) // zero/nil out the obsolete elements, for GC\n\treturn s[:i]\n}\n\n// Replace replaces the elements s[i:j] by the given v, and returns the\n// modified slice.\n// Replace panics if j > len(s) or s[i:j] is not a valid slice of s.\n// When len(v) < (j-i), Replace zeroes the elements between the new length and the original length.\nfunc Replace[S ~[]E, E any](s S, i, j int, v ...E) S {\n\t_ = s[i:j] // bounds check\n\n\tif i == j {\n\t\treturn Insert(s, i, v...)\n\t}\n\tif j == len(s) {\n\t\treturn append(s[:i], v...)\n\t}\n\n\ttot := len(s[:i]) + len(v) + len(s[j:])\n\tif tot > cap(s) {\n\t\t// Too big to fit, allocate and copy over.\n\t\ts2 := append(s[:i], make(S, tot-i)...) // See Insert\n\t\tcopy(s2[i:], v)\n\t\tcopy(s2[i+len(v):], s[j:])\n\t\treturn s2\n\t}\n\n\tr := s[:tot]\n\n\tif i+len(v) <= j {\n\t\t// Easy, as v fits in the deleted portion.\n\t\tcopy(r[i:], v)\n\t\tcopy(r[i+len(v):], s[j:])\n\t\tclear(s[tot:]) // zero/nil out the obsolete elements, for GC\n\t\treturn r\n\t}\n\n\t// We are expanding (v is bigger than j-i).\n\t// The situation is something like this:\n\t// (example has i=4,j=8,len(s)=16,len(v)=6)\n\t// s: aaaaxxxxbbbbbbbbyy\n\t//        ^   ^       ^ ^\n\t//        i   j  len(s) tot\n\t// a: prefix of s\n\t// x: deleted range\n\t// b: more of s\n\t// y: area to expand into\n\n\tif !overlaps(r[i+len(v):], v) {\n\t\t// Easy, as v is not clobbered by the first copy.\n\t\tcopy(r[i+len(v):], s[j:])\n\t\tcopy(r[i:], v)\n\t\treturn r\n\t}\n\n\t// This is a situation where we don't have a single place to which\n\t// we can copy v. Parts of it need to go to two different places.\n\t// We want to copy the prefix of v into y and the suffix into x, then\n\t// rotate |y| spots to the right.\n\t//\n\t//        v[2:]      v[:2]\n\t//         |           |\n\t// s: aaaavvvvbbbbbbbbvv\n\t//        ^   ^       ^ ^\n\t//        i   j  len(s) tot\n\t//\n\t// If either of those two destinations don't alias v, then we're good.\n\ty := len(v) - (j - i) // length of y portion\n\n\tif !overlaps(r[i:j], v) {\n\t\tcopy(r[i:j], v[y:])\n\t\tcopy(r[len(s):], v[:y])\n\t\trotateRight(r[i:], y)\n\t\treturn r\n\t}\n\tif !overlaps(r[len(s):], v) {\n\t\tcopy(r[len(s):], v[:y])\n\t\tcopy(r[i:j], v[y:])\n\t\trotateRight(r[i:], y)\n\t\treturn r\n\t}\n\n\t// Now we know that v overlaps both x and y.\n\t// That means that the entirety of b is *inside* v.\n\t// So we don't need to preserve b at all; instead we\n\t// can copy v first, then copy the b part of v out of\n\t// v to the right destination.\n\tk := startIdx(v, s[j:])\n\tcopy(r[i:], v)\n\tcopy(r[i+len(v):], r[i+k:])\n\treturn r\n}\n\n// Clone returns a copy of the slice.\n// The elements are copied using assignment, so this is a shallow clone.\nfunc Clone[S ~[]E, E any](s S) S {\n\t// The s[:0:0] preserves nil in case it matters.\n\treturn append(s[:0:0], s...)\n}\n\n// Compact replaces consecutive runs of equal elements with a single copy.\n// This is like the uniq command found on Unix.\n// Compact modifies the contents of the slice s and returns the modified slice,\n// which may have a smaller length.\n// Compact zeroes the elements between the new length and the original length.\nfunc Compact[S ~[]E, E comparable](s S) S {\n\tif len(s) < 2 {\n\t\treturn s\n\t}\n\ti := 1\n\tfor k := 1; k < len(s); k++ {\n\t\tif s[k] != s[k-1] {\n\t\t\tif i != k {\n\t\t\t\ts[i] = s[k]\n\t\t\t}\n\t\t\ti++\n\t\t}\n\t}\n\tclear(s[i:]) // zero/nil out the obsolete elements, for GC\n\treturn s[:i]\n}\n\n// CompactFunc is like [Compact] but uses an equality function to compare elements.\n// For runs of elements that compare equal, CompactFunc keeps the first one.\n// CompactFunc zeroes the elements between the new length and the original length.\nfunc CompactFunc[S ~[]E, E any](s S, eq func(E, E) bool) S {\n\tif len(s) < 2 {\n\t\treturn s\n\t}\n\ti := 1\n\tfor k := 1; k < len(s); k++ {\n\t\tif !eq(s[k], s[k-1]) {\n\t\t\tif i != k {\n\t\t\t\ts[i] = s[k]\n\t\t\t}\n\t\t\ti++\n\t\t}\n\t}\n\tclear(s[i:]) // zero/nil out the obsolete elements, for GC\n\treturn s[:i]\n}\n\n// Grow increases the slice's capacity, if necessary, to guarantee space for\n// another n elements. After Grow(n), at least n elements can be appended\n// to the slice without another allocation. If n is negative or too large to\n// allocate the memory, Grow panics.\nfunc Grow[S ~[]E, E any](s S, n int) S {\n\tif n < 0 {\n\t\tpanic(\"cannot be negative\")\n\t}\n\tif n -= cap(s) - len(s); n > 0 {\n\t\ts = append(s[:cap(s)], make([]E, n)...)[:len(s)]\n\t}\n\treturn s\n}\n\n// Clip removes unused capacity from the slice, returning s[:len(s):len(s)].\nfunc Clip[S ~[]E, E any](s S) S {\n\treturn s[:len(s):len(s)]\n}\n\n// Rotation algorithm explanation:\n//\n// rotate left by 2\n// start with\n//   0123456789\n// split up like this\n//   01 234567 89\n// swap first 2 and last 2\n//   89 234567 01\n// join first parts\n//   89234567 01\n// recursively rotate first left part by 2\n//   23456789 01\n// join at the end\n//   2345678901\n//\n// rotate left by 8\n// start with\n//   0123456789\n// split up like this\n//   01 234567 89\n// swap first 2 and last 2\n//   89 234567 01\n// join last parts\n//   89 23456701\n// recursively rotate second part left by 6\n//   89 01234567\n// join at the end\n//   8901234567\n\n// TODO: There are other rotate algorithms.\n// This algorithm has the desirable property that it moves each element exactly twice.\n// The triple-reverse algorithm is simpler and more cache friendly, but takes more writes.\n// The follow-cycles algorithm can be 1-write but it is not very cache friendly.\n\n// rotateLeft rotates b left by n spaces.\n// s_final[i] = s_orig[i+r], wrapping around.\nfunc rotateLeft[E any](s []E, r int) {\n\tfor r != 0 && r != len(s) {\n\t\tif r*2 <= len(s) {\n\t\t\tswap(s[:r], s[len(s)-r:])\n\t\t\ts = s[:len(s)-r]\n\t\t} else {\n\t\t\tswap(s[:len(s)-r], s[r:])\n\t\t\ts, r = s[len(s)-r:], r*2-len(s)\n\t\t}\n\t}\n}\nfunc rotateRight[E any](s []E, r int) {\n\trotateLeft(s, len(s)-r)\n}\n\n// swap swaps the contents of x and y. x and y must be equal length and disjoint.\nfunc swap[E any](x, y []E) {\n\tfor i := 0; i < len(x); i++ {\n\t\tx[i], y[i] = y[i], x[i]\n\t}\n}\n\n// overlaps reports whether the memory ranges a[0:len(a)] and b[0:len(b)] overlap.\nfunc overlaps[E any](a, b []E) bool {\n\treturn false\n\t/* TODO(marc): restore the following\n\tif len(a) == 0 || len(b) == 0 {\n\t\treturn false\n\t}\n\telemSize := unsafe.Sizeof(a[0])\n\tif elemSize == 0 {\n\t\treturn false\n\t}\n\t// TODO: use a runtime/unsafe facility once one becomes available. See issue 12445.\n\t// Also see crypto/internal/alias/alias.go:AnyOverlap\n\treturn uintptr(unsafe.Pointer(&a[0])) <= uintptr(unsafe.Pointer(&b[len(b)-1]))+(elemSize-1) &&\n\t\tuintptr(unsafe.Pointer(&b[0])) <= uintptr(unsafe.Pointer(&a[len(a)-1]))+(elemSize-1)\n\t\t*/\n}\n\n// startIdx returns the index in haystack where the needle starts.\n// prerequisite: the needle must be aliased entirely inside the haystack.\nfunc startIdx[E any](haystack, needle []E) int {\n\tp := &needle[0]\n\tfor i := range haystack {\n\t\tif p == &haystack[i] {\n\t\t\treturn i\n\t\t}\n\t}\n\t// TODO: what if the overlap is by a non-integral number of Es?\n\tpanic(\"needle not found\")\n}\n\n// Reverse reverses the elements of the slice in place.\nfunc Reverse[S ~[]E, E any](s S) {\n\tfor i, j := 0, len(s)-1; i < j; i, j = i+1, j-1 {\n\t\ts[i], s[j] = s[j], s[i]\n\t}\n}\n\n// Concat returns a new slice concatenating the passed in slices.\nfunc Concat[S ~[]E, E any](slices ...S) S {\n\tsize := 0\n\tfor _, s := range slices {\n\t\tsize += len(s)\n\t\tif size < 0 {\n\t\t\tpanic(\"len out of range\")\n\t\t}\n\t}\n\tnewslice := Grow[S](nil, size)\n\tfor _, s := range slices {\n\t\tnewslice = append(newslice, s...)\n\t}\n\treturn newslice\n}\n"
  },
  {
    "path": "stdlib/generic/go1_22_slices_sort.go.txt",
    "content": "// Copyright 2023 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\n//go:generate go run $GOROOT/src/sort/gen_sort_variants.go -generic\n\npackage slices\n\nimport (\n\t\"cmp\"\n\t\"math/bits\"\n)\n\n// Sort sorts a slice of any ordered type in ascending order.\n// When sorting floating-point numbers, NaNs are ordered before other values.\nfunc Sort[S ~[]E, E cmp.Ordered](x S) {\n\tn := len(x)\n\tpdqsortOrdered(x, 0, n, bits.Len(uint(n)))\n}\n\n// SortFunc sorts the slice x in ascending order as determined by the cmp\n// function. This sort is not guaranteed to be stable.\n// cmp(a, b) should return a negative number when a < b, a positive number when\n// a > b and zero when a == b.\n//\n// SortFunc requires that cmp is a strict weak ordering.\n// See https://en.wikipedia.org/wiki/Weak_ordering#Strict_weak_orderings.\nfunc SortFunc[S ~[]E, E any](x S, cmp func(a, b E) int) {\n\tn := len(x)\n\tpdqsortCmpFunc(x, 0, n, bits.Len(uint(n)), cmp)\n}\n\n// SortStableFunc sorts the slice x while keeping the original order of equal\n// elements, using cmp to compare elements in the same way as [SortFunc].\nfunc SortStableFunc[S ~[]E, E any](x S, cmp func(a, b E) int) {\n\tstableCmpFunc(x, len(x), cmp)\n}\n\n// IsSorted reports whether x is sorted in ascending order.\nfunc IsSorted[S ~[]E, E cmp.Ordered](x S) bool {\n\tfor i := len(x) - 1; i > 0; i-- {\n\t\tif cmp.Less(x[i], x[i-1]) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\n// IsSortedFunc reports whether x is sorted in ascending order, with cmp as the\n// comparison function as defined by [SortFunc].\nfunc IsSortedFunc[S ~[]E, E any](x S, cmp func(a, b E) int) bool {\n\tfor i := len(x) - 1; i > 0; i-- {\n\t\tif cmp(x[i], x[i-1]) < 0 {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\n// Min returns the minimal value in x. It panics if x is empty.\n// For floating-point numbers, Min propagates NaNs (any NaN value in x\n// forces the output to be NaN).\nfunc Min[S ~[]E, E cmp.Ordered](x S) E {\n\tif len(x) < 1 {\n\t\tpanic(\"slices.Min: empty list\")\n\t}\n\tm := x[0]\n\tfor i := 1; i < len(x); i++ {\n\t\tm = min(m, x[i])\n\t}\n\treturn m\n}\n\n// MinFunc returns the minimal value in x, using cmp to compare elements.\n// It panics if x is empty. If there is more than one minimal element\n// according to the cmp function, MinFunc returns the first one.\nfunc MinFunc[S ~[]E, E any](x S, cmp func(a, b E) int) E {\n\tif len(x) < 1 {\n\t\tpanic(\"slices.MinFunc: empty list\")\n\t}\n\tm := x[0]\n\tfor i := 1; i < len(x); i++ {\n\t\tif cmp(x[i], m) < 0 {\n\t\t\tm = x[i]\n\t\t}\n\t}\n\treturn m\n}\n\n// Max returns the maximal value in x. It panics if x is empty.\n// For floating-point E, Max propagates NaNs (any NaN value in x\n// forces the output to be NaN).\nfunc Max[S ~[]E, E cmp.Ordered](x S) E {\n\tif len(x) < 1 {\n\t\tpanic(\"slices.Max: empty list\")\n\t}\n\tm := x[0]\n\tfor i := 1; i < len(x); i++ {\n\t\tm = max(m, x[i])\n\t}\n\treturn m\n}\n\n// MaxFunc returns the maximal value in x, using cmp to compare elements.\n// It panics if x is empty. If there is more than one maximal element\n// according to the cmp function, MaxFunc returns the first one.\nfunc MaxFunc[S ~[]E, E any](x S, cmp func(a, b E) int) E {\n\tif len(x) < 1 {\n\t\tpanic(\"slices.MaxFunc: empty list\")\n\t}\n\tm := x[0]\n\tfor i := 1; i < len(x); i++ {\n\t\tif cmp(x[i], m) > 0 {\n\t\t\tm = x[i]\n\t\t}\n\t}\n\treturn m\n}\n\n// BinarySearch searches for target in a sorted slice and returns the position\n// where target is found, or the position where target would appear in the\n// sort order; it also returns a bool saying whether the target is really found\n// in the slice. The slice must be sorted in increasing order.\nfunc BinarySearch[S ~[]E, E cmp.Ordered](x S, target E) (int, bool) {\n\t// Inlining is faster than calling BinarySearchFunc with a lambda.\n\tn := len(x)\n\t// Define x[-1] < target and x[n] >= target.\n\t// Invariant: x[i-1] < target, x[j] >= target.\n\ti, j := 0, n\n\tfor i < j {\n\t\th := int(uint(i+j) >> 1) // avoid overflow when computing h\n\t\t// i ≤ h < j\n\t\tif cmp.Less(x[h], target) {\n\t\t\ti = h + 1 // preserves x[i-1] < target\n\t\t} else {\n\t\t\tj = h // preserves x[j] >= target\n\t\t}\n\t}\n\t// i == j, x[i-1] < target, and x[j] (= x[i]) >= target  =>  answer is i.\n\treturn i, i < n && (x[i] == target || (isNaN(x[i]) && isNaN(target)))\n}\n\n// BinarySearchFunc works like [BinarySearch], but uses a custom comparison\n// function. The slice must be sorted in increasing order, where \"increasing\"\n// is defined by cmp. cmp should return 0 if the slice element matches\n// the target, a negative number if the slice element precedes the target,\n// or a positive number if the slice element follows the target.\n// cmp must implement the same ordering as the slice, such that if\n// cmp(a, t) < 0 and cmp(b, t) >= 0, then a must precede b in the slice.\nfunc BinarySearchFunc[S ~[]E, E, T any](x S, target T, cmp func(E, T) int) (int, bool) {\n\tn := len(x)\n\t// Define cmp(x[-1], target) < 0 and cmp(x[n], target) >= 0 .\n\t// Invariant: cmp(x[i - 1], target) < 0, cmp(x[j], target) >= 0.\n\ti, j := 0, n\n\tfor i < j {\n\t\th := int(uint(i+j) >> 1) // avoid overflow when computing h\n\t\t// i ≤ h < j\n\t\tif cmp(x[h], target) < 0 {\n\t\t\ti = h + 1 // preserves cmp(x[i - 1], target) < 0\n\t\t} else {\n\t\t\tj = h // preserves cmp(x[j], target) >= 0\n\t\t}\n\t}\n\t// i == j, cmp(x[i-1], target) < 0, and cmp(x[j], target) (= cmp(x[i], target)) >= 0  =>  answer is i.\n\treturn i, i < n && cmp(x[i], target) == 0\n}\n\ntype sortedHint int // hint for pdqsort when choosing the pivot\n\nconst (\n\tunknownHint sortedHint = iota\n\tincreasingHint\n\tdecreasingHint\n)\n\n// xorshift paper: https://www.jstatsoft.org/article/view/v008i14/xorshift.pdf\ntype xorshift uint64\n\nfunc (r *xorshift) Next() uint64 {\n\t*r ^= *r << 13\n\t*r ^= *r >> 17\n\t*r ^= *r << 5\n\treturn uint64(*r)\n}\n\nfunc nextPowerOfTwo(length int) uint {\n\treturn 1 << bits.Len(uint(length))\n}\n\n// isNaN reports whether x is a NaN without requiring the math package.\n// This will always return false if T is not floating-point.\nfunc isNaN[T cmp.Ordered](x T) bool {\n\treturn x != x\n}\n"
  },
  {
    "path": "stdlib/generic/go1_22_slices_zsortanyfunc.go.txt",
    "content": "// Code generated by gen_sort_variants.go; DO NOT EDIT.\n\n// Copyright 2022 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage slices\n\n// insertionSortCmpFunc sorts data[a:b] using insertion sort.\nfunc insertionSortCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) {\n\tfor i := a + 1; i < b; i++ {\n\t\tfor j := i; j > a && (cmp(data[j], data[j-1]) < 0); j-- {\n\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t}\n\t}\n}\n\n// siftDownCmpFunc implements the heap property on data[lo:hi].\n// first is an offset into the array where the root of the heap lies.\nfunc siftDownCmpFunc[E any](data []E, lo, hi, first int, cmp func(a, b E) int) {\n\troot := lo\n\tfor {\n\t\tchild := 2*root + 1\n\t\tif child >= hi {\n\t\t\tbreak\n\t\t}\n\t\tif child+1 < hi && (cmp(data[first+child], data[first+child+1]) < 0) {\n\t\t\tchild++\n\t\t}\n\t\tif !(cmp(data[first+root], data[first+child]) < 0) {\n\t\t\treturn\n\t\t}\n\t\tdata[first+root], data[first+child] = data[first+child], data[first+root]\n\t\troot = child\n\t}\n}\n\nfunc heapSortCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) {\n\tfirst := a\n\tlo := 0\n\thi := b - a\n\n\t// Build heap with greatest element at top.\n\tfor i := (hi - 1) / 2; i >= 0; i-- {\n\t\tsiftDownCmpFunc(data, i, hi, first, cmp)\n\t}\n\n\t// Pop elements, largest first, into end of data.\n\tfor i := hi - 1; i >= 0; i-- {\n\t\tdata[first], data[first+i] = data[first+i], data[first]\n\t\tsiftDownCmpFunc(data, lo, i, first, cmp)\n\t}\n}\n\n// pdqsortCmpFunc sorts data[a:b].\n// The algorithm based on pattern-defeating quicksort(pdqsort), but without the optimizations from BlockQuicksort.\n// pdqsort paper: https://arxiv.org/pdf/2106.05123.pdf\n// C++ implementation: https://github.com/orlp/pdqsort\n// Rust implementation: https://docs.rs/pdqsort/latest/pdqsort/\n// limit is the number of allowed bad (very unbalanced) pivots before falling back to heapsort.\nfunc pdqsortCmpFunc[E any](data []E, a, b, limit int, cmp func(a, b E) int) {\n\tconst maxInsertion = 12\n\n\tvar (\n\t\twasBalanced    = true // whether the last partitioning was reasonably balanced\n\t\twasPartitioned = true // whether the slice was already partitioned\n\t)\n\n\tfor {\n\t\tlength := b - a\n\n\t\tif length <= maxInsertion {\n\t\t\tinsertionSortCmpFunc(data, a, b, cmp)\n\t\t\treturn\n\t\t}\n\n\t\t// Fall back to heapsort if too many bad choices were made.\n\t\tif limit == 0 {\n\t\t\theapSortCmpFunc(data, a, b, cmp)\n\t\t\treturn\n\t\t}\n\n\t\t// If the last partitioning was imbalanced, we need to breaking patterns.\n\t\tif !wasBalanced {\n\t\t\tbreakPatternsCmpFunc(data, a, b, cmp)\n\t\t\tlimit--\n\t\t}\n\n\t\tpivot, hint := choosePivotCmpFunc(data, a, b, cmp)\n\t\tif hint == decreasingHint {\n\t\t\treverseRangeCmpFunc(data, a, b, cmp)\n\t\t\t// The chosen pivot was pivot-a elements after the start of the array.\n\t\t\t// After reversing it is pivot-a elements before the end of the array.\n\t\t\t// The idea came from Rust's implementation.\n\t\t\tpivot = (b - 1) - (pivot - a)\n\t\t\thint = increasingHint\n\t\t}\n\n\t\t// The slice is likely already sorted.\n\t\tif wasBalanced && wasPartitioned && hint == increasingHint {\n\t\t\tif partialInsertionSortCmpFunc(data, a, b, cmp) {\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\n\t\t// Probably the slice contains many duplicate elements, partition the slice into\n\t\t// elements equal to and elements greater than the pivot.\n\t\tif a > 0 && !(cmp(data[a-1], data[pivot]) < 0) {\n\t\t\tmid := partitionEqualCmpFunc(data, a, b, pivot, cmp)\n\t\t\ta = mid\n\t\t\tcontinue\n\t\t}\n\n\t\tmid, alreadyPartitioned := partitionCmpFunc(data, a, b, pivot, cmp)\n\t\twasPartitioned = alreadyPartitioned\n\n\t\tleftLen, rightLen := mid-a, b-mid\n\t\tbalanceThreshold := length / 8\n\t\tif leftLen < rightLen {\n\t\t\twasBalanced = leftLen >= balanceThreshold\n\t\t\tpdqsortCmpFunc(data, a, mid, limit, cmp)\n\t\t\ta = mid + 1\n\t\t} else {\n\t\t\twasBalanced = rightLen >= balanceThreshold\n\t\t\tpdqsortCmpFunc(data, mid+1, b, limit, cmp)\n\t\t\tb = mid\n\t\t}\n\t}\n}\n\n// partitionCmpFunc does one quicksort partition.\n// Let p = data[pivot]\n// Moves elements in data[a:b] around, so that data[i]<p and data[j]>=p for i<newpivot and j>newpivot.\n// On return, data[newpivot] = p\nfunc partitionCmpFunc[E any](data []E, a, b, pivot int, cmp func(a, b E) int) (newpivot int, alreadyPartitioned bool) {\n\tdata[a], data[pivot] = data[pivot], data[a]\n\ti, j := a+1, b-1 // i and j are inclusive of the elements remaining to be partitioned\n\n\tfor i <= j && (cmp(data[i], data[a]) < 0) {\n\t\ti++\n\t}\n\tfor i <= j && !(cmp(data[j], data[a]) < 0) {\n\t\tj--\n\t}\n\tif i > j {\n\t\tdata[j], data[a] = data[a], data[j]\n\t\treturn j, true\n\t}\n\tdata[i], data[j] = data[j], data[i]\n\ti++\n\tj--\n\n\tfor {\n\t\tfor i <= j && (cmp(data[i], data[a]) < 0) {\n\t\t\ti++\n\t\t}\n\t\tfor i <= j && !(cmp(data[j], data[a]) < 0) {\n\t\t\tj--\n\t\t}\n\t\tif i > j {\n\t\t\tbreak\n\t\t}\n\t\tdata[i], data[j] = data[j], data[i]\n\t\ti++\n\t\tj--\n\t}\n\tdata[j], data[a] = data[a], data[j]\n\treturn j, false\n}\n\n// partitionEqualCmpFunc partitions data[a:b] into elements equal to data[pivot] followed by elements greater than data[pivot].\n// It assumed that data[a:b] does not contain elements smaller than the data[pivot].\nfunc partitionEqualCmpFunc[E any](data []E, a, b, pivot int, cmp func(a, b E) int) (newpivot int) {\n\tdata[a], data[pivot] = data[pivot], data[a]\n\ti, j := a+1, b-1 // i and j are inclusive of the elements remaining to be partitioned\n\n\tfor {\n\t\tfor i <= j && !(cmp(data[a], data[i]) < 0) {\n\t\t\ti++\n\t\t}\n\t\tfor i <= j && (cmp(data[a], data[j]) < 0) {\n\t\t\tj--\n\t\t}\n\t\tif i > j {\n\t\t\tbreak\n\t\t}\n\t\tdata[i], data[j] = data[j], data[i]\n\t\ti++\n\t\tj--\n\t}\n\treturn i\n}\n\n// partialInsertionSortCmpFunc partially sorts a slice, returns true if the slice is sorted at the end.\nfunc partialInsertionSortCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) bool {\n\tconst (\n\t\tmaxSteps         = 5  // maximum number of adjacent out-of-order pairs that will get shifted\n\t\tshortestShifting = 50 // don't shift any elements on short arrays\n\t)\n\ti := a + 1\n\tfor j := 0; j < maxSteps; j++ {\n\t\tfor i < b && !(cmp(data[i], data[i-1]) < 0) {\n\t\t\ti++\n\t\t}\n\n\t\tif i == b {\n\t\t\treturn true\n\t\t}\n\n\t\tif b-a < shortestShifting {\n\t\t\treturn false\n\t\t}\n\n\t\tdata[i], data[i-1] = data[i-1], data[i]\n\n\t\t// Shift the smaller one to the left.\n\t\tif i-a >= 2 {\n\t\t\tfor j := i - 1; j >= 1; j-- {\n\t\t\t\tif !(cmp(data[j], data[j-1]) < 0) {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t\t}\n\t\t}\n\t\t// Shift the greater one to the right.\n\t\tif b-i >= 2 {\n\t\t\tfor j := i + 1; j < b; j++ {\n\t\t\t\tif !(cmp(data[j], data[j-1]) < 0) {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t\t}\n\t\t}\n\t}\n\treturn false\n}\n\n// breakPatternsCmpFunc scatters some elements around in an attempt to break some patterns\n// that might cause imbalanced partitions in quicksort.\nfunc breakPatternsCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) {\n\tlength := b - a\n\tif length >= 8 {\n\t\trandom := xorshift(length)\n\t\tmodulus := nextPowerOfTwo(length)\n\n\t\tfor idx := a + (length/4)*2 - 1; idx <= a+(length/4)*2+1; idx++ {\n\t\t\tother := int(uint(random.Next()) & (modulus - 1))\n\t\t\tif other >= length {\n\t\t\t\tother -= length\n\t\t\t}\n\t\t\tdata[idx], data[a+other] = data[a+other], data[idx]\n\t\t}\n\t}\n}\n\n// choosePivotCmpFunc chooses a pivot in data[a:b].\n//\n// [0,8): chooses a static pivot.\n// [8,shortestNinther): uses the simple median-of-three method.\n// [shortestNinther,∞): uses the Tukey ninther method.\nfunc choosePivotCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) (pivot int, hint sortedHint) {\n\tconst (\n\t\tshortestNinther = 50\n\t\tmaxSwaps        = 4 * 3\n\t)\n\n\tl := b - a\n\n\tvar (\n\t\tswaps int\n\t\ti     = a + l/4*1\n\t\tj     = a + l/4*2\n\t\tk     = a + l/4*3\n\t)\n\n\tif l >= 8 {\n\t\tif l >= shortestNinther {\n\t\t\t// Tukey ninther method, the idea came from Rust's implementation.\n\t\t\ti = medianAdjacentCmpFunc(data, i, &swaps, cmp)\n\t\t\tj = medianAdjacentCmpFunc(data, j, &swaps, cmp)\n\t\t\tk = medianAdjacentCmpFunc(data, k, &swaps, cmp)\n\t\t}\n\t\t// Find the median among i, j, k and stores it into j.\n\t\tj = medianCmpFunc(data, i, j, k, &swaps, cmp)\n\t}\n\n\tswitch swaps {\n\tcase 0:\n\t\treturn j, increasingHint\n\tcase maxSwaps:\n\t\treturn j, decreasingHint\n\tdefault:\n\t\treturn j, unknownHint\n\t}\n}\n\n// order2CmpFunc returns x,y where data[x] <= data[y], where x,y=a,b or x,y=b,a.\nfunc order2CmpFunc[E any](data []E, a, b int, swaps *int, cmp func(a, b E) int) (int, int) {\n\tif cmp(data[b], data[a]) < 0 {\n\t\t*swaps++\n\t\treturn b, a\n\t}\n\treturn a, b\n}\n\n// medianCmpFunc returns x where data[x] is the median of data[a],data[b],data[c], where x is a, b, or c.\nfunc medianCmpFunc[E any](data []E, a, b, c int, swaps *int, cmp func(a, b E) int) int {\n\ta, b = order2CmpFunc(data, a, b, swaps, cmp)\n\tb, c = order2CmpFunc(data, b, c, swaps, cmp)\n\ta, b = order2CmpFunc(data, a, b, swaps, cmp)\n\treturn b\n}\n\n// medianAdjacentCmpFunc finds the median of data[a - 1], data[a], data[a + 1] and stores the index into a.\nfunc medianAdjacentCmpFunc[E any](data []E, a int, swaps *int, cmp func(a, b E) int) int {\n\treturn medianCmpFunc(data, a-1, a, a+1, swaps, cmp)\n}\n\nfunc reverseRangeCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) {\n\ti := a\n\tj := b - 1\n\tfor i < j {\n\t\tdata[i], data[j] = data[j], data[i]\n\t\ti++\n\t\tj--\n\t}\n}\n\nfunc swapRangeCmpFunc[E any](data []E, a, b, n int, cmp func(a, b E) int) {\n\tfor i := 0; i < n; i++ {\n\t\tdata[a+i], data[b+i] = data[b+i], data[a+i]\n\t}\n}\n\nfunc stableCmpFunc[E any](data []E, n int, cmp func(a, b E) int) {\n\tblockSize := 20 // must be > 0\n\ta, b := 0, blockSize\n\tfor b <= n {\n\t\tinsertionSortCmpFunc(data, a, b, cmp)\n\t\ta = b\n\t\tb += blockSize\n\t}\n\tinsertionSortCmpFunc(data, a, n, cmp)\n\n\tfor blockSize < n {\n\t\ta, b = 0, 2*blockSize\n\t\tfor b <= n {\n\t\t\tsymMergeCmpFunc(data, a, a+blockSize, b, cmp)\n\t\t\ta = b\n\t\t\tb += 2 * blockSize\n\t\t}\n\t\tif m := a + blockSize; m < n {\n\t\t\tsymMergeCmpFunc(data, a, m, n, cmp)\n\t\t}\n\t\tblockSize *= 2\n\t}\n}\n\n// symMergeCmpFunc merges the two sorted subsequences data[a:m] and data[m:b] using\n// the SymMerge algorithm from Pok-Son Kim and Arne Kutzner, \"Stable Minimum\n// Storage Merging by Symmetric Comparisons\", in Susanne Albers and Tomasz\n// Radzik, editors, Algorithms - ESA 2004, volume 3221 of Lecture Notes in\n// Computer Science, pages 714-723. Springer, 2004.\n//\n// Let M = m-a and N = b-n. Wolog M < N.\n// The recursion depth is bound by ceil(log(N+M)).\n// The algorithm needs O(M*log(N/M + 1)) calls to data.Less.\n// The algorithm needs O((M+N)*log(M)) calls to data.Swap.\n//\n// The paper gives O((M+N)*log(M)) as the number of assignments assuming a\n// rotation algorithm which uses O(M+N+gcd(M+N)) assignments. The argumentation\n// in the paper carries through for Swap operations, especially as the block\n// swapping rotate uses only O(M+N) Swaps.\n//\n// symMerge assumes non-degenerate arguments: a < m && m < b.\n// Having the caller check this condition eliminates many leaf recursion calls,\n// which improves performance.\nfunc symMergeCmpFunc[E any](data []E, a, m, b int, cmp func(a, b E) int) {\n\t// Avoid unnecessary recursions of symMerge\n\t// by direct insertion of data[a] into data[m:b]\n\t// if data[a:m] only contains one element.\n\tif m-a == 1 {\n\t\t// Use binary search to find the lowest index i\n\t\t// such that data[i] >= data[a] for m <= i < b.\n\t\t// Exit the search loop with i == b in case no such index exists.\n\t\ti := m\n\t\tj := b\n\t\tfor i < j {\n\t\t\th := int(uint(i+j) >> 1)\n\t\t\tif cmp(data[h], data[a]) < 0 {\n\t\t\t\ti = h + 1\n\t\t\t} else {\n\t\t\t\tj = h\n\t\t\t}\n\t\t}\n\t\t// Swap values until data[a] reaches the position before i.\n\t\tfor k := a; k < i-1; k++ {\n\t\t\tdata[k], data[k+1] = data[k+1], data[k]\n\t\t}\n\t\treturn\n\t}\n\n\t// Avoid unnecessary recursions of symMerge\n\t// by direct insertion of data[m] into data[a:m]\n\t// if data[m:b] only contains one element.\n\tif b-m == 1 {\n\t\t// Use binary search to find the lowest index i\n\t\t// such that data[i] > data[m] for a <= i < m.\n\t\t// Exit the search loop with i == m in case no such index exists.\n\t\ti := a\n\t\tj := m\n\t\tfor i < j {\n\t\t\th := int(uint(i+j) >> 1)\n\t\t\tif !(cmp(data[m], data[h]) < 0) {\n\t\t\t\ti = h + 1\n\t\t\t} else {\n\t\t\t\tj = h\n\t\t\t}\n\t\t}\n\t\t// Swap values until data[m] reaches the position i.\n\t\tfor k := m; k > i; k-- {\n\t\t\tdata[k], data[k-1] = data[k-1], data[k]\n\t\t}\n\t\treturn\n\t}\n\n\tmid := int(uint(a+b) >> 1)\n\tn := mid + m\n\tvar start, r int\n\tif m > mid {\n\t\tstart = n - b\n\t\tr = mid\n\t} else {\n\t\tstart = a\n\t\tr = m\n\t}\n\tp := n - 1\n\n\tfor start < r {\n\t\tc := int(uint(start+r) >> 1)\n\t\tif !(cmp(data[p-c], data[c]) < 0) {\n\t\t\tstart = c + 1\n\t\t} else {\n\t\t\tr = c\n\t\t}\n\t}\n\n\tend := n - start\n\tif start < m && m < end {\n\t\trotateCmpFunc(data, start, m, end, cmp)\n\t}\n\tif a < start && start < mid {\n\t\tsymMergeCmpFunc(data, a, start, mid, cmp)\n\t}\n\tif mid < end && end < b {\n\t\tsymMergeCmpFunc(data, mid, end, b, cmp)\n\t}\n}\n\n// rotateCmpFunc rotates two consecutive blocks u = data[a:m] and v = data[m:b] in data:\n// Data of the form 'x u v y' is changed to 'x v u y'.\n// rotate performs at most b-a many calls to data.Swap,\n// and it assumes non-degenerate arguments: a < m && m < b.\nfunc rotateCmpFunc[E any](data []E, a, m, b int, cmp func(a, b E) int) {\n\ti := m - a\n\tj := b - m\n\n\tfor i != j {\n\t\tif i > j {\n\t\t\tswapRangeCmpFunc(data, m-i, m, j, cmp)\n\t\t\ti -= j\n\t\t} else {\n\t\t\tswapRangeCmpFunc(data, m-i, m+j-i, i, cmp)\n\t\t\tj -= i\n\t\t}\n\t}\n\t// i == j\n\tswapRangeCmpFunc(data, m-i, m, i, cmp)\n}\n"
  },
  {
    "path": "stdlib/generic/go1_22_sync_atomic_type.go.txt",
    "content": "// Copyright 2022 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage atomic\n\nimport \"unsafe\"\n\n// A Bool is an atomic boolean value.\n// The zero value is false.\ntype Bool struct {\n\t_ noCopy\n\tv uint32\n}\n\n// Load atomically loads and returns the value stored in x.\nfunc (x *Bool) Load() bool { return LoadUint32(&x.v) != 0 }\n\n// Store atomically stores val into x.\nfunc (x *Bool) Store(val bool) { StoreUint32(&x.v, b32(val)) }\n\n// Swap atomically stores new into x and returns the previous value.\nfunc (x *Bool) Swap(new bool) (old bool) { return SwapUint32(&x.v, b32(new)) != 0 }\n\n// CompareAndSwap executes the compare-and-swap operation for the boolean value x.\nfunc (x *Bool) CompareAndSwap(old, new bool) (swapped bool) {\n\treturn CompareAndSwapUint32(&x.v, b32(old), b32(new))\n}\n\n// b32 returns a uint32 0 or 1 representing b.\nfunc b32(b bool) uint32 {\n\tif b {\n\t\treturn 1\n\t}\n\treturn 0\n}\n\n// For testing *Pointer[T]'s methods can be inlined.\n// Keep in sync with cmd/compile/internal/test/inl_test.go:TestIntendedInlining.\nvar _ = &Pointer[int]{}\n\n// A Pointer is an atomic pointer of type *T. The zero value is a nil *T.\ntype Pointer[T any] struct {\n\t// Mention *T in a field to disallow conversion between Pointer types.\n\t// See go.dev/issue/56603 for more details.\n\t// Use *T, not T, to avoid spurious recursive type definition errors.\n\t_ [0]*T\n\n\t_ noCopy\n\tv unsafe.Pointer\n}\n\n// Load atomically loads and returns the value stored in x.\nfunc (x *Pointer[T]) Load() *T { return (*T)(LoadPointer(&x.v)) }\n\n// Store atomically stores val into x.\nfunc (x *Pointer[T]) Store(val *T) { StorePointer(&x.v, unsafe.Pointer(val)) }\n\n// Swap atomically stores new into x and returns the previous value.\nfunc (x *Pointer[T]) Swap(new *T) (old *T) { return (*T)(SwapPointer(&x.v, unsafe.Pointer(new))) }\n\n// CompareAndSwap executes the compare-and-swap operation for x.\nfunc (x *Pointer[T]) CompareAndSwap(old, new *T) (swapped bool) {\n\treturn CompareAndSwapPointer(&x.v, unsafe.Pointer(old), unsafe.Pointer(new))\n}\n\n// An Int32 is an atomic int32. The zero value is zero.\ntype Int32 struct {\n\t_ noCopy\n\tv int32\n}\n\n// Load atomically loads and returns the value stored in x.\nfunc (x *Int32) Load() int32 { return LoadInt32(&x.v) }\n\n// Store atomically stores val into x.\nfunc (x *Int32) Store(val int32) { StoreInt32(&x.v, val) }\n\n// Swap atomically stores new into x and returns the previous value.\nfunc (x *Int32) Swap(new int32) (old int32) { return SwapInt32(&x.v, new) }\n\n// CompareAndSwap executes the compare-and-swap operation for x.\nfunc (x *Int32) CompareAndSwap(old, new int32) (swapped bool) {\n\treturn CompareAndSwapInt32(&x.v, old, new)\n}\n\n// Add atomically adds delta to x and returns the new value.\nfunc (x *Int32) Add(delta int32) (new int32) { return AddInt32(&x.v, delta) }\n\n// An Int64 is an atomic int64. The zero value is zero.\ntype Int64 struct {\n\t_ noCopy\n\t_ align64\n\tv int64\n}\n\n// Load atomically loads and returns the value stored in x.\nfunc (x *Int64) Load() int64 { return LoadInt64(&x.v) }\n\n// Store atomically stores val into x.\nfunc (x *Int64) Store(val int64) { StoreInt64(&x.v, val) }\n\n// Swap atomically stores new into x and returns the previous value.\nfunc (x *Int64) Swap(new int64) (old int64) { return SwapInt64(&x.v, new) }\n\n// CompareAndSwap executes the compare-and-swap operation for x.\nfunc (x *Int64) CompareAndSwap(old, new int64) (swapped bool) {\n\treturn CompareAndSwapInt64(&x.v, old, new)\n}\n\n// Add atomically adds delta to x and returns the new value.\nfunc (x *Int64) Add(delta int64) (new int64) { return AddInt64(&x.v, delta) }\n\n// A Uint32 is an atomic uint32. The zero value is zero.\ntype Uint32 struct {\n\t_ noCopy\n\tv uint32\n}\n\n// Load atomically loads and returns the value stored in x.\nfunc (x *Uint32) Load() uint32 { return LoadUint32(&x.v) }\n\n// Store atomically stores val into x.\nfunc (x *Uint32) Store(val uint32) { StoreUint32(&x.v, val) }\n\n// Swap atomically stores new into x and returns the previous value.\nfunc (x *Uint32) Swap(new uint32) (old uint32) { return SwapUint32(&x.v, new) }\n\n// CompareAndSwap executes the compare-and-swap operation for x.\nfunc (x *Uint32) CompareAndSwap(old, new uint32) (swapped bool) {\n\treturn CompareAndSwapUint32(&x.v, old, new)\n}\n\n// Add atomically adds delta to x and returns the new value.\nfunc (x *Uint32) Add(delta uint32) (new uint32) { return AddUint32(&x.v, delta) }\n\n// A Uint64 is an atomic uint64. The zero value is zero.\ntype Uint64 struct {\n\t_ noCopy\n\t_ align64\n\tv uint64\n}\n\n// Load atomically loads and returns the value stored in x.\nfunc (x *Uint64) Load() uint64 { return LoadUint64(&x.v) }\n\n// Store atomically stores val into x.\nfunc (x *Uint64) Store(val uint64) { StoreUint64(&x.v, val) }\n\n// Swap atomically stores new into x and returns the previous value.\nfunc (x *Uint64) Swap(new uint64) (old uint64) { return SwapUint64(&x.v, new) }\n\n// CompareAndSwap executes the compare-and-swap operation for x.\nfunc (x *Uint64) CompareAndSwap(old, new uint64) (swapped bool) {\n\treturn CompareAndSwapUint64(&x.v, old, new)\n}\n\n// Add atomically adds delta to x and returns the new value.\nfunc (x *Uint64) Add(delta uint64) (new uint64) { return AddUint64(&x.v, delta) }\n\n// A Uintptr is an atomic uintptr. The zero value is zero.\ntype Uintptr struct {\n\t_ noCopy\n\tv uintptr\n}\n\n// Load atomically loads and returns the value stored in x.\nfunc (x *Uintptr) Load() uintptr { return LoadUintptr(&x.v) }\n\n// Store atomically stores val into x.\nfunc (x *Uintptr) Store(val uintptr) { StoreUintptr(&x.v, val) }\n\n// Swap atomically stores new into x and returns the previous value.\nfunc (x *Uintptr) Swap(new uintptr) (old uintptr) { return SwapUintptr(&x.v, new) }\n\n// CompareAndSwap executes the compare-and-swap operation for x.\nfunc (x *Uintptr) CompareAndSwap(old, new uintptr) (swapped bool) {\n\treturn CompareAndSwapUintptr(&x.v, old, new)\n}\n\n// Add atomically adds delta to x and returns the new value.\nfunc (x *Uintptr) Add(delta uintptr) (new uintptr) { return AddUintptr(&x.v, delta) }\n\n// noCopy may be added to structs which must not be copied\n// after the first use.\n//\n// See https://golang.org/issues/8005#issuecomment-190753527\n// for details.\n//\n// Note that it must not be embedded, due to the Lock and Unlock methods.\ntype noCopy struct{}\n\n// Lock is a no-op used by -copylocks checker from `go vet`.\nfunc (*noCopy) Lock()   {}\nfunc (*noCopy) Unlock() {}\n\n// align64 may be added to structs that must be 64-bit aligned.\n// This struct is recognized by a special case in the compiler\n// and will not work if copied to any other package.\ntype align64 struct{}\n"
  },
  {
    "path": "stdlib/generic/go1_22_sync_oncefunc.go.txt",
    "content": "// Copyright 2022 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage sync\n\n// OnceFunc returns a function that invokes f only once. The returned function\n// may be called concurrently.\n//\n// If f panics, the returned function will panic with the same value on every call.\nfunc OnceFunc(f func()) func() {\n\tvar (\n\t\tonce  Once\n\t\tvalid bool\n\t\tp     any\n\t)\n\t// Construct the inner closure just once to reduce costs on the fast path.\n\tg := func() {\n\t\tdefer func() {\n\t\t\tp = recover()\n\t\t\tif !valid {\n\t\t\t\t// Re-panic immediately so on the first call the user gets a\n\t\t\t\t// complete stack trace into f.\n\t\t\t\tpanic(p)\n\t\t\t}\n\t\t}()\n\t\tf()\n\t\tf = nil      // Do not keep f alive after invoking it.\n\t\tvalid = true // Set only if f does not panic.\n\t}\n\treturn func() {\n\t\tonce.Do(g)\n\t\tif !valid {\n\t\t\tpanic(p)\n\t\t}\n\t}\n}\n\n// OnceValue returns a function that invokes f only once and returns the value\n// returned by f. The returned function may be called concurrently.\n//\n// If f panics, the returned function will panic with the same value on every call.\nfunc OnceValue[T any](f func() T) func() T {\n\tvar (\n\t\tonce   Once\n\t\tvalid  bool\n\t\tp      any\n\t\tresult T\n\t)\n\tg := func() {\n\t\tdefer func() {\n\t\t\tp = recover()\n\t\t\tif !valid {\n\t\t\t\tpanic(p)\n\t\t\t}\n\t\t}()\n\t\tresult = f()\n\t\tf = nil\n\t\tvalid = true\n\t}\n\treturn func() T {\n\t\tonce.Do(g)\n\t\tif !valid {\n\t\t\tpanic(p)\n\t\t}\n\t\treturn result\n\t}\n}\n\n// OnceValues returns a function that invokes f only once and returns the values\n// returned by f. The returned function may be called concurrently.\n//\n// If f panics, the returned function will panic with the same value on every call.\nfunc OnceValues[T1, T2 any](f func() (T1, T2)) func() (T1, T2) {\n\tvar (\n\t\tonce  Once\n\t\tvalid bool\n\t\tp     any\n\t\tr1    T1\n\t\tr2    T2\n\t)\n\tg := func() {\n\t\tdefer func() {\n\t\t\tp = recover()\n\t\t\tif !valid {\n\t\t\t\tpanic(p)\n\t\t\t}\n\t\t}()\n\t\tr1, r2 = f()\n\t\tf = nil\n\t\tvalid = true\n\t}\n\treturn func() (T1, T2) {\n\t\tonce.Do(g)\n\t\tif !valid {\n\t\t\tpanic(p)\n\t\t}\n\t\treturn r1, r2\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_archive_tar.go",
    "content": "// Code generated by 'yaegi extract archive/tar'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"archive/tar\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"archive/tar/tar\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ErrFieldTooLong\":    reflect.ValueOf(&tar.ErrFieldTooLong).Elem(),\n\t\t\"ErrHeader\":          reflect.ValueOf(&tar.ErrHeader).Elem(),\n\t\t\"ErrInsecurePath\":    reflect.ValueOf(&tar.ErrInsecurePath).Elem(),\n\t\t\"ErrWriteAfterClose\": reflect.ValueOf(&tar.ErrWriteAfterClose).Elem(),\n\t\t\"ErrWriteTooLong\":    reflect.ValueOf(&tar.ErrWriteTooLong).Elem(),\n\t\t\"FileInfoHeader\":     reflect.ValueOf(tar.FileInfoHeader),\n\t\t\"FormatGNU\":          reflect.ValueOf(tar.FormatGNU),\n\t\t\"FormatPAX\":          reflect.ValueOf(tar.FormatPAX),\n\t\t\"FormatUSTAR\":        reflect.ValueOf(tar.FormatUSTAR),\n\t\t\"FormatUnknown\":      reflect.ValueOf(tar.FormatUnknown),\n\t\t\"NewReader\":          reflect.ValueOf(tar.NewReader),\n\t\t\"NewWriter\":          reflect.ValueOf(tar.NewWriter),\n\t\t\"TypeBlock\":          reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"TypeChar\":           reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"TypeCont\":           reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"TypeDir\":            reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"TypeFifo\":           reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"TypeGNULongLink\":    reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"TypeGNULongName\":    reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"TypeGNUSparse\":      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"TypeLink\":           reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"TypeReg\":            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"TypeRegA\":           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TypeSymlink\":        reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"TypeXGlobalHeader\":  reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"TypeXHeader\":        reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Format\": reflect.ValueOf((*tar.Format)(nil)),\n\t\t\"Header\": reflect.ValueOf((*tar.Header)(nil)),\n\t\t\"Reader\": reflect.ValueOf((*tar.Reader)(nil)),\n\t\t\"Writer\": reflect.ValueOf((*tar.Writer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_archive_zip.go",
    "content": "// Code generated by 'yaegi extract archive/zip'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"archive/zip\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"archive/zip/zip\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Deflate\":              reflect.ValueOf(zip.Deflate),\n\t\t\"ErrAlgorithm\":         reflect.ValueOf(&zip.ErrAlgorithm).Elem(),\n\t\t\"ErrChecksum\":          reflect.ValueOf(&zip.ErrChecksum).Elem(),\n\t\t\"ErrFormat\":            reflect.ValueOf(&zip.ErrFormat).Elem(),\n\t\t\"ErrInsecurePath\":      reflect.ValueOf(&zip.ErrInsecurePath).Elem(),\n\t\t\"FileInfoHeader\":       reflect.ValueOf(zip.FileInfoHeader),\n\t\t\"NewReader\":            reflect.ValueOf(zip.NewReader),\n\t\t\"NewWriter\":            reflect.ValueOf(zip.NewWriter),\n\t\t\"OpenReader\":           reflect.ValueOf(zip.OpenReader),\n\t\t\"RegisterCompressor\":   reflect.ValueOf(zip.RegisterCompressor),\n\t\t\"RegisterDecompressor\": reflect.ValueOf(zip.RegisterDecompressor),\n\t\t\"Store\":                reflect.ValueOf(zip.Store),\n\n\t\t// type definitions\n\t\t\"Compressor\":   reflect.ValueOf((*zip.Compressor)(nil)),\n\t\t\"Decompressor\": reflect.ValueOf((*zip.Decompressor)(nil)),\n\t\t\"File\":         reflect.ValueOf((*zip.File)(nil)),\n\t\t\"FileHeader\":   reflect.ValueOf((*zip.FileHeader)(nil)),\n\t\t\"ReadCloser\":   reflect.ValueOf((*zip.ReadCloser)(nil)),\n\t\t\"Reader\":       reflect.ValueOf((*zip.Reader)(nil)),\n\t\t\"Writer\":       reflect.ValueOf((*zip.Writer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_bufio.go",
    "content": "// Code generated by 'yaegi extract bufio'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"bufio\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"bufio/bufio\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ErrAdvanceTooFar\":     reflect.ValueOf(&bufio.ErrAdvanceTooFar).Elem(),\n\t\t\"ErrBadReadCount\":      reflect.ValueOf(&bufio.ErrBadReadCount).Elem(),\n\t\t\"ErrBufferFull\":        reflect.ValueOf(&bufio.ErrBufferFull).Elem(),\n\t\t\"ErrFinalToken\":        reflect.ValueOf(&bufio.ErrFinalToken).Elem(),\n\t\t\"ErrInvalidUnreadByte\": reflect.ValueOf(&bufio.ErrInvalidUnreadByte).Elem(),\n\t\t\"ErrInvalidUnreadRune\": reflect.ValueOf(&bufio.ErrInvalidUnreadRune).Elem(),\n\t\t\"ErrNegativeAdvance\":   reflect.ValueOf(&bufio.ErrNegativeAdvance).Elem(),\n\t\t\"ErrNegativeCount\":     reflect.ValueOf(&bufio.ErrNegativeCount).Elem(),\n\t\t\"ErrTooLong\":           reflect.ValueOf(&bufio.ErrTooLong).Elem(),\n\t\t\"MaxScanTokenSize\":     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"NewReadWriter\":        reflect.ValueOf(bufio.NewReadWriter),\n\t\t\"NewReader\":            reflect.ValueOf(bufio.NewReader),\n\t\t\"NewReaderSize\":        reflect.ValueOf(bufio.NewReaderSize),\n\t\t\"NewScanner\":           reflect.ValueOf(bufio.NewScanner),\n\t\t\"NewWriter\":            reflect.ValueOf(bufio.NewWriter),\n\t\t\"NewWriterSize\":        reflect.ValueOf(bufio.NewWriterSize),\n\t\t\"ScanBytes\":            reflect.ValueOf(bufio.ScanBytes),\n\t\t\"ScanLines\":            reflect.ValueOf(bufio.ScanLines),\n\t\t\"ScanRunes\":            reflect.ValueOf(bufio.ScanRunes),\n\t\t\"ScanWords\":            reflect.ValueOf(bufio.ScanWords),\n\n\t\t// type definitions\n\t\t\"ReadWriter\": reflect.ValueOf((*bufio.ReadWriter)(nil)),\n\t\t\"Reader\":     reflect.ValueOf((*bufio.Reader)(nil)),\n\t\t\"Scanner\":    reflect.ValueOf((*bufio.Scanner)(nil)),\n\t\t\"SplitFunc\":  reflect.ValueOf((*bufio.SplitFunc)(nil)),\n\t\t\"Writer\":     reflect.ValueOf((*bufio.Writer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_bytes.go",
    "content": "// Code generated by 'yaegi extract bytes'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"bytes\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"bytes/bytes\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Clone\":           reflect.ValueOf(bytes.Clone),\n\t\t\"Compare\":         reflect.ValueOf(bytes.Compare),\n\t\t\"Contains\":        reflect.ValueOf(bytes.Contains),\n\t\t\"ContainsAny\":     reflect.ValueOf(bytes.ContainsAny),\n\t\t\"ContainsFunc\":    reflect.ValueOf(bytes.ContainsFunc),\n\t\t\"ContainsRune\":    reflect.ValueOf(bytes.ContainsRune),\n\t\t\"Count\":           reflect.ValueOf(bytes.Count),\n\t\t\"Cut\":             reflect.ValueOf(bytes.Cut),\n\t\t\"CutPrefix\":       reflect.ValueOf(bytes.CutPrefix),\n\t\t\"CutSuffix\":       reflect.ValueOf(bytes.CutSuffix),\n\t\t\"Equal\":           reflect.ValueOf(bytes.Equal),\n\t\t\"EqualFold\":       reflect.ValueOf(bytes.EqualFold),\n\t\t\"ErrTooLarge\":     reflect.ValueOf(&bytes.ErrTooLarge).Elem(),\n\t\t\"Fields\":          reflect.ValueOf(bytes.Fields),\n\t\t\"FieldsFunc\":      reflect.ValueOf(bytes.FieldsFunc),\n\t\t\"HasPrefix\":       reflect.ValueOf(bytes.HasPrefix),\n\t\t\"HasSuffix\":       reflect.ValueOf(bytes.HasSuffix),\n\t\t\"Index\":           reflect.ValueOf(bytes.Index),\n\t\t\"IndexAny\":        reflect.ValueOf(bytes.IndexAny),\n\t\t\"IndexByte\":       reflect.ValueOf(bytes.IndexByte),\n\t\t\"IndexFunc\":       reflect.ValueOf(bytes.IndexFunc),\n\t\t\"IndexRune\":       reflect.ValueOf(bytes.IndexRune),\n\t\t\"Join\":            reflect.ValueOf(bytes.Join),\n\t\t\"LastIndex\":       reflect.ValueOf(bytes.LastIndex),\n\t\t\"LastIndexAny\":    reflect.ValueOf(bytes.LastIndexAny),\n\t\t\"LastIndexByte\":   reflect.ValueOf(bytes.LastIndexByte),\n\t\t\"LastIndexFunc\":   reflect.ValueOf(bytes.LastIndexFunc),\n\t\t\"Map\":             reflect.ValueOf(bytes.Map),\n\t\t\"MinRead\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NewBuffer\":       reflect.ValueOf(bytes.NewBuffer),\n\t\t\"NewBufferString\": reflect.ValueOf(bytes.NewBufferString),\n\t\t\"NewReader\":       reflect.ValueOf(bytes.NewReader),\n\t\t\"Repeat\":          reflect.ValueOf(bytes.Repeat),\n\t\t\"Replace\":         reflect.ValueOf(bytes.Replace),\n\t\t\"ReplaceAll\":      reflect.ValueOf(bytes.ReplaceAll),\n\t\t\"Runes\":           reflect.ValueOf(bytes.Runes),\n\t\t\"Split\":           reflect.ValueOf(bytes.Split),\n\t\t\"SplitAfter\":      reflect.ValueOf(bytes.SplitAfter),\n\t\t\"SplitAfterN\":     reflect.ValueOf(bytes.SplitAfterN),\n\t\t\"SplitN\":          reflect.ValueOf(bytes.SplitN),\n\t\t\"Title\":           reflect.ValueOf(bytes.Title),\n\t\t\"ToLower\":         reflect.ValueOf(bytes.ToLower),\n\t\t\"ToLowerSpecial\":  reflect.ValueOf(bytes.ToLowerSpecial),\n\t\t\"ToTitle\":         reflect.ValueOf(bytes.ToTitle),\n\t\t\"ToTitleSpecial\":  reflect.ValueOf(bytes.ToTitleSpecial),\n\t\t\"ToUpper\":         reflect.ValueOf(bytes.ToUpper),\n\t\t\"ToUpperSpecial\":  reflect.ValueOf(bytes.ToUpperSpecial),\n\t\t\"ToValidUTF8\":     reflect.ValueOf(bytes.ToValidUTF8),\n\t\t\"Trim\":            reflect.ValueOf(bytes.Trim),\n\t\t\"TrimFunc\":        reflect.ValueOf(bytes.TrimFunc),\n\t\t\"TrimLeft\":        reflect.ValueOf(bytes.TrimLeft),\n\t\t\"TrimLeftFunc\":    reflect.ValueOf(bytes.TrimLeftFunc),\n\t\t\"TrimPrefix\":      reflect.ValueOf(bytes.TrimPrefix),\n\t\t\"TrimRight\":       reflect.ValueOf(bytes.TrimRight),\n\t\t\"TrimRightFunc\":   reflect.ValueOf(bytes.TrimRightFunc),\n\t\t\"TrimSpace\":       reflect.ValueOf(bytes.TrimSpace),\n\t\t\"TrimSuffix\":      reflect.ValueOf(bytes.TrimSuffix),\n\n\t\t// type definitions\n\t\t\"Buffer\": reflect.ValueOf((*bytes.Buffer)(nil)),\n\t\t\"Reader\": reflect.ValueOf((*bytes.Reader)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_cmp.go",
    "content": "// Code generated by 'yaegi extract cmp'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"cmp/cmp\"] = map[string]reflect.Value{}\n}\n"
  },
  {
    "path": "stdlib/go1_21_compress_bzip2.go",
    "content": "// Code generated by 'yaegi extract compress/bzip2'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"compress/bzip2\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"compress/bzip2/bzip2\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"NewReader\": reflect.ValueOf(bzip2.NewReader),\n\n\t\t// type definitions\n\t\t\"StructuralError\": reflect.ValueOf((*bzip2.StructuralError)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_compress_flate.go",
    "content": "// Code generated by 'yaegi extract compress/flate'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"compress/flate\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"io\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"compress/flate/flate\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BestCompression\":    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"BestSpeed\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DefaultCompression\": reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"HuffmanOnly\":        reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"NewReader\":          reflect.ValueOf(flate.NewReader),\n\t\t\"NewReaderDict\":      reflect.ValueOf(flate.NewReaderDict),\n\t\t\"NewWriter\":          reflect.ValueOf(flate.NewWriter),\n\t\t\"NewWriterDict\":      reflect.ValueOf(flate.NewWriterDict),\n\t\t\"NoCompression\":      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"CorruptInputError\": reflect.ValueOf((*flate.CorruptInputError)(nil)),\n\t\t\"InternalError\":     reflect.ValueOf((*flate.InternalError)(nil)),\n\t\t\"ReadError\":         reflect.ValueOf((*flate.ReadError)(nil)),\n\t\t\"Reader\":            reflect.ValueOf((*flate.Reader)(nil)),\n\t\t\"Resetter\":          reflect.ValueOf((*flate.Resetter)(nil)),\n\t\t\"WriteError\":        reflect.ValueOf((*flate.WriteError)(nil)),\n\t\t\"Writer\":            reflect.ValueOf((*flate.Writer)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Reader\":   reflect.ValueOf((*_compress_flate_Reader)(nil)),\n\t\t\"_Resetter\": reflect.ValueOf((*_compress_flate_Resetter)(nil)),\n\t}\n}\n\n// _compress_flate_Reader is an interface wrapper for Reader type\ntype _compress_flate_Reader struct {\n\tIValue    interface{}\n\tWRead     func(p []byte) (n int, err error)\n\tWReadByte func() (byte, error)\n}\n\nfunc (W _compress_flate_Reader) Read(p []byte) (n int, err error) { return W.WRead(p) }\nfunc (W _compress_flate_Reader) ReadByte() (byte, error)          { return W.WReadByte() }\n\n// _compress_flate_Resetter is an interface wrapper for Resetter type\ntype _compress_flate_Resetter struct {\n\tIValue interface{}\n\tWReset func(r io.Reader, dict []byte) error\n}\n\nfunc (W _compress_flate_Resetter) Reset(r io.Reader, dict []byte) error { return W.WReset(r, dict) }\n"
  },
  {
    "path": "stdlib/go1_21_compress_gzip.go",
    "content": "// Code generated by 'yaegi extract compress/gzip'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"compress/gzip\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"compress/gzip/gzip\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BestCompression\":    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"BestSpeed\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DefaultCompression\": reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"ErrChecksum\":        reflect.ValueOf(&gzip.ErrChecksum).Elem(),\n\t\t\"ErrHeader\":          reflect.ValueOf(&gzip.ErrHeader).Elem(),\n\t\t\"HuffmanOnly\":        reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"NewReader\":          reflect.ValueOf(gzip.NewReader),\n\t\t\"NewWriter\":          reflect.ValueOf(gzip.NewWriter),\n\t\t\"NewWriterLevel\":     reflect.ValueOf(gzip.NewWriterLevel),\n\t\t\"NoCompression\":      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Header\": reflect.ValueOf((*gzip.Header)(nil)),\n\t\t\"Reader\": reflect.ValueOf((*gzip.Reader)(nil)),\n\t\t\"Writer\": reflect.ValueOf((*gzip.Writer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_compress_lzw.go",
    "content": "// Code generated by 'yaegi extract compress/lzw'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"compress/lzw\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"compress/lzw/lzw\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"LSB\":       reflect.ValueOf(lzw.LSB),\n\t\t\"MSB\":       reflect.ValueOf(lzw.MSB),\n\t\t\"NewReader\": reflect.ValueOf(lzw.NewReader),\n\t\t\"NewWriter\": reflect.ValueOf(lzw.NewWriter),\n\n\t\t// type definitions\n\t\t\"Order\":  reflect.ValueOf((*lzw.Order)(nil)),\n\t\t\"Reader\": reflect.ValueOf((*lzw.Reader)(nil)),\n\t\t\"Writer\": reflect.ValueOf((*lzw.Writer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_compress_zlib.go",
    "content": "// Code generated by 'yaegi extract compress/zlib'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"compress/zlib\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"io\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"compress/zlib/zlib\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BestCompression\":    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"BestSpeed\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DefaultCompression\": reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"ErrChecksum\":        reflect.ValueOf(&zlib.ErrChecksum).Elem(),\n\t\t\"ErrDictionary\":      reflect.ValueOf(&zlib.ErrDictionary).Elem(),\n\t\t\"ErrHeader\":          reflect.ValueOf(&zlib.ErrHeader).Elem(),\n\t\t\"HuffmanOnly\":        reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"NewReader\":          reflect.ValueOf(zlib.NewReader),\n\t\t\"NewReaderDict\":      reflect.ValueOf(zlib.NewReaderDict),\n\t\t\"NewWriter\":          reflect.ValueOf(zlib.NewWriter),\n\t\t\"NewWriterLevel\":     reflect.ValueOf(zlib.NewWriterLevel),\n\t\t\"NewWriterLevelDict\": reflect.ValueOf(zlib.NewWriterLevelDict),\n\t\t\"NoCompression\":      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Resetter\": reflect.ValueOf((*zlib.Resetter)(nil)),\n\t\t\"Writer\":   reflect.ValueOf((*zlib.Writer)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Resetter\": reflect.ValueOf((*_compress_zlib_Resetter)(nil)),\n\t}\n}\n\n// _compress_zlib_Resetter is an interface wrapper for Resetter type\ntype _compress_zlib_Resetter struct {\n\tIValue interface{}\n\tWReset func(r io.Reader, dict []byte) error\n}\n\nfunc (W _compress_zlib_Resetter) Reset(r io.Reader, dict []byte) error { return W.WReset(r, dict) }\n"
  },
  {
    "path": "stdlib/go1_21_container_heap.go",
    "content": "// Code generated by 'yaegi extract container/heap'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"container/heap\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"container/heap/heap\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Fix\":    reflect.ValueOf(heap.Fix),\n\t\t\"Init\":   reflect.ValueOf(heap.Init),\n\t\t\"Pop\":    reflect.ValueOf(heap.Pop),\n\t\t\"Push\":   reflect.ValueOf(heap.Push),\n\t\t\"Remove\": reflect.ValueOf(heap.Remove),\n\n\t\t// type definitions\n\t\t\"Interface\": reflect.ValueOf((*heap.Interface)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Interface\": reflect.ValueOf((*_container_heap_Interface)(nil)),\n\t}\n}\n\n// _container_heap_Interface is an interface wrapper for Interface type\ntype _container_heap_Interface struct {\n\tIValue interface{}\n\tWLen   func() int\n\tWLess  func(i int, j int) bool\n\tWPop   func() any\n\tWPush  func(x any)\n\tWSwap  func(i int, j int)\n}\n\nfunc (W _container_heap_Interface) Len() int               { return W.WLen() }\nfunc (W _container_heap_Interface) Less(i int, j int) bool { return W.WLess(i, j) }\nfunc (W _container_heap_Interface) Pop() any               { return W.WPop() }\nfunc (W _container_heap_Interface) Push(x any)             { W.WPush(x) }\nfunc (W _container_heap_Interface) Swap(i int, j int)      { W.WSwap(i, j) }\n"
  },
  {
    "path": "stdlib/go1_21_container_list.go",
    "content": "// Code generated by 'yaegi extract container/list'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"container/list\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"container/list/list\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"New\": reflect.ValueOf(list.New),\n\n\t\t// type definitions\n\t\t\"Element\": reflect.ValueOf((*list.Element)(nil)),\n\t\t\"List\":    reflect.ValueOf((*list.List)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_container_ring.go",
    "content": "// Code generated by 'yaegi extract container/ring'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"container/ring\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"container/ring/ring\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"New\": reflect.ValueOf(ring.New),\n\n\t\t// type definitions\n\t\t\"Ring\": reflect.ValueOf((*ring.Ring)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_context.go",
    "content": "// Code generated by 'yaegi extract context'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"context\"\n\t\"reflect\"\n\t\"time\"\n)\n\nfunc init() {\n\tSymbols[\"context/context\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AfterFunc\":         reflect.ValueOf(context.AfterFunc),\n\t\t\"Background\":        reflect.ValueOf(context.Background),\n\t\t\"Canceled\":          reflect.ValueOf(&context.Canceled).Elem(),\n\t\t\"Cause\":             reflect.ValueOf(context.Cause),\n\t\t\"DeadlineExceeded\":  reflect.ValueOf(&context.DeadlineExceeded).Elem(),\n\t\t\"TODO\":              reflect.ValueOf(context.TODO),\n\t\t\"WithCancel\":        reflect.ValueOf(context.WithCancel),\n\t\t\"WithCancelCause\":   reflect.ValueOf(context.WithCancelCause),\n\t\t\"WithDeadline\":      reflect.ValueOf(context.WithDeadline),\n\t\t\"WithDeadlineCause\": reflect.ValueOf(context.WithDeadlineCause),\n\t\t\"WithTimeout\":       reflect.ValueOf(context.WithTimeout),\n\t\t\"WithTimeoutCause\":  reflect.ValueOf(context.WithTimeoutCause),\n\t\t\"WithValue\":         reflect.ValueOf(context.WithValue),\n\t\t\"WithoutCancel\":     reflect.ValueOf(context.WithoutCancel),\n\n\t\t// type definitions\n\t\t\"CancelCauseFunc\": reflect.ValueOf((*context.CancelCauseFunc)(nil)),\n\t\t\"CancelFunc\":      reflect.ValueOf((*context.CancelFunc)(nil)),\n\t\t\"Context\":         reflect.ValueOf((*context.Context)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Context\": reflect.ValueOf((*_context_Context)(nil)),\n\t}\n}\n\n// _context_Context is an interface wrapper for Context type\ntype _context_Context struct {\n\tIValue    interface{}\n\tWDeadline func() (deadline time.Time, ok bool)\n\tWDone     func() <-chan struct{}\n\tWErr      func() error\n\tWValue    func(key any) any\n}\n\nfunc (W _context_Context) Deadline() (deadline time.Time, ok bool) { return W.WDeadline() }\nfunc (W _context_Context) Done() <-chan struct{}                   { return W.WDone() }\nfunc (W _context_Context) Err() error                              { return W.WErr() }\nfunc (W _context_Context) Value(key any) any                       { return W.WValue(key) }\n"
  },
  {
    "path": "stdlib/go1_21_crypto.go",
    "content": "// Code generated by 'yaegi extract crypto'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto\"\n\t\"io\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/crypto\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BLAKE2b_256\":  reflect.ValueOf(crypto.BLAKE2b_256),\n\t\t\"BLAKE2b_384\":  reflect.ValueOf(crypto.BLAKE2b_384),\n\t\t\"BLAKE2b_512\":  reflect.ValueOf(crypto.BLAKE2b_512),\n\t\t\"BLAKE2s_256\":  reflect.ValueOf(crypto.BLAKE2s_256),\n\t\t\"MD4\":          reflect.ValueOf(crypto.MD4),\n\t\t\"MD5\":          reflect.ValueOf(crypto.MD5),\n\t\t\"MD5SHA1\":      reflect.ValueOf(crypto.MD5SHA1),\n\t\t\"RIPEMD160\":    reflect.ValueOf(crypto.RIPEMD160),\n\t\t\"RegisterHash\": reflect.ValueOf(crypto.RegisterHash),\n\t\t\"SHA1\":         reflect.ValueOf(crypto.SHA1),\n\t\t\"SHA224\":       reflect.ValueOf(crypto.SHA224),\n\t\t\"SHA256\":       reflect.ValueOf(crypto.SHA256),\n\t\t\"SHA384\":       reflect.ValueOf(crypto.SHA384),\n\t\t\"SHA3_224\":     reflect.ValueOf(crypto.SHA3_224),\n\t\t\"SHA3_256\":     reflect.ValueOf(crypto.SHA3_256),\n\t\t\"SHA3_384\":     reflect.ValueOf(crypto.SHA3_384),\n\t\t\"SHA3_512\":     reflect.ValueOf(crypto.SHA3_512),\n\t\t\"SHA512\":       reflect.ValueOf(crypto.SHA512),\n\t\t\"SHA512_224\":   reflect.ValueOf(crypto.SHA512_224),\n\t\t\"SHA512_256\":   reflect.ValueOf(crypto.SHA512_256),\n\n\t\t// type definitions\n\t\t\"Decrypter\":     reflect.ValueOf((*crypto.Decrypter)(nil)),\n\t\t\"DecrypterOpts\": reflect.ValueOf((*crypto.DecrypterOpts)(nil)),\n\t\t\"Hash\":          reflect.ValueOf((*crypto.Hash)(nil)),\n\t\t\"PrivateKey\":    reflect.ValueOf((*crypto.PrivateKey)(nil)),\n\t\t\"PublicKey\":     reflect.ValueOf((*crypto.PublicKey)(nil)),\n\t\t\"Signer\":        reflect.ValueOf((*crypto.Signer)(nil)),\n\t\t\"SignerOpts\":    reflect.ValueOf((*crypto.SignerOpts)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Decrypter\":     reflect.ValueOf((*_crypto_Decrypter)(nil)),\n\t\t\"_DecrypterOpts\": reflect.ValueOf((*_crypto_DecrypterOpts)(nil)),\n\t\t\"_PrivateKey\":    reflect.ValueOf((*_crypto_PrivateKey)(nil)),\n\t\t\"_PublicKey\":     reflect.ValueOf((*_crypto_PublicKey)(nil)),\n\t\t\"_Signer\":        reflect.ValueOf((*_crypto_Signer)(nil)),\n\t\t\"_SignerOpts\":    reflect.ValueOf((*_crypto_SignerOpts)(nil)),\n\t}\n}\n\n// _crypto_Decrypter is an interface wrapper for Decrypter type\ntype _crypto_Decrypter struct {\n\tIValue   interface{}\n\tWDecrypt func(rand io.Reader, msg []byte, opts crypto.DecrypterOpts) (plaintext []byte, err error)\n\tWPublic  func() crypto.PublicKey\n}\n\nfunc (W _crypto_Decrypter) Decrypt(rand io.Reader, msg []byte, opts crypto.DecrypterOpts) (plaintext []byte, err error) {\n\treturn W.WDecrypt(rand, msg, opts)\n}\nfunc (W _crypto_Decrypter) Public() crypto.PublicKey { return W.WPublic() }\n\n// _crypto_DecrypterOpts is an interface wrapper for DecrypterOpts type\ntype _crypto_DecrypterOpts struct {\n\tIValue interface{}\n}\n\n// _crypto_PrivateKey is an interface wrapper for PrivateKey type\ntype _crypto_PrivateKey struct {\n\tIValue interface{}\n}\n\n// _crypto_PublicKey is an interface wrapper for PublicKey type\ntype _crypto_PublicKey struct {\n\tIValue interface{}\n}\n\n// _crypto_Signer is an interface wrapper for Signer type\ntype _crypto_Signer struct {\n\tIValue  interface{}\n\tWPublic func() crypto.PublicKey\n\tWSign   func(rand io.Reader, digest []byte, opts crypto.SignerOpts) (signature []byte, err error)\n}\n\nfunc (W _crypto_Signer) Public() crypto.PublicKey { return W.WPublic() }\nfunc (W _crypto_Signer) Sign(rand io.Reader, digest []byte, opts crypto.SignerOpts) (signature []byte, err error) {\n\treturn W.WSign(rand, digest, opts)\n}\n\n// _crypto_SignerOpts is an interface wrapper for SignerOpts type\ntype _crypto_SignerOpts struct {\n\tIValue    interface{}\n\tWHashFunc func() crypto.Hash\n}\n\nfunc (W _crypto_SignerOpts) HashFunc() crypto.Hash { return W.WHashFunc() }\n"
  },
  {
    "path": "stdlib/go1_21_crypto_aes.go",
    "content": "// Code generated by 'yaegi extract crypto/aes'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/aes\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/aes/aes\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BlockSize\": reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NewCipher\": reflect.ValueOf(aes.NewCipher),\n\n\t\t// type definitions\n\t\t\"KeySizeError\": reflect.ValueOf((*aes.KeySizeError)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_crypto_cipher.go",
    "content": "// Code generated by 'yaegi extract crypto/cipher'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/cipher\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/cipher/cipher\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"NewCBCDecrypter\":     reflect.ValueOf(cipher.NewCBCDecrypter),\n\t\t\"NewCBCEncrypter\":     reflect.ValueOf(cipher.NewCBCEncrypter),\n\t\t\"NewCFBDecrypter\":     reflect.ValueOf(cipher.NewCFBDecrypter),\n\t\t\"NewCFBEncrypter\":     reflect.ValueOf(cipher.NewCFBEncrypter),\n\t\t\"NewCTR\":              reflect.ValueOf(cipher.NewCTR),\n\t\t\"NewGCM\":              reflect.ValueOf(cipher.NewGCM),\n\t\t\"NewGCMWithNonceSize\": reflect.ValueOf(cipher.NewGCMWithNonceSize),\n\t\t\"NewGCMWithTagSize\":   reflect.ValueOf(cipher.NewGCMWithTagSize),\n\t\t\"NewOFB\":              reflect.ValueOf(cipher.NewOFB),\n\n\t\t// type definitions\n\t\t\"AEAD\":         reflect.ValueOf((*cipher.AEAD)(nil)),\n\t\t\"Block\":        reflect.ValueOf((*cipher.Block)(nil)),\n\t\t\"BlockMode\":    reflect.ValueOf((*cipher.BlockMode)(nil)),\n\t\t\"Stream\":       reflect.ValueOf((*cipher.Stream)(nil)),\n\t\t\"StreamReader\": reflect.ValueOf((*cipher.StreamReader)(nil)),\n\t\t\"StreamWriter\": reflect.ValueOf((*cipher.StreamWriter)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_AEAD\":      reflect.ValueOf((*_crypto_cipher_AEAD)(nil)),\n\t\t\"_Block\":     reflect.ValueOf((*_crypto_cipher_Block)(nil)),\n\t\t\"_BlockMode\": reflect.ValueOf((*_crypto_cipher_BlockMode)(nil)),\n\t\t\"_Stream\":    reflect.ValueOf((*_crypto_cipher_Stream)(nil)),\n\t}\n}\n\n// _crypto_cipher_AEAD is an interface wrapper for AEAD type\ntype _crypto_cipher_AEAD struct {\n\tIValue     interface{}\n\tWNonceSize func() int\n\tWOpen      func(dst []byte, nonce []byte, ciphertext []byte, additionalData []byte) ([]byte, error)\n\tWOverhead  func() int\n\tWSeal      func(dst []byte, nonce []byte, plaintext []byte, additionalData []byte) []byte\n}\n\nfunc (W _crypto_cipher_AEAD) NonceSize() int { return W.WNonceSize() }\nfunc (W _crypto_cipher_AEAD) Open(dst []byte, nonce []byte, ciphertext []byte, additionalData []byte) ([]byte, error) {\n\treturn W.WOpen(dst, nonce, ciphertext, additionalData)\n}\nfunc (W _crypto_cipher_AEAD) Overhead() int { return W.WOverhead() }\nfunc (W _crypto_cipher_AEAD) Seal(dst []byte, nonce []byte, plaintext []byte, additionalData []byte) []byte {\n\treturn W.WSeal(dst, nonce, plaintext, additionalData)\n}\n\n// _crypto_cipher_Block is an interface wrapper for Block type\ntype _crypto_cipher_Block struct {\n\tIValue     interface{}\n\tWBlockSize func() int\n\tWDecrypt   func(dst []byte, src []byte)\n\tWEncrypt   func(dst []byte, src []byte)\n}\n\nfunc (W _crypto_cipher_Block) BlockSize() int                 { return W.WBlockSize() }\nfunc (W _crypto_cipher_Block) Decrypt(dst []byte, src []byte) { W.WDecrypt(dst, src) }\nfunc (W _crypto_cipher_Block) Encrypt(dst []byte, src []byte) { W.WEncrypt(dst, src) }\n\n// _crypto_cipher_BlockMode is an interface wrapper for BlockMode type\ntype _crypto_cipher_BlockMode struct {\n\tIValue       interface{}\n\tWBlockSize   func() int\n\tWCryptBlocks func(dst []byte, src []byte)\n}\n\nfunc (W _crypto_cipher_BlockMode) BlockSize() int                     { return W.WBlockSize() }\nfunc (W _crypto_cipher_BlockMode) CryptBlocks(dst []byte, src []byte) { W.WCryptBlocks(dst, src) }\n\n// _crypto_cipher_Stream is an interface wrapper for Stream type\ntype _crypto_cipher_Stream struct {\n\tIValue        interface{}\n\tWXORKeyStream func(dst []byte, src []byte)\n}\n\nfunc (W _crypto_cipher_Stream) XORKeyStream(dst []byte, src []byte) { W.WXORKeyStream(dst, src) }\n"
  },
  {
    "path": "stdlib/go1_21_crypto_des.go",
    "content": "// Code generated by 'yaegi extract crypto/des'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/des\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/des/des\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BlockSize\":          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NewCipher\":          reflect.ValueOf(des.NewCipher),\n\t\t\"NewTripleDESCipher\": reflect.ValueOf(des.NewTripleDESCipher),\n\n\t\t// type definitions\n\t\t\"KeySizeError\": reflect.ValueOf((*des.KeySizeError)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_crypto_dsa.go",
    "content": "// Code generated by 'yaegi extract crypto/dsa'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/dsa\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/dsa/dsa\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ErrInvalidPublicKey\": reflect.ValueOf(&dsa.ErrInvalidPublicKey).Elem(),\n\t\t\"GenerateKey\":         reflect.ValueOf(dsa.GenerateKey),\n\t\t\"GenerateParameters\":  reflect.ValueOf(dsa.GenerateParameters),\n\t\t\"L1024N160\":           reflect.ValueOf(dsa.L1024N160),\n\t\t\"L2048N224\":           reflect.ValueOf(dsa.L2048N224),\n\t\t\"L2048N256\":           reflect.ValueOf(dsa.L2048N256),\n\t\t\"L3072N256\":           reflect.ValueOf(dsa.L3072N256),\n\t\t\"Sign\":                reflect.ValueOf(dsa.Sign),\n\t\t\"Verify\":              reflect.ValueOf(dsa.Verify),\n\n\t\t// type definitions\n\t\t\"ParameterSizes\": reflect.ValueOf((*dsa.ParameterSizes)(nil)),\n\t\t\"Parameters\":     reflect.ValueOf((*dsa.Parameters)(nil)),\n\t\t\"PrivateKey\":     reflect.ValueOf((*dsa.PrivateKey)(nil)),\n\t\t\"PublicKey\":      reflect.ValueOf((*dsa.PublicKey)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_crypto_ecdh.go",
    "content": "// Code generated by 'yaegi extract crypto/ecdh'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/ecdh\"\n\t\"io\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/ecdh/ecdh\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"P256\":   reflect.ValueOf(ecdh.P256),\n\t\t\"P384\":   reflect.ValueOf(ecdh.P384),\n\t\t\"P521\":   reflect.ValueOf(ecdh.P521),\n\t\t\"X25519\": reflect.ValueOf(ecdh.X25519),\n\n\t\t// type definitions\n\t\t\"Curve\":      reflect.ValueOf((*ecdh.Curve)(nil)),\n\t\t\"PrivateKey\": reflect.ValueOf((*ecdh.PrivateKey)(nil)),\n\t\t\"PublicKey\":  reflect.ValueOf((*ecdh.PublicKey)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Curve\": reflect.ValueOf((*_crypto_ecdh_Curve)(nil)),\n\t}\n}\n\n// _crypto_ecdh_Curve is an interface wrapper for Curve type\ntype _crypto_ecdh_Curve struct {\n\tIValue         interface{}\n\tWGenerateKey   func(rand io.Reader) (*ecdh.PrivateKey, error)\n\tWNewPrivateKey func(key []byte) (*ecdh.PrivateKey, error)\n\tWNewPublicKey  func(key []byte) (*ecdh.PublicKey, error)\n}\n\nfunc (W _crypto_ecdh_Curve) GenerateKey(rand io.Reader) (*ecdh.PrivateKey, error) {\n\treturn W.WGenerateKey(rand)\n}\nfunc (W _crypto_ecdh_Curve) NewPrivateKey(key []byte) (*ecdh.PrivateKey, error) {\n\treturn W.WNewPrivateKey(key)\n}\nfunc (W _crypto_ecdh_Curve) NewPublicKey(key []byte) (*ecdh.PublicKey, error) {\n\treturn W.WNewPublicKey(key)\n}\n"
  },
  {
    "path": "stdlib/go1_21_crypto_ecdsa.go",
    "content": "// Code generated by 'yaegi extract crypto/ecdsa'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/ecdsa\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/ecdsa/ecdsa\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"GenerateKey\": reflect.ValueOf(ecdsa.GenerateKey),\n\t\t\"Sign\":        reflect.ValueOf(ecdsa.Sign),\n\t\t\"SignASN1\":    reflect.ValueOf(ecdsa.SignASN1),\n\t\t\"Verify\":      reflect.ValueOf(ecdsa.Verify),\n\t\t\"VerifyASN1\":  reflect.ValueOf(ecdsa.VerifyASN1),\n\n\t\t// type definitions\n\t\t\"PrivateKey\": reflect.ValueOf((*ecdsa.PrivateKey)(nil)),\n\t\t\"PublicKey\":  reflect.ValueOf((*ecdsa.PublicKey)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_crypto_ed25519.go",
    "content": "// Code generated by 'yaegi extract crypto/ed25519'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/ed25519\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/ed25519/ed25519\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"GenerateKey\":       reflect.ValueOf(ed25519.GenerateKey),\n\t\t\"NewKeyFromSeed\":    reflect.ValueOf(ed25519.NewKeyFromSeed),\n\t\t\"PrivateKeySize\":    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PublicKeySize\":     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SeedSize\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"Sign\":              reflect.ValueOf(ed25519.Sign),\n\t\t\"SignatureSize\":     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Verify\":            reflect.ValueOf(ed25519.Verify),\n\t\t\"VerifyWithOptions\": reflect.ValueOf(ed25519.VerifyWithOptions),\n\n\t\t// type definitions\n\t\t\"Options\":    reflect.ValueOf((*ed25519.Options)(nil)),\n\t\t\"PrivateKey\": reflect.ValueOf((*ed25519.PrivateKey)(nil)),\n\t\t\"PublicKey\":  reflect.ValueOf((*ed25519.PublicKey)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_crypto_elliptic.go",
    "content": "// Code generated by 'yaegi extract crypto/elliptic'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/elliptic\"\n\t\"math/big\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/elliptic/elliptic\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"GenerateKey\":         reflect.ValueOf(elliptic.GenerateKey),\n\t\t\"Marshal\":             reflect.ValueOf(elliptic.Marshal),\n\t\t\"MarshalCompressed\":   reflect.ValueOf(elliptic.MarshalCompressed),\n\t\t\"P224\":                reflect.ValueOf(elliptic.P224),\n\t\t\"P256\":                reflect.ValueOf(elliptic.P256),\n\t\t\"P384\":                reflect.ValueOf(elliptic.P384),\n\t\t\"P521\":                reflect.ValueOf(elliptic.P521),\n\t\t\"Unmarshal\":           reflect.ValueOf(elliptic.Unmarshal),\n\t\t\"UnmarshalCompressed\": reflect.ValueOf(elliptic.UnmarshalCompressed),\n\n\t\t// type definitions\n\t\t\"Curve\":       reflect.ValueOf((*elliptic.Curve)(nil)),\n\t\t\"CurveParams\": reflect.ValueOf((*elliptic.CurveParams)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Curve\": reflect.ValueOf((*_crypto_elliptic_Curve)(nil)),\n\t}\n}\n\n// _crypto_elliptic_Curve is an interface wrapper for Curve type\ntype _crypto_elliptic_Curve struct {\n\tIValue          interface{}\n\tWAdd            func(x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.Int, y *big.Int)\n\tWDouble         func(x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int)\n\tWIsOnCurve      func(x *big.Int, y *big.Int) bool\n\tWParams         func() *elliptic.CurveParams\n\tWScalarBaseMult func(k []byte) (x *big.Int, y *big.Int)\n\tWScalarMult     func(x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *big.Int)\n}\n\nfunc (W _crypto_elliptic_Curve) Add(x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.Int, y *big.Int) {\n\treturn W.WAdd(x1, y1, x2, y2)\n}\nfunc (W _crypto_elliptic_Curve) Double(x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int) {\n\treturn W.WDouble(x1, y1)\n}\nfunc (W _crypto_elliptic_Curve) IsOnCurve(x *big.Int, y *big.Int) bool { return W.WIsOnCurve(x, y) }\nfunc (W _crypto_elliptic_Curve) Params() *elliptic.CurveParams         { return W.WParams() }\nfunc (W _crypto_elliptic_Curve) ScalarBaseMult(k []byte) (x *big.Int, y *big.Int) {\n\treturn W.WScalarBaseMult(k)\n}\nfunc (W _crypto_elliptic_Curve) ScalarMult(x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *big.Int) {\n\treturn W.WScalarMult(x1, y1, k)\n}\n"
  },
  {
    "path": "stdlib/go1_21_crypto_hmac.go",
    "content": "// Code generated by 'yaegi extract crypto/hmac'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/hmac\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/hmac/hmac\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Equal\": reflect.ValueOf(hmac.Equal),\n\t\t\"New\":   reflect.ValueOf(hmac.New),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_crypto_md5.go",
    "content": "// Code generated by 'yaegi extract crypto/md5'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/md5\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/md5/md5\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BlockSize\": reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"New\":       reflect.ValueOf(md5.New),\n\t\t\"Size\":      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"Sum\":       reflect.ValueOf(md5.Sum),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_crypto_rand.go",
    "content": "// Code generated by 'yaegi extract crypto/rand'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/rand\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/rand/rand\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Int\":    reflect.ValueOf(rand.Int),\n\t\t\"Prime\":  reflect.ValueOf(rand.Prime),\n\t\t\"Read\":   reflect.ValueOf(rand.Read),\n\t\t\"Reader\": reflect.ValueOf(&rand.Reader).Elem(),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_crypto_rc4.go",
    "content": "// Code generated by 'yaegi extract crypto/rc4'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/rc4\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/rc4/rc4\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"NewCipher\": reflect.ValueOf(rc4.NewCipher),\n\n\t\t// type definitions\n\t\t\"Cipher\":       reflect.ValueOf((*rc4.Cipher)(nil)),\n\t\t\"KeySizeError\": reflect.ValueOf((*rc4.KeySizeError)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_crypto_rsa.go",
    "content": "// Code generated by 'yaegi extract crypto/rsa'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/rsa\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/rsa/rsa\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"DecryptOAEP\":               reflect.ValueOf(rsa.DecryptOAEP),\n\t\t\"DecryptPKCS1v15\":           reflect.ValueOf(rsa.DecryptPKCS1v15),\n\t\t\"DecryptPKCS1v15SessionKey\": reflect.ValueOf(rsa.DecryptPKCS1v15SessionKey),\n\t\t\"EncryptOAEP\":               reflect.ValueOf(rsa.EncryptOAEP),\n\t\t\"EncryptPKCS1v15\":           reflect.ValueOf(rsa.EncryptPKCS1v15),\n\t\t\"ErrDecryption\":             reflect.ValueOf(&rsa.ErrDecryption).Elem(),\n\t\t\"ErrMessageTooLong\":         reflect.ValueOf(&rsa.ErrMessageTooLong).Elem(),\n\t\t\"ErrVerification\":           reflect.ValueOf(&rsa.ErrVerification).Elem(),\n\t\t\"GenerateKey\":               reflect.ValueOf(rsa.GenerateKey),\n\t\t\"GenerateMultiPrimeKey\":     reflect.ValueOf(rsa.GenerateMultiPrimeKey),\n\t\t\"PSSSaltLengthAuto\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PSSSaltLengthEqualsHash\":   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"SignPKCS1v15\":              reflect.ValueOf(rsa.SignPKCS1v15),\n\t\t\"SignPSS\":                   reflect.ValueOf(rsa.SignPSS),\n\t\t\"VerifyPKCS1v15\":            reflect.ValueOf(rsa.VerifyPKCS1v15),\n\t\t\"VerifyPSS\":                 reflect.ValueOf(rsa.VerifyPSS),\n\n\t\t// type definitions\n\t\t\"CRTValue\":               reflect.ValueOf((*rsa.CRTValue)(nil)),\n\t\t\"OAEPOptions\":            reflect.ValueOf((*rsa.OAEPOptions)(nil)),\n\t\t\"PKCS1v15DecryptOptions\": reflect.ValueOf((*rsa.PKCS1v15DecryptOptions)(nil)),\n\t\t\"PSSOptions\":             reflect.ValueOf((*rsa.PSSOptions)(nil)),\n\t\t\"PrecomputedValues\":      reflect.ValueOf((*rsa.PrecomputedValues)(nil)),\n\t\t\"PrivateKey\":             reflect.ValueOf((*rsa.PrivateKey)(nil)),\n\t\t\"PublicKey\":              reflect.ValueOf((*rsa.PublicKey)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_crypto_sha1.go",
    "content": "// Code generated by 'yaegi extract crypto/sha1'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/sha1\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/sha1/sha1\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BlockSize\": reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"New\":       reflect.ValueOf(sha1.New),\n\t\t\"Size\":      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"Sum\":       reflect.ValueOf(sha1.Sum),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_crypto_sha256.go",
    "content": "// Code generated by 'yaegi extract crypto/sha256'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/sha256\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/sha256/sha256\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BlockSize\": reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"New\":       reflect.ValueOf(sha256.New),\n\t\t\"New224\":    reflect.ValueOf(sha256.New224),\n\t\t\"Size\":      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"Size224\":   reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"Sum224\":    reflect.ValueOf(sha256.Sum224),\n\t\t\"Sum256\":    reflect.ValueOf(sha256.Sum256),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_crypto_sha512.go",
    "content": "// Code generated by 'yaegi extract crypto/sha512'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/sha512\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/sha512/sha512\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BlockSize\":  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"New\":        reflect.ValueOf(sha512.New),\n\t\t\"New384\":     reflect.ValueOf(sha512.New384),\n\t\t\"New512_224\": reflect.ValueOf(sha512.New512_224),\n\t\t\"New512_256\": reflect.ValueOf(sha512.New512_256),\n\t\t\"Size\":       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Size224\":    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"Size256\":    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"Size384\":    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"Sum384\":     reflect.ValueOf(sha512.Sum384),\n\t\t\"Sum512\":     reflect.ValueOf(sha512.Sum512),\n\t\t\"Sum512_224\": reflect.ValueOf(sha512.Sum512_224),\n\t\t\"Sum512_256\": reflect.ValueOf(sha512.Sum512_256),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_crypto_subtle.go",
    "content": "// Code generated by 'yaegi extract crypto/subtle'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/subtle\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/subtle/subtle\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ConstantTimeByteEq\":   reflect.ValueOf(subtle.ConstantTimeByteEq),\n\t\t\"ConstantTimeCompare\":  reflect.ValueOf(subtle.ConstantTimeCompare),\n\t\t\"ConstantTimeCopy\":     reflect.ValueOf(subtle.ConstantTimeCopy),\n\t\t\"ConstantTimeEq\":       reflect.ValueOf(subtle.ConstantTimeEq),\n\t\t\"ConstantTimeLessOrEq\": reflect.ValueOf(subtle.ConstantTimeLessOrEq),\n\t\t\"ConstantTimeSelect\":   reflect.ValueOf(subtle.ConstantTimeSelect),\n\t\t\"XORBytes\":             reflect.ValueOf(subtle.XORBytes),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_crypto_tls.go",
    "content": "// Code generated by 'yaegi extract crypto/tls'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/tls\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/tls/tls\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"CipherSuiteName\":                               reflect.ValueOf(tls.CipherSuiteName),\n\t\t\"CipherSuites\":                                  reflect.ValueOf(tls.CipherSuites),\n\t\t\"Client\":                                        reflect.ValueOf(tls.Client),\n\t\t\"CurveP256\":                                     reflect.ValueOf(tls.CurveP256),\n\t\t\"CurveP384\":                                     reflect.ValueOf(tls.CurveP384),\n\t\t\"CurveP521\":                                     reflect.ValueOf(tls.CurveP521),\n\t\t\"Dial\":                                          reflect.ValueOf(tls.Dial),\n\t\t\"DialWithDialer\":                                reflect.ValueOf(tls.DialWithDialer),\n\t\t\"ECDSAWithP256AndSHA256\":                        reflect.ValueOf(tls.ECDSAWithP256AndSHA256),\n\t\t\"ECDSAWithP384AndSHA384\":                        reflect.ValueOf(tls.ECDSAWithP384AndSHA384),\n\t\t\"ECDSAWithP521AndSHA512\":                        reflect.ValueOf(tls.ECDSAWithP521AndSHA512),\n\t\t\"ECDSAWithSHA1\":                                 reflect.ValueOf(tls.ECDSAWithSHA1),\n\t\t\"Ed25519\":                                       reflect.ValueOf(tls.Ed25519),\n\t\t\"InsecureCipherSuites\":                          reflect.ValueOf(tls.InsecureCipherSuites),\n\t\t\"Listen\":                                        reflect.ValueOf(tls.Listen),\n\t\t\"LoadX509KeyPair\":                               reflect.ValueOf(tls.LoadX509KeyPair),\n\t\t\"NewLRUClientSessionCache\":                      reflect.ValueOf(tls.NewLRUClientSessionCache),\n\t\t\"NewListener\":                                   reflect.ValueOf(tls.NewListener),\n\t\t\"NewResumptionState\":                            reflect.ValueOf(tls.NewResumptionState),\n\t\t\"NoClientCert\":                                  reflect.ValueOf(tls.NoClientCert),\n\t\t\"PKCS1WithSHA1\":                                 reflect.ValueOf(tls.PKCS1WithSHA1),\n\t\t\"PKCS1WithSHA256\":                               reflect.ValueOf(tls.PKCS1WithSHA256),\n\t\t\"PKCS1WithSHA384\":                               reflect.ValueOf(tls.PKCS1WithSHA384),\n\t\t\"PKCS1WithSHA512\":                               reflect.ValueOf(tls.PKCS1WithSHA512),\n\t\t\"PSSWithSHA256\":                                 reflect.ValueOf(tls.PSSWithSHA256),\n\t\t\"PSSWithSHA384\":                                 reflect.ValueOf(tls.PSSWithSHA384),\n\t\t\"PSSWithSHA512\":                                 reflect.ValueOf(tls.PSSWithSHA512),\n\t\t\"ParseSessionState\":                             reflect.ValueOf(tls.ParseSessionState),\n\t\t\"QUICClient\":                                    reflect.ValueOf(tls.QUICClient),\n\t\t\"QUICEncryptionLevelApplication\":                reflect.ValueOf(tls.QUICEncryptionLevelApplication),\n\t\t\"QUICEncryptionLevelEarly\":                      reflect.ValueOf(tls.QUICEncryptionLevelEarly),\n\t\t\"QUICEncryptionLevelHandshake\":                  reflect.ValueOf(tls.QUICEncryptionLevelHandshake),\n\t\t\"QUICEncryptionLevelInitial\":                    reflect.ValueOf(tls.QUICEncryptionLevelInitial),\n\t\t\"QUICHandshakeDone\":                             reflect.ValueOf(tls.QUICHandshakeDone),\n\t\t\"QUICNoEvent\":                                   reflect.ValueOf(tls.QUICNoEvent),\n\t\t\"QUICRejectedEarlyData\":                         reflect.ValueOf(tls.QUICRejectedEarlyData),\n\t\t\"QUICServer\":                                    reflect.ValueOf(tls.QUICServer),\n\t\t\"QUICSetReadSecret\":                             reflect.ValueOf(tls.QUICSetReadSecret),\n\t\t\"QUICSetWriteSecret\":                            reflect.ValueOf(tls.QUICSetWriteSecret),\n\t\t\"QUICTransportParameters\":                       reflect.ValueOf(tls.QUICTransportParameters),\n\t\t\"QUICTransportParametersRequired\":               reflect.ValueOf(tls.QUICTransportParametersRequired),\n\t\t\"QUICWriteData\":                                 reflect.ValueOf(tls.QUICWriteData),\n\t\t\"RenegotiateFreelyAsClient\":                     reflect.ValueOf(tls.RenegotiateFreelyAsClient),\n\t\t\"RenegotiateNever\":                              reflect.ValueOf(tls.RenegotiateNever),\n\t\t\"RenegotiateOnceAsClient\":                       reflect.ValueOf(tls.RenegotiateOnceAsClient),\n\t\t\"RequestClientCert\":                             reflect.ValueOf(tls.RequestClientCert),\n\t\t\"RequireAndVerifyClientCert\":                    reflect.ValueOf(tls.RequireAndVerifyClientCert),\n\t\t\"RequireAnyClientCert\":                          reflect.ValueOf(tls.RequireAnyClientCert),\n\t\t\"Server\":                                        reflect.ValueOf(tls.Server),\n\t\t\"TLS_AES_128_GCM_SHA256\":                        reflect.ValueOf(tls.TLS_AES_128_GCM_SHA256),\n\t\t\"TLS_AES_256_GCM_SHA384\":                        reflect.ValueOf(tls.TLS_AES_256_GCM_SHA384),\n\t\t\"TLS_CHACHA20_POLY1305_SHA256\":                  reflect.ValueOf(tls.TLS_CHACHA20_POLY1305_SHA256),\n\t\t\"TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA\":          reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA),\n\t\t\"TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256\":       reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256),\n\t\t\"TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256\":       reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256),\n\t\t\"TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA\":          reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA),\n\t\t\"TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384\":       reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384),\n\t\t\"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305\":        reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305),\n\t\t\"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256\": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256),\n\t\t\"TLS_ECDHE_ECDSA_WITH_RC4_128_SHA\":              reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_RC4_128_SHA),\n\t\t\"TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA\":           reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA),\n\t\t\"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA\":            reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA),\n\t\t\"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256\":         reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256),\n\t\t\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\":         reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256),\n\t\t\"TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA\":            reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA),\n\t\t\"TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384\":         reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384),\n\t\t\"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305\":          reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305),\n\t\t\"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256\":   reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256),\n\t\t\"TLS_ECDHE_RSA_WITH_RC4_128_SHA\":                reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_RC4_128_SHA),\n\t\t\"TLS_FALLBACK_SCSV\":                             reflect.ValueOf(tls.TLS_FALLBACK_SCSV),\n\t\t\"TLS_RSA_WITH_3DES_EDE_CBC_SHA\":                 reflect.ValueOf(tls.TLS_RSA_WITH_3DES_EDE_CBC_SHA),\n\t\t\"TLS_RSA_WITH_AES_128_CBC_SHA\":                  reflect.ValueOf(tls.TLS_RSA_WITH_AES_128_CBC_SHA),\n\t\t\"TLS_RSA_WITH_AES_128_CBC_SHA256\":               reflect.ValueOf(tls.TLS_RSA_WITH_AES_128_CBC_SHA256),\n\t\t\"TLS_RSA_WITH_AES_128_GCM_SHA256\":               reflect.ValueOf(tls.TLS_RSA_WITH_AES_128_GCM_SHA256),\n\t\t\"TLS_RSA_WITH_AES_256_CBC_SHA\":                  reflect.ValueOf(tls.TLS_RSA_WITH_AES_256_CBC_SHA),\n\t\t\"TLS_RSA_WITH_AES_256_GCM_SHA384\":               reflect.ValueOf(tls.TLS_RSA_WITH_AES_256_GCM_SHA384),\n\t\t\"TLS_RSA_WITH_RC4_128_SHA\":                      reflect.ValueOf(tls.TLS_RSA_WITH_RC4_128_SHA),\n\t\t\"VerifyClientCertIfGiven\":                       reflect.ValueOf(tls.VerifyClientCertIfGiven),\n\t\t\"VersionName\":                                   reflect.ValueOf(tls.VersionName),\n\t\t\"VersionSSL30\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"VersionTLS10\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"VersionTLS11\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"VersionTLS12\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"VersionTLS13\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"X25519\":                                        reflect.ValueOf(tls.X25519),\n\t\t\"X509KeyPair\":                                   reflect.ValueOf(tls.X509KeyPair),\n\n\t\t// type definitions\n\t\t\"AlertError\":                   reflect.ValueOf((*tls.AlertError)(nil)),\n\t\t\"Certificate\":                  reflect.ValueOf((*tls.Certificate)(nil)),\n\t\t\"CertificateRequestInfo\":       reflect.ValueOf((*tls.CertificateRequestInfo)(nil)),\n\t\t\"CertificateVerificationError\": reflect.ValueOf((*tls.CertificateVerificationError)(nil)),\n\t\t\"CipherSuite\":                  reflect.ValueOf((*tls.CipherSuite)(nil)),\n\t\t\"ClientAuthType\":               reflect.ValueOf((*tls.ClientAuthType)(nil)),\n\t\t\"ClientHelloInfo\":              reflect.ValueOf((*tls.ClientHelloInfo)(nil)),\n\t\t\"ClientSessionCache\":           reflect.ValueOf((*tls.ClientSessionCache)(nil)),\n\t\t\"ClientSessionState\":           reflect.ValueOf((*tls.ClientSessionState)(nil)),\n\t\t\"Config\":                       reflect.ValueOf((*tls.Config)(nil)),\n\t\t\"Conn\":                         reflect.ValueOf((*tls.Conn)(nil)),\n\t\t\"ConnectionState\":              reflect.ValueOf((*tls.ConnectionState)(nil)),\n\t\t\"CurveID\":                      reflect.ValueOf((*tls.CurveID)(nil)),\n\t\t\"Dialer\":                       reflect.ValueOf((*tls.Dialer)(nil)),\n\t\t\"QUICConfig\":                   reflect.ValueOf((*tls.QUICConfig)(nil)),\n\t\t\"QUICConn\":                     reflect.ValueOf((*tls.QUICConn)(nil)),\n\t\t\"QUICEncryptionLevel\":          reflect.ValueOf((*tls.QUICEncryptionLevel)(nil)),\n\t\t\"QUICEvent\":                    reflect.ValueOf((*tls.QUICEvent)(nil)),\n\t\t\"QUICEventKind\":                reflect.ValueOf((*tls.QUICEventKind)(nil)),\n\t\t\"QUICSessionTicketOptions\":     reflect.ValueOf((*tls.QUICSessionTicketOptions)(nil)),\n\t\t\"RecordHeaderError\":            reflect.ValueOf((*tls.RecordHeaderError)(nil)),\n\t\t\"RenegotiationSupport\":         reflect.ValueOf((*tls.RenegotiationSupport)(nil)),\n\t\t\"SessionState\":                 reflect.ValueOf((*tls.SessionState)(nil)),\n\t\t\"SignatureScheme\":              reflect.ValueOf((*tls.SignatureScheme)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_ClientSessionCache\": reflect.ValueOf((*_crypto_tls_ClientSessionCache)(nil)),\n\t}\n}\n\n// _crypto_tls_ClientSessionCache is an interface wrapper for ClientSessionCache type\ntype _crypto_tls_ClientSessionCache struct {\n\tIValue interface{}\n\tWGet   func(sessionKey string) (session *tls.ClientSessionState, ok bool)\n\tWPut   func(sessionKey string, cs *tls.ClientSessionState)\n}\n\nfunc (W _crypto_tls_ClientSessionCache) Get(sessionKey string) (session *tls.ClientSessionState, ok bool) {\n\treturn W.WGet(sessionKey)\n}\nfunc (W _crypto_tls_ClientSessionCache) Put(sessionKey string, cs *tls.ClientSessionState) {\n\tW.WPut(sessionKey, cs)\n}\n"
  },
  {
    "path": "stdlib/go1_21_crypto_x509.go",
    "content": "// Code generated by 'yaegi extract crypto/x509'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/x509\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/x509/x509\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"CANotAuthorizedForExtKeyUsage\":             reflect.ValueOf(x509.CANotAuthorizedForExtKeyUsage),\n\t\t\"CANotAuthorizedForThisName\":                reflect.ValueOf(x509.CANotAuthorizedForThisName),\n\t\t\"CreateCertificate\":                         reflect.ValueOf(x509.CreateCertificate),\n\t\t\"CreateCertificateRequest\":                  reflect.ValueOf(x509.CreateCertificateRequest),\n\t\t\"CreateRevocationList\":                      reflect.ValueOf(x509.CreateRevocationList),\n\t\t\"DSA\":                                       reflect.ValueOf(x509.DSA),\n\t\t\"DSAWithSHA1\":                               reflect.ValueOf(x509.DSAWithSHA1),\n\t\t\"DSAWithSHA256\":                             reflect.ValueOf(x509.DSAWithSHA256),\n\t\t\"DecryptPEMBlock\":                           reflect.ValueOf(x509.DecryptPEMBlock),\n\t\t\"ECDSA\":                                     reflect.ValueOf(x509.ECDSA),\n\t\t\"ECDSAWithSHA1\":                             reflect.ValueOf(x509.ECDSAWithSHA1),\n\t\t\"ECDSAWithSHA256\":                           reflect.ValueOf(x509.ECDSAWithSHA256),\n\t\t\"ECDSAWithSHA384\":                           reflect.ValueOf(x509.ECDSAWithSHA384),\n\t\t\"ECDSAWithSHA512\":                           reflect.ValueOf(x509.ECDSAWithSHA512),\n\t\t\"Ed25519\":                                   reflect.ValueOf(x509.Ed25519),\n\t\t\"EncryptPEMBlock\":                           reflect.ValueOf(x509.EncryptPEMBlock),\n\t\t\"ErrUnsupportedAlgorithm\":                   reflect.ValueOf(&x509.ErrUnsupportedAlgorithm).Elem(),\n\t\t\"Expired\":                                   reflect.ValueOf(x509.Expired),\n\t\t\"ExtKeyUsageAny\":                            reflect.ValueOf(x509.ExtKeyUsageAny),\n\t\t\"ExtKeyUsageClientAuth\":                     reflect.ValueOf(x509.ExtKeyUsageClientAuth),\n\t\t\"ExtKeyUsageCodeSigning\":                    reflect.ValueOf(x509.ExtKeyUsageCodeSigning),\n\t\t\"ExtKeyUsageEmailProtection\":                reflect.ValueOf(x509.ExtKeyUsageEmailProtection),\n\t\t\"ExtKeyUsageIPSECEndSystem\":                 reflect.ValueOf(x509.ExtKeyUsageIPSECEndSystem),\n\t\t\"ExtKeyUsageIPSECTunnel\":                    reflect.ValueOf(x509.ExtKeyUsageIPSECTunnel),\n\t\t\"ExtKeyUsageIPSECUser\":                      reflect.ValueOf(x509.ExtKeyUsageIPSECUser),\n\t\t\"ExtKeyUsageMicrosoftCommercialCodeSigning\": reflect.ValueOf(x509.ExtKeyUsageMicrosoftCommercialCodeSigning),\n\t\t\"ExtKeyUsageMicrosoftKernelCodeSigning\":     reflect.ValueOf(x509.ExtKeyUsageMicrosoftKernelCodeSigning),\n\t\t\"ExtKeyUsageMicrosoftServerGatedCrypto\":     reflect.ValueOf(x509.ExtKeyUsageMicrosoftServerGatedCrypto),\n\t\t\"ExtKeyUsageNetscapeServerGatedCrypto\":      reflect.ValueOf(x509.ExtKeyUsageNetscapeServerGatedCrypto),\n\t\t\"ExtKeyUsageOCSPSigning\":                    reflect.ValueOf(x509.ExtKeyUsageOCSPSigning),\n\t\t\"ExtKeyUsageServerAuth\":                     reflect.ValueOf(x509.ExtKeyUsageServerAuth),\n\t\t\"ExtKeyUsageTimeStamping\":                   reflect.ValueOf(x509.ExtKeyUsageTimeStamping),\n\t\t\"IncompatibleUsage\":                         reflect.ValueOf(x509.IncompatibleUsage),\n\t\t\"IncorrectPasswordError\":                    reflect.ValueOf(&x509.IncorrectPasswordError).Elem(),\n\t\t\"IsEncryptedPEMBlock\":                       reflect.ValueOf(x509.IsEncryptedPEMBlock),\n\t\t\"KeyUsageCRLSign\":                           reflect.ValueOf(x509.KeyUsageCRLSign),\n\t\t\"KeyUsageCertSign\":                          reflect.ValueOf(x509.KeyUsageCertSign),\n\t\t\"KeyUsageContentCommitment\":                 reflect.ValueOf(x509.KeyUsageContentCommitment),\n\t\t\"KeyUsageDataEncipherment\":                  reflect.ValueOf(x509.KeyUsageDataEncipherment),\n\t\t\"KeyUsageDecipherOnly\":                      reflect.ValueOf(x509.KeyUsageDecipherOnly),\n\t\t\"KeyUsageDigitalSignature\":                  reflect.ValueOf(x509.KeyUsageDigitalSignature),\n\t\t\"KeyUsageEncipherOnly\":                      reflect.ValueOf(x509.KeyUsageEncipherOnly),\n\t\t\"KeyUsageKeyAgreement\":                      reflect.ValueOf(x509.KeyUsageKeyAgreement),\n\t\t\"KeyUsageKeyEncipherment\":                   reflect.ValueOf(x509.KeyUsageKeyEncipherment),\n\t\t\"MD2WithRSA\":                                reflect.ValueOf(x509.MD2WithRSA),\n\t\t\"MD5WithRSA\":                                reflect.ValueOf(x509.MD5WithRSA),\n\t\t\"MarshalECPrivateKey\":                       reflect.ValueOf(x509.MarshalECPrivateKey),\n\t\t\"MarshalPKCS1PrivateKey\":                    reflect.ValueOf(x509.MarshalPKCS1PrivateKey),\n\t\t\"MarshalPKCS1PublicKey\":                     reflect.ValueOf(x509.MarshalPKCS1PublicKey),\n\t\t\"MarshalPKCS8PrivateKey\":                    reflect.ValueOf(x509.MarshalPKCS8PrivateKey),\n\t\t\"MarshalPKIXPublicKey\":                      reflect.ValueOf(x509.MarshalPKIXPublicKey),\n\t\t\"NameConstraintsWithoutSANs\":                reflect.ValueOf(x509.NameConstraintsWithoutSANs),\n\t\t\"NameMismatch\":                              reflect.ValueOf(x509.NameMismatch),\n\t\t\"NewCertPool\":                               reflect.ValueOf(x509.NewCertPool),\n\t\t\"NotAuthorizedToSign\":                       reflect.ValueOf(x509.NotAuthorizedToSign),\n\t\t\"PEMCipher3DES\":                             reflect.ValueOf(x509.PEMCipher3DES),\n\t\t\"PEMCipherAES128\":                           reflect.ValueOf(x509.PEMCipherAES128),\n\t\t\"PEMCipherAES192\":                           reflect.ValueOf(x509.PEMCipherAES192),\n\t\t\"PEMCipherAES256\":                           reflect.ValueOf(x509.PEMCipherAES256),\n\t\t\"PEMCipherDES\":                              reflect.ValueOf(x509.PEMCipherDES),\n\t\t\"ParseCRL\":                                  reflect.ValueOf(x509.ParseCRL),\n\t\t\"ParseCertificate\":                          reflect.ValueOf(x509.ParseCertificate),\n\t\t\"ParseCertificateRequest\":                   reflect.ValueOf(x509.ParseCertificateRequest),\n\t\t\"ParseCertificates\":                         reflect.ValueOf(x509.ParseCertificates),\n\t\t\"ParseDERCRL\":                               reflect.ValueOf(x509.ParseDERCRL),\n\t\t\"ParseECPrivateKey\":                         reflect.ValueOf(x509.ParseECPrivateKey),\n\t\t\"ParsePKCS1PrivateKey\":                      reflect.ValueOf(x509.ParsePKCS1PrivateKey),\n\t\t\"ParsePKCS1PublicKey\":                       reflect.ValueOf(x509.ParsePKCS1PublicKey),\n\t\t\"ParsePKCS8PrivateKey\":                      reflect.ValueOf(x509.ParsePKCS8PrivateKey),\n\t\t\"ParsePKIXPublicKey\":                        reflect.ValueOf(x509.ParsePKIXPublicKey),\n\t\t\"ParseRevocationList\":                       reflect.ValueOf(x509.ParseRevocationList),\n\t\t\"PureEd25519\":                               reflect.ValueOf(x509.PureEd25519),\n\t\t\"RSA\":                                       reflect.ValueOf(x509.RSA),\n\t\t\"SHA1WithRSA\":                               reflect.ValueOf(x509.SHA1WithRSA),\n\t\t\"SHA256WithRSA\":                             reflect.ValueOf(x509.SHA256WithRSA),\n\t\t\"SHA256WithRSAPSS\":                          reflect.ValueOf(x509.SHA256WithRSAPSS),\n\t\t\"SHA384WithRSA\":                             reflect.ValueOf(x509.SHA384WithRSA),\n\t\t\"SHA384WithRSAPSS\":                          reflect.ValueOf(x509.SHA384WithRSAPSS),\n\t\t\"SHA512WithRSA\":                             reflect.ValueOf(x509.SHA512WithRSA),\n\t\t\"SHA512WithRSAPSS\":                          reflect.ValueOf(x509.SHA512WithRSAPSS),\n\t\t\"SetFallbackRoots\":                          reflect.ValueOf(x509.SetFallbackRoots),\n\t\t\"SystemCertPool\":                            reflect.ValueOf(x509.SystemCertPool),\n\t\t\"TooManyConstraints\":                        reflect.ValueOf(x509.TooManyConstraints),\n\t\t\"TooManyIntermediates\":                      reflect.ValueOf(x509.TooManyIntermediates),\n\t\t\"UnconstrainedName\":                         reflect.ValueOf(x509.UnconstrainedName),\n\t\t\"UnknownPublicKeyAlgorithm\":                 reflect.ValueOf(x509.UnknownPublicKeyAlgorithm),\n\t\t\"UnknownSignatureAlgorithm\":                 reflect.ValueOf(x509.UnknownSignatureAlgorithm),\n\n\t\t// type definitions\n\t\t\"CertPool\":                   reflect.ValueOf((*x509.CertPool)(nil)),\n\t\t\"Certificate\":                reflect.ValueOf((*x509.Certificate)(nil)),\n\t\t\"CertificateInvalidError\":    reflect.ValueOf((*x509.CertificateInvalidError)(nil)),\n\t\t\"CertificateRequest\":         reflect.ValueOf((*x509.CertificateRequest)(nil)),\n\t\t\"ConstraintViolationError\":   reflect.ValueOf((*x509.ConstraintViolationError)(nil)),\n\t\t\"ExtKeyUsage\":                reflect.ValueOf((*x509.ExtKeyUsage)(nil)),\n\t\t\"HostnameError\":              reflect.ValueOf((*x509.HostnameError)(nil)),\n\t\t\"InsecureAlgorithmError\":     reflect.ValueOf((*x509.InsecureAlgorithmError)(nil)),\n\t\t\"InvalidReason\":              reflect.ValueOf((*x509.InvalidReason)(nil)),\n\t\t\"KeyUsage\":                   reflect.ValueOf((*x509.KeyUsage)(nil)),\n\t\t\"PEMCipher\":                  reflect.ValueOf((*x509.PEMCipher)(nil)),\n\t\t\"PublicKeyAlgorithm\":         reflect.ValueOf((*x509.PublicKeyAlgorithm)(nil)),\n\t\t\"RevocationList\":             reflect.ValueOf((*x509.RevocationList)(nil)),\n\t\t\"RevocationListEntry\":        reflect.ValueOf((*x509.RevocationListEntry)(nil)),\n\t\t\"SignatureAlgorithm\":         reflect.ValueOf((*x509.SignatureAlgorithm)(nil)),\n\t\t\"SystemRootsError\":           reflect.ValueOf((*x509.SystemRootsError)(nil)),\n\t\t\"UnhandledCriticalExtension\": reflect.ValueOf((*x509.UnhandledCriticalExtension)(nil)),\n\t\t\"UnknownAuthorityError\":      reflect.ValueOf((*x509.UnknownAuthorityError)(nil)),\n\t\t\"VerifyOptions\":              reflect.ValueOf((*x509.VerifyOptions)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_crypto_x509_pkix.go",
    "content": "// Code generated by 'yaegi extract crypto/x509/pkix'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/x509/pkix\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/x509/pkix/pkix\"] = map[string]reflect.Value{\n\t\t// type definitions\n\t\t\"AlgorithmIdentifier\":          reflect.ValueOf((*pkix.AlgorithmIdentifier)(nil)),\n\t\t\"AttributeTypeAndValue\":        reflect.ValueOf((*pkix.AttributeTypeAndValue)(nil)),\n\t\t\"AttributeTypeAndValueSET\":     reflect.ValueOf((*pkix.AttributeTypeAndValueSET)(nil)),\n\t\t\"CertificateList\":              reflect.ValueOf((*pkix.CertificateList)(nil)),\n\t\t\"Extension\":                    reflect.ValueOf((*pkix.Extension)(nil)),\n\t\t\"Name\":                         reflect.ValueOf((*pkix.Name)(nil)),\n\t\t\"RDNSequence\":                  reflect.ValueOf((*pkix.RDNSequence)(nil)),\n\t\t\"RelativeDistinguishedNameSET\": reflect.ValueOf((*pkix.RelativeDistinguishedNameSET)(nil)),\n\t\t\"RevokedCertificate\":           reflect.ValueOf((*pkix.RevokedCertificate)(nil)),\n\t\t\"TBSCertificateList\":           reflect.ValueOf((*pkix.TBSCertificateList)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_database_sql.go",
    "content": "// Code generated by 'yaegi extract database/sql'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"database/sql\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"database/sql/sql\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Drivers\":              reflect.ValueOf(sql.Drivers),\n\t\t\"ErrConnDone\":          reflect.ValueOf(&sql.ErrConnDone).Elem(),\n\t\t\"ErrNoRows\":            reflect.ValueOf(&sql.ErrNoRows).Elem(),\n\t\t\"ErrTxDone\":            reflect.ValueOf(&sql.ErrTxDone).Elem(),\n\t\t\"LevelDefault\":         reflect.ValueOf(sql.LevelDefault),\n\t\t\"LevelLinearizable\":    reflect.ValueOf(sql.LevelLinearizable),\n\t\t\"LevelReadCommitted\":   reflect.ValueOf(sql.LevelReadCommitted),\n\t\t\"LevelReadUncommitted\": reflect.ValueOf(sql.LevelReadUncommitted),\n\t\t\"LevelRepeatableRead\":  reflect.ValueOf(sql.LevelRepeatableRead),\n\t\t\"LevelSerializable\":    reflect.ValueOf(sql.LevelSerializable),\n\t\t\"LevelSnapshot\":        reflect.ValueOf(sql.LevelSnapshot),\n\t\t\"LevelWriteCommitted\":  reflect.ValueOf(sql.LevelWriteCommitted),\n\t\t\"Named\":                reflect.ValueOf(sql.Named),\n\t\t\"Open\":                 reflect.ValueOf(sql.Open),\n\t\t\"OpenDB\":               reflect.ValueOf(sql.OpenDB),\n\t\t\"Register\":             reflect.ValueOf(sql.Register),\n\n\t\t// type definitions\n\t\t\"ColumnType\":     reflect.ValueOf((*sql.ColumnType)(nil)),\n\t\t\"Conn\":           reflect.ValueOf((*sql.Conn)(nil)),\n\t\t\"DB\":             reflect.ValueOf((*sql.DB)(nil)),\n\t\t\"DBStats\":        reflect.ValueOf((*sql.DBStats)(nil)),\n\t\t\"IsolationLevel\": reflect.ValueOf((*sql.IsolationLevel)(nil)),\n\t\t\"NamedArg\":       reflect.ValueOf((*sql.NamedArg)(nil)),\n\t\t\"NullBool\":       reflect.ValueOf((*sql.NullBool)(nil)),\n\t\t\"NullByte\":       reflect.ValueOf((*sql.NullByte)(nil)),\n\t\t\"NullFloat64\":    reflect.ValueOf((*sql.NullFloat64)(nil)),\n\t\t\"NullInt16\":      reflect.ValueOf((*sql.NullInt16)(nil)),\n\t\t\"NullInt32\":      reflect.ValueOf((*sql.NullInt32)(nil)),\n\t\t\"NullInt64\":      reflect.ValueOf((*sql.NullInt64)(nil)),\n\t\t\"NullString\":     reflect.ValueOf((*sql.NullString)(nil)),\n\t\t\"NullTime\":       reflect.ValueOf((*sql.NullTime)(nil)),\n\t\t\"Out\":            reflect.ValueOf((*sql.Out)(nil)),\n\t\t\"RawBytes\":       reflect.ValueOf((*sql.RawBytes)(nil)),\n\t\t\"Result\":         reflect.ValueOf((*sql.Result)(nil)),\n\t\t\"Row\":            reflect.ValueOf((*sql.Row)(nil)),\n\t\t\"Rows\":           reflect.ValueOf((*sql.Rows)(nil)),\n\t\t\"Scanner\":        reflect.ValueOf((*sql.Scanner)(nil)),\n\t\t\"Stmt\":           reflect.ValueOf((*sql.Stmt)(nil)),\n\t\t\"Tx\":             reflect.ValueOf((*sql.Tx)(nil)),\n\t\t\"TxOptions\":      reflect.ValueOf((*sql.TxOptions)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Result\":  reflect.ValueOf((*_database_sql_Result)(nil)),\n\t\t\"_Scanner\": reflect.ValueOf((*_database_sql_Scanner)(nil)),\n\t}\n}\n\n// _database_sql_Result is an interface wrapper for Result type\ntype _database_sql_Result struct {\n\tIValue        interface{}\n\tWLastInsertId func() (int64, error)\n\tWRowsAffected func() (int64, error)\n}\n\nfunc (W _database_sql_Result) LastInsertId() (int64, error) { return W.WLastInsertId() }\nfunc (W _database_sql_Result) RowsAffected() (int64, error) { return W.WRowsAffected() }\n\n// _database_sql_Scanner is an interface wrapper for Scanner type\ntype _database_sql_Scanner struct {\n\tIValue interface{}\n\tWScan  func(src any) error\n}\n\nfunc (W _database_sql_Scanner) Scan(src any) error { return W.WScan(src) }\n"
  },
  {
    "path": "stdlib/go1_21_database_sql_driver.go",
    "content": "// Code generated by 'yaegi extract database/sql/driver'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"context\"\n\t\"database/sql/driver\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"database/sql/driver/driver\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Bool\":                      reflect.ValueOf(&driver.Bool).Elem(),\n\t\t\"DefaultParameterConverter\": reflect.ValueOf(&driver.DefaultParameterConverter).Elem(),\n\t\t\"ErrBadConn\":                reflect.ValueOf(&driver.ErrBadConn).Elem(),\n\t\t\"ErrRemoveArgument\":         reflect.ValueOf(&driver.ErrRemoveArgument).Elem(),\n\t\t\"ErrSkip\":                   reflect.ValueOf(&driver.ErrSkip).Elem(),\n\t\t\"Int32\":                     reflect.ValueOf(&driver.Int32).Elem(),\n\t\t\"IsScanValue\":               reflect.ValueOf(driver.IsScanValue),\n\t\t\"IsValue\":                   reflect.ValueOf(driver.IsValue),\n\t\t\"ResultNoRows\":              reflect.ValueOf(&driver.ResultNoRows).Elem(),\n\t\t\"String\":                    reflect.ValueOf(&driver.String).Elem(),\n\n\t\t// type definitions\n\t\t\"ColumnConverter\":                reflect.ValueOf((*driver.ColumnConverter)(nil)),\n\t\t\"Conn\":                           reflect.ValueOf((*driver.Conn)(nil)),\n\t\t\"ConnBeginTx\":                    reflect.ValueOf((*driver.ConnBeginTx)(nil)),\n\t\t\"ConnPrepareContext\":             reflect.ValueOf((*driver.ConnPrepareContext)(nil)),\n\t\t\"Connector\":                      reflect.ValueOf((*driver.Connector)(nil)),\n\t\t\"Driver\":                         reflect.ValueOf((*driver.Driver)(nil)),\n\t\t\"DriverContext\":                  reflect.ValueOf((*driver.DriverContext)(nil)),\n\t\t\"Execer\":                         reflect.ValueOf((*driver.Execer)(nil)),\n\t\t\"ExecerContext\":                  reflect.ValueOf((*driver.ExecerContext)(nil)),\n\t\t\"IsolationLevel\":                 reflect.ValueOf((*driver.IsolationLevel)(nil)),\n\t\t\"NamedValue\":                     reflect.ValueOf((*driver.NamedValue)(nil)),\n\t\t\"NamedValueChecker\":              reflect.ValueOf((*driver.NamedValueChecker)(nil)),\n\t\t\"NotNull\":                        reflect.ValueOf((*driver.NotNull)(nil)),\n\t\t\"Null\":                           reflect.ValueOf((*driver.Null)(nil)),\n\t\t\"Pinger\":                         reflect.ValueOf((*driver.Pinger)(nil)),\n\t\t\"Queryer\":                        reflect.ValueOf((*driver.Queryer)(nil)),\n\t\t\"QueryerContext\":                 reflect.ValueOf((*driver.QueryerContext)(nil)),\n\t\t\"Result\":                         reflect.ValueOf((*driver.Result)(nil)),\n\t\t\"Rows\":                           reflect.ValueOf((*driver.Rows)(nil)),\n\t\t\"RowsAffected\":                   reflect.ValueOf((*driver.RowsAffected)(nil)),\n\t\t\"RowsColumnTypeDatabaseTypeName\": reflect.ValueOf((*driver.RowsColumnTypeDatabaseTypeName)(nil)),\n\t\t\"RowsColumnTypeLength\":           reflect.ValueOf((*driver.RowsColumnTypeLength)(nil)),\n\t\t\"RowsColumnTypeNullable\":         reflect.ValueOf((*driver.RowsColumnTypeNullable)(nil)),\n\t\t\"RowsColumnTypePrecisionScale\":   reflect.ValueOf((*driver.RowsColumnTypePrecisionScale)(nil)),\n\t\t\"RowsColumnTypeScanType\":         reflect.ValueOf((*driver.RowsColumnTypeScanType)(nil)),\n\t\t\"RowsNextResultSet\":              reflect.ValueOf((*driver.RowsNextResultSet)(nil)),\n\t\t\"SessionResetter\":                reflect.ValueOf((*driver.SessionResetter)(nil)),\n\t\t\"Stmt\":                           reflect.ValueOf((*driver.Stmt)(nil)),\n\t\t\"StmtExecContext\":                reflect.ValueOf((*driver.StmtExecContext)(nil)),\n\t\t\"StmtQueryContext\":               reflect.ValueOf((*driver.StmtQueryContext)(nil)),\n\t\t\"Tx\":                             reflect.ValueOf((*driver.Tx)(nil)),\n\t\t\"TxOptions\":                      reflect.ValueOf((*driver.TxOptions)(nil)),\n\t\t\"Validator\":                      reflect.ValueOf((*driver.Validator)(nil)),\n\t\t\"Value\":                          reflect.ValueOf((*driver.Value)(nil)),\n\t\t\"ValueConverter\":                 reflect.ValueOf((*driver.ValueConverter)(nil)),\n\t\t\"Valuer\":                         reflect.ValueOf((*driver.Valuer)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_ColumnConverter\":                reflect.ValueOf((*_database_sql_driver_ColumnConverter)(nil)),\n\t\t\"_Conn\":                           reflect.ValueOf((*_database_sql_driver_Conn)(nil)),\n\t\t\"_ConnBeginTx\":                    reflect.ValueOf((*_database_sql_driver_ConnBeginTx)(nil)),\n\t\t\"_ConnPrepareContext\":             reflect.ValueOf((*_database_sql_driver_ConnPrepareContext)(nil)),\n\t\t\"_Connector\":                      reflect.ValueOf((*_database_sql_driver_Connector)(nil)),\n\t\t\"_Driver\":                         reflect.ValueOf((*_database_sql_driver_Driver)(nil)),\n\t\t\"_DriverContext\":                  reflect.ValueOf((*_database_sql_driver_DriverContext)(nil)),\n\t\t\"_Execer\":                         reflect.ValueOf((*_database_sql_driver_Execer)(nil)),\n\t\t\"_ExecerContext\":                  reflect.ValueOf((*_database_sql_driver_ExecerContext)(nil)),\n\t\t\"_NamedValueChecker\":              reflect.ValueOf((*_database_sql_driver_NamedValueChecker)(nil)),\n\t\t\"_Pinger\":                         reflect.ValueOf((*_database_sql_driver_Pinger)(nil)),\n\t\t\"_Queryer\":                        reflect.ValueOf((*_database_sql_driver_Queryer)(nil)),\n\t\t\"_QueryerContext\":                 reflect.ValueOf((*_database_sql_driver_QueryerContext)(nil)),\n\t\t\"_Result\":                         reflect.ValueOf((*_database_sql_driver_Result)(nil)),\n\t\t\"_Rows\":                           reflect.ValueOf((*_database_sql_driver_Rows)(nil)),\n\t\t\"_RowsColumnTypeDatabaseTypeName\": reflect.ValueOf((*_database_sql_driver_RowsColumnTypeDatabaseTypeName)(nil)),\n\t\t\"_RowsColumnTypeLength\":           reflect.ValueOf((*_database_sql_driver_RowsColumnTypeLength)(nil)),\n\t\t\"_RowsColumnTypeNullable\":         reflect.ValueOf((*_database_sql_driver_RowsColumnTypeNullable)(nil)),\n\t\t\"_RowsColumnTypePrecisionScale\":   reflect.ValueOf((*_database_sql_driver_RowsColumnTypePrecisionScale)(nil)),\n\t\t\"_RowsColumnTypeScanType\":         reflect.ValueOf((*_database_sql_driver_RowsColumnTypeScanType)(nil)),\n\t\t\"_RowsNextResultSet\":              reflect.ValueOf((*_database_sql_driver_RowsNextResultSet)(nil)),\n\t\t\"_SessionResetter\":                reflect.ValueOf((*_database_sql_driver_SessionResetter)(nil)),\n\t\t\"_Stmt\":                           reflect.ValueOf((*_database_sql_driver_Stmt)(nil)),\n\t\t\"_StmtExecContext\":                reflect.ValueOf((*_database_sql_driver_StmtExecContext)(nil)),\n\t\t\"_StmtQueryContext\":               reflect.ValueOf((*_database_sql_driver_StmtQueryContext)(nil)),\n\t\t\"_Tx\":                             reflect.ValueOf((*_database_sql_driver_Tx)(nil)),\n\t\t\"_Validator\":                      reflect.ValueOf((*_database_sql_driver_Validator)(nil)),\n\t\t\"_Value\":                          reflect.ValueOf((*_database_sql_driver_Value)(nil)),\n\t\t\"_ValueConverter\":                 reflect.ValueOf((*_database_sql_driver_ValueConverter)(nil)),\n\t\t\"_Valuer\":                         reflect.ValueOf((*_database_sql_driver_Valuer)(nil)),\n\t}\n}\n\n// _database_sql_driver_ColumnConverter is an interface wrapper for ColumnConverter type\ntype _database_sql_driver_ColumnConverter struct {\n\tIValue           interface{}\n\tWColumnConverter func(idx int) driver.ValueConverter\n}\n\nfunc (W _database_sql_driver_ColumnConverter) ColumnConverter(idx int) driver.ValueConverter {\n\treturn W.WColumnConverter(idx)\n}\n\n// _database_sql_driver_Conn is an interface wrapper for Conn type\ntype _database_sql_driver_Conn struct {\n\tIValue   interface{}\n\tWBegin   func() (driver.Tx, error)\n\tWClose   func() error\n\tWPrepare func(query string) (driver.Stmt, error)\n}\n\nfunc (W _database_sql_driver_Conn) Begin() (driver.Tx, error) { return W.WBegin() }\nfunc (W _database_sql_driver_Conn) Close() error              { return W.WClose() }\nfunc (W _database_sql_driver_Conn) Prepare(query string) (driver.Stmt, error) {\n\treturn W.WPrepare(query)\n}\n\n// _database_sql_driver_ConnBeginTx is an interface wrapper for ConnBeginTx type\ntype _database_sql_driver_ConnBeginTx struct {\n\tIValue   interface{}\n\tWBeginTx func(ctx context.Context, opts driver.TxOptions) (driver.Tx, error)\n}\n\nfunc (W _database_sql_driver_ConnBeginTx) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) {\n\treturn W.WBeginTx(ctx, opts)\n}\n\n// _database_sql_driver_ConnPrepareContext is an interface wrapper for ConnPrepareContext type\ntype _database_sql_driver_ConnPrepareContext struct {\n\tIValue          interface{}\n\tWPrepareContext func(ctx context.Context, query string) (driver.Stmt, error)\n}\n\nfunc (W _database_sql_driver_ConnPrepareContext) PrepareContext(ctx context.Context, query string) (driver.Stmt, error) {\n\treturn W.WPrepareContext(ctx, query)\n}\n\n// _database_sql_driver_Connector is an interface wrapper for Connector type\ntype _database_sql_driver_Connector struct {\n\tIValue   interface{}\n\tWConnect func(a0 context.Context) (driver.Conn, error)\n\tWDriver  func() driver.Driver\n}\n\nfunc (W _database_sql_driver_Connector) Connect(a0 context.Context) (driver.Conn, error) {\n\treturn W.WConnect(a0)\n}\nfunc (W _database_sql_driver_Connector) Driver() driver.Driver { return W.WDriver() }\n\n// _database_sql_driver_Driver is an interface wrapper for Driver type\ntype _database_sql_driver_Driver struct {\n\tIValue interface{}\n\tWOpen  func(name string) (driver.Conn, error)\n}\n\nfunc (W _database_sql_driver_Driver) Open(name string) (driver.Conn, error) { return W.WOpen(name) }\n\n// _database_sql_driver_DriverContext is an interface wrapper for DriverContext type\ntype _database_sql_driver_DriverContext struct {\n\tIValue         interface{}\n\tWOpenConnector func(name string) (driver.Connector, error)\n}\n\nfunc (W _database_sql_driver_DriverContext) OpenConnector(name string) (driver.Connector, error) {\n\treturn W.WOpenConnector(name)\n}\n\n// _database_sql_driver_Execer is an interface wrapper for Execer type\ntype _database_sql_driver_Execer struct {\n\tIValue interface{}\n\tWExec  func(query string, args []driver.Value) (driver.Result, error)\n}\n\nfunc (W _database_sql_driver_Execer) Exec(query string, args []driver.Value) (driver.Result, error) {\n\treturn W.WExec(query, args)\n}\n\n// _database_sql_driver_ExecerContext is an interface wrapper for ExecerContext type\ntype _database_sql_driver_ExecerContext struct {\n\tIValue       interface{}\n\tWExecContext func(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error)\n}\n\nfunc (W _database_sql_driver_ExecerContext) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) {\n\treturn W.WExecContext(ctx, query, args)\n}\n\n// _database_sql_driver_NamedValueChecker is an interface wrapper for NamedValueChecker type\ntype _database_sql_driver_NamedValueChecker struct {\n\tIValue           interface{}\n\tWCheckNamedValue func(a0 *driver.NamedValue) error\n}\n\nfunc (W _database_sql_driver_NamedValueChecker) CheckNamedValue(a0 *driver.NamedValue) error {\n\treturn W.WCheckNamedValue(a0)\n}\n\n// _database_sql_driver_Pinger is an interface wrapper for Pinger type\ntype _database_sql_driver_Pinger struct {\n\tIValue interface{}\n\tWPing  func(ctx context.Context) error\n}\n\nfunc (W _database_sql_driver_Pinger) Ping(ctx context.Context) error { return W.WPing(ctx) }\n\n// _database_sql_driver_Queryer is an interface wrapper for Queryer type\ntype _database_sql_driver_Queryer struct {\n\tIValue interface{}\n\tWQuery func(query string, args []driver.Value) (driver.Rows, error)\n}\n\nfunc (W _database_sql_driver_Queryer) Query(query string, args []driver.Value) (driver.Rows, error) {\n\treturn W.WQuery(query, args)\n}\n\n// _database_sql_driver_QueryerContext is an interface wrapper for QueryerContext type\ntype _database_sql_driver_QueryerContext struct {\n\tIValue        interface{}\n\tWQueryContext func(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error)\n}\n\nfunc (W _database_sql_driver_QueryerContext) QueryContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error) {\n\treturn W.WQueryContext(ctx, query, args)\n}\n\n// _database_sql_driver_Result is an interface wrapper for Result type\ntype _database_sql_driver_Result struct {\n\tIValue        interface{}\n\tWLastInsertId func() (int64, error)\n\tWRowsAffected func() (int64, error)\n}\n\nfunc (W _database_sql_driver_Result) LastInsertId() (int64, error) { return W.WLastInsertId() }\nfunc (W _database_sql_driver_Result) RowsAffected() (int64, error) { return W.WRowsAffected() }\n\n// _database_sql_driver_Rows is an interface wrapper for Rows type\ntype _database_sql_driver_Rows struct {\n\tIValue   interface{}\n\tWClose   func() error\n\tWColumns func() []string\n\tWNext    func(dest []driver.Value) error\n}\n\nfunc (W _database_sql_driver_Rows) Close() error                   { return W.WClose() }\nfunc (W _database_sql_driver_Rows) Columns() []string              { return W.WColumns() }\nfunc (W _database_sql_driver_Rows) Next(dest []driver.Value) error { return W.WNext(dest) }\n\n// _database_sql_driver_RowsColumnTypeDatabaseTypeName is an interface wrapper for RowsColumnTypeDatabaseTypeName type\ntype _database_sql_driver_RowsColumnTypeDatabaseTypeName struct {\n\tIValue                      interface{}\n\tWClose                      func() error\n\tWColumnTypeDatabaseTypeName func(index int) string\n\tWColumns                    func() []string\n\tWNext                       func(dest []driver.Value) error\n}\n\nfunc (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) Close() error { return W.WClose() }\nfunc (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) ColumnTypeDatabaseTypeName(index int) string {\n\treturn W.WColumnTypeDatabaseTypeName(index)\n}\nfunc (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) Columns() []string { return W.WColumns() }\nfunc (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) Next(dest []driver.Value) error {\n\treturn W.WNext(dest)\n}\n\n// _database_sql_driver_RowsColumnTypeLength is an interface wrapper for RowsColumnTypeLength type\ntype _database_sql_driver_RowsColumnTypeLength struct {\n\tIValue            interface{}\n\tWClose            func() error\n\tWColumnTypeLength func(index int) (length int64, ok bool)\n\tWColumns          func() []string\n\tWNext             func(dest []driver.Value) error\n}\n\nfunc (W _database_sql_driver_RowsColumnTypeLength) Close() error { return W.WClose() }\nfunc (W _database_sql_driver_RowsColumnTypeLength) ColumnTypeLength(index int) (length int64, ok bool) {\n\treturn W.WColumnTypeLength(index)\n}\nfunc (W _database_sql_driver_RowsColumnTypeLength) Columns() []string { return W.WColumns() }\nfunc (W _database_sql_driver_RowsColumnTypeLength) Next(dest []driver.Value) error {\n\treturn W.WNext(dest)\n}\n\n// _database_sql_driver_RowsColumnTypeNullable is an interface wrapper for RowsColumnTypeNullable type\ntype _database_sql_driver_RowsColumnTypeNullable struct {\n\tIValue              interface{}\n\tWClose              func() error\n\tWColumnTypeNullable func(index int) (nullable bool, ok bool)\n\tWColumns            func() []string\n\tWNext               func(dest []driver.Value) error\n}\n\nfunc (W _database_sql_driver_RowsColumnTypeNullable) Close() error { return W.WClose() }\nfunc (W _database_sql_driver_RowsColumnTypeNullable) ColumnTypeNullable(index int) (nullable bool, ok bool) {\n\treturn W.WColumnTypeNullable(index)\n}\nfunc (W _database_sql_driver_RowsColumnTypeNullable) Columns() []string { return W.WColumns() }\nfunc (W _database_sql_driver_RowsColumnTypeNullable) Next(dest []driver.Value) error {\n\treturn W.WNext(dest)\n}\n\n// _database_sql_driver_RowsColumnTypePrecisionScale is an interface wrapper for RowsColumnTypePrecisionScale type\ntype _database_sql_driver_RowsColumnTypePrecisionScale struct {\n\tIValue                    interface{}\n\tWClose                    func() error\n\tWColumnTypePrecisionScale func(index int) (precision int64, scale int64, ok bool)\n\tWColumns                  func() []string\n\tWNext                     func(dest []driver.Value) error\n}\n\nfunc (W _database_sql_driver_RowsColumnTypePrecisionScale) Close() error { return W.WClose() }\nfunc (W _database_sql_driver_RowsColumnTypePrecisionScale) ColumnTypePrecisionScale(index int) (precision int64, scale int64, ok bool) {\n\treturn W.WColumnTypePrecisionScale(index)\n}\nfunc (W _database_sql_driver_RowsColumnTypePrecisionScale) Columns() []string { return W.WColumns() }\nfunc (W _database_sql_driver_RowsColumnTypePrecisionScale) Next(dest []driver.Value) error {\n\treturn W.WNext(dest)\n}\n\n// _database_sql_driver_RowsColumnTypeScanType is an interface wrapper for RowsColumnTypeScanType type\ntype _database_sql_driver_RowsColumnTypeScanType struct {\n\tIValue              interface{}\n\tWClose              func() error\n\tWColumnTypeScanType func(index int) reflect.Type\n\tWColumns            func() []string\n\tWNext               func(dest []driver.Value) error\n}\n\nfunc (W _database_sql_driver_RowsColumnTypeScanType) Close() error { return W.WClose() }\nfunc (W _database_sql_driver_RowsColumnTypeScanType) ColumnTypeScanType(index int) reflect.Type {\n\treturn W.WColumnTypeScanType(index)\n}\nfunc (W _database_sql_driver_RowsColumnTypeScanType) Columns() []string { return W.WColumns() }\nfunc (W _database_sql_driver_RowsColumnTypeScanType) Next(dest []driver.Value) error {\n\treturn W.WNext(dest)\n}\n\n// _database_sql_driver_RowsNextResultSet is an interface wrapper for RowsNextResultSet type\ntype _database_sql_driver_RowsNextResultSet struct {\n\tIValue            interface{}\n\tWClose            func() error\n\tWColumns          func() []string\n\tWHasNextResultSet func() bool\n\tWNext             func(dest []driver.Value) error\n\tWNextResultSet    func() error\n}\n\nfunc (W _database_sql_driver_RowsNextResultSet) Close() error                   { return W.WClose() }\nfunc (W _database_sql_driver_RowsNextResultSet) Columns() []string              { return W.WColumns() }\nfunc (W _database_sql_driver_RowsNextResultSet) HasNextResultSet() bool         { return W.WHasNextResultSet() }\nfunc (W _database_sql_driver_RowsNextResultSet) Next(dest []driver.Value) error { return W.WNext(dest) }\nfunc (W _database_sql_driver_RowsNextResultSet) NextResultSet() error           { return W.WNextResultSet() }\n\n// _database_sql_driver_SessionResetter is an interface wrapper for SessionResetter type\ntype _database_sql_driver_SessionResetter struct {\n\tIValue        interface{}\n\tWResetSession func(ctx context.Context) error\n}\n\nfunc (W _database_sql_driver_SessionResetter) ResetSession(ctx context.Context) error {\n\treturn W.WResetSession(ctx)\n}\n\n// _database_sql_driver_Stmt is an interface wrapper for Stmt type\ntype _database_sql_driver_Stmt struct {\n\tIValue    interface{}\n\tWClose    func() error\n\tWExec     func(args []driver.Value) (driver.Result, error)\n\tWNumInput func() int\n\tWQuery    func(args []driver.Value) (driver.Rows, error)\n}\n\nfunc (W _database_sql_driver_Stmt) Close() error { return W.WClose() }\nfunc (W _database_sql_driver_Stmt) Exec(args []driver.Value) (driver.Result, error) {\n\treturn W.WExec(args)\n}\nfunc (W _database_sql_driver_Stmt) NumInput() int { return W.WNumInput() }\nfunc (W _database_sql_driver_Stmt) Query(args []driver.Value) (driver.Rows, error) {\n\treturn W.WQuery(args)\n}\n\n// _database_sql_driver_StmtExecContext is an interface wrapper for StmtExecContext type\ntype _database_sql_driver_StmtExecContext struct {\n\tIValue       interface{}\n\tWExecContext func(ctx context.Context, args []driver.NamedValue) (driver.Result, error)\n}\n\nfunc (W _database_sql_driver_StmtExecContext) ExecContext(ctx context.Context, args []driver.NamedValue) (driver.Result, error) {\n\treturn W.WExecContext(ctx, args)\n}\n\n// _database_sql_driver_StmtQueryContext is an interface wrapper for StmtQueryContext type\ntype _database_sql_driver_StmtQueryContext struct {\n\tIValue        interface{}\n\tWQueryContext func(ctx context.Context, args []driver.NamedValue) (driver.Rows, error)\n}\n\nfunc (W _database_sql_driver_StmtQueryContext) QueryContext(ctx context.Context, args []driver.NamedValue) (driver.Rows, error) {\n\treturn W.WQueryContext(ctx, args)\n}\n\n// _database_sql_driver_Tx is an interface wrapper for Tx type\ntype _database_sql_driver_Tx struct {\n\tIValue    interface{}\n\tWCommit   func() error\n\tWRollback func() error\n}\n\nfunc (W _database_sql_driver_Tx) Commit() error   { return W.WCommit() }\nfunc (W _database_sql_driver_Tx) Rollback() error { return W.WRollback() }\n\n// _database_sql_driver_Validator is an interface wrapper for Validator type\ntype _database_sql_driver_Validator struct {\n\tIValue   interface{}\n\tWIsValid func() bool\n}\n\nfunc (W _database_sql_driver_Validator) IsValid() bool { return W.WIsValid() }\n\n// _database_sql_driver_Value is an interface wrapper for Value type\ntype _database_sql_driver_Value struct {\n\tIValue interface{}\n}\n\n// _database_sql_driver_ValueConverter is an interface wrapper for ValueConverter type\ntype _database_sql_driver_ValueConverter struct {\n\tIValue        interface{}\n\tWConvertValue func(v any) (driver.Value, error)\n}\n\nfunc (W _database_sql_driver_ValueConverter) ConvertValue(v any) (driver.Value, error) {\n\treturn W.WConvertValue(v)\n}\n\n// _database_sql_driver_Valuer is an interface wrapper for Valuer type\ntype _database_sql_driver_Valuer struct {\n\tIValue interface{}\n\tWValue func() (driver.Value, error)\n}\n\nfunc (W _database_sql_driver_Valuer) Value() (driver.Value, error) { return W.WValue() }\n"
  },
  {
    "path": "stdlib/go1_21_debug_buildinfo.go",
    "content": "// Code generated by 'yaegi extract debug/buildinfo'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"debug/buildinfo\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"debug/buildinfo/buildinfo\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Read\":     reflect.ValueOf(buildinfo.Read),\n\t\t\"ReadFile\": reflect.ValueOf(buildinfo.ReadFile),\n\n\t\t// type definitions\n\t\t\"BuildInfo\": reflect.ValueOf((*buildinfo.BuildInfo)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_debug_dwarf.go",
    "content": "// Code generated by 'yaegi extract debug/dwarf'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"debug/dwarf\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"debug/dwarf/dwarf\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AttrAbstractOrigin\":        reflect.ValueOf(dwarf.AttrAbstractOrigin),\n\t\t\"AttrAccessibility\":         reflect.ValueOf(dwarf.AttrAccessibility),\n\t\t\"AttrAddrBase\":              reflect.ValueOf(dwarf.AttrAddrBase),\n\t\t\"AttrAddrClass\":             reflect.ValueOf(dwarf.AttrAddrClass),\n\t\t\"AttrAlignment\":             reflect.ValueOf(dwarf.AttrAlignment),\n\t\t\"AttrAllocated\":             reflect.ValueOf(dwarf.AttrAllocated),\n\t\t\"AttrArtificial\":            reflect.ValueOf(dwarf.AttrArtificial),\n\t\t\"AttrAssociated\":            reflect.ValueOf(dwarf.AttrAssociated),\n\t\t\"AttrBaseTypes\":             reflect.ValueOf(dwarf.AttrBaseTypes),\n\t\t\"AttrBinaryScale\":           reflect.ValueOf(dwarf.AttrBinaryScale),\n\t\t\"AttrBitOffset\":             reflect.ValueOf(dwarf.AttrBitOffset),\n\t\t\"AttrBitSize\":               reflect.ValueOf(dwarf.AttrBitSize),\n\t\t\"AttrByteSize\":              reflect.ValueOf(dwarf.AttrByteSize),\n\t\t\"AttrCallAllCalls\":          reflect.ValueOf(dwarf.AttrCallAllCalls),\n\t\t\"AttrCallAllSourceCalls\":    reflect.ValueOf(dwarf.AttrCallAllSourceCalls),\n\t\t\"AttrCallAllTailCalls\":      reflect.ValueOf(dwarf.AttrCallAllTailCalls),\n\t\t\"AttrCallColumn\":            reflect.ValueOf(dwarf.AttrCallColumn),\n\t\t\"AttrCallDataLocation\":      reflect.ValueOf(dwarf.AttrCallDataLocation),\n\t\t\"AttrCallDataValue\":         reflect.ValueOf(dwarf.AttrCallDataValue),\n\t\t\"AttrCallFile\":              reflect.ValueOf(dwarf.AttrCallFile),\n\t\t\"AttrCallLine\":              reflect.ValueOf(dwarf.AttrCallLine),\n\t\t\"AttrCallOrigin\":            reflect.ValueOf(dwarf.AttrCallOrigin),\n\t\t\"AttrCallPC\":                reflect.ValueOf(dwarf.AttrCallPC),\n\t\t\"AttrCallParameter\":         reflect.ValueOf(dwarf.AttrCallParameter),\n\t\t\"AttrCallReturnPC\":          reflect.ValueOf(dwarf.AttrCallReturnPC),\n\t\t\"AttrCallTailCall\":          reflect.ValueOf(dwarf.AttrCallTailCall),\n\t\t\"AttrCallTarget\":            reflect.ValueOf(dwarf.AttrCallTarget),\n\t\t\"AttrCallTargetClobbered\":   reflect.ValueOf(dwarf.AttrCallTargetClobbered),\n\t\t\"AttrCallValue\":             reflect.ValueOf(dwarf.AttrCallValue),\n\t\t\"AttrCalling\":               reflect.ValueOf(dwarf.AttrCalling),\n\t\t\"AttrCommonRef\":             reflect.ValueOf(dwarf.AttrCommonRef),\n\t\t\"AttrCompDir\":               reflect.ValueOf(dwarf.AttrCompDir),\n\t\t\"AttrConstExpr\":             reflect.ValueOf(dwarf.AttrConstExpr),\n\t\t\"AttrConstValue\":            reflect.ValueOf(dwarf.AttrConstValue),\n\t\t\"AttrContainingType\":        reflect.ValueOf(dwarf.AttrContainingType),\n\t\t\"AttrCount\":                 reflect.ValueOf(dwarf.AttrCount),\n\t\t\"AttrDataBitOffset\":         reflect.ValueOf(dwarf.AttrDataBitOffset),\n\t\t\"AttrDataLocation\":          reflect.ValueOf(dwarf.AttrDataLocation),\n\t\t\"AttrDataMemberLoc\":         reflect.ValueOf(dwarf.AttrDataMemberLoc),\n\t\t\"AttrDecimalScale\":          reflect.ValueOf(dwarf.AttrDecimalScale),\n\t\t\"AttrDecimalSign\":           reflect.ValueOf(dwarf.AttrDecimalSign),\n\t\t\"AttrDeclColumn\":            reflect.ValueOf(dwarf.AttrDeclColumn),\n\t\t\"AttrDeclFile\":              reflect.ValueOf(dwarf.AttrDeclFile),\n\t\t\"AttrDeclLine\":              reflect.ValueOf(dwarf.AttrDeclLine),\n\t\t\"AttrDeclaration\":           reflect.ValueOf(dwarf.AttrDeclaration),\n\t\t\"AttrDefaultValue\":          reflect.ValueOf(dwarf.AttrDefaultValue),\n\t\t\"AttrDefaulted\":             reflect.ValueOf(dwarf.AttrDefaulted),\n\t\t\"AttrDeleted\":               reflect.ValueOf(dwarf.AttrDeleted),\n\t\t\"AttrDescription\":           reflect.ValueOf(dwarf.AttrDescription),\n\t\t\"AttrDigitCount\":            reflect.ValueOf(dwarf.AttrDigitCount),\n\t\t\"AttrDiscr\":                 reflect.ValueOf(dwarf.AttrDiscr),\n\t\t\"AttrDiscrList\":             reflect.ValueOf(dwarf.AttrDiscrList),\n\t\t\"AttrDiscrValue\":            reflect.ValueOf(dwarf.AttrDiscrValue),\n\t\t\"AttrDwoName\":               reflect.ValueOf(dwarf.AttrDwoName),\n\t\t\"AttrElemental\":             reflect.ValueOf(dwarf.AttrElemental),\n\t\t\"AttrEncoding\":              reflect.ValueOf(dwarf.AttrEncoding),\n\t\t\"AttrEndianity\":             reflect.ValueOf(dwarf.AttrEndianity),\n\t\t\"AttrEntrypc\":               reflect.ValueOf(dwarf.AttrEntrypc),\n\t\t\"AttrEnumClass\":             reflect.ValueOf(dwarf.AttrEnumClass),\n\t\t\"AttrExplicit\":              reflect.ValueOf(dwarf.AttrExplicit),\n\t\t\"AttrExportSymbols\":         reflect.ValueOf(dwarf.AttrExportSymbols),\n\t\t\"AttrExtension\":             reflect.ValueOf(dwarf.AttrExtension),\n\t\t\"AttrExternal\":              reflect.ValueOf(dwarf.AttrExternal),\n\t\t\"AttrFrameBase\":             reflect.ValueOf(dwarf.AttrFrameBase),\n\t\t\"AttrFriend\":                reflect.ValueOf(dwarf.AttrFriend),\n\t\t\"AttrHighpc\":                reflect.ValueOf(dwarf.AttrHighpc),\n\t\t\"AttrIdentifierCase\":        reflect.ValueOf(dwarf.AttrIdentifierCase),\n\t\t\"AttrImport\":                reflect.ValueOf(dwarf.AttrImport),\n\t\t\"AttrInline\":                reflect.ValueOf(dwarf.AttrInline),\n\t\t\"AttrIsOptional\":            reflect.ValueOf(dwarf.AttrIsOptional),\n\t\t\"AttrLanguage\":              reflect.ValueOf(dwarf.AttrLanguage),\n\t\t\"AttrLinkageName\":           reflect.ValueOf(dwarf.AttrLinkageName),\n\t\t\"AttrLocation\":              reflect.ValueOf(dwarf.AttrLocation),\n\t\t\"AttrLoclistsBase\":          reflect.ValueOf(dwarf.AttrLoclistsBase),\n\t\t\"AttrLowerBound\":            reflect.ValueOf(dwarf.AttrLowerBound),\n\t\t\"AttrLowpc\":                 reflect.ValueOf(dwarf.AttrLowpc),\n\t\t\"AttrMacroInfo\":             reflect.ValueOf(dwarf.AttrMacroInfo),\n\t\t\"AttrMacros\":                reflect.ValueOf(dwarf.AttrMacros),\n\t\t\"AttrMainSubprogram\":        reflect.ValueOf(dwarf.AttrMainSubprogram),\n\t\t\"AttrMutable\":               reflect.ValueOf(dwarf.AttrMutable),\n\t\t\"AttrName\":                  reflect.ValueOf(dwarf.AttrName),\n\t\t\"AttrNamelistItem\":          reflect.ValueOf(dwarf.AttrNamelistItem),\n\t\t\"AttrNoreturn\":              reflect.ValueOf(dwarf.AttrNoreturn),\n\t\t\"AttrObjectPointer\":         reflect.ValueOf(dwarf.AttrObjectPointer),\n\t\t\"AttrOrdering\":              reflect.ValueOf(dwarf.AttrOrdering),\n\t\t\"AttrPictureString\":         reflect.ValueOf(dwarf.AttrPictureString),\n\t\t\"AttrPriority\":              reflect.ValueOf(dwarf.AttrPriority),\n\t\t\"AttrProducer\":              reflect.ValueOf(dwarf.AttrProducer),\n\t\t\"AttrPrototyped\":            reflect.ValueOf(dwarf.AttrPrototyped),\n\t\t\"AttrPure\":                  reflect.ValueOf(dwarf.AttrPure),\n\t\t\"AttrRanges\":                reflect.ValueOf(dwarf.AttrRanges),\n\t\t\"AttrRank\":                  reflect.ValueOf(dwarf.AttrRank),\n\t\t\"AttrRecursive\":             reflect.ValueOf(dwarf.AttrRecursive),\n\t\t\"AttrReference\":             reflect.ValueOf(dwarf.AttrReference),\n\t\t\"AttrReturnAddr\":            reflect.ValueOf(dwarf.AttrReturnAddr),\n\t\t\"AttrRnglistsBase\":          reflect.ValueOf(dwarf.AttrRnglistsBase),\n\t\t\"AttrRvalueReference\":       reflect.ValueOf(dwarf.AttrRvalueReference),\n\t\t\"AttrSegment\":               reflect.ValueOf(dwarf.AttrSegment),\n\t\t\"AttrSibling\":               reflect.ValueOf(dwarf.AttrSibling),\n\t\t\"AttrSignature\":             reflect.ValueOf(dwarf.AttrSignature),\n\t\t\"AttrSmall\":                 reflect.ValueOf(dwarf.AttrSmall),\n\t\t\"AttrSpecification\":         reflect.ValueOf(dwarf.AttrSpecification),\n\t\t\"AttrStartScope\":            reflect.ValueOf(dwarf.AttrStartScope),\n\t\t\"AttrStaticLink\":            reflect.ValueOf(dwarf.AttrStaticLink),\n\t\t\"AttrStmtList\":              reflect.ValueOf(dwarf.AttrStmtList),\n\t\t\"AttrStrOffsetsBase\":        reflect.ValueOf(dwarf.AttrStrOffsetsBase),\n\t\t\"AttrStride\":                reflect.ValueOf(dwarf.AttrStride),\n\t\t\"AttrStrideSize\":            reflect.ValueOf(dwarf.AttrStrideSize),\n\t\t\"AttrStringLength\":          reflect.ValueOf(dwarf.AttrStringLength),\n\t\t\"AttrStringLengthBitSize\":   reflect.ValueOf(dwarf.AttrStringLengthBitSize),\n\t\t\"AttrStringLengthByteSize\":  reflect.ValueOf(dwarf.AttrStringLengthByteSize),\n\t\t\"AttrThreadsScaled\":         reflect.ValueOf(dwarf.AttrThreadsScaled),\n\t\t\"AttrTrampoline\":            reflect.ValueOf(dwarf.AttrTrampoline),\n\t\t\"AttrType\":                  reflect.ValueOf(dwarf.AttrType),\n\t\t\"AttrUpperBound\":            reflect.ValueOf(dwarf.AttrUpperBound),\n\t\t\"AttrUseLocation\":           reflect.ValueOf(dwarf.AttrUseLocation),\n\t\t\"AttrUseUTF8\":               reflect.ValueOf(dwarf.AttrUseUTF8),\n\t\t\"AttrVarParam\":              reflect.ValueOf(dwarf.AttrVarParam),\n\t\t\"AttrVirtuality\":            reflect.ValueOf(dwarf.AttrVirtuality),\n\t\t\"AttrVisibility\":            reflect.ValueOf(dwarf.AttrVisibility),\n\t\t\"AttrVtableElemLoc\":         reflect.ValueOf(dwarf.AttrVtableElemLoc),\n\t\t\"ClassAddrPtr\":              reflect.ValueOf(dwarf.ClassAddrPtr),\n\t\t\"ClassAddress\":              reflect.ValueOf(dwarf.ClassAddress),\n\t\t\"ClassBlock\":                reflect.ValueOf(dwarf.ClassBlock),\n\t\t\"ClassConstant\":             reflect.ValueOf(dwarf.ClassConstant),\n\t\t\"ClassExprLoc\":              reflect.ValueOf(dwarf.ClassExprLoc),\n\t\t\"ClassFlag\":                 reflect.ValueOf(dwarf.ClassFlag),\n\t\t\"ClassLinePtr\":              reflect.ValueOf(dwarf.ClassLinePtr),\n\t\t\"ClassLocList\":              reflect.ValueOf(dwarf.ClassLocList),\n\t\t\"ClassLocListPtr\":           reflect.ValueOf(dwarf.ClassLocListPtr),\n\t\t\"ClassMacPtr\":               reflect.ValueOf(dwarf.ClassMacPtr),\n\t\t\"ClassRangeListPtr\":         reflect.ValueOf(dwarf.ClassRangeListPtr),\n\t\t\"ClassReference\":            reflect.ValueOf(dwarf.ClassReference),\n\t\t\"ClassReferenceAlt\":         reflect.ValueOf(dwarf.ClassReferenceAlt),\n\t\t\"ClassReferenceSig\":         reflect.ValueOf(dwarf.ClassReferenceSig),\n\t\t\"ClassRngList\":              reflect.ValueOf(dwarf.ClassRngList),\n\t\t\"ClassRngListsPtr\":          reflect.ValueOf(dwarf.ClassRngListsPtr),\n\t\t\"ClassStrOffsetsPtr\":        reflect.ValueOf(dwarf.ClassStrOffsetsPtr),\n\t\t\"ClassString\":               reflect.ValueOf(dwarf.ClassString),\n\t\t\"ClassStringAlt\":            reflect.ValueOf(dwarf.ClassStringAlt),\n\t\t\"ClassUnknown\":              reflect.ValueOf(dwarf.ClassUnknown),\n\t\t\"ErrUnknownPC\":              reflect.ValueOf(&dwarf.ErrUnknownPC).Elem(),\n\t\t\"New\":                       reflect.ValueOf(dwarf.New),\n\t\t\"TagAccessDeclaration\":      reflect.ValueOf(dwarf.TagAccessDeclaration),\n\t\t\"TagArrayType\":              reflect.ValueOf(dwarf.TagArrayType),\n\t\t\"TagAtomicType\":             reflect.ValueOf(dwarf.TagAtomicType),\n\t\t\"TagBaseType\":               reflect.ValueOf(dwarf.TagBaseType),\n\t\t\"TagCallSite\":               reflect.ValueOf(dwarf.TagCallSite),\n\t\t\"TagCallSiteParameter\":      reflect.ValueOf(dwarf.TagCallSiteParameter),\n\t\t\"TagCatchDwarfBlock\":        reflect.ValueOf(dwarf.TagCatchDwarfBlock),\n\t\t\"TagClassType\":              reflect.ValueOf(dwarf.TagClassType),\n\t\t\"TagCoarrayType\":            reflect.ValueOf(dwarf.TagCoarrayType),\n\t\t\"TagCommonDwarfBlock\":       reflect.ValueOf(dwarf.TagCommonDwarfBlock),\n\t\t\"TagCommonInclusion\":        reflect.ValueOf(dwarf.TagCommonInclusion),\n\t\t\"TagCompileUnit\":            reflect.ValueOf(dwarf.TagCompileUnit),\n\t\t\"TagCondition\":              reflect.ValueOf(dwarf.TagCondition),\n\t\t\"TagConstType\":              reflect.ValueOf(dwarf.TagConstType),\n\t\t\"TagConstant\":               reflect.ValueOf(dwarf.TagConstant),\n\t\t\"TagDwarfProcedure\":         reflect.ValueOf(dwarf.TagDwarfProcedure),\n\t\t\"TagDynamicType\":            reflect.ValueOf(dwarf.TagDynamicType),\n\t\t\"TagEntryPoint\":             reflect.ValueOf(dwarf.TagEntryPoint),\n\t\t\"TagEnumerationType\":        reflect.ValueOf(dwarf.TagEnumerationType),\n\t\t\"TagEnumerator\":             reflect.ValueOf(dwarf.TagEnumerator),\n\t\t\"TagFileType\":               reflect.ValueOf(dwarf.TagFileType),\n\t\t\"TagFormalParameter\":        reflect.ValueOf(dwarf.TagFormalParameter),\n\t\t\"TagFriend\":                 reflect.ValueOf(dwarf.TagFriend),\n\t\t\"TagGenericSubrange\":        reflect.ValueOf(dwarf.TagGenericSubrange),\n\t\t\"TagImmutableType\":          reflect.ValueOf(dwarf.TagImmutableType),\n\t\t\"TagImportedDeclaration\":    reflect.ValueOf(dwarf.TagImportedDeclaration),\n\t\t\"TagImportedModule\":         reflect.ValueOf(dwarf.TagImportedModule),\n\t\t\"TagImportedUnit\":           reflect.ValueOf(dwarf.TagImportedUnit),\n\t\t\"TagInheritance\":            reflect.ValueOf(dwarf.TagInheritance),\n\t\t\"TagInlinedSubroutine\":      reflect.ValueOf(dwarf.TagInlinedSubroutine),\n\t\t\"TagInterfaceType\":          reflect.ValueOf(dwarf.TagInterfaceType),\n\t\t\"TagLabel\":                  reflect.ValueOf(dwarf.TagLabel),\n\t\t\"TagLexDwarfBlock\":          reflect.ValueOf(dwarf.TagLexDwarfBlock),\n\t\t\"TagMember\":                 reflect.ValueOf(dwarf.TagMember),\n\t\t\"TagModule\":                 reflect.ValueOf(dwarf.TagModule),\n\t\t\"TagMutableType\":            reflect.ValueOf(dwarf.TagMutableType),\n\t\t\"TagNamelist\":               reflect.ValueOf(dwarf.TagNamelist),\n\t\t\"TagNamelistItem\":           reflect.ValueOf(dwarf.TagNamelistItem),\n\t\t\"TagNamespace\":              reflect.ValueOf(dwarf.TagNamespace),\n\t\t\"TagPackedType\":             reflect.ValueOf(dwarf.TagPackedType),\n\t\t\"TagPartialUnit\":            reflect.ValueOf(dwarf.TagPartialUnit),\n\t\t\"TagPointerType\":            reflect.ValueOf(dwarf.TagPointerType),\n\t\t\"TagPtrToMemberType\":        reflect.ValueOf(dwarf.TagPtrToMemberType),\n\t\t\"TagReferenceType\":          reflect.ValueOf(dwarf.TagReferenceType),\n\t\t\"TagRestrictType\":           reflect.ValueOf(dwarf.TagRestrictType),\n\t\t\"TagRvalueReferenceType\":    reflect.ValueOf(dwarf.TagRvalueReferenceType),\n\t\t\"TagSetType\":                reflect.ValueOf(dwarf.TagSetType),\n\t\t\"TagSharedType\":             reflect.ValueOf(dwarf.TagSharedType),\n\t\t\"TagSkeletonUnit\":           reflect.ValueOf(dwarf.TagSkeletonUnit),\n\t\t\"TagStringType\":             reflect.ValueOf(dwarf.TagStringType),\n\t\t\"TagStructType\":             reflect.ValueOf(dwarf.TagStructType),\n\t\t\"TagSubprogram\":             reflect.ValueOf(dwarf.TagSubprogram),\n\t\t\"TagSubrangeType\":           reflect.ValueOf(dwarf.TagSubrangeType),\n\t\t\"TagSubroutineType\":         reflect.ValueOf(dwarf.TagSubroutineType),\n\t\t\"TagTemplateAlias\":          reflect.ValueOf(dwarf.TagTemplateAlias),\n\t\t\"TagTemplateTypeParameter\":  reflect.ValueOf(dwarf.TagTemplateTypeParameter),\n\t\t\"TagTemplateValueParameter\": reflect.ValueOf(dwarf.TagTemplateValueParameter),\n\t\t\"TagThrownType\":             reflect.ValueOf(dwarf.TagThrownType),\n\t\t\"TagTryDwarfBlock\":          reflect.ValueOf(dwarf.TagTryDwarfBlock),\n\t\t\"TagTypeUnit\":               reflect.ValueOf(dwarf.TagTypeUnit),\n\t\t\"TagTypedef\":                reflect.ValueOf(dwarf.TagTypedef),\n\t\t\"TagUnionType\":              reflect.ValueOf(dwarf.TagUnionType),\n\t\t\"TagUnspecifiedParameters\":  reflect.ValueOf(dwarf.TagUnspecifiedParameters),\n\t\t\"TagUnspecifiedType\":        reflect.ValueOf(dwarf.TagUnspecifiedType),\n\t\t\"TagVariable\":               reflect.ValueOf(dwarf.TagVariable),\n\t\t\"TagVariant\":                reflect.ValueOf(dwarf.TagVariant),\n\t\t\"TagVariantPart\":            reflect.ValueOf(dwarf.TagVariantPart),\n\t\t\"TagVolatileType\":           reflect.ValueOf(dwarf.TagVolatileType),\n\t\t\"TagWithStmt\":               reflect.ValueOf(dwarf.TagWithStmt),\n\n\t\t// type definitions\n\t\t\"AddrType\":        reflect.ValueOf((*dwarf.AddrType)(nil)),\n\t\t\"ArrayType\":       reflect.ValueOf((*dwarf.ArrayType)(nil)),\n\t\t\"Attr\":            reflect.ValueOf((*dwarf.Attr)(nil)),\n\t\t\"BasicType\":       reflect.ValueOf((*dwarf.BasicType)(nil)),\n\t\t\"BoolType\":        reflect.ValueOf((*dwarf.BoolType)(nil)),\n\t\t\"CharType\":        reflect.ValueOf((*dwarf.CharType)(nil)),\n\t\t\"Class\":           reflect.ValueOf((*dwarf.Class)(nil)),\n\t\t\"CommonType\":      reflect.ValueOf((*dwarf.CommonType)(nil)),\n\t\t\"ComplexType\":     reflect.ValueOf((*dwarf.ComplexType)(nil)),\n\t\t\"Data\":            reflect.ValueOf((*dwarf.Data)(nil)),\n\t\t\"DecodeError\":     reflect.ValueOf((*dwarf.DecodeError)(nil)),\n\t\t\"DotDotDotType\":   reflect.ValueOf((*dwarf.DotDotDotType)(nil)),\n\t\t\"Entry\":           reflect.ValueOf((*dwarf.Entry)(nil)),\n\t\t\"EnumType\":        reflect.ValueOf((*dwarf.EnumType)(nil)),\n\t\t\"EnumValue\":       reflect.ValueOf((*dwarf.EnumValue)(nil)),\n\t\t\"Field\":           reflect.ValueOf((*dwarf.Field)(nil)),\n\t\t\"FloatType\":       reflect.ValueOf((*dwarf.FloatType)(nil)),\n\t\t\"FuncType\":        reflect.ValueOf((*dwarf.FuncType)(nil)),\n\t\t\"IntType\":         reflect.ValueOf((*dwarf.IntType)(nil)),\n\t\t\"LineEntry\":       reflect.ValueOf((*dwarf.LineEntry)(nil)),\n\t\t\"LineFile\":        reflect.ValueOf((*dwarf.LineFile)(nil)),\n\t\t\"LineReader\":      reflect.ValueOf((*dwarf.LineReader)(nil)),\n\t\t\"LineReaderPos\":   reflect.ValueOf((*dwarf.LineReaderPos)(nil)),\n\t\t\"Offset\":          reflect.ValueOf((*dwarf.Offset)(nil)),\n\t\t\"PtrType\":         reflect.ValueOf((*dwarf.PtrType)(nil)),\n\t\t\"QualType\":        reflect.ValueOf((*dwarf.QualType)(nil)),\n\t\t\"Reader\":          reflect.ValueOf((*dwarf.Reader)(nil)),\n\t\t\"StructField\":     reflect.ValueOf((*dwarf.StructField)(nil)),\n\t\t\"StructType\":      reflect.ValueOf((*dwarf.StructType)(nil)),\n\t\t\"Tag\":             reflect.ValueOf((*dwarf.Tag)(nil)),\n\t\t\"Type\":            reflect.ValueOf((*dwarf.Type)(nil)),\n\t\t\"TypedefType\":     reflect.ValueOf((*dwarf.TypedefType)(nil)),\n\t\t\"UcharType\":       reflect.ValueOf((*dwarf.UcharType)(nil)),\n\t\t\"UintType\":        reflect.ValueOf((*dwarf.UintType)(nil)),\n\t\t\"UnspecifiedType\": reflect.ValueOf((*dwarf.UnspecifiedType)(nil)),\n\t\t\"UnsupportedType\": reflect.ValueOf((*dwarf.UnsupportedType)(nil)),\n\t\t\"VoidType\":        reflect.ValueOf((*dwarf.VoidType)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Type\": reflect.ValueOf((*_debug_dwarf_Type)(nil)),\n\t}\n}\n\n// _debug_dwarf_Type is an interface wrapper for Type type\ntype _debug_dwarf_Type struct {\n\tIValue  interface{}\n\tWCommon func() *dwarf.CommonType\n\tWSize   func() int64\n\tWString func() string\n}\n\nfunc (W _debug_dwarf_Type) Common() *dwarf.CommonType { return W.WCommon() }\nfunc (W _debug_dwarf_Type) Size() int64               { return W.WSize() }\nfunc (W _debug_dwarf_Type) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n"
  },
  {
    "path": "stdlib/go1_21_debug_elf.go",
    "content": "// Code generated by 'yaegi extract debug/elf'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"debug/elf\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"debug/elf/elf\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ARM_MAGIC_TRAMP_NUMBER\":             reflect.ValueOf(constant.MakeFromLiteral(\"1543503875\", token.INT, 0)),\n\t\t\"COMPRESS_HIOS\":                      reflect.ValueOf(elf.COMPRESS_HIOS),\n\t\t\"COMPRESS_HIPROC\":                    reflect.ValueOf(elf.COMPRESS_HIPROC),\n\t\t\"COMPRESS_LOOS\":                      reflect.ValueOf(elf.COMPRESS_LOOS),\n\t\t\"COMPRESS_LOPROC\":                    reflect.ValueOf(elf.COMPRESS_LOPROC),\n\t\t\"COMPRESS_ZLIB\":                      reflect.ValueOf(elf.COMPRESS_ZLIB),\n\t\t\"COMPRESS_ZSTD\":                      reflect.ValueOf(elf.COMPRESS_ZSTD),\n\t\t\"DF_1_CONFALT\":                       reflect.ValueOf(elf.DF_1_CONFALT),\n\t\t\"DF_1_DIRECT\":                        reflect.ValueOf(elf.DF_1_DIRECT),\n\t\t\"DF_1_DISPRELDNE\":                    reflect.ValueOf(elf.DF_1_DISPRELDNE),\n\t\t\"DF_1_DISPRELPND\":                    reflect.ValueOf(elf.DF_1_DISPRELPND),\n\t\t\"DF_1_EDITED\":                        reflect.ValueOf(elf.DF_1_EDITED),\n\t\t\"DF_1_ENDFILTEE\":                     reflect.ValueOf(elf.DF_1_ENDFILTEE),\n\t\t\"DF_1_GLOBAL\":                        reflect.ValueOf(elf.DF_1_GLOBAL),\n\t\t\"DF_1_GLOBAUDIT\":                     reflect.ValueOf(elf.DF_1_GLOBAUDIT),\n\t\t\"DF_1_GROUP\":                         reflect.ValueOf(elf.DF_1_GROUP),\n\t\t\"DF_1_IGNMULDEF\":                     reflect.ValueOf(elf.DF_1_IGNMULDEF),\n\t\t\"DF_1_INITFIRST\":                     reflect.ValueOf(elf.DF_1_INITFIRST),\n\t\t\"DF_1_INTERPOSE\":                     reflect.ValueOf(elf.DF_1_INTERPOSE),\n\t\t\"DF_1_KMOD\":                          reflect.ValueOf(elf.DF_1_KMOD),\n\t\t\"DF_1_LOADFLTR\":                      reflect.ValueOf(elf.DF_1_LOADFLTR),\n\t\t\"DF_1_NOCOMMON\":                      reflect.ValueOf(elf.DF_1_NOCOMMON),\n\t\t\"DF_1_NODEFLIB\":                      reflect.ValueOf(elf.DF_1_NODEFLIB),\n\t\t\"DF_1_NODELETE\":                      reflect.ValueOf(elf.DF_1_NODELETE),\n\t\t\"DF_1_NODIRECT\":                      reflect.ValueOf(elf.DF_1_NODIRECT),\n\t\t\"DF_1_NODUMP\":                        reflect.ValueOf(elf.DF_1_NODUMP),\n\t\t\"DF_1_NOHDR\":                         reflect.ValueOf(elf.DF_1_NOHDR),\n\t\t\"DF_1_NOKSYMS\":                       reflect.ValueOf(elf.DF_1_NOKSYMS),\n\t\t\"DF_1_NOOPEN\":                        reflect.ValueOf(elf.DF_1_NOOPEN),\n\t\t\"DF_1_NORELOC\":                       reflect.ValueOf(elf.DF_1_NORELOC),\n\t\t\"DF_1_NOW\":                           reflect.ValueOf(elf.DF_1_NOW),\n\t\t\"DF_1_ORIGIN\":                        reflect.ValueOf(elf.DF_1_ORIGIN),\n\t\t\"DF_1_PIE\":                           reflect.ValueOf(elf.DF_1_PIE),\n\t\t\"DF_1_SINGLETON\":                     reflect.ValueOf(elf.DF_1_SINGLETON),\n\t\t\"DF_1_STUB\":                          reflect.ValueOf(elf.DF_1_STUB),\n\t\t\"DF_1_SYMINTPOSE\":                    reflect.ValueOf(elf.DF_1_SYMINTPOSE),\n\t\t\"DF_1_TRANS\":                         reflect.ValueOf(elf.DF_1_TRANS),\n\t\t\"DF_1_WEAKFILTER\":                    reflect.ValueOf(elf.DF_1_WEAKFILTER),\n\t\t\"DF_BIND_NOW\":                        reflect.ValueOf(elf.DF_BIND_NOW),\n\t\t\"DF_ORIGIN\":                          reflect.ValueOf(elf.DF_ORIGIN),\n\t\t\"DF_STATIC_TLS\":                      reflect.ValueOf(elf.DF_STATIC_TLS),\n\t\t\"DF_SYMBOLIC\":                        reflect.ValueOf(elf.DF_SYMBOLIC),\n\t\t\"DF_TEXTREL\":                         reflect.ValueOf(elf.DF_TEXTREL),\n\t\t\"DT_ADDRRNGHI\":                       reflect.ValueOf(elf.DT_ADDRRNGHI),\n\t\t\"DT_ADDRRNGLO\":                       reflect.ValueOf(elf.DT_ADDRRNGLO),\n\t\t\"DT_AUDIT\":                           reflect.ValueOf(elf.DT_AUDIT),\n\t\t\"DT_AUXILIARY\":                       reflect.ValueOf(elf.DT_AUXILIARY),\n\t\t\"DT_BIND_NOW\":                        reflect.ValueOf(elf.DT_BIND_NOW),\n\t\t\"DT_CHECKSUM\":                        reflect.ValueOf(elf.DT_CHECKSUM),\n\t\t\"DT_CONFIG\":                          reflect.ValueOf(elf.DT_CONFIG),\n\t\t\"DT_DEBUG\":                           reflect.ValueOf(elf.DT_DEBUG),\n\t\t\"DT_DEPAUDIT\":                        reflect.ValueOf(elf.DT_DEPAUDIT),\n\t\t\"DT_ENCODING\":                        reflect.ValueOf(elf.DT_ENCODING),\n\t\t\"DT_FEATURE\":                         reflect.ValueOf(elf.DT_FEATURE),\n\t\t\"DT_FILTER\":                          reflect.ValueOf(elf.DT_FILTER),\n\t\t\"DT_FINI\":                            reflect.ValueOf(elf.DT_FINI),\n\t\t\"DT_FINI_ARRAY\":                      reflect.ValueOf(elf.DT_FINI_ARRAY),\n\t\t\"DT_FINI_ARRAYSZ\":                    reflect.ValueOf(elf.DT_FINI_ARRAYSZ),\n\t\t\"DT_FLAGS\":                           reflect.ValueOf(elf.DT_FLAGS),\n\t\t\"DT_FLAGS_1\":                         reflect.ValueOf(elf.DT_FLAGS_1),\n\t\t\"DT_GNU_CONFLICT\":                    reflect.ValueOf(elf.DT_GNU_CONFLICT),\n\t\t\"DT_GNU_CONFLICTSZ\":                  reflect.ValueOf(elf.DT_GNU_CONFLICTSZ),\n\t\t\"DT_GNU_HASH\":                        reflect.ValueOf(elf.DT_GNU_HASH),\n\t\t\"DT_GNU_LIBLIST\":                     reflect.ValueOf(elf.DT_GNU_LIBLIST),\n\t\t\"DT_GNU_LIBLISTSZ\":                   reflect.ValueOf(elf.DT_GNU_LIBLISTSZ),\n\t\t\"DT_GNU_PRELINKED\":                   reflect.ValueOf(elf.DT_GNU_PRELINKED),\n\t\t\"DT_HASH\":                            reflect.ValueOf(elf.DT_HASH),\n\t\t\"DT_HIOS\":                            reflect.ValueOf(elf.DT_HIOS),\n\t\t\"DT_HIPROC\":                          reflect.ValueOf(elf.DT_HIPROC),\n\t\t\"DT_INIT\":                            reflect.ValueOf(elf.DT_INIT),\n\t\t\"DT_INIT_ARRAY\":                      reflect.ValueOf(elf.DT_INIT_ARRAY),\n\t\t\"DT_INIT_ARRAYSZ\":                    reflect.ValueOf(elf.DT_INIT_ARRAYSZ),\n\t\t\"DT_JMPREL\":                          reflect.ValueOf(elf.DT_JMPREL),\n\t\t\"DT_LOOS\":                            reflect.ValueOf(elf.DT_LOOS),\n\t\t\"DT_LOPROC\":                          reflect.ValueOf(elf.DT_LOPROC),\n\t\t\"DT_MIPS_AUX_DYNAMIC\":                reflect.ValueOf(elf.DT_MIPS_AUX_DYNAMIC),\n\t\t\"DT_MIPS_BASE_ADDRESS\":               reflect.ValueOf(elf.DT_MIPS_BASE_ADDRESS),\n\t\t\"DT_MIPS_COMPACT_SIZE\":               reflect.ValueOf(elf.DT_MIPS_COMPACT_SIZE),\n\t\t\"DT_MIPS_CONFLICT\":                   reflect.ValueOf(elf.DT_MIPS_CONFLICT),\n\t\t\"DT_MIPS_CONFLICTNO\":                 reflect.ValueOf(elf.DT_MIPS_CONFLICTNO),\n\t\t\"DT_MIPS_CXX_FLAGS\":                  reflect.ValueOf(elf.DT_MIPS_CXX_FLAGS),\n\t\t\"DT_MIPS_DELTA_CLASS\":                reflect.ValueOf(elf.DT_MIPS_DELTA_CLASS),\n\t\t\"DT_MIPS_DELTA_CLASSSYM\":             reflect.ValueOf(elf.DT_MIPS_DELTA_CLASSSYM),\n\t\t\"DT_MIPS_DELTA_CLASSSYM_NO\":          reflect.ValueOf(elf.DT_MIPS_DELTA_CLASSSYM_NO),\n\t\t\"DT_MIPS_DELTA_CLASS_NO\":             reflect.ValueOf(elf.DT_MIPS_DELTA_CLASS_NO),\n\t\t\"DT_MIPS_DELTA_INSTANCE\":             reflect.ValueOf(elf.DT_MIPS_DELTA_INSTANCE),\n\t\t\"DT_MIPS_DELTA_INSTANCE_NO\":          reflect.ValueOf(elf.DT_MIPS_DELTA_INSTANCE_NO),\n\t\t\"DT_MIPS_DELTA_RELOC\":                reflect.ValueOf(elf.DT_MIPS_DELTA_RELOC),\n\t\t\"DT_MIPS_DELTA_RELOC_NO\":             reflect.ValueOf(elf.DT_MIPS_DELTA_RELOC_NO),\n\t\t\"DT_MIPS_DELTA_SYM\":                  reflect.ValueOf(elf.DT_MIPS_DELTA_SYM),\n\t\t\"DT_MIPS_DELTA_SYM_NO\":               reflect.ValueOf(elf.DT_MIPS_DELTA_SYM_NO),\n\t\t\"DT_MIPS_DYNSTR_ALIGN\":               reflect.ValueOf(elf.DT_MIPS_DYNSTR_ALIGN),\n\t\t\"DT_MIPS_FLAGS\":                      reflect.ValueOf(elf.DT_MIPS_FLAGS),\n\t\t\"DT_MIPS_GOTSYM\":                     reflect.ValueOf(elf.DT_MIPS_GOTSYM),\n\t\t\"DT_MIPS_GP_VALUE\":                   reflect.ValueOf(elf.DT_MIPS_GP_VALUE),\n\t\t\"DT_MIPS_HIDDEN_GOTIDX\":              reflect.ValueOf(elf.DT_MIPS_HIDDEN_GOTIDX),\n\t\t\"DT_MIPS_HIPAGENO\":                   reflect.ValueOf(elf.DT_MIPS_HIPAGENO),\n\t\t\"DT_MIPS_ICHECKSUM\":                  reflect.ValueOf(elf.DT_MIPS_ICHECKSUM),\n\t\t\"DT_MIPS_INTERFACE\":                  reflect.ValueOf(elf.DT_MIPS_INTERFACE),\n\t\t\"DT_MIPS_INTERFACE_SIZE\":             reflect.ValueOf(elf.DT_MIPS_INTERFACE_SIZE),\n\t\t\"DT_MIPS_IVERSION\":                   reflect.ValueOf(elf.DT_MIPS_IVERSION),\n\t\t\"DT_MIPS_LIBLIST\":                    reflect.ValueOf(elf.DT_MIPS_LIBLIST),\n\t\t\"DT_MIPS_LIBLISTNO\":                  reflect.ValueOf(elf.DT_MIPS_LIBLISTNO),\n\t\t\"DT_MIPS_LOCALPAGE_GOTIDX\":           reflect.ValueOf(elf.DT_MIPS_LOCALPAGE_GOTIDX),\n\t\t\"DT_MIPS_LOCAL_GOTIDX\":               reflect.ValueOf(elf.DT_MIPS_LOCAL_GOTIDX),\n\t\t\"DT_MIPS_LOCAL_GOTNO\":                reflect.ValueOf(elf.DT_MIPS_LOCAL_GOTNO),\n\t\t\"DT_MIPS_MSYM\":                       reflect.ValueOf(elf.DT_MIPS_MSYM),\n\t\t\"DT_MIPS_OPTIONS\":                    reflect.ValueOf(elf.DT_MIPS_OPTIONS),\n\t\t\"DT_MIPS_PERF_SUFFIX\":                reflect.ValueOf(elf.DT_MIPS_PERF_SUFFIX),\n\t\t\"DT_MIPS_PIXIE_INIT\":                 reflect.ValueOf(elf.DT_MIPS_PIXIE_INIT),\n\t\t\"DT_MIPS_PLTGOT\":                     reflect.ValueOf(elf.DT_MIPS_PLTGOT),\n\t\t\"DT_MIPS_PROTECTED_GOTIDX\":           reflect.ValueOf(elf.DT_MIPS_PROTECTED_GOTIDX),\n\t\t\"DT_MIPS_RLD_MAP\":                    reflect.ValueOf(elf.DT_MIPS_RLD_MAP),\n\t\t\"DT_MIPS_RLD_MAP_REL\":                reflect.ValueOf(elf.DT_MIPS_RLD_MAP_REL),\n\t\t\"DT_MIPS_RLD_TEXT_RESOLVE_ADDR\":      reflect.ValueOf(elf.DT_MIPS_RLD_TEXT_RESOLVE_ADDR),\n\t\t\"DT_MIPS_RLD_VERSION\":                reflect.ValueOf(elf.DT_MIPS_RLD_VERSION),\n\t\t\"DT_MIPS_RWPLT\":                      reflect.ValueOf(elf.DT_MIPS_RWPLT),\n\t\t\"DT_MIPS_SYMBOL_LIB\":                 reflect.ValueOf(elf.DT_MIPS_SYMBOL_LIB),\n\t\t\"DT_MIPS_SYMTABNO\":                   reflect.ValueOf(elf.DT_MIPS_SYMTABNO),\n\t\t\"DT_MIPS_TIME_STAMP\":                 reflect.ValueOf(elf.DT_MIPS_TIME_STAMP),\n\t\t\"DT_MIPS_UNREFEXTNO\":                 reflect.ValueOf(elf.DT_MIPS_UNREFEXTNO),\n\t\t\"DT_MOVEENT\":                         reflect.ValueOf(elf.DT_MOVEENT),\n\t\t\"DT_MOVESZ\":                          reflect.ValueOf(elf.DT_MOVESZ),\n\t\t\"DT_MOVETAB\":                         reflect.ValueOf(elf.DT_MOVETAB),\n\t\t\"DT_NEEDED\":                          reflect.ValueOf(elf.DT_NEEDED),\n\t\t\"DT_NULL\":                            reflect.ValueOf(elf.DT_NULL),\n\t\t\"DT_PLTGOT\":                          reflect.ValueOf(elf.DT_PLTGOT),\n\t\t\"DT_PLTPAD\":                          reflect.ValueOf(elf.DT_PLTPAD),\n\t\t\"DT_PLTPADSZ\":                        reflect.ValueOf(elf.DT_PLTPADSZ),\n\t\t\"DT_PLTREL\":                          reflect.ValueOf(elf.DT_PLTREL),\n\t\t\"DT_PLTRELSZ\":                        reflect.ValueOf(elf.DT_PLTRELSZ),\n\t\t\"DT_POSFLAG_1\":                       reflect.ValueOf(elf.DT_POSFLAG_1),\n\t\t\"DT_PPC64_GLINK\":                     reflect.ValueOf(elf.DT_PPC64_GLINK),\n\t\t\"DT_PPC64_OPD\":                       reflect.ValueOf(elf.DT_PPC64_OPD),\n\t\t\"DT_PPC64_OPDSZ\":                     reflect.ValueOf(elf.DT_PPC64_OPDSZ),\n\t\t\"DT_PPC64_OPT\":                       reflect.ValueOf(elf.DT_PPC64_OPT),\n\t\t\"DT_PPC_GOT\":                         reflect.ValueOf(elf.DT_PPC_GOT),\n\t\t\"DT_PPC_OPT\":                         reflect.ValueOf(elf.DT_PPC_OPT),\n\t\t\"DT_PREINIT_ARRAY\":                   reflect.ValueOf(elf.DT_PREINIT_ARRAY),\n\t\t\"DT_PREINIT_ARRAYSZ\":                 reflect.ValueOf(elf.DT_PREINIT_ARRAYSZ),\n\t\t\"DT_REL\":                             reflect.ValueOf(elf.DT_REL),\n\t\t\"DT_RELA\":                            reflect.ValueOf(elf.DT_RELA),\n\t\t\"DT_RELACOUNT\":                       reflect.ValueOf(elf.DT_RELACOUNT),\n\t\t\"DT_RELAENT\":                         reflect.ValueOf(elf.DT_RELAENT),\n\t\t\"DT_RELASZ\":                          reflect.ValueOf(elf.DT_RELASZ),\n\t\t\"DT_RELCOUNT\":                        reflect.ValueOf(elf.DT_RELCOUNT),\n\t\t\"DT_RELENT\":                          reflect.ValueOf(elf.DT_RELENT),\n\t\t\"DT_RELSZ\":                           reflect.ValueOf(elf.DT_RELSZ),\n\t\t\"DT_RPATH\":                           reflect.ValueOf(elf.DT_RPATH),\n\t\t\"DT_RUNPATH\":                         reflect.ValueOf(elf.DT_RUNPATH),\n\t\t\"DT_SONAME\":                          reflect.ValueOf(elf.DT_SONAME),\n\t\t\"DT_SPARC_REGISTER\":                  reflect.ValueOf(elf.DT_SPARC_REGISTER),\n\t\t\"DT_STRSZ\":                           reflect.ValueOf(elf.DT_STRSZ),\n\t\t\"DT_STRTAB\":                          reflect.ValueOf(elf.DT_STRTAB),\n\t\t\"DT_SYMBOLIC\":                        reflect.ValueOf(elf.DT_SYMBOLIC),\n\t\t\"DT_SYMENT\":                          reflect.ValueOf(elf.DT_SYMENT),\n\t\t\"DT_SYMINENT\":                        reflect.ValueOf(elf.DT_SYMINENT),\n\t\t\"DT_SYMINFO\":                         reflect.ValueOf(elf.DT_SYMINFO),\n\t\t\"DT_SYMINSZ\":                         reflect.ValueOf(elf.DT_SYMINSZ),\n\t\t\"DT_SYMTAB\":                          reflect.ValueOf(elf.DT_SYMTAB),\n\t\t\"DT_SYMTAB_SHNDX\":                    reflect.ValueOf(elf.DT_SYMTAB_SHNDX),\n\t\t\"DT_TEXTREL\":                         reflect.ValueOf(elf.DT_TEXTREL),\n\t\t\"DT_TLSDESC_GOT\":                     reflect.ValueOf(elf.DT_TLSDESC_GOT),\n\t\t\"DT_TLSDESC_PLT\":                     reflect.ValueOf(elf.DT_TLSDESC_PLT),\n\t\t\"DT_USED\":                            reflect.ValueOf(elf.DT_USED),\n\t\t\"DT_VALRNGHI\":                        reflect.ValueOf(elf.DT_VALRNGHI),\n\t\t\"DT_VALRNGLO\":                        reflect.ValueOf(elf.DT_VALRNGLO),\n\t\t\"DT_VERDEF\":                          reflect.ValueOf(elf.DT_VERDEF),\n\t\t\"DT_VERDEFNUM\":                       reflect.ValueOf(elf.DT_VERDEFNUM),\n\t\t\"DT_VERNEED\":                         reflect.ValueOf(elf.DT_VERNEED),\n\t\t\"DT_VERNEEDNUM\":                      reflect.ValueOf(elf.DT_VERNEEDNUM),\n\t\t\"DT_VERSYM\":                          reflect.ValueOf(elf.DT_VERSYM),\n\t\t\"EI_ABIVERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EI_CLASS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EI_DATA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"EI_NIDENT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EI_OSABI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"EI_PAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"EI_VERSION\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ELFCLASS32\":                         reflect.ValueOf(elf.ELFCLASS32),\n\t\t\"ELFCLASS64\":                         reflect.ValueOf(elf.ELFCLASS64),\n\t\t\"ELFCLASSNONE\":                       reflect.ValueOf(elf.ELFCLASSNONE),\n\t\t\"ELFDATA2LSB\":                        reflect.ValueOf(elf.ELFDATA2LSB),\n\t\t\"ELFDATA2MSB\":                        reflect.ValueOf(elf.ELFDATA2MSB),\n\t\t\"ELFDATANONE\":                        reflect.ValueOf(elf.ELFDATANONE),\n\t\t\"ELFMAG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"\\\"\\\\x7fELF\\\"\", token.STRING, 0)),\n\t\t\"ELFOSABI_86OPEN\":                    reflect.ValueOf(elf.ELFOSABI_86OPEN),\n\t\t\"ELFOSABI_AIX\":                       reflect.ValueOf(elf.ELFOSABI_AIX),\n\t\t\"ELFOSABI_ARM\":                       reflect.ValueOf(elf.ELFOSABI_ARM),\n\t\t\"ELFOSABI_AROS\":                      reflect.ValueOf(elf.ELFOSABI_AROS),\n\t\t\"ELFOSABI_CLOUDABI\":                  reflect.ValueOf(elf.ELFOSABI_CLOUDABI),\n\t\t\"ELFOSABI_FENIXOS\":                   reflect.ValueOf(elf.ELFOSABI_FENIXOS),\n\t\t\"ELFOSABI_FREEBSD\":                   reflect.ValueOf(elf.ELFOSABI_FREEBSD),\n\t\t\"ELFOSABI_HPUX\":                      reflect.ValueOf(elf.ELFOSABI_HPUX),\n\t\t\"ELFOSABI_HURD\":                      reflect.ValueOf(elf.ELFOSABI_HURD),\n\t\t\"ELFOSABI_IRIX\":                      reflect.ValueOf(elf.ELFOSABI_IRIX),\n\t\t\"ELFOSABI_LINUX\":                     reflect.ValueOf(elf.ELFOSABI_LINUX),\n\t\t\"ELFOSABI_MODESTO\":                   reflect.ValueOf(elf.ELFOSABI_MODESTO),\n\t\t\"ELFOSABI_NETBSD\":                    reflect.ValueOf(elf.ELFOSABI_NETBSD),\n\t\t\"ELFOSABI_NONE\":                      reflect.ValueOf(elf.ELFOSABI_NONE),\n\t\t\"ELFOSABI_NSK\":                       reflect.ValueOf(elf.ELFOSABI_NSK),\n\t\t\"ELFOSABI_OPENBSD\":                   reflect.ValueOf(elf.ELFOSABI_OPENBSD),\n\t\t\"ELFOSABI_OPENVMS\":                   reflect.ValueOf(elf.ELFOSABI_OPENVMS),\n\t\t\"ELFOSABI_SOLARIS\":                   reflect.ValueOf(elf.ELFOSABI_SOLARIS),\n\t\t\"ELFOSABI_STANDALONE\":                reflect.ValueOf(elf.ELFOSABI_STANDALONE),\n\t\t\"ELFOSABI_TRU64\":                     reflect.ValueOf(elf.ELFOSABI_TRU64),\n\t\t\"EM_386\":                             reflect.ValueOf(elf.EM_386),\n\t\t\"EM_486\":                             reflect.ValueOf(elf.EM_486),\n\t\t\"EM_56800EX\":                         reflect.ValueOf(elf.EM_56800EX),\n\t\t\"EM_68HC05\":                          reflect.ValueOf(elf.EM_68HC05),\n\t\t\"EM_68HC08\":                          reflect.ValueOf(elf.EM_68HC08),\n\t\t\"EM_68HC11\":                          reflect.ValueOf(elf.EM_68HC11),\n\t\t\"EM_68HC12\":                          reflect.ValueOf(elf.EM_68HC12),\n\t\t\"EM_68HC16\":                          reflect.ValueOf(elf.EM_68HC16),\n\t\t\"EM_68K\":                             reflect.ValueOf(elf.EM_68K),\n\t\t\"EM_78KOR\":                           reflect.ValueOf(elf.EM_78KOR),\n\t\t\"EM_8051\":                            reflect.ValueOf(elf.EM_8051),\n\t\t\"EM_860\":                             reflect.ValueOf(elf.EM_860),\n\t\t\"EM_88K\":                             reflect.ValueOf(elf.EM_88K),\n\t\t\"EM_960\":                             reflect.ValueOf(elf.EM_960),\n\t\t\"EM_AARCH64\":                         reflect.ValueOf(elf.EM_AARCH64),\n\t\t\"EM_ALPHA\":                           reflect.ValueOf(elf.EM_ALPHA),\n\t\t\"EM_ALPHA_STD\":                       reflect.ValueOf(elf.EM_ALPHA_STD),\n\t\t\"EM_ALTERA_NIOS2\":                    reflect.ValueOf(elf.EM_ALTERA_NIOS2),\n\t\t\"EM_AMDGPU\":                          reflect.ValueOf(elf.EM_AMDGPU),\n\t\t\"EM_ARC\":                             reflect.ValueOf(elf.EM_ARC),\n\t\t\"EM_ARCA\":                            reflect.ValueOf(elf.EM_ARCA),\n\t\t\"EM_ARC_COMPACT\":                     reflect.ValueOf(elf.EM_ARC_COMPACT),\n\t\t\"EM_ARC_COMPACT2\":                    reflect.ValueOf(elf.EM_ARC_COMPACT2),\n\t\t\"EM_ARM\":                             reflect.ValueOf(elf.EM_ARM),\n\t\t\"EM_AVR\":                             reflect.ValueOf(elf.EM_AVR),\n\t\t\"EM_AVR32\":                           reflect.ValueOf(elf.EM_AVR32),\n\t\t\"EM_BA1\":                             reflect.ValueOf(elf.EM_BA1),\n\t\t\"EM_BA2\":                             reflect.ValueOf(elf.EM_BA2),\n\t\t\"EM_BLACKFIN\":                        reflect.ValueOf(elf.EM_BLACKFIN),\n\t\t\"EM_BPF\":                             reflect.ValueOf(elf.EM_BPF),\n\t\t\"EM_C166\":                            reflect.ValueOf(elf.EM_C166),\n\t\t\"EM_CDP\":                             reflect.ValueOf(elf.EM_CDP),\n\t\t\"EM_CE\":                              reflect.ValueOf(elf.EM_CE),\n\t\t\"EM_CLOUDSHIELD\":                     reflect.ValueOf(elf.EM_CLOUDSHIELD),\n\t\t\"EM_COGE\":                            reflect.ValueOf(elf.EM_COGE),\n\t\t\"EM_COLDFIRE\":                        reflect.ValueOf(elf.EM_COLDFIRE),\n\t\t\"EM_COOL\":                            reflect.ValueOf(elf.EM_COOL),\n\t\t\"EM_COREA_1ST\":                       reflect.ValueOf(elf.EM_COREA_1ST),\n\t\t\"EM_COREA_2ND\":                       reflect.ValueOf(elf.EM_COREA_2ND),\n\t\t\"EM_CR\":                              reflect.ValueOf(elf.EM_CR),\n\t\t\"EM_CR16\":                            reflect.ValueOf(elf.EM_CR16),\n\t\t\"EM_CRAYNV2\":                         reflect.ValueOf(elf.EM_CRAYNV2),\n\t\t\"EM_CRIS\":                            reflect.ValueOf(elf.EM_CRIS),\n\t\t\"EM_CRX\":                             reflect.ValueOf(elf.EM_CRX),\n\t\t\"EM_CSR_KALIMBA\":                     reflect.ValueOf(elf.EM_CSR_KALIMBA),\n\t\t\"EM_CUDA\":                            reflect.ValueOf(elf.EM_CUDA),\n\t\t\"EM_CYPRESS_M8C\":                     reflect.ValueOf(elf.EM_CYPRESS_M8C),\n\t\t\"EM_D10V\":                            reflect.ValueOf(elf.EM_D10V),\n\t\t\"EM_D30V\":                            reflect.ValueOf(elf.EM_D30V),\n\t\t\"EM_DSP24\":                           reflect.ValueOf(elf.EM_DSP24),\n\t\t\"EM_DSPIC30F\":                        reflect.ValueOf(elf.EM_DSPIC30F),\n\t\t\"EM_DXP\":                             reflect.ValueOf(elf.EM_DXP),\n\t\t\"EM_ECOG1\":                           reflect.ValueOf(elf.EM_ECOG1),\n\t\t\"EM_ECOG16\":                          reflect.ValueOf(elf.EM_ECOG16),\n\t\t\"EM_ECOG1X\":                          reflect.ValueOf(elf.EM_ECOG1X),\n\t\t\"EM_ECOG2\":                           reflect.ValueOf(elf.EM_ECOG2),\n\t\t\"EM_ETPU\":                            reflect.ValueOf(elf.EM_ETPU),\n\t\t\"EM_EXCESS\":                          reflect.ValueOf(elf.EM_EXCESS),\n\t\t\"EM_F2MC16\":                          reflect.ValueOf(elf.EM_F2MC16),\n\t\t\"EM_FIREPATH\":                        reflect.ValueOf(elf.EM_FIREPATH),\n\t\t\"EM_FR20\":                            reflect.ValueOf(elf.EM_FR20),\n\t\t\"EM_FR30\":                            reflect.ValueOf(elf.EM_FR30),\n\t\t\"EM_FT32\":                            reflect.ValueOf(elf.EM_FT32),\n\t\t\"EM_FX66\":                            reflect.ValueOf(elf.EM_FX66),\n\t\t\"EM_H8S\":                             reflect.ValueOf(elf.EM_H8S),\n\t\t\"EM_H8_300\":                          reflect.ValueOf(elf.EM_H8_300),\n\t\t\"EM_H8_300H\":                         reflect.ValueOf(elf.EM_H8_300H),\n\t\t\"EM_H8_500\":                          reflect.ValueOf(elf.EM_H8_500),\n\t\t\"EM_HUANY\":                           reflect.ValueOf(elf.EM_HUANY),\n\t\t\"EM_IA_64\":                           reflect.ValueOf(elf.EM_IA_64),\n\t\t\"EM_INTEL205\":                        reflect.ValueOf(elf.EM_INTEL205),\n\t\t\"EM_INTEL206\":                        reflect.ValueOf(elf.EM_INTEL206),\n\t\t\"EM_INTEL207\":                        reflect.ValueOf(elf.EM_INTEL207),\n\t\t\"EM_INTEL208\":                        reflect.ValueOf(elf.EM_INTEL208),\n\t\t\"EM_INTEL209\":                        reflect.ValueOf(elf.EM_INTEL209),\n\t\t\"EM_IP2K\":                            reflect.ValueOf(elf.EM_IP2K),\n\t\t\"EM_JAVELIN\":                         reflect.ValueOf(elf.EM_JAVELIN),\n\t\t\"EM_K10M\":                            reflect.ValueOf(elf.EM_K10M),\n\t\t\"EM_KM32\":                            reflect.ValueOf(elf.EM_KM32),\n\t\t\"EM_KMX16\":                           reflect.ValueOf(elf.EM_KMX16),\n\t\t\"EM_KMX32\":                           reflect.ValueOf(elf.EM_KMX32),\n\t\t\"EM_KMX8\":                            reflect.ValueOf(elf.EM_KMX8),\n\t\t\"EM_KVARC\":                           reflect.ValueOf(elf.EM_KVARC),\n\t\t\"EM_L10M\":                            reflect.ValueOf(elf.EM_L10M),\n\t\t\"EM_LANAI\":                           reflect.ValueOf(elf.EM_LANAI),\n\t\t\"EM_LATTICEMICO32\":                   reflect.ValueOf(elf.EM_LATTICEMICO32),\n\t\t\"EM_LOONGARCH\":                       reflect.ValueOf(elf.EM_LOONGARCH),\n\t\t\"EM_M16C\":                            reflect.ValueOf(elf.EM_M16C),\n\t\t\"EM_M32\":                             reflect.ValueOf(elf.EM_M32),\n\t\t\"EM_M32C\":                            reflect.ValueOf(elf.EM_M32C),\n\t\t\"EM_M32R\":                            reflect.ValueOf(elf.EM_M32R),\n\t\t\"EM_MANIK\":                           reflect.ValueOf(elf.EM_MANIK),\n\t\t\"EM_MAX\":                             reflect.ValueOf(elf.EM_MAX),\n\t\t\"EM_MAXQ30\":                          reflect.ValueOf(elf.EM_MAXQ30),\n\t\t\"EM_MCHP_PIC\":                        reflect.ValueOf(elf.EM_MCHP_PIC),\n\t\t\"EM_MCST_ELBRUS\":                     reflect.ValueOf(elf.EM_MCST_ELBRUS),\n\t\t\"EM_ME16\":                            reflect.ValueOf(elf.EM_ME16),\n\t\t\"EM_METAG\":                           reflect.ValueOf(elf.EM_METAG),\n\t\t\"EM_MICROBLAZE\":                      reflect.ValueOf(elf.EM_MICROBLAZE),\n\t\t\"EM_MIPS\":                            reflect.ValueOf(elf.EM_MIPS),\n\t\t\"EM_MIPS_RS3_LE\":                     reflect.ValueOf(elf.EM_MIPS_RS3_LE),\n\t\t\"EM_MIPS_RS4_BE\":                     reflect.ValueOf(elf.EM_MIPS_RS4_BE),\n\t\t\"EM_MIPS_X\":                          reflect.ValueOf(elf.EM_MIPS_X),\n\t\t\"EM_MMA\":                             reflect.ValueOf(elf.EM_MMA),\n\t\t\"EM_MMDSP_PLUS\":                      reflect.ValueOf(elf.EM_MMDSP_PLUS),\n\t\t\"EM_MMIX\":                            reflect.ValueOf(elf.EM_MMIX),\n\t\t\"EM_MN10200\":                         reflect.ValueOf(elf.EM_MN10200),\n\t\t\"EM_MN10300\":                         reflect.ValueOf(elf.EM_MN10300),\n\t\t\"EM_MOXIE\":                           reflect.ValueOf(elf.EM_MOXIE),\n\t\t\"EM_MSP430\":                          reflect.ValueOf(elf.EM_MSP430),\n\t\t\"EM_NCPU\":                            reflect.ValueOf(elf.EM_NCPU),\n\t\t\"EM_NDR1\":                            reflect.ValueOf(elf.EM_NDR1),\n\t\t\"EM_NDS32\":                           reflect.ValueOf(elf.EM_NDS32),\n\t\t\"EM_NONE\":                            reflect.ValueOf(elf.EM_NONE),\n\t\t\"EM_NORC\":                            reflect.ValueOf(elf.EM_NORC),\n\t\t\"EM_NS32K\":                           reflect.ValueOf(elf.EM_NS32K),\n\t\t\"EM_OPEN8\":                           reflect.ValueOf(elf.EM_OPEN8),\n\t\t\"EM_OPENRISC\":                        reflect.ValueOf(elf.EM_OPENRISC),\n\t\t\"EM_PARISC\":                          reflect.ValueOf(elf.EM_PARISC),\n\t\t\"EM_PCP\":                             reflect.ValueOf(elf.EM_PCP),\n\t\t\"EM_PDP10\":                           reflect.ValueOf(elf.EM_PDP10),\n\t\t\"EM_PDP11\":                           reflect.ValueOf(elf.EM_PDP11),\n\t\t\"EM_PDSP\":                            reflect.ValueOf(elf.EM_PDSP),\n\t\t\"EM_PJ\":                              reflect.ValueOf(elf.EM_PJ),\n\t\t\"EM_PPC\":                             reflect.ValueOf(elf.EM_PPC),\n\t\t\"EM_PPC64\":                           reflect.ValueOf(elf.EM_PPC64),\n\t\t\"EM_PRISM\":                           reflect.ValueOf(elf.EM_PRISM),\n\t\t\"EM_QDSP6\":                           reflect.ValueOf(elf.EM_QDSP6),\n\t\t\"EM_R32C\":                            reflect.ValueOf(elf.EM_R32C),\n\t\t\"EM_RCE\":                             reflect.ValueOf(elf.EM_RCE),\n\t\t\"EM_RH32\":                            reflect.ValueOf(elf.EM_RH32),\n\t\t\"EM_RISCV\":                           reflect.ValueOf(elf.EM_RISCV),\n\t\t\"EM_RL78\":                            reflect.ValueOf(elf.EM_RL78),\n\t\t\"EM_RS08\":                            reflect.ValueOf(elf.EM_RS08),\n\t\t\"EM_RX\":                              reflect.ValueOf(elf.EM_RX),\n\t\t\"EM_S370\":                            reflect.ValueOf(elf.EM_S370),\n\t\t\"EM_S390\":                            reflect.ValueOf(elf.EM_S390),\n\t\t\"EM_SCORE7\":                          reflect.ValueOf(elf.EM_SCORE7),\n\t\t\"EM_SEP\":                             reflect.ValueOf(elf.EM_SEP),\n\t\t\"EM_SE_C17\":                          reflect.ValueOf(elf.EM_SE_C17),\n\t\t\"EM_SE_C33\":                          reflect.ValueOf(elf.EM_SE_C33),\n\t\t\"EM_SH\":                              reflect.ValueOf(elf.EM_SH),\n\t\t\"EM_SHARC\":                           reflect.ValueOf(elf.EM_SHARC),\n\t\t\"EM_SLE9X\":                           reflect.ValueOf(elf.EM_SLE9X),\n\t\t\"EM_SNP1K\":                           reflect.ValueOf(elf.EM_SNP1K),\n\t\t\"EM_SPARC\":                           reflect.ValueOf(elf.EM_SPARC),\n\t\t\"EM_SPARC32PLUS\":                     reflect.ValueOf(elf.EM_SPARC32PLUS),\n\t\t\"EM_SPARCV9\":                         reflect.ValueOf(elf.EM_SPARCV9),\n\t\t\"EM_ST100\":                           reflect.ValueOf(elf.EM_ST100),\n\t\t\"EM_ST19\":                            reflect.ValueOf(elf.EM_ST19),\n\t\t\"EM_ST200\":                           reflect.ValueOf(elf.EM_ST200),\n\t\t\"EM_ST7\":                             reflect.ValueOf(elf.EM_ST7),\n\t\t\"EM_ST9PLUS\":                         reflect.ValueOf(elf.EM_ST9PLUS),\n\t\t\"EM_STARCORE\":                        reflect.ValueOf(elf.EM_STARCORE),\n\t\t\"EM_STM8\":                            reflect.ValueOf(elf.EM_STM8),\n\t\t\"EM_STXP7X\":                          reflect.ValueOf(elf.EM_STXP7X),\n\t\t\"EM_SVX\":                             reflect.ValueOf(elf.EM_SVX),\n\t\t\"EM_TILE64\":                          reflect.ValueOf(elf.EM_TILE64),\n\t\t\"EM_TILEGX\":                          reflect.ValueOf(elf.EM_TILEGX),\n\t\t\"EM_TILEPRO\":                         reflect.ValueOf(elf.EM_TILEPRO),\n\t\t\"EM_TINYJ\":                           reflect.ValueOf(elf.EM_TINYJ),\n\t\t\"EM_TI_ARP32\":                        reflect.ValueOf(elf.EM_TI_ARP32),\n\t\t\"EM_TI_C2000\":                        reflect.ValueOf(elf.EM_TI_C2000),\n\t\t\"EM_TI_C5500\":                        reflect.ValueOf(elf.EM_TI_C5500),\n\t\t\"EM_TI_C6000\":                        reflect.ValueOf(elf.EM_TI_C6000),\n\t\t\"EM_TI_PRU\":                          reflect.ValueOf(elf.EM_TI_PRU),\n\t\t\"EM_TMM_GPP\":                         reflect.ValueOf(elf.EM_TMM_GPP),\n\t\t\"EM_TPC\":                             reflect.ValueOf(elf.EM_TPC),\n\t\t\"EM_TRICORE\":                         reflect.ValueOf(elf.EM_TRICORE),\n\t\t\"EM_TRIMEDIA\":                        reflect.ValueOf(elf.EM_TRIMEDIA),\n\t\t\"EM_TSK3000\":                         reflect.ValueOf(elf.EM_TSK3000),\n\t\t\"EM_UNICORE\":                         reflect.ValueOf(elf.EM_UNICORE),\n\t\t\"EM_V800\":                            reflect.ValueOf(elf.EM_V800),\n\t\t\"EM_V850\":                            reflect.ValueOf(elf.EM_V850),\n\t\t\"EM_VAX\":                             reflect.ValueOf(elf.EM_VAX),\n\t\t\"EM_VIDEOCORE\":                       reflect.ValueOf(elf.EM_VIDEOCORE),\n\t\t\"EM_VIDEOCORE3\":                      reflect.ValueOf(elf.EM_VIDEOCORE3),\n\t\t\"EM_VIDEOCORE5\":                      reflect.ValueOf(elf.EM_VIDEOCORE5),\n\t\t\"EM_VISIUM\":                          reflect.ValueOf(elf.EM_VISIUM),\n\t\t\"EM_VPP500\":                          reflect.ValueOf(elf.EM_VPP500),\n\t\t\"EM_X86_64\":                          reflect.ValueOf(elf.EM_X86_64),\n\t\t\"EM_XCORE\":                           reflect.ValueOf(elf.EM_XCORE),\n\t\t\"EM_XGATE\":                           reflect.ValueOf(elf.EM_XGATE),\n\t\t\"EM_XIMO16\":                          reflect.ValueOf(elf.EM_XIMO16),\n\t\t\"EM_XTENSA\":                          reflect.ValueOf(elf.EM_XTENSA),\n\t\t\"EM_Z80\":                             reflect.ValueOf(elf.EM_Z80),\n\t\t\"EM_ZSP\":                             reflect.ValueOf(elf.EM_ZSP),\n\t\t\"ET_CORE\":                            reflect.ValueOf(elf.ET_CORE),\n\t\t\"ET_DYN\":                             reflect.ValueOf(elf.ET_DYN),\n\t\t\"ET_EXEC\":                            reflect.ValueOf(elf.ET_EXEC),\n\t\t\"ET_HIOS\":                            reflect.ValueOf(elf.ET_HIOS),\n\t\t\"ET_HIPROC\":                          reflect.ValueOf(elf.ET_HIPROC),\n\t\t\"ET_LOOS\":                            reflect.ValueOf(elf.ET_LOOS),\n\t\t\"ET_LOPROC\":                          reflect.ValueOf(elf.ET_LOPROC),\n\t\t\"ET_NONE\":                            reflect.ValueOf(elf.ET_NONE),\n\t\t\"ET_REL\":                             reflect.ValueOf(elf.ET_REL),\n\t\t\"EV_CURRENT\":                         reflect.ValueOf(elf.EV_CURRENT),\n\t\t\"EV_NONE\":                            reflect.ValueOf(elf.EV_NONE),\n\t\t\"ErrNoSymbols\":                       reflect.ValueOf(&elf.ErrNoSymbols).Elem(),\n\t\t\"NT_FPREGSET\":                        reflect.ValueOf(elf.NT_FPREGSET),\n\t\t\"NT_PRPSINFO\":                        reflect.ValueOf(elf.NT_PRPSINFO),\n\t\t\"NT_PRSTATUS\":                        reflect.ValueOf(elf.NT_PRSTATUS),\n\t\t\"NewFile\":                            reflect.ValueOf(elf.NewFile),\n\t\t\"Open\":                               reflect.ValueOf(elf.Open),\n\t\t\"PF_MASKOS\":                          reflect.ValueOf(elf.PF_MASKOS),\n\t\t\"PF_MASKPROC\":                        reflect.ValueOf(elf.PF_MASKPROC),\n\t\t\"PF_R\":                               reflect.ValueOf(elf.PF_R),\n\t\t\"PF_W\":                               reflect.ValueOf(elf.PF_W),\n\t\t\"PF_X\":                               reflect.ValueOf(elf.PF_X),\n\t\t\"PT_AARCH64_ARCHEXT\":                 reflect.ValueOf(elf.PT_AARCH64_ARCHEXT),\n\t\t\"PT_AARCH64_UNWIND\":                  reflect.ValueOf(elf.PT_AARCH64_UNWIND),\n\t\t\"PT_ARM_ARCHEXT\":                     reflect.ValueOf(elf.PT_ARM_ARCHEXT),\n\t\t\"PT_ARM_EXIDX\":                       reflect.ValueOf(elf.PT_ARM_EXIDX),\n\t\t\"PT_DYNAMIC\":                         reflect.ValueOf(elf.PT_DYNAMIC),\n\t\t\"PT_GNU_EH_FRAME\":                    reflect.ValueOf(elf.PT_GNU_EH_FRAME),\n\t\t\"PT_GNU_MBIND_HI\":                    reflect.ValueOf(elf.PT_GNU_MBIND_HI),\n\t\t\"PT_GNU_MBIND_LO\":                    reflect.ValueOf(elf.PT_GNU_MBIND_LO),\n\t\t\"PT_GNU_PROPERTY\":                    reflect.ValueOf(elf.PT_GNU_PROPERTY),\n\t\t\"PT_GNU_RELRO\":                       reflect.ValueOf(elf.PT_GNU_RELRO),\n\t\t\"PT_GNU_STACK\":                       reflect.ValueOf(elf.PT_GNU_STACK),\n\t\t\"PT_HIOS\":                            reflect.ValueOf(elf.PT_HIOS),\n\t\t\"PT_HIPROC\":                          reflect.ValueOf(elf.PT_HIPROC),\n\t\t\"PT_INTERP\":                          reflect.ValueOf(elf.PT_INTERP),\n\t\t\"PT_LOAD\":                            reflect.ValueOf(elf.PT_LOAD),\n\t\t\"PT_LOOS\":                            reflect.ValueOf(elf.PT_LOOS),\n\t\t\"PT_LOPROC\":                          reflect.ValueOf(elf.PT_LOPROC),\n\t\t\"PT_MIPS_ABIFLAGS\":                   reflect.ValueOf(elf.PT_MIPS_ABIFLAGS),\n\t\t\"PT_MIPS_OPTIONS\":                    reflect.ValueOf(elf.PT_MIPS_OPTIONS),\n\t\t\"PT_MIPS_REGINFO\":                    reflect.ValueOf(elf.PT_MIPS_REGINFO),\n\t\t\"PT_MIPS_RTPROC\":                     reflect.ValueOf(elf.PT_MIPS_RTPROC),\n\t\t\"PT_NOTE\":                            reflect.ValueOf(elf.PT_NOTE),\n\t\t\"PT_NULL\":                            reflect.ValueOf(elf.PT_NULL),\n\t\t\"PT_OPENBSD_BOOTDATA\":                reflect.ValueOf(elf.PT_OPENBSD_BOOTDATA),\n\t\t\"PT_OPENBSD_RANDOMIZE\":               reflect.ValueOf(elf.PT_OPENBSD_RANDOMIZE),\n\t\t\"PT_OPENBSD_WXNEEDED\":                reflect.ValueOf(elf.PT_OPENBSD_WXNEEDED),\n\t\t\"PT_PAX_FLAGS\":                       reflect.ValueOf(elf.PT_PAX_FLAGS),\n\t\t\"PT_PHDR\":                            reflect.ValueOf(elf.PT_PHDR),\n\t\t\"PT_S390_PGSTE\":                      reflect.ValueOf(elf.PT_S390_PGSTE),\n\t\t\"PT_SHLIB\":                           reflect.ValueOf(elf.PT_SHLIB),\n\t\t\"PT_SUNWSTACK\":                       reflect.ValueOf(elf.PT_SUNWSTACK),\n\t\t\"PT_SUNW_EH_FRAME\":                   reflect.ValueOf(elf.PT_SUNW_EH_FRAME),\n\t\t\"PT_TLS\":                             reflect.ValueOf(elf.PT_TLS),\n\t\t\"R_386_16\":                           reflect.ValueOf(elf.R_386_16),\n\t\t\"R_386_32\":                           reflect.ValueOf(elf.R_386_32),\n\t\t\"R_386_32PLT\":                        reflect.ValueOf(elf.R_386_32PLT),\n\t\t\"R_386_8\":                            reflect.ValueOf(elf.R_386_8),\n\t\t\"R_386_COPY\":                         reflect.ValueOf(elf.R_386_COPY),\n\t\t\"R_386_GLOB_DAT\":                     reflect.ValueOf(elf.R_386_GLOB_DAT),\n\t\t\"R_386_GOT32\":                        reflect.ValueOf(elf.R_386_GOT32),\n\t\t\"R_386_GOT32X\":                       reflect.ValueOf(elf.R_386_GOT32X),\n\t\t\"R_386_GOTOFF\":                       reflect.ValueOf(elf.R_386_GOTOFF),\n\t\t\"R_386_GOTPC\":                        reflect.ValueOf(elf.R_386_GOTPC),\n\t\t\"R_386_IRELATIVE\":                    reflect.ValueOf(elf.R_386_IRELATIVE),\n\t\t\"R_386_JMP_SLOT\":                     reflect.ValueOf(elf.R_386_JMP_SLOT),\n\t\t\"R_386_NONE\":                         reflect.ValueOf(elf.R_386_NONE),\n\t\t\"R_386_PC16\":                         reflect.ValueOf(elf.R_386_PC16),\n\t\t\"R_386_PC32\":                         reflect.ValueOf(elf.R_386_PC32),\n\t\t\"R_386_PC8\":                          reflect.ValueOf(elf.R_386_PC8),\n\t\t\"R_386_PLT32\":                        reflect.ValueOf(elf.R_386_PLT32),\n\t\t\"R_386_RELATIVE\":                     reflect.ValueOf(elf.R_386_RELATIVE),\n\t\t\"R_386_SIZE32\":                       reflect.ValueOf(elf.R_386_SIZE32),\n\t\t\"R_386_TLS_DESC\":                     reflect.ValueOf(elf.R_386_TLS_DESC),\n\t\t\"R_386_TLS_DESC_CALL\":                reflect.ValueOf(elf.R_386_TLS_DESC_CALL),\n\t\t\"R_386_TLS_DTPMOD32\":                 reflect.ValueOf(elf.R_386_TLS_DTPMOD32),\n\t\t\"R_386_TLS_DTPOFF32\":                 reflect.ValueOf(elf.R_386_TLS_DTPOFF32),\n\t\t\"R_386_TLS_GD\":                       reflect.ValueOf(elf.R_386_TLS_GD),\n\t\t\"R_386_TLS_GD_32\":                    reflect.ValueOf(elf.R_386_TLS_GD_32),\n\t\t\"R_386_TLS_GD_CALL\":                  reflect.ValueOf(elf.R_386_TLS_GD_CALL),\n\t\t\"R_386_TLS_GD_POP\":                   reflect.ValueOf(elf.R_386_TLS_GD_POP),\n\t\t\"R_386_TLS_GD_PUSH\":                  reflect.ValueOf(elf.R_386_TLS_GD_PUSH),\n\t\t\"R_386_TLS_GOTDESC\":                  reflect.ValueOf(elf.R_386_TLS_GOTDESC),\n\t\t\"R_386_TLS_GOTIE\":                    reflect.ValueOf(elf.R_386_TLS_GOTIE),\n\t\t\"R_386_TLS_IE\":                       reflect.ValueOf(elf.R_386_TLS_IE),\n\t\t\"R_386_TLS_IE_32\":                    reflect.ValueOf(elf.R_386_TLS_IE_32),\n\t\t\"R_386_TLS_LDM\":                      reflect.ValueOf(elf.R_386_TLS_LDM),\n\t\t\"R_386_TLS_LDM_32\":                   reflect.ValueOf(elf.R_386_TLS_LDM_32),\n\t\t\"R_386_TLS_LDM_CALL\":                 reflect.ValueOf(elf.R_386_TLS_LDM_CALL),\n\t\t\"R_386_TLS_LDM_POP\":                  reflect.ValueOf(elf.R_386_TLS_LDM_POP),\n\t\t\"R_386_TLS_LDM_PUSH\":                 reflect.ValueOf(elf.R_386_TLS_LDM_PUSH),\n\t\t\"R_386_TLS_LDO_32\":                   reflect.ValueOf(elf.R_386_TLS_LDO_32),\n\t\t\"R_386_TLS_LE\":                       reflect.ValueOf(elf.R_386_TLS_LE),\n\t\t\"R_386_TLS_LE_32\":                    reflect.ValueOf(elf.R_386_TLS_LE_32),\n\t\t\"R_386_TLS_TPOFF\":                    reflect.ValueOf(elf.R_386_TLS_TPOFF),\n\t\t\"R_386_TLS_TPOFF32\":                  reflect.ValueOf(elf.R_386_TLS_TPOFF32),\n\t\t\"R_390_12\":                           reflect.ValueOf(elf.R_390_12),\n\t\t\"R_390_16\":                           reflect.ValueOf(elf.R_390_16),\n\t\t\"R_390_20\":                           reflect.ValueOf(elf.R_390_20),\n\t\t\"R_390_32\":                           reflect.ValueOf(elf.R_390_32),\n\t\t\"R_390_64\":                           reflect.ValueOf(elf.R_390_64),\n\t\t\"R_390_8\":                            reflect.ValueOf(elf.R_390_8),\n\t\t\"R_390_COPY\":                         reflect.ValueOf(elf.R_390_COPY),\n\t\t\"R_390_GLOB_DAT\":                     reflect.ValueOf(elf.R_390_GLOB_DAT),\n\t\t\"R_390_GOT12\":                        reflect.ValueOf(elf.R_390_GOT12),\n\t\t\"R_390_GOT16\":                        reflect.ValueOf(elf.R_390_GOT16),\n\t\t\"R_390_GOT20\":                        reflect.ValueOf(elf.R_390_GOT20),\n\t\t\"R_390_GOT32\":                        reflect.ValueOf(elf.R_390_GOT32),\n\t\t\"R_390_GOT64\":                        reflect.ValueOf(elf.R_390_GOT64),\n\t\t\"R_390_GOTENT\":                       reflect.ValueOf(elf.R_390_GOTENT),\n\t\t\"R_390_GOTOFF\":                       reflect.ValueOf(elf.R_390_GOTOFF),\n\t\t\"R_390_GOTOFF16\":                     reflect.ValueOf(elf.R_390_GOTOFF16),\n\t\t\"R_390_GOTOFF64\":                     reflect.ValueOf(elf.R_390_GOTOFF64),\n\t\t\"R_390_GOTPC\":                        reflect.ValueOf(elf.R_390_GOTPC),\n\t\t\"R_390_GOTPCDBL\":                     reflect.ValueOf(elf.R_390_GOTPCDBL),\n\t\t\"R_390_GOTPLT12\":                     reflect.ValueOf(elf.R_390_GOTPLT12),\n\t\t\"R_390_GOTPLT16\":                     reflect.ValueOf(elf.R_390_GOTPLT16),\n\t\t\"R_390_GOTPLT20\":                     reflect.ValueOf(elf.R_390_GOTPLT20),\n\t\t\"R_390_GOTPLT32\":                     reflect.ValueOf(elf.R_390_GOTPLT32),\n\t\t\"R_390_GOTPLT64\":                     reflect.ValueOf(elf.R_390_GOTPLT64),\n\t\t\"R_390_GOTPLTENT\":                    reflect.ValueOf(elf.R_390_GOTPLTENT),\n\t\t\"R_390_GOTPLTOFF16\":                  reflect.ValueOf(elf.R_390_GOTPLTOFF16),\n\t\t\"R_390_GOTPLTOFF32\":                  reflect.ValueOf(elf.R_390_GOTPLTOFF32),\n\t\t\"R_390_GOTPLTOFF64\":                  reflect.ValueOf(elf.R_390_GOTPLTOFF64),\n\t\t\"R_390_JMP_SLOT\":                     reflect.ValueOf(elf.R_390_JMP_SLOT),\n\t\t\"R_390_NONE\":                         reflect.ValueOf(elf.R_390_NONE),\n\t\t\"R_390_PC16\":                         reflect.ValueOf(elf.R_390_PC16),\n\t\t\"R_390_PC16DBL\":                      reflect.ValueOf(elf.R_390_PC16DBL),\n\t\t\"R_390_PC32\":                         reflect.ValueOf(elf.R_390_PC32),\n\t\t\"R_390_PC32DBL\":                      reflect.ValueOf(elf.R_390_PC32DBL),\n\t\t\"R_390_PC64\":                         reflect.ValueOf(elf.R_390_PC64),\n\t\t\"R_390_PLT16DBL\":                     reflect.ValueOf(elf.R_390_PLT16DBL),\n\t\t\"R_390_PLT32\":                        reflect.ValueOf(elf.R_390_PLT32),\n\t\t\"R_390_PLT32DBL\":                     reflect.ValueOf(elf.R_390_PLT32DBL),\n\t\t\"R_390_PLT64\":                        reflect.ValueOf(elf.R_390_PLT64),\n\t\t\"R_390_RELATIVE\":                     reflect.ValueOf(elf.R_390_RELATIVE),\n\t\t\"R_390_TLS_DTPMOD\":                   reflect.ValueOf(elf.R_390_TLS_DTPMOD),\n\t\t\"R_390_TLS_DTPOFF\":                   reflect.ValueOf(elf.R_390_TLS_DTPOFF),\n\t\t\"R_390_TLS_GD32\":                     reflect.ValueOf(elf.R_390_TLS_GD32),\n\t\t\"R_390_TLS_GD64\":                     reflect.ValueOf(elf.R_390_TLS_GD64),\n\t\t\"R_390_TLS_GDCALL\":                   reflect.ValueOf(elf.R_390_TLS_GDCALL),\n\t\t\"R_390_TLS_GOTIE12\":                  reflect.ValueOf(elf.R_390_TLS_GOTIE12),\n\t\t\"R_390_TLS_GOTIE20\":                  reflect.ValueOf(elf.R_390_TLS_GOTIE20),\n\t\t\"R_390_TLS_GOTIE32\":                  reflect.ValueOf(elf.R_390_TLS_GOTIE32),\n\t\t\"R_390_TLS_GOTIE64\":                  reflect.ValueOf(elf.R_390_TLS_GOTIE64),\n\t\t\"R_390_TLS_IE32\":                     reflect.ValueOf(elf.R_390_TLS_IE32),\n\t\t\"R_390_TLS_IE64\":                     reflect.ValueOf(elf.R_390_TLS_IE64),\n\t\t\"R_390_TLS_IEENT\":                    reflect.ValueOf(elf.R_390_TLS_IEENT),\n\t\t\"R_390_TLS_LDCALL\":                   reflect.ValueOf(elf.R_390_TLS_LDCALL),\n\t\t\"R_390_TLS_LDM32\":                    reflect.ValueOf(elf.R_390_TLS_LDM32),\n\t\t\"R_390_TLS_LDM64\":                    reflect.ValueOf(elf.R_390_TLS_LDM64),\n\t\t\"R_390_TLS_LDO32\":                    reflect.ValueOf(elf.R_390_TLS_LDO32),\n\t\t\"R_390_TLS_LDO64\":                    reflect.ValueOf(elf.R_390_TLS_LDO64),\n\t\t\"R_390_TLS_LE32\":                     reflect.ValueOf(elf.R_390_TLS_LE32),\n\t\t\"R_390_TLS_LE64\":                     reflect.ValueOf(elf.R_390_TLS_LE64),\n\t\t\"R_390_TLS_LOAD\":                     reflect.ValueOf(elf.R_390_TLS_LOAD),\n\t\t\"R_390_TLS_TPOFF\":                    reflect.ValueOf(elf.R_390_TLS_TPOFF),\n\t\t\"R_AARCH64_ABS16\":                    reflect.ValueOf(elf.R_AARCH64_ABS16),\n\t\t\"R_AARCH64_ABS32\":                    reflect.ValueOf(elf.R_AARCH64_ABS32),\n\t\t\"R_AARCH64_ABS64\":                    reflect.ValueOf(elf.R_AARCH64_ABS64),\n\t\t\"R_AARCH64_ADD_ABS_LO12_NC\":          reflect.ValueOf(elf.R_AARCH64_ADD_ABS_LO12_NC),\n\t\t\"R_AARCH64_ADR_GOT_PAGE\":             reflect.ValueOf(elf.R_AARCH64_ADR_GOT_PAGE),\n\t\t\"R_AARCH64_ADR_PREL_LO21\":            reflect.ValueOf(elf.R_AARCH64_ADR_PREL_LO21),\n\t\t\"R_AARCH64_ADR_PREL_PG_HI21\":         reflect.ValueOf(elf.R_AARCH64_ADR_PREL_PG_HI21),\n\t\t\"R_AARCH64_ADR_PREL_PG_HI21_NC\":      reflect.ValueOf(elf.R_AARCH64_ADR_PREL_PG_HI21_NC),\n\t\t\"R_AARCH64_CALL26\":                   reflect.ValueOf(elf.R_AARCH64_CALL26),\n\t\t\"R_AARCH64_CONDBR19\":                 reflect.ValueOf(elf.R_AARCH64_CONDBR19),\n\t\t\"R_AARCH64_COPY\":                     reflect.ValueOf(elf.R_AARCH64_COPY),\n\t\t\"R_AARCH64_GLOB_DAT\":                 reflect.ValueOf(elf.R_AARCH64_GLOB_DAT),\n\t\t\"R_AARCH64_GOT_LD_PREL19\":            reflect.ValueOf(elf.R_AARCH64_GOT_LD_PREL19),\n\t\t\"R_AARCH64_IRELATIVE\":                reflect.ValueOf(elf.R_AARCH64_IRELATIVE),\n\t\t\"R_AARCH64_JUMP26\":                   reflect.ValueOf(elf.R_AARCH64_JUMP26),\n\t\t\"R_AARCH64_JUMP_SLOT\":                reflect.ValueOf(elf.R_AARCH64_JUMP_SLOT),\n\t\t\"R_AARCH64_LD64_GOTOFF_LO15\":         reflect.ValueOf(elf.R_AARCH64_LD64_GOTOFF_LO15),\n\t\t\"R_AARCH64_LD64_GOTPAGE_LO15\":        reflect.ValueOf(elf.R_AARCH64_LD64_GOTPAGE_LO15),\n\t\t\"R_AARCH64_LD64_GOT_LO12_NC\":         reflect.ValueOf(elf.R_AARCH64_LD64_GOT_LO12_NC),\n\t\t\"R_AARCH64_LDST128_ABS_LO12_NC\":      reflect.ValueOf(elf.R_AARCH64_LDST128_ABS_LO12_NC),\n\t\t\"R_AARCH64_LDST16_ABS_LO12_NC\":       reflect.ValueOf(elf.R_AARCH64_LDST16_ABS_LO12_NC),\n\t\t\"R_AARCH64_LDST32_ABS_LO12_NC\":       reflect.ValueOf(elf.R_AARCH64_LDST32_ABS_LO12_NC),\n\t\t\"R_AARCH64_LDST64_ABS_LO12_NC\":       reflect.ValueOf(elf.R_AARCH64_LDST64_ABS_LO12_NC),\n\t\t\"R_AARCH64_LDST8_ABS_LO12_NC\":        reflect.ValueOf(elf.R_AARCH64_LDST8_ABS_LO12_NC),\n\t\t\"R_AARCH64_LD_PREL_LO19\":             reflect.ValueOf(elf.R_AARCH64_LD_PREL_LO19),\n\t\t\"R_AARCH64_MOVW_SABS_G0\":             reflect.ValueOf(elf.R_AARCH64_MOVW_SABS_G0),\n\t\t\"R_AARCH64_MOVW_SABS_G1\":             reflect.ValueOf(elf.R_AARCH64_MOVW_SABS_G1),\n\t\t\"R_AARCH64_MOVW_SABS_G2\":             reflect.ValueOf(elf.R_AARCH64_MOVW_SABS_G2),\n\t\t\"R_AARCH64_MOVW_UABS_G0\":             reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G0),\n\t\t\"R_AARCH64_MOVW_UABS_G0_NC\":          reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G0_NC),\n\t\t\"R_AARCH64_MOVW_UABS_G1\":             reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G1),\n\t\t\"R_AARCH64_MOVW_UABS_G1_NC\":          reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G1_NC),\n\t\t\"R_AARCH64_MOVW_UABS_G2\":             reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G2),\n\t\t\"R_AARCH64_MOVW_UABS_G2_NC\":          reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G2_NC),\n\t\t\"R_AARCH64_MOVW_UABS_G3\":             reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G3),\n\t\t\"R_AARCH64_NONE\":                     reflect.ValueOf(elf.R_AARCH64_NONE),\n\t\t\"R_AARCH64_NULL\":                     reflect.ValueOf(elf.R_AARCH64_NULL),\n\t\t\"R_AARCH64_P32_ABS16\":                reflect.ValueOf(elf.R_AARCH64_P32_ABS16),\n\t\t\"R_AARCH64_P32_ABS32\":                reflect.ValueOf(elf.R_AARCH64_P32_ABS32),\n\t\t\"R_AARCH64_P32_ADD_ABS_LO12_NC\":      reflect.ValueOf(elf.R_AARCH64_P32_ADD_ABS_LO12_NC),\n\t\t\"R_AARCH64_P32_ADR_GOT_PAGE\":         reflect.ValueOf(elf.R_AARCH64_P32_ADR_GOT_PAGE),\n\t\t\"R_AARCH64_P32_ADR_PREL_LO21\":        reflect.ValueOf(elf.R_AARCH64_P32_ADR_PREL_LO21),\n\t\t\"R_AARCH64_P32_ADR_PREL_PG_HI21\":     reflect.ValueOf(elf.R_AARCH64_P32_ADR_PREL_PG_HI21),\n\t\t\"R_AARCH64_P32_CALL26\":               reflect.ValueOf(elf.R_AARCH64_P32_CALL26),\n\t\t\"R_AARCH64_P32_CONDBR19\":             reflect.ValueOf(elf.R_AARCH64_P32_CONDBR19),\n\t\t\"R_AARCH64_P32_COPY\":                 reflect.ValueOf(elf.R_AARCH64_P32_COPY),\n\t\t\"R_AARCH64_P32_GLOB_DAT\":             reflect.ValueOf(elf.R_AARCH64_P32_GLOB_DAT),\n\t\t\"R_AARCH64_P32_GOT_LD_PREL19\":        reflect.ValueOf(elf.R_AARCH64_P32_GOT_LD_PREL19),\n\t\t\"R_AARCH64_P32_IRELATIVE\":            reflect.ValueOf(elf.R_AARCH64_P32_IRELATIVE),\n\t\t\"R_AARCH64_P32_JUMP26\":               reflect.ValueOf(elf.R_AARCH64_P32_JUMP26),\n\t\t\"R_AARCH64_P32_JUMP_SLOT\":            reflect.ValueOf(elf.R_AARCH64_P32_JUMP_SLOT),\n\t\t\"R_AARCH64_P32_LD32_GOT_LO12_NC\":     reflect.ValueOf(elf.R_AARCH64_P32_LD32_GOT_LO12_NC),\n\t\t\"R_AARCH64_P32_LDST128_ABS_LO12_NC\":  reflect.ValueOf(elf.R_AARCH64_P32_LDST128_ABS_LO12_NC),\n\t\t\"R_AARCH64_P32_LDST16_ABS_LO12_NC\":   reflect.ValueOf(elf.R_AARCH64_P32_LDST16_ABS_LO12_NC),\n\t\t\"R_AARCH64_P32_LDST32_ABS_LO12_NC\":   reflect.ValueOf(elf.R_AARCH64_P32_LDST32_ABS_LO12_NC),\n\t\t\"R_AARCH64_P32_LDST64_ABS_LO12_NC\":   reflect.ValueOf(elf.R_AARCH64_P32_LDST64_ABS_LO12_NC),\n\t\t\"R_AARCH64_P32_LDST8_ABS_LO12_NC\":    reflect.ValueOf(elf.R_AARCH64_P32_LDST8_ABS_LO12_NC),\n\t\t\"R_AARCH64_P32_LD_PREL_LO19\":         reflect.ValueOf(elf.R_AARCH64_P32_LD_PREL_LO19),\n\t\t\"R_AARCH64_P32_MOVW_SABS_G0\":         reflect.ValueOf(elf.R_AARCH64_P32_MOVW_SABS_G0),\n\t\t\"R_AARCH64_P32_MOVW_UABS_G0\":         reflect.ValueOf(elf.R_AARCH64_P32_MOVW_UABS_G0),\n\t\t\"R_AARCH64_P32_MOVW_UABS_G0_NC\":      reflect.ValueOf(elf.R_AARCH64_P32_MOVW_UABS_G0_NC),\n\t\t\"R_AARCH64_P32_MOVW_UABS_G1\":         reflect.ValueOf(elf.R_AARCH64_P32_MOVW_UABS_G1),\n\t\t\"R_AARCH64_P32_PREL16\":               reflect.ValueOf(elf.R_AARCH64_P32_PREL16),\n\t\t\"R_AARCH64_P32_PREL32\":               reflect.ValueOf(elf.R_AARCH64_P32_PREL32),\n\t\t\"R_AARCH64_P32_RELATIVE\":             reflect.ValueOf(elf.R_AARCH64_P32_RELATIVE),\n\t\t\"R_AARCH64_P32_TLSDESC\":              reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC),\n\t\t\"R_AARCH64_P32_TLSDESC_ADD_LO12_NC\":  reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_ADD_LO12_NC),\n\t\t\"R_AARCH64_P32_TLSDESC_ADR_PAGE21\":   reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_ADR_PAGE21),\n\t\t\"R_AARCH64_P32_TLSDESC_ADR_PREL21\":   reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_ADR_PREL21),\n\t\t\"R_AARCH64_P32_TLSDESC_CALL\":         reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_CALL),\n\t\t\"R_AARCH64_P32_TLSDESC_LD32_LO12_NC\": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_LD32_LO12_NC),\n\t\t\"R_AARCH64_P32_TLSDESC_LD_PREL19\":    reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_LD_PREL19),\n\t\t\"R_AARCH64_P32_TLSGD_ADD_LO12_NC\":    reflect.ValueOf(elf.R_AARCH64_P32_TLSGD_ADD_LO12_NC),\n\t\t\"R_AARCH64_P32_TLSGD_ADR_PAGE21\":     reflect.ValueOf(elf.R_AARCH64_P32_TLSGD_ADR_PAGE21),\n\t\t\"R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21\":   reflect.ValueOf(elf.R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21),\n\t\t\"R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC\": reflect.ValueOf(elf.R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC),\n\t\t\"R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19\":    reflect.ValueOf(elf.R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19),\n\t\t\"R_AARCH64_P32_TLSLE_ADD_TPREL_HI12\":        reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_ADD_TPREL_HI12),\n\t\t\"R_AARCH64_P32_TLSLE_ADD_TPREL_LO12\":        reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_ADD_TPREL_LO12),\n\t\t\"R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC\":     reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC),\n\t\t\"R_AARCH64_P32_TLSLE_MOVW_TPREL_G0\":         reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_MOVW_TPREL_G0),\n\t\t\"R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC\":      reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC),\n\t\t\"R_AARCH64_P32_TLSLE_MOVW_TPREL_G1\":         reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_MOVW_TPREL_G1),\n\t\t\"R_AARCH64_P32_TLS_DTPMOD\":                  reflect.ValueOf(elf.R_AARCH64_P32_TLS_DTPMOD),\n\t\t\"R_AARCH64_P32_TLS_DTPREL\":                  reflect.ValueOf(elf.R_AARCH64_P32_TLS_DTPREL),\n\t\t\"R_AARCH64_P32_TLS_TPREL\":                   reflect.ValueOf(elf.R_AARCH64_P32_TLS_TPREL),\n\t\t\"R_AARCH64_P32_TSTBR14\":                     reflect.ValueOf(elf.R_AARCH64_P32_TSTBR14),\n\t\t\"R_AARCH64_PREL16\":                          reflect.ValueOf(elf.R_AARCH64_PREL16),\n\t\t\"R_AARCH64_PREL32\":                          reflect.ValueOf(elf.R_AARCH64_PREL32),\n\t\t\"R_AARCH64_PREL64\":                          reflect.ValueOf(elf.R_AARCH64_PREL64),\n\t\t\"R_AARCH64_RELATIVE\":                        reflect.ValueOf(elf.R_AARCH64_RELATIVE),\n\t\t\"R_AARCH64_TLSDESC\":                         reflect.ValueOf(elf.R_AARCH64_TLSDESC),\n\t\t\"R_AARCH64_TLSDESC_ADD\":                     reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADD),\n\t\t\"R_AARCH64_TLSDESC_ADD_LO12_NC\":             reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADD_LO12_NC),\n\t\t\"R_AARCH64_TLSDESC_ADR_PAGE21\":              reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADR_PAGE21),\n\t\t\"R_AARCH64_TLSDESC_ADR_PREL21\":              reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADR_PREL21),\n\t\t\"R_AARCH64_TLSDESC_CALL\":                    reflect.ValueOf(elf.R_AARCH64_TLSDESC_CALL),\n\t\t\"R_AARCH64_TLSDESC_LD64_LO12_NC\":            reflect.ValueOf(elf.R_AARCH64_TLSDESC_LD64_LO12_NC),\n\t\t\"R_AARCH64_TLSDESC_LDR\":                     reflect.ValueOf(elf.R_AARCH64_TLSDESC_LDR),\n\t\t\"R_AARCH64_TLSDESC_LD_PREL19\":               reflect.ValueOf(elf.R_AARCH64_TLSDESC_LD_PREL19),\n\t\t\"R_AARCH64_TLSDESC_OFF_G0_NC\":               reflect.ValueOf(elf.R_AARCH64_TLSDESC_OFF_G0_NC),\n\t\t\"R_AARCH64_TLSDESC_OFF_G1\":                  reflect.ValueOf(elf.R_AARCH64_TLSDESC_OFF_G1),\n\t\t\"R_AARCH64_TLSGD_ADD_LO12_NC\":               reflect.ValueOf(elf.R_AARCH64_TLSGD_ADD_LO12_NC),\n\t\t\"R_AARCH64_TLSGD_ADR_PAGE21\":                reflect.ValueOf(elf.R_AARCH64_TLSGD_ADR_PAGE21),\n\t\t\"R_AARCH64_TLSGD_ADR_PREL21\":                reflect.ValueOf(elf.R_AARCH64_TLSGD_ADR_PREL21),\n\t\t\"R_AARCH64_TLSGD_MOVW_G0_NC\":                reflect.ValueOf(elf.R_AARCH64_TLSGD_MOVW_G0_NC),\n\t\t\"R_AARCH64_TLSGD_MOVW_G1\":                   reflect.ValueOf(elf.R_AARCH64_TLSGD_MOVW_G1),\n\t\t\"R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21\":       reflect.ValueOf(elf.R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21),\n\t\t\"R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC\":     reflect.ValueOf(elf.R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC),\n\t\t\"R_AARCH64_TLSIE_LD_GOTTPREL_PREL19\":        reflect.ValueOf(elf.R_AARCH64_TLSIE_LD_GOTTPREL_PREL19),\n\t\t\"R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC\":       reflect.ValueOf(elf.R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC),\n\t\t\"R_AARCH64_TLSIE_MOVW_GOTTPREL_G1\":          reflect.ValueOf(elf.R_AARCH64_TLSIE_MOVW_GOTTPREL_G1),\n\t\t\"R_AARCH64_TLSLD_ADR_PAGE21\":                reflect.ValueOf(elf.R_AARCH64_TLSLD_ADR_PAGE21),\n\t\t\"R_AARCH64_TLSLD_ADR_PREL21\":                reflect.ValueOf(elf.R_AARCH64_TLSLD_ADR_PREL21),\n\t\t\"R_AARCH64_TLSLD_LDST128_DTPREL_LO12\":       reflect.ValueOf(elf.R_AARCH64_TLSLD_LDST128_DTPREL_LO12),\n\t\t\"R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC\":    reflect.ValueOf(elf.R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC),\n\t\t\"R_AARCH64_TLSLE_ADD_TPREL_HI12\":            reflect.ValueOf(elf.R_AARCH64_TLSLE_ADD_TPREL_HI12),\n\t\t\"R_AARCH64_TLSLE_ADD_TPREL_LO12\":            reflect.ValueOf(elf.R_AARCH64_TLSLE_ADD_TPREL_LO12),\n\t\t\"R_AARCH64_TLSLE_ADD_TPREL_LO12_NC\":         reflect.ValueOf(elf.R_AARCH64_TLSLE_ADD_TPREL_LO12_NC),\n\t\t\"R_AARCH64_TLSLE_LDST128_TPREL_LO12\":        reflect.ValueOf(elf.R_AARCH64_TLSLE_LDST128_TPREL_LO12),\n\t\t\"R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC\":     reflect.ValueOf(elf.R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC),\n\t\t\"R_AARCH64_TLSLE_MOVW_TPREL_G0\":             reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G0),\n\t\t\"R_AARCH64_TLSLE_MOVW_TPREL_G0_NC\":          reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G0_NC),\n\t\t\"R_AARCH64_TLSLE_MOVW_TPREL_G1\":             reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G1),\n\t\t\"R_AARCH64_TLSLE_MOVW_TPREL_G1_NC\":          reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G1_NC),\n\t\t\"R_AARCH64_TLSLE_MOVW_TPREL_G2\":             reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G2),\n\t\t\"R_AARCH64_TLS_DTPMOD64\":                    reflect.ValueOf(elf.R_AARCH64_TLS_DTPMOD64),\n\t\t\"R_AARCH64_TLS_DTPREL64\":                    reflect.ValueOf(elf.R_AARCH64_TLS_DTPREL64),\n\t\t\"R_AARCH64_TLS_TPREL64\":                     reflect.ValueOf(elf.R_AARCH64_TLS_TPREL64),\n\t\t\"R_AARCH64_TSTBR14\":                         reflect.ValueOf(elf.R_AARCH64_TSTBR14),\n\t\t\"R_ALPHA_BRADDR\":                            reflect.ValueOf(elf.R_ALPHA_BRADDR),\n\t\t\"R_ALPHA_COPY\":                              reflect.ValueOf(elf.R_ALPHA_COPY),\n\t\t\"R_ALPHA_GLOB_DAT\":                          reflect.ValueOf(elf.R_ALPHA_GLOB_DAT),\n\t\t\"R_ALPHA_GPDISP\":                            reflect.ValueOf(elf.R_ALPHA_GPDISP),\n\t\t\"R_ALPHA_GPREL32\":                           reflect.ValueOf(elf.R_ALPHA_GPREL32),\n\t\t\"R_ALPHA_GPRELHIGH\":                         reflect.ValueOf(elf.R_ALPHA_GPRELHIGH),\n\t\t\"R_ALPHA_GPRELLOW\":                          reflect.ValueOf(elf.R_ALPHA_GPRELLOW),\n\t\t\"R_ALPHA_GPVALUE\":                           reflect.ValueOf(elf.R_ALPHA_GPVALUE),\n\t\t\"R_ALPHA_HINT\":                              reflect.ValueOf(elf.R_ALPHA_HINT),\n\t\t\"R_ALPHA_IMMED_BR_HI32\":                     reflect.ValueOf(elf.R_ALPHA_IMMED_BR_HI32),\n\t\t\"R_ALPHA_IMMED_GP_16\":                       reflect.ValueOf(elf.R_ALPHA_IMMED_GP_16),\n\t\t\"R_ALPHA_IMMED_GP_HI32\":                     reflect.ValueOf(elf.R_ALPHA_IMMED_GP_HI32),\n\t\t\"R_ALPHA_IMMED_LO32\":                        reflect.ValueOf(elf.R_ALPHA_IMMED_LO32),\n\t\t\"R_ALPHA_IMMED_SCN_HI32\":                    reflect.ValueOf(elf.R_ALPHA_IMMED_SCN_HI32),\n\t\t\"R_ALPHA_JMP_SLOT\":                          reflect.ValueOf(elf.R_ALPHA_JMP_SLOT),\n\t\t\"R_ALPHA_LITERAL\":                           reflect.ValueOf(elf.R_ALPHA_LITERAL),\n\t\t\"R_ALPHA_LITUSE\":                            reflect.ValueOf(elf.R_ALPHA_LITUSE),\n\t\t\"R_ALPHA_NONE\":                              reflect.ValueOf(elf.R_ALPHA_NONE),\n\t\t\"R_ALPHA_OP_PRSHIFT\":                        reflect.ValueOf(elf.R_ALPHA_OP_PRSHIFT),\n\t\t\"R_ALPHA_OP_PSUB\":                           reflect.ValueOf(elf.R_ALPHA_OP_PSUB),\n\t\t\"R_ALPHA_OP_PUSH\":                           reflect.ValueOf(elf.R_ALPHA_OP_PUSH),\n\t\t\"R_ALPHA_OP_STORE\":                          reflect.ValueOf(elf.R_ALPHA_OP_STORE),\n\t\t\"R_ALPHA_REFLONG\":                           reflect.ValueOf(elf.R_ALPHA_REFLONG),\n\t\t\"R_ALPHA_REFQUAD\":                           reflect.ValueOf(elf.R_ALPHA_REFQUAD),\n\t\t\"R_ALPHA_RELATIVE\":                          reflect.ValueOf(elf.R_ALPHA_RELATIVE),\n\t\t\"R_ALPHA_SREL16\":                            reflect.ValueOf(elf.R_ALPHA_SREL16),\n\t\t\"R_ALPHA_SREL32\":                            reflect.ValueOf(elf.R_ALPHA_SREL32),\n\t\t\"R_ALPHA_SREL64\":                            reflect.ValueOf(elf.R_ALPHA_SREL64),\n\t\t\"R_ARM_ABS12\":                               reflect.ValueOf(elf.R_ARM_ABS12),\n\t\t\"R_ARM_ABS16\":                               reflect.ValueOf(elf.R_ARM_ABS16),\n\t\t\"R_ARM_ABS32\":                               reflect.ValueOf(elf.R_ARM_ABS32),\n\t\t\"R_ARM_ABS32_NOI\":                           reflect.ValueOf(elf.R_ARM_ABS32_NOI),\n\t\t\"R_ARM_ABS8\":                                reflect.ValueOf(elf.R_ARM_ABS8),\n\t\t\"R_ARM_ALU_PCREL_15_8\":                      reflect.ValueOf(elf.R_ARM_ALU_PCREL_15_8),\n\t\t\"R_ARM_ALU_PCREL_23_15\":                     reflect.ValueOf(elf.R_ARM_ALU_PCREL_23_15),\n\t\t\"R_ARM_ALU_PCREL_7_0\":                       reflect.ValueOf(elf.R_ARM_ALU_PCREL_7_0),\n\t\t\"R_ARM_ALU_PC_G0\":                           reflect.ValueOf(elf.R_ARM_ALU_PC_G0),\n\t\t\"R_ARM_ALU_PC_G0_NC\":                        reflect.ValueOf(elf.R_ARM_ALU_PC_G0_NC),\n\t\t\"R_ARM_ALU_PC_G1\":                           reflect.ValueOf(elf.R_ARM_ALU_PC_G1),\n\t\t\"R_ARM_ALU_PC_G1_NC\":                        reflect.ValueOf(elf.R_ARM_ALU_PC_G1_NC),\n\t\t\"R_ARM_ALU_PC_G2\":                           reflect.ValueOf(elf.R_ARM_ALU_PC_G2),\n\t\t\"R_ARM_ALU_SBREL_19_12_NC\":                  reflect.ValueOf(elf.R_ARM_ALU_SBREL_19_12_NC),\n\t\t\"R_ARM_ALU_SBREL_27_20_CK\":                  reflect.ValueOf(elf.R_ARM_ALU_SBREL_27_20_CK),\n\t\t\"R_ARM_ALU_SB_G0\":                           reflect.ValueOf(elf.R_ARM_ALU_SB_G0),\n\t\t\"R_ARM_ALU_SB_G0_NC\":                        reflect.ValueOf(elf.R_ARM_ALU_SB_G0_NC),\n\t\t\"R_ARM_ALU_SB_G1\":                           reflect.ValueOf(elf.R_ARM_ALU_SB_G1),\n\t\t\"R_ARM_ALU_SB_G1_NC\":                        reflect.ValueOf(elf.R_ARM_ALU_SB_G1_NC),\n\t\t\"R_ARM_ALU_SB_G2\":                           reflect.ValueOf(elf.R_ARM_ALU_SB_G2),\n\t\t\"R_ARM_AMP_VCALL9\":                          reflect.ValueOf(elf.R_ARM_AMP_VCALL9),\n\t\t\"R_ARM_BASE_ABS\":                            reflect.ValueOf(elf.R_ARM_BASE_ABS),\n\t\t\"R_ARM_CALL\":                                reflect.ValueOf(elf.R_ARM_CALL),\n\t\t\"R_ARM_COPY\":                                reflect.ValueOf(elf.R_ARM_COPY),\n\t\t\"R_ARM_GLOB_DAT\":                            reflect.ValueOf(elf.R_ARM_GLOB_DAT),\n\t\t\"R_ARM_GNU_VTENTRY\":                         reflect.ValueOf(elf.R_ARM_GNU_VTENTRY),\n\t\t\"R_ARM_GNU_VTINHERIT\":                       reflect.ValueOf(elf.R_ARM_GNU_VTINHERIT),\n\t\t\"R_ARM_GOT32\":                               reflect.ValueOf(elf.R_ARM_GOT32),\n\t\t\"R_ARM_GOTOFF\":                              reflect.ValueOf(elf.R_ARM_GOTOFF),\n\t\t\"R_ARM_GOTOFF12\":                            reflect.ValueOf(elf.R_ARM_GOTOFF12),\n\t\t\"R_ARM_GOTPC\":                               reflect.ValueOf(elf.R_ARM_GOTPC),\n\t\t\"R_ARM_GOTRELAX\":                            reflect.ValueOf(elf.R_ARM_GOTRELAX),\n\t\t\"R_ARM_GOT_ABS\":                             reflect.ValueOf(elf.R_ARM_GOT_ABS),\n\t\t\"R_ARM_GOT_BREL12\":                          reflect.ValueOf(elf.R_ARM_GOT_BREL12),\n\t\t\"R_ARM_GOT_PREL\":                            reflect.ValueOf(elf.R_ARM_GOT_PREL),\n\t\t\"R_ARM_IRELATIVE\":                           reflect.ValueOf(elf.R_ARM_IRELATIVE),\n\t\t\"R_ARM_JUMP24\":                              reflect.ValueOf(elf.R_ARM_JUMP24),\n\t\t\"R_ARM_JUMP_SLOT\":                           reflect.ValueOf(elf.R_ARM_JUMP_SLOT),\n\t\t\"R_ARM_LDC_PC_G0\":                           reflect.ValueOf(elf.R_ARM_LDC_PC_G0),\n\t\t\"R_ARM_LDC_PC_G1\":                           reflect.ValueOf(elf.R_ARM_LDC_PC_G1),\n\t\t\"R_ARM_LDC_PC_G2\":                           reflect.ValueOf(elf.R_ARM_LDC_PC_G2),\n\t\t\"R_ARM_LDC_SB_G0\":                           reflect.ValueOf(elf.R_ARM_LDC_SB_G0),\n\t\t\"R_ARM_LDC_SB_G1\":                           reflect.ValueOf(elf.R_ARM_LDC_SB_G1),\n\t\t\"R_ARM_LDC_SB_G2\":                           reflect.ValueOf(elf.R_ARM_LDC_SB_G2),\n\t\t\"R_ARM_LDRS_PC_G0\":                          reflect.ValueOf(elf.R_ARM_LDRS_PC_G0),\n\t\t\"R_ARM_LDRS_PC_G1\":                          reflect.ValueOf(elf.R_ARM_LDRS_PC_G1),\n\t\t\"R_ARM_LDRS_PC_G2\":                          reflect.ValueOf(elf.R_ARM_LDRS_PC_G2),\n\t\t\"R_ARM_LDRS_SB_G0\":                          reflect.ValueOf(elf.R_ARM_LDRS_SB_G0),\n\t\t\"R_ARM_LDRS_SB_G1\":                          reflect.ValueOf(elf.R_ARM_LDRS_SB_G1),\n\t\t\"R_ARM_LDRS_SB_G2\":                          reflect.ValueOf(elf.R_ARM_LDRS_SB_G2),\n\t\t\"R_ARM_LDR_PC_G1\":                           reflect.ValueOf(elf.R_ARM_LDR_PC_G1),\n\t\t\"R_ARM_LDR_PC_G2\":                           reflect.ValueOf(elf.R_ARM_LDR_PC_G2),\n\t\t\"R_ARM_LDR_SBREL_11_10_NC\":                  reflect.ValueOf(elf.R_ARM_LDR_SBREL_11_10_NC),\n\t\t\"R_ARM_LDR_SB_G0\":                           reflect.ValueOf(elf.R_ARM_LDR_SB_G0),\n\t\t\"R_ARM_LDR_SB_G1\":                           reflect.ValueOf(elf.R_ARM_LDR_SB_G1),\n\t\t\"R_ARM_LDR_SB_G2\":                           reflect.ValueOf(elf.R_ARM_LDR_SB_G2),\n\t\t\"R_ARM_ME_TOO\":                              reflect.ValueOf(elf.R_ARM_ME_TOO),\n\t\t\"R_ARM_MOVT_ABS\":                            reflect.ValueOf(elf.R_ARM_MOVT_ABS),\n\t\t\"R_ARM_MOVT_BREL\":                           reflect.ValueOf(elf.R_ARM_MOVT_BREL),\n\t\t\"R_ARM_MOVT_PREL\":                           reflect.ValueOf(elf.R_ARM_MOVT_PREL),\n\t\t\"R_ARM_MOVW_ABS_NC\":                         reflect.ValueOf(elf.R_ARM_MOVW_ABS_NC),\n\t\t\"R_ARM_MOVW_BREL\":                           reflect.ValueOf(elf.R_ARM_MOVW_BREL),\n\t\t\"R_ARM_MOVW_BREL_NC\":                        reflect.ValueOf(elf.R_ARM_MOVW_BREL_NC),\n\t\t\"R_ARM_MOVW_PREL_NC\":                        reflect.ValueOf(elf.R_ARM_MOVW_PREL_NC),\n\t\t\"R_ARM_NONE\":                                reflect.ValueOf(elf.R_ARM_NONE),\n\t\t\"R_ARM_PC13\":                                reflect.ValueOf(elf.R_ARM_PC13),\n\t\t\"R_ARM_PC24\":                                reflect.ValueOf(elf.R_ARM_PC24),\n\t\t\"R_ARM_PLT32\":                               reflect.ValueOf(elf.R_ARM_PLT32),\n\t\t\"R_ARM_PLT32_ABS\":                           reflect.ValueOf(elf.R_ARM_PLT32_ABS),\n\t\t\"R_ARM_PREL31\":                              reflect.ValueOf(elf.R_ARM_PREL31),\n\t\t\"R_ARM_PRIVATE_0\":                           reflect.ValueOf(elf.R_ARM_PRIVATE_0),\n\t\t\"R_ARM_PRIVATE_1\":                           reflect.ValueOf(elf.R_ARM_PRIVATE_1),\n\t\t\"R_ARM_PRIVATE_10\":                          reflect.ValueOf(elf.R_ARM_PRIVATE_10),\n\t\t\"R_ARM_PRIVATE_11\":                          reflect.ValueOf(elf.R_ARM_PRIVATE_11),\n\t\t\"R_ARM_PRIVATE_12\":                          reflect.ValueOf(elf.R_ARM_PRIVATE_12),\n\t\t\"R_ARM_PRIVATE_13\":                          reflect.ValueOf(elf.R_ARM_PRIVATE_13),\n\t\t\"R_ARM_PRIVATE_14\":                          reflect.ValueOf(elf.R_ARM_PRIVATE_14),\n\t\t\"R_ARM_PRIVATE_15\":                          reflect.ValueOf(elf.R_ARM_PRIVATE_15),\n\t\t\"R_ARM_PRIVATE_2\":                           reflect.ValueOf(elf.R_ARM_PRIVATE_2),\n\t\t\"R_ARM_PRIVATE_3\":                           reflect.ValueOf(elf.R_ARM_PRIVATE_3),\n\t\t\"R_ARM_PRIVATE_4\":                           reflect.ValueOf(elf.R_ARM_PRIVATE_4),\n\t\t\"R_ARM_PRIVATE_5\":                           reflect.ValueOf(elf.R_ARM_PRIVATE_5),\n\t\t\"R_ARM_PRIVATE_6\":                           reflect.ValueOf(elf.R_ARM_PRIVATE_6),\n\t\t\"R_ARM_PRIVATE_7\":                           reflect.ValueOf(elf.R_ARM_PRIVATE_7),\n\t\t\"R_ARM_PRIVATE_8\":                           reflect.ValueOf(elf.R_ARM_PRIVATE_8),\n\t\t\"R_ARM_PRIVATE_9\":                           reflect.ValueOf(elf.R_ARM_PRIVATE_9),\n\t\t\"R_ARM_RABS32\":                              reflect.ValueOf(elf.R_ARM_RABS32),\n\t\t\"R_ARM_RBASE\":                               reflect.ValueOf(elf.R_ARM_RBASE),\n\t\t\"R_ARM_REL32\":                               reflect.ValueOf(elf.R_ARM_REL32),\n\t\t\"R_ARM_REL32_NOI\":                           reflect.ValueOf(elf.R_ARM_REL32_NOI),\n\t\t\"R_ARM_RELATIVE\":                            reflect.ValueOf(elf.R_ARM_RELATIVE),\n\t\t\"R_ARM_RPC24\":                               reflect.ValueOf(elf.R_ARM_RPC24),\n\t\t\"R_ARM_RREL32\":                              reflect.ValueOf(elf.R_ARM_RREL32),\n\t\t\"R_ARM_RSBREL32\":                            reflect.ValueOf(elf.R_ARM_RSBREL32),\n\t\t\"R_ARM_RXPC25\":                              reflect.ValueOf(elf.R_ARM_RXPC25),\n\t\t\"R_ARM_SBREL31\":                             reflect.ValueOf(elf.R_ARM_SBREL31),\n\t\t\"R_ARM_SBREL32\":                             reflect.ValueOf(elf.R_ARM_SBREL32),\n\t\t\"R_ARM_SWI24\":                               reflect.ValueOf(elf.R_ARM_SWI24),\n\t\t\"R_ARM_TARGET1\":                             reflect.ValueOf(elf.R_ARM_TARGET1),\n\t\t\"R_ARM_TARGET2\":                             reflect.ValueOf(elf.R_ARM_TARGET2),\n\t\t\"R_ARM_THM_ABS5\":                            reflect.ValueOf(elf.R_ARM_THM_ABS5),\n\t\t\"R_ARM_THM_ALU_ABS_G0_NC\":                   reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G0_NC),\n\t\t\"R_ARM_THM_ALU_ABS_G1_NC\":                   reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G1_NC),\n\t\t\"R_ARM_THM_ALU_ABS_G2_NC\":                   reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G2_NC),\n\t\t\"R_ARM_THM_ALU_ABS_G3\":                      reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G3),\n\t\t\"R_ARM_THM_ALU_PREL_11_0\":                   reflect.ValueOf(elf.R_ARM_THM_ALU_PREL_11_0),\n\t\t\"R_ARM_THM_GOT_BREL12\":                      reflect.ValueOf(elf.R_ARM_THM_GOT_BREL12),\n\t\t\"R_ARM_THM_JUMP11\":                          reflect.ValueOf(elf.R_ARM_THM_JUMP11),\n\t\t\"R_ARM_THM_JUMP19\":                          reflect.ValueOf(elf.R_ARM_THM_JUMP19),\n\t\t\"R_ARM_THM_JUMP24\":                          reflect.ValueOf(elf.R_ARM_THM_JUMP24),\n\t\t\"R_ARM_THM_JUMP6\":                           reflect.ValueOf(elf.R_ARM_THM_JUMP6),\n\t\t\"R_ARM_THM_JUMP8\":                           reflect.ValueOf(elf.R_ARM_THM_JUMP8),\n\t\t\"R_ARM_THM_MOVT_ABS\":                        reflect.ValueOf(elf.R_ARM_THM_MOVT_ABS),\n\t\t\"R_ARM_THM_MOVT_BREL\":                       reflect.ValueOf(elf.R_ARM_THM_MOVT_BREL),\n\t\t\"R_ARM_THM_MOVT_PREL\":                       reflect.ValueOf(elf.R_ARM_THM_MOVT_PREL),\n\t\t\"R_ARM_THM_MOVW_ABS_NC\":                     reflect.ValueOf(elf.R_ARM_THM_MOVW_ABS_NC),\n\t\t\"R_ARM_THM_MOVW_BREL\":                       reflect.ValueOf(elf.R_ARM_THM_MOVW_BREL),\n\t\t\"R_ARM_THM_MOVW_BREL_NC\":                    reflect.ValueOf(elf.R_ARM_THM_MOVW_BREL_NC),\n\t\t\"R_ARM_THM_MOVW_PREL_NC\":                    reflect.ValueOf(elf.R_ARM_THM_MOVW_PREL_NC),\n\t\t\"R_ARM_THM_PC12\":                            reflect.ValueOf(elf.R_ARM_THM_PC12),\n\t\t\"R_ARM_THM_PC22\":                            reflect.ValueOf(elf.R_ARM_THM_PC22),\n\t\t\"R_ARM_THM_PC8\":                             reflect.ValueOf(elf.R_ARM_THM_PC8),\n\t\t\"R_ARM_THM_RPC22\":                           reflect.ValueOf(elf.R_ARM_THM_RPC22),\n\t\t\"R_ARM_THM_SWI8\":                            reflect.ValueOf(elf.R_ARM_THM_SWI8),\n\t\t\"R_ARM_THM_TLS_CALL\":                        reflect.ValueOf(elf.R_ARM_THM_TLS_CALL),\n\t\t\"R_ARM_THM_TLS_DESCSEQ16\":                   reflect.ValueOf(elf.R_ARM_THM_TLS_DESCSEQ16),\n\t\t\"R_ARM_THM_TLS_DESCSEQ32\":                   reflect.ValueOf(elf.R_ARM_THM_TLS_DESCSEQ32),\n\t\t\"R_ARM_THM_XPC22\":                           reflect.ValueOf(elf.R_ARM_THM_XPC22),\n\t\t\"R_ARM_TLS_CALL\":                            reflect.ValueOf(elf.R_ARM_TLS_CALL),\n\t\t\"R_ARM_TLS_DESCSEQ\":                         reflect.ValueOf(elf.R_ARM_TLS_DESCSEQ),\n\t\t\"R_ARM_TLS_DTPMOD32\":                        reflect.ValueOf(elf.R_ARM_TLS_DTPMOD32),\n\t\t\"R_ARM_TLS_DTPOFF32\":                        reflect.ValueOf(elf.R_ARM_TLS_DTPOFF32),\n\t\t\"R_ARM_TLS_GD32\":                            reflect.ValueOf(elf.R_ARM_TLS_GD32),\n\t\t\"R_ARM_TLS_GOTDESC\":                         reflect.ValueOf(elf.R_ARM_TLS_GOTDESC),\n\t\t\"R_ARM_TLS_IE12GP\":                          reflect.ValueOf(elf.R_ARM_TLS_IE12GP),\n\t\t\"R_ARM_TLS_IE32\":                            reflect.ValueOf(elf.R_ARM_TLS_IE32),\n\t\t\"R_ARM_TLS_LDM32\":                           reflect.ValueOf(elf.R_ARM_TLS_LDM32),\n\t\t\"R_ARM_TLS_LDO12\":                           reflect.ValueOf(elf.R_ARM_TLS_LDO12),\n\t\t\"R_ARM_TLS_LDO32\":                           reflect.ValueOf(elf.R_ARM_TLS_LDO32),\n\t\t\"R_ARM_TLS_LE12\":                            reflect.ValueOf(elf.R_ARM_TLS_LE12),\n\t\t\"R_ARM_TLS_LE32\":                            reflect.ValueOf(elf.R_ARM_TLS_LE32),\n\t\t\"R_ARM_TLS_TPOFF32\":                         reflect.ValueOf(elf.R_ARM_TLS_TPOFF32),\n\t\t\"R_ARM_V4BX\":                                reflect.ValueOf(elf.R_ARM_V4BX),\n\t\t\"R_ARM_XPC25\":                               reflect.ValueOf(elf.R_ARM_XPC25),\n\t\t\"R_INFO\":                                    reflect.ValueOf(elf.R_INFO),\n\t\t\"R_INFO32\":                                  reflect.ValueOf(elf.R_INFO32),\n\t\t\"R_LARCH_32\":                                reflect.ValueOf(elf.R_LARCH_32),\n\t\t\"R_LARCH_32_PCREL\":                          reflect.ValueOf(elf.R_LARCH_32_PCREL),\n\t\t\"R_LARCH_64\":                                reflect.ValueOf(elf.R_LARCH_64),\n\t\t\"R_LARCH_ABS64_HI12\":                        reflect.ValueOf(elf.R_LARCH_ABS64_HI12),\n\t\t\"R_LARCH_ABS64_LO20\":                        reflect.ValueOf(elf.R_LARCH_ABS64_LO20),\n\t\t\"R_LARCH_ABS_HI20\":                          reflect.ValueOf(elf.R_LARCH_ABS_HI20),\n\t\t\"R_LARCH_ABS_LO12\":                          reflect.ValueOf(elf.R_LARCH_ABS_LO12),\n\t\t\"R_LARCH_ADD16\":                             reflect.ValueOf(elf.R_LARCH_ADD16),\n\t\t\"R_LARCH_ADD24\":                             reflect.ValueOf(elf.R_LARCH_ADD24),\n\t\t\"R_LARCH_ADD32\":                             reflect.ValueOf(elf.R_LARCH_ADD32),\n\t\t\"R_LARCH_ADD64\":                             reflect.ValueOf(elf.R_LARCH_ADD64),\n\t\t\"R_LARCH_ADD8\":                              reflect.ValueOf(elf.R_LARCH_ADD8),\n\t\t\"R_LARCH_B16\":                               reflect.ValueOf(elf.R_LARCH_B16),\n\t\t\"R_LARCH_B21\":                               reflect.ValueOf(elf.R_LARCH_B21),\n\t\t\"R_LARCH_B26\":                               reflect.ValueOf(elf.R_LARCH_B26),\n\t\t\"R_LARCH_COPY\":                              reflect.ValueOf(elf.R_LARCH_COPY),\n\t\t\"R_LARCH_GNU_VTENTRY\":                       reflect.ValueOf(elf.R_LARCH_GNU_VTENTRY),\n\t\t\"R_LARCH_GNU_VTINHERIT\":                     reflect.ValueOf(elf.R_LARCH_GNU_VTINHERIT),\n\t\t\"R_LARCH_GOT64_HI12\":                        reflect.ValueOf(elf.R_LARCH_GOT64_HI12),\n\t\t\"R_LARCH_GOT64_LO20\":                        reflect.ValueOf(elf.R_LARCH_GOT64_LO20),\n\t\t\"R_LARCH_GOT64_PC_HI12\":                     reflect.ValueOf(elf.R_LARCH_GOT64_PC_HI12),\n\t\t\"R_LARCH_GOT64_PC_LO20\":                     reflect.ValueOf(elf.R_LARCH_GOT64_PC_LO20),\n\t\t\"R_LARCH_GOT_HI20\":                          reflect.ValueOf(elf.R_LARCH_GOT_HI20),\n\t\t\"R_LARCH_GOT_LO12\":                          reflect.ValueOf(elf.R_LARCH_GOT_LO12),\n\t\t\"R_LARCH_GOT_PC_HI20\":                       reflect.ValueOf(elf.R_LARCH_GOT_PC_HI20),\n\t\t\"R_LARCH_GOT_PC_LO12\":                       reflect.ValueOf(elf.R_LARCH_GOT_PC_LO12),\n\t\t\"R_LARCH_IRELATIVE\":                         reflect.ValueOf(elf.R_LARCH_IRELATIVE),\n\t\t\"R_LARCH_JUMP_SLOT\":                         reflect.ValueOf(elf.R_LARCH_JUMP_SLOT),\n\t\t\"R_LARCH_MARK_LA\":                           reflect.ValueOf(elf.R_LARCH_MARK_LA),\n\t\t\"R_LARCH_MARK_PCREL\":                        reflect.ValueOf(elf.R_LARCH_MARK_PCREL),\n\t\t\"R_LARCH_NONE\":                              reflect.ValueOf(elf.R_LARCH_NONE),\n\t\t\"R_LARCH_PCALA64_HI12\":                      reflect.ValueOf(elf.R_LARCH_PCALA64_HI12),\n\t\t\"R_LARCH_PCALA64_LO20\":                      reflect.ValueOf(elf.R_LARCH_PCALA64_LO20),\n\t\t\"R_LARCH_PCALA_HI20\":                        reflect.ValueOf(elf.R_LARCH_PCALA_HI20),\n\t\t\"R_LARCH_PCALA_LO12\":                        reflect.ValueOf(elf.R_LARCH_PCALA_LO12),\n\t\t\"R_LARCH_RELATIVE\":                          reflect.ValueOf(elf.R_LARCH_RELATIVE),\n\t\t\"R_LARCH_RELAX\":                             reflect.ValueOf(elf.R_LARCH_RELAX),\n\t\t\"R_LARCH_SOP_ADD\":                           reflect.ValueOf(elf.R_LARCH_SOP_ADD),\n\t\t\"R_LARCH_SOP_AND\":                           reflect.ValueOf(elf.R_LARCH_SOP_AND),\n\t\t\"R_LARCH_SOP_ASSERT\":                        reflect.ValueOf(elf.R_LARCH_SOP_ASSERT),\n\t\t\"R_LARCH_SOP_IF_ELSE\":                       reflect.ValueOf(elf.R_LARCH_SOP_IF_ELSE),\n\t\t\"R_LARCH_SOP_NOT\":                           reflect.ValueOf(elf.R_LARCH_SOP_NOT),\n\t\t\"R_LARCH_SOP_POP_32_S_0_10_10_16_S2\":        reflect.ValueOf(elf.R_LARCH_SOP_POP_32_S_0_10_10_16_S2),\n\t\t\"R_LARCH_SOP_POP_32_S_0_5_10_16_S2\":         reflect.ValueOf(elf.R_LARCH_SOP_POP_32_S_0_5_10_16_S2),\n\t\t\"R_LARCH_SOP_POP_32_S_10_12\":                reflect.ValueOf(elf.R_LARCH_SOP_POP_32_S_10_12),\n\t\t\"R_LARCH_SOP_POP_32_S_10_16\":                reflect.ValueOf(elf.R_LARCH_SOP_POP_32_S_10_16),\n\t\t\"R_LARCH_SOP_POP_32_S_10_16_S2\":             reflect.ValueOf(elf.R_LARCH_SOP_POP_32_S_10_16_S2),\n\t\t\"R_LARCH_SOP_POP_32_S_10_5\":                 reflect.ValueOf(elf.R_LARCH_SOP_POP_32_S_10_5),\n\t\t\"R_LARCH_SOP_POP_32_S_5_20\":                 reflect.ValueOf(elf.R_LARCH_SOP_POP_32_S_5_20),\n\t\t\"R_LARCH_SOP_POP_32_U\":                      reflect.ValueOf(elf.R_LARCH_SOP_POP_32_U),\n\t\t\"R_LARCH_SOP_POP_32_U_10_12\":                reflect.ValueOf(elf.R_LARCH_SOP_POP_32_U_10_12),\n\t\t\"R_LARCH_SOP_PUSH_ABSOLUTE\":                 reflect.ValueOf(elf.R_LARCH_SOP_PUSH_ABSOLUTE),\n\t\t\"R_LARCH_SOP_PUSH_DUP\":                      reflect.ValueOf(elf.R_LARCH_SOP_PUSH_DUP),\n\t\t\"R_LARCH_SOP_PUSH_GPREL\":                    reflect.ValueOf(elf.R_LARCH_SOP_PUSH_GPREL),\n\t\t\"R_LARCH_SOP_PUSH_PCREL\":                    reflect.ValueOf(elf.R_LARCH_SOP_PUSH_PCREL),\n\t\t\"R_LARCH_SOP_PUSH_PLT_PCREL\":                reflect.ValueOf(elf.R_LARCH_SOP_PUSH_PLT_PCREL),\n\t\t\"R_LARCH_SOP_PUSH_TLS_GD\":                   reflect.ValueOf(elf.R_LARCH_SOP_PUSH_TLS_GD),\n\t\t\"R_LARCH_SOP_PUSH_TLS_GOT\":                  reflect.ValueOf(elf.R_LARCH_SOP_PUSH_TLS_GOT),\n\t\t\"R_LARCH_SOP_PUSH_TLS_TPREL\":                reflect.ValueOf(elf.R_LARCH_SOP_PUSH_TLS_TPREL),\n\t\t\"R_LARCH_SOP_SL\":                            reflect.ValueOf(elf.R_LARCH_SOP_SL),\n\t\t\"R_LARCH_SOP_SR\":                            reflect.ValueOf(elf.R_LARCH_SOP_SR),\n\t\t\"R_LARCH_SOP_SUB\":                           reflect.ValueOf(elf.R_LARCH_SOP_SUB),\n\t\t\"R_LARCH_SUB16\":                             reflect.ValueOf(elf.R_LARCH_SUB16),\n\t\t\"R_LARCH_SUB24\":                             reflect.ValueOf(elf.R_LARCH_SUB24),\n\t\t\"R_LARCH_SUB32\":                             reflect.ValueOf(elf.R_LARCH_SUB32),\n\t\t\"R_LARCH_SUB64\":                             reflect.ValueOf(elf.R_LARCH_SUB64),\n\t\t\"R_LARCH_SUB8\":                              reflect.ValueOf(elf.R_LARCH_SUB8),\n\t\t\"R_LARCH_TLS_DTPMOD32\":                      reflect.ValueOf(elf.R_LARCH_TLS_DTPMOD32),\n\t\t\"R_LARCH_TLS_DTPMOD64\":                      reflect.ValueOf(elf.R_LARCH_TLS_DTPMOD64),\n\t\t\"R_LARCH_TLS_DTPREL32\":                      reflect.ValueOf(elf.R_LARCH_TLS_DTPREL32),\n\t\t\"R_LARCH_TLS_DTPREL64\":                      reflect.ValueOf(elf.R_LARCH_TLS_DTPREL64),\n\t\t\"R_LARCH_TLS_GD_HI20\":                       reflect.ValueOf(elf.R_LARCH_TLS_GD_HI20),\n\t\t\"R_LARCH_TLS_GD_PC_HI20\":                    reflect.ValueOf(elf.R_LARCH_TLS_GD_PC_HI20),\n\t\t\"R_LARCH_TLS_IE64_HI12\":                     reflect.ValueOf(elf.R_LARCH_TLS_IE64_HI12),\n\t\t\"R_LARCH_TLS_IE64_LO20\":                     reflect.ValueOf(elf.R_LARCH_TLS_IE64_LO20),\n\t\t\"R_LARCH_TLS_IE64_PC_HI12\":                  reflect.ValueOf(elf.R_LARCH_TLS_IE64_PC_HI12),\n\t\t\"R_LARCH_TLS_IE64_PC_LO20\":                  reflect.ValueOf(elf.R_LARCH_TLS_IE64_PC_LO20),\n\t\t\"R_LARCH_TLS_IE_HI20\":                       reflect.ValueOf(elf.R_LARCH_TLS_IE_HI20),\n\t\t\"R_LARCH_TLS_IE_LO12\":                       reflect.ValueOf(elf.R_LARCH_TLS_IE_LO12),\n\t\t\"R_LARCH_TLS_IE_PC_HI20\":                    reflect.ValueOf(elf.R_LARCH_TLS_IE_PC_HI20),\n\t\t\"R_LARCH_TLS_IE_PC_LO12\":                    reflect.ValueOf(elf.R_LARCH_TLS_IE_PC_LO12),\n\t\t\"R_LARCH_TLS_LD_HI20\":                       reflect.ValueOf(elf.R_LARCH_TLS_LD_HI20),\n\t\t\"R_LARCH_TLS_LD_PC_HI20\":                    reflect.ValueOf(elf.R_LARCH_TLS_LD_PC_HI20),\n\t\t\"R_LARCH_TLS_LE64_HI12\":                     reflect.ValueOf(elf.R_LARCH_TLS_LE64_HI12),\n\t\t\"R_LARCH_TLS_LE64_LO20\":                     reflect.ValueOf(elf.R_LARCH_TLS_LE64_LO20),\n\t\t\"R_LARCH_TLS_LE_HI20\":                       reflect.ValueOf(elf.R_LARCH_TLS_LE_HI20),\n\t\t\"R_LARCH_TLS_LE_LO12\":                       reflect.ValueOf(elf.R_LARCH_TLS_LE_LO12),\n\t\t\"R_LARCH_TLS_TPREL32\":                       reflect.ValueOf(elf.R_LARCH_TLS_TPREL32),\n\t\t\"R_LARCH_TLS_TPREL64\":                       reflect.ValueOf(elf.R_LARCH_TLS_TPREL64),\n\t\t\"R_MIPS_16\":                                 reflect.ValueOf(elf.R_MIPS_16),\n\t\t\"R_MIPS_26\":                                 reflect.ValueOf(elf.R_MIPS_26),\n\t\t\"R_MIPS_32\":                                 reflect.ValueOf(elf.R_MIPS_32),\n\t\t\"R_MIPS_64\":                                 reflect.ValueOf(elf.R_MIPS_64),\n\t\t\"R_MIPS_ADD_IMMEDIATE\":                      reflect.ValueOf(elf.R_MIPS_ADD_IMMEDIATE),\n\t\t\"R_MIPS_CALL16\":                             reflect.ValueOf(elf.R_MIPS_CALL16),\n\t\t\"R_MIPS_CALL_HI16\":                          reflect.ValueOf(elf.R_MIPS_CALL_HI16),\n\t\t\"R_MIPS_CALL_LO16\":                          reflect.ValueOf(elf.R_MIPS_CALL_LO16),\n\t\t\"R_MIPS_DELETE\":                             reflect.ValueOf(elf.R_MIPS_DELETE),\n\t\t\"R_MIPS_GOT16\":                              reflect.ValueOf(elf.R_MIPS_GOT16),\n\t\t\"R_MIPS_GOT_DISP\":                           reflect.ValueOf(elf.R_MIPS_GOT_DISP),\n\t\t\"R_MIPS_GOT_HI16\":                           reflect.ValueOf(elf.R_MIPS_GOT_HI16),\n\t\t\"R_MIPS_GOT_LO16\":                           reflect.ValueOf(elf.R_MIPS_GOT_LO16),\n\t\t\"R_MIPS_GOT_OFST\":                           reflect.ValueOf(elf.R_MIPS_GOT_OFST),\n\t\t\"R_MIPS_GOT_PAGE\":                           reflect.ValueOf(elf.R_MIPS_GOT_PAGE),\n\t\t\"R_MIPS_GPREL16\":                            reflect.ValueOf(elf.R_MIPS_GPREL16),\n\t\t\"R_MIPS_GPREL32\":                            reflect.ValueOf(elf.R_MIPS_GPREL32),\n\t\t\"R_MIPS_HI16\":                               reflect.ValueOf(elf.R_MIPS_HI16),\n\t\t\"R_MIPS_HIGHER\":                             reflect.ValueOf(elf.R_MIPS_HIGHER),\n\t\t\"R_MIPS_HIGHEST\":                            reflect.ValueOf(elf.R_MIPS_HIGHEST),\n\t\t\"R_MIPS_INSERT_A\":                           reflect.ValueOf(elf.R_MIPS_INSERT_A),\n\t\t\"R_MIPS_INSERT_B\":                           reflect.ValueOf(elf.R_MIPS_INSERT_B),\n\t\t\"R_MIPS_JALR\":                               reflect.ValueOf(elf.R_MIPS_JALR),\n\t\t\"R_MIPS_LITERAL\":                            reflect.ValueOf(elf.R_MIPS_LITERAL),\n\t\t\"R_MIPS_LO16\":                               reflect.ValueOf(elf.R_MIPS_LO16),\n\t\t\"R_MIPS_NONE\":                               reflect.ValueOf(elf.R_MIPS_NONE),\n\t\t\"R_MIPS_PC16\":                               reflect.ValueOf(elf.R_MIPS_PC16),\n\t\t\"R_MIPS_PJUMP\":                              reflect.ValueOf(elf.R_MIPS_PJUMP),\n\t\t\"R_MIPS_REL16\":                              reflect.ValueOf(elf.R_MIPS_REL16),\n\t\t\"R_MIPS_REL32\":                              reflect.ValueOf(elf.R_MIPS_REL32),\n\t\t\"R_MIPS_RELGOT\":                             reflect.ValueOf(elf.R_MIPS_RELGOT),\n\t\t\"R_MIPS_SCN_DISP\":                           reflect.ValueOf(elf.R_MIPS_SCN_DISP),\n\t\t\"R_MIPS_SHIFT5\":                             reflect.ValueOf(elf.R_MIPS_SHIFT5),\n\t\t\"R_MIPS_SHIFT6\":                             reflect.ValueOf(elf.R_MIPS_SHIFT6),\n\t\t\"R_MIPS_SUB\":                                reflect.ValueOf(elf.R_MIPS_SUB),\n\t\t\"R_MIPS_TLS_DTPMOD32\":                       reflect.ValueOf(elf.R_MIPS_TLS_DTPMOD32),\n\t\t\"R_MIPS_TLS_DTPMOD64\":                       reflect.ValueOf(elf.R_MIPS_TLS_DTPMOD64),\n\t\t\"R_MIPS_TLS_DTPREL32\":                       reflect.ValueOf(elf.R_MIPS_TLS_DTPREL32),\n\t\t\"R_MIPS_TLS_DTPREL64\":                       reflect.ValueOf(elf.R_MIPS_TLS_DTPREL64),\n\t\t\"R_MIPS_TLS_DTPREL_HI16\":                    reflect.ValueOf(elf.R_MIPS_TLS_DTPREL_HI16),\n\t\t\"R_MIPS_TLS_DTPREL_LO16\":                    reflect.ValueOf(elf.R_MIPS_TLS_DTPREL_LO16),\n\t\t\"R_MIPS_TLS_GD\":                             reflect.ValueOf(elf.R_MIPS_TLS_GD),\n\t\t\"R_MIPS_TLS_GOTTPREL\":                       reflect.ValueOf(elf.R_MIPS_TLS_GOTTPREL),\n\t\t\"R_MIPS_TLS_LDM\":                            reflect.ValueOf(elf.R_MIPS_TLS_LDM),\n\t\t\"R_MIPS_TLS_TPREL32\":                        reflect.ValueOf(elf.R_MIPS_TLS_TPREL32),\n\t\t\"R_MIPS_TLS_TPREL64\":                        reflect.ValueOf(elf.R_MIPS_TLS_TPREL64),\n\t\t\"R_MIPS_TLS_TPREL_HI16\":                     reflect.ValueOf(elf.R_MIPS_TLS_TPREL_HI16),\n\t\t\"R_MIPS_TLS_TPREL_LO16\":                     reflect.ValueOf(elf.R_MIPS_TLS_TPREL_LO16),\n\t\t\"R_PPC64_ADDR14\":                            reflect.ValueOf(elf.R_PPC64_ADDR14),\n\t\t\"R_PPC64_ADDR14_BRNTAKEN\":                   reflect.ValueOf(elf.R_PPC64_ADDR14_BRNTAKEN),\n\t\t\"R_PPC64_ADDR14_BRTAKEN\":                    reflect.ValueOf(elf.R_PPC64_ADDR14_BRTAKEN),\n\t\t\"R_PPC64_ADDR16\":                            reflect.ValueOf(elf.R_PPC64_ADDR16),\n\t\t\"R_PPC64_ADDR16_DS\":                         reflect.ValueOf(elf.R_PPC64_ADDR16_DS),\n\t\t\"R_PPC64_ADDR16_HA\":                         reflect.ValueOf(elf.R_PPC64_ADDR16_HA),\n\t\t\"R_PPC64_ADDR16_HI\":                         reflect.ValueOf(elf.R_PPC64_ADDR16_HI),\n\t\t\"R_PPC64_ADDR16_HIGH\":                       reflect.ValueOf(elf.R_PPC64_ADDR16_HIGH),\n\t\t\"R_PPC64_ADDR16_HIGHA\":                      reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHA),\n\t\t\"R_PPC64_ADDR16_HIGHER\":                     reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHER),\n\t\t\"R_PPC64_ADDR16_HIGHER34\":                   reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHER34),\n\t\t\"R_PPC64_ADDR16_HIGHERA\":                    reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHERA),\n\t\t\"R_PPC64_ADDR16_HIGHERA34\":                  reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHERA34),\n\t\t\"R_PPC64_ADDR16_HIGHEST\":                    reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHEST),\n\t\t\"R_PPC64_ADDR16_HIGHEST34\":                  reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHEST34),\n\t\t\"R_PPC64_ADDR16_HIGHESTA\":                   reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHESTA),\n\t\t\"R_PPC64_ADDR16_HIGHESTA34\":                 reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHESTA34),\n\t\t\"R_PPC64_ADDR16_LO\":                         reflect.ValueOf(elf.R_PPC64_ADDR16_LO),\n\t\t\"R_PPC64_ADDR16_LO_DS\":                      reflect.ValueOf(elf.R_PPC64_ADDR16_LO_DS),\n\t\t\"R_PPC64_ADDR24\":                            reflect.ValueOf(elf.R_PPC64_ADDR24),\n\t\t\"R_PPC64_ADDR32\":                            reflect.ValueOf(elf.R_PPC64_ADDR32),\n\t\t\"R_PPC64_ADDR64\":                            reflect.ValueOf(elf.R_PPC64_ADDR64),\n\t\t\"R_PPC64_ADDR64_LOCAL\":                      reflect.ValueOf(elf.R_PPC64_ADDR64_LOCAL),\n\t\t\"R_PPC64_COPY\":                              reflect.ValueOf(elf.R_PPC64_COPY),\n\t\t\"R_PPC64_D28\":                               reflect.ValueOf(elf.R_PPC64_D28),\n\t\t\"R_PPC64_D34\":                               reflect.ValueOf(elf.R_PPC64_D34),\n\t\t\"R_PPC64_D34_HA30\":                          reflect.ValueOf(elf.R_PPC64_D34_HA30),\n\t\t\"R_PPC64_D34_HI30\":                          reflect.ValueOf(elf.R_PPC64_D34_HI30),\n\t\t\"R_PPC64_D34_LO\":                            reflect.ValueOf(elf.R_PPC64_D34_LO),\n\t\t\"R_PPC64_DTPMOD64\":                          reflect.ValueOf(elf.R_PPC64_DTPMOD64),\n\t\t\"R_PPC64_DTPREL16\":                          reflect.ValueOf(elf.R_PPC64_DTPREL16),\n\t\t\"R_PPC64_DTPREL16_DS\":                       reflect.ValueOf(elf.R_PPC64_DTPREL16_DS),\n\t\t\"R_PPC64_DTPREL16_HA\":                       reflect.ValueOf(elf.R_PPC64_DTPREL16_HA),\n\t\t\"R_PPC64_DTPREL16_HI\":                       reflect.ValueOf(elf.R_PPC64_DTPREL16_HI),\n\t\t\"R_PPC64_DTPREL16_HIGH\":                     reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGH),\n\t\t\"R_PPC64_DTPREL16_HIGHA\":                    reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHA),\n\t\t\"R_PPC64_DTPREL16_HIGHER\":                   reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHER),\n\t\t\"R_PPC64_DTPREL16_HIGHERA\":                  reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHERA),\n\t\t\"R_PPC64_DTPREL16_HIGHEST\":                  reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHEST),\n\t\t\"R_PPC64_DTPREL16_HIGHESTA\":                 reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHESTA),\n\t\t\"R_PPC64_DTPREL16_LO\":                       reflect.ValueOf(elf.R_PPC64_DTPREL16_LO),\n\t\t\"R_PPC64_DTPREL16_LO_DS\":                    reflect.ValueOf(elf.R_PPC64_DTPREL16_LO_DS),\n\t\t\"R_PPC64_DTPREL34\":                          reflect.ValueOf(elf.R_PPC64_DTPREL34),\n\t\t\"R_PPC64_DTPREL64\":                          reflect.ValueOf(elf.R_PPC64_DTPREL64),\n\t\t\"R_PPC64_ENTRY\":                             reflect.ValueOf(elf.R_PPC64_ENTRY),\n\t\t\"R_PPC64_GLOB_DAT\":                          reflect.ValueOf(elf.R_PPC64_GLOB_DAT),\n\t\t\"R_PPC64_GNU_VTENTRY\":                       reflect.ValueOf(elf.R_PPC64_GNU_VTENTRY),\n\t\t\"R_PPC64_GNU_VTINHERIT\":                     reflect.ValueOf(elf.R_PPC64_GNU_VTINHERIT),\n\t\t\"R_PPC64_GOT16\":                             reflect.ValueOf(elf.R_PPC64_GOT16),\n\t\t\"R_PPC64_GOT16_DS\":                          reflect.ValueOf(elf.R_PPC64_GOT16_DS),\n\t\t\"R_PPC64_GOT16_HA\":                          reflect.ValueOf(elf.R_PPC64_GOT16_HA),\n\t\t\"R_PPC64_GOT16_HI\":                          reflect.ValueOf(elf.R_PPC64_GOT16_HI),\n\t\t\"R_PPC64_GOT16_LO\":                          reflect.ValueOf(elf.R_PPC64_GOT16_LO),\n\t\t\"R_PPC64_GOT16_LO_DS\":                       reflect.ValueOf(elf.R_PPC64_GOT16_LO_DS),\n\t\t\"R_PPC64_GOT_DTPREL16_DS\":                   reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_DS),\n\t\t\"R_PPC64_GOT_DTPREL16_HA\":                   reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_HA),\n\t\t\"R_PPC64_GOT_DTPREL16_HI\":                   reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_HI),\n\t\t\"R_PPC64_GOT_DTPREL16_LO_DS\":                reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_LO_DS),\n\t\t\"R_PPC64_GOT_DTPREL_PCREL34\":                reflect.ValueOf(elf.R_PPC64_GOT_DTPREL_PCREL34),\n\t\t\"R_PPC64_GOT_PCREL34\":                       reflect.ValueOf(elf.R_PPC64_GOT_PCREL34),\n\t\t\"R_PPC64_GOT_TLSGD16\":                       reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16),\n\t\t\"R_PPC64_GOT_TLSGD16_HA\":                    reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16_HA),\n\t\t\"R_PPC64_GOT_TLSGD16_HI\":                    reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16_HI),\n\t\t\"R_PPC64_GOT_TLSGD16_LO\":                    reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16_LO),\n\t\t\"R_PPC64_GOT_TLSGD_PCREL34\":                 reflect.ValueOf(elf.R_PPC64_GOT_TLSGD_PCREL34),\n\t\t\"R_PPC64_GOT_TLSLD16\":                       reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16),\n\t\t\"R_PPC64_GOT_TLSLD16_HA\":                    reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16_HA),\n\t\t\"R_PPC64_GOT_TLSLD16_HI\":                    reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16_HI),\n\t\t\"R_PPC64_GOT_TLSLD16_LO\":                    reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16_LO),\n\t\t\"R_PPC64_GOT_TLSLD_PCREL34\":                 reflect.ValueOf(elf.R_PPC64_GOT_TLSLD_PCREL34),\n\t\t\"R_PPC64_GOT_TPREL16_DS\":                    reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_DS),\n\t\t\"R_PPC64_GOT_TPREL16_HA\":                    reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_HA),\n\t\t\"R_PPC64_GOT_TPREL16_HI\":                    reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_HI),\n\t\t\"R_PPC64_GOT_TPREL16_LO_DS\":                 reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_LO_DS),\n\t\t\"R_PPC64_GOT_TPREL_PCREL34\":                 reflect.ValueOf(elf.R_PPC64_GOT_TPREL_PCREL34),\n\t\t\"R_PPC64_IRELATIVE\":                         reflect.ValueOf(elf.R_PPC64_IRELATIVE),\n\t\t\"R_PPC64_JMP_IREL\":                          reflect.ValueOf(elf.R_PPC64_JMP_IREL),\n\t\t\"R_PPC64_JMP_SLOT\":                          reflect.ValueOf(elf.R_PPC64_JMP_SLOT),\n\t\t\"R_PPC64_NONE\":                              reflect.ValueOf(elf.R_PPC64_NONE),\n\t\t\"R_PPC64_PCREL28\":                           reflect.ValueOf(elf.R_PPC64_PCREL28),\n\t\t\"R_PPC64_PCREL34\":                           reflect.ValueOf(elf.R_PPC64_PCREL34),\n\t\t\"R_PPC64_PCREL_OPT\":                         reflect.ValueOf(elf.R_PPC64_PCREL_OPT),\n\t\t\"R_PPC64_PLT16_HA\":                          reflect.ValueOf(elf.R_PPC64_PLT16_HA),\n\t\t\"R_PPC64_PLT16_HI\":                          reflect.ValueOf(elf.R_PPC64_PLT16_HI),\n\t\t\"R_PPC64_PLT16_LO\":                          reflect.ValueOf(elf.R_PPC64_PLT16_LO),\n\t\t\"R_PPC64_PLT16_LO_DS\":                       reflect.ValueOf(elf.R_PPC64_PLT16_LO_DS),\n\t\t\"R_PPC64_PLT32\":                             reflect.ValueOf(elf.R_PPC64_PLT32),\n\t\t\"R_PPC64_PLT64\":                             reflect.ValueOf(elf.R_PPC64_PLT64),\n\t\t\"R_PPC64_PLTCALL\":                           reflect.ValueOf(elf.R_PPC64_PLTCALL),\n\t\t\"R_PPC64_PLTCALL_NOTOC\":                     reflect.ValueOf(elf.R_PPC64_PLTCALL_NOTOC),\n\t\t\"R_PPC64_PLTGOT16\":                          reflect.ValueOf(elf.R_PPC64_PLTGOT16),\n\t\t\"R_PPC64_PLTGOT16_DS\":                       reflect.ValueOf(elf.R_PPC64_PLTGOT16_DS),\n\t\t\"R_PPC64_PLTGOT16_HA\":                       reflect.ValueOf(elf.R_PPC64_PLTGOT16_HA),\n\t\t\"R_PPC64_PLTGOT16_HI\":                       reflect.ValueOf(elf.R_PPC64_PLTGOT16_HI),\n\t\t\"R_PPC64_PLTGOT16_LO\":                       reflect.ValueOf(elf.R_PPC64_PLTGOT16_LO),\n\t\t\"R_PPC64_PLTGOT_LO_DS\":                      reflect.ValueOf(elf.R_PPC64_PLTGOT_LO_DS),\n\t\t\"R_PPC64_PLTREL32\":                          reflect.ValueOf(elf.R_PPC64_PLTREL32),\n\t\t\"R_PPC64_PLTREL64\":                          reflect.ValueOf(elf.R_PPC64_PLTREL64),\n\t\t\"R_PPC64_PLTSEQ\":                            reflect.ValueOf(elf.R_PPC64_PLTSEQ),\n\t\t\"R_PPC64_PLTSEQ_NOTOC\":                      reflect.ValueOf(elf.R_PPC64_PLTSEQ_NOTOC),\n\t\t\"R_PPC64_PLT_PCREL34\":                       reflect.ValueOf(elf.R_PPC64_PLT_PCREL34),\n\t\t\"R_PPC64_PLT_PCREL34_NOTOC\":                 reflect.ValueOf(elf.R_PPC64_PLT_PCREL34_NOTOC),\n\t\t\"R_PPC64_REL14\":                             reflect.ValueOf(elf.R_PPC64_REL14),\n\t\t\"R_PPC64_REL14_BRNTAKEN\":                    reflect.ValueOf(elf.R_PPC64_REL14_BRNTAKEN),\n\t\t\"R_PPC64_REL14_BRTAKEN\":                     reflect.ValueOf(elf.R_PPC64_REL14_BRTAKEN),\n\t\t\"R_PPC64_REL16\":                             reflect.ValueOf(elf.R_PPC64_REL16),\n\t\t\"R_PPC64_REL16DX_HA\":                        reflect.ValueOf(elf.R_PPC64_REL16DX_HA),\n\t\t\"R_PPC64_REL16_HA\":                          reflect.ValueOf(elf.R_PPC64_REL16_HA),\n\t\t\"R_PPC64_REL16_HI\":                          reflect.ValueOf(elf.R_PPC64_REL16_HI),\n\t\t\"R_PPC64_REL16_HIGH\":                        reflect.ValueOf(elf.R_PPC64_REL16_HIGH),\n\t\t\"R_PPC64_REL16_HIGHA\":                       reflect.ValueOf(elf.R_PPC64_REL16_HIGHA),\n\t\t\"R_PPC64_REL16_HIGHER\":                      reflect.ValueOf(elf.R_PPC64_REL16_HIGHER),\n\t\t\"R_PPC64_REL16_HIGHER34\":                    reflect.ValueOf(elf.R_PPC64_REL16_HIGHER34),\n\t\t\"R_PPC64_REL16_HIGHERA\":                     reflect.ValueOf(elf.R_PPC64_REL16_HIGHERA),\n\t\t\"R_PPC64_REL16_HIGHERA34\":                   reflect.ValueOf(elf.R_PPC64_REL16_HIGHERA34),\n\t\t\"R_PPC64_REL16_HIGHEST\":                     reflect.ValueOf(elf.R_PPC64_REL16_HIGHEST),\n\t\t\"R_PPC64_REL16_HIGHEST34\":                   reflect.ValueOf(elf.R_PPC64_REL16_HIGHEST34),\n\t\t\"R_PPC64_REL16_HIGHESTA\":                    reflect.ValueOf(elf.R_PPC64_REL16_HIGHESTA),\n\t\t\"R_PPC64_REL16_HIGHESTA34\":                  reflect.ValueOf(elf.R_PPC64_REL16_HIGHESTA34),\n\t\t\"R_PPC64_REL16_LO\":                          reflect.ValueOf(elf.R_PPC64_REL16_LO),\n\t\t\"R_PPC64_REL24\":                             reflect.ValueOf(elf.R_PPC64_REL24),\n\t\t\"R_PPC64_REL24_NOTOC\":                       reflect.ValueOf(elf.R_PPC64_REL24_NOTOC),\n\t\t\"R_PPC64_REL24_P9NOTOC\":                     reflect.ValueOf(elf.R_PPC64_REL24_P9NOTOC),\n\t\t\"R_PPC64_REL30\":                             reflect.ValueOf(elf.R_PPC64_REL30),\n\t\t\"R_PPC64_REL32\":                             reflect.ValueOf(elf.R_PPC64_REL32),\n\t\t\"R_PPC64_REL64\":                             reflect.ValueOf(elf.R_PPC64_REL64),\n\t\t\"R_PPC64_RELATIVE\":                          reflect.ValueOf(elf.R_PPC64_RELATIVE),\n\t\t\"R_PPC64_SECTOFF\":                           reflect.ValueOf(elf.R_PPC64_SECTOFF),\n\t\t\"R_PPC64_SECTOFF_DS\":                        reflect.ValueOf(elf.R_PPC64_SECTOFF_DS),\n\t\t\"R_PPC64_SECTOFF_HA\":                        reflect.ValueOf(elf.R_PPC64_SECTOFF_HA),\n\t\t\"R_PPC64_SECTOFF_HI\":                        reflect.ValueOf(elf.R_PPC64_SECTOFF_HI),\n\t\t\"R_PPC64_SECTOFF_LO\":                        reflect.ValueOf(elf.R_PPC64_SECTOFF_LO),\n\t\t\"R_PPC64_SECTOFF_LO_DS\":                     reflect.ValueOf(elf.R_PPC64_SECTOFF_LO_DS),\n\t\t\"R_PPC64_TLS\":                               reflect.ValueOf(elf.R_PPC64_TLS),\n\t\t\"R_PPC64_TLSGD\":                             reflect.ValueOf(elf.R_PPC64_TLSGD),\n\t\t\"R_PPC64_TLSLD\":                             reflect.ValueOf(elf.R_PPC64_TLSLD),\n\t\t\"R_PPC64_TOC\":                               reflect.ValueOf(elf.R_PPC64_TOC),\n\t\t\"R_PPC64_TOC16\":                             reflect.ValueOf(elf.R_PPC64_TOC16),\n\t\t\"R_PPC64_TOC16_DS\":                          reflect.ValueOf(elf.R_PPC64_TOC16_DS),\n\t\t\"R_PPC64_TOC16_HA\":                          reflect.ValueOf(elf.R_PPC64_TOC16_HA),\n\t\t\"R_PPC64_TOC16_HI\":                          reflect.ValueOf(elf.R_PPC64_TOC16_HI),\n\t\t\"R_PPC64_TOC16_LO\":                          reflect.ValueOf(elf.R_PPC64_TOC16_LO),\n\t\t\"R_PPC64_TOC16_LO_DS\":                       reflect.ValueOf(elf.R_PPC64_TOC16_LO_DS),\n\t\t\"R_PPC64_TOCSAVE\":                           reflect.ValueOf(elf.R_PPC64_TOCSAVE),\n\t\t\"R_PPC64_TPREL16\":                           reflect.ValueOf(elf.R_PPC64_TPREL16),\n\t\t\"R_PPC64_TPREL16_DS\":                        reflect.ValueOf(elf.R_PPC64_TPREL16_DS),\n\t\t\"R_PPC64_TPREL16_HA\":                        reflect.ValueOf(elf.R_PPC64_TPREL16_HA),\n\t\t\"R_PPC64_TPREL16_HI\":                        reflect.ValueOf(elf.R_PPC64_TPREL16_HI),\n\t\t\"R_PPC64_TPREL16_HIGH\":                      reflect.ValueOf(elf.R_PPC64_TPREL16_HIGH),\n\t\t\"R_PPC64_TPREL16_HIGHA\":                     reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHA),\n\t\t\"R_PPC64_TPREL16_HIGHER\":                    reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHER),\n\t\t\"R_PPC64_TPREL16_HIGHERA\":                   reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHERA),\n\t\t\"R_PPC64_TPREL16_HIGHEST\":                   reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHEST),\n\t\t\"R_PPC64_TPREL16_HIGHESTA\":                  reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHESTA),\n\t\t\"R_PPC64_TPREL16_LO\":                        reflect.ValueOf(elf.R_PPC64_TPREL16_LO),\n\t\t\"R_PPC64_TPREL16_LO_DS\":                     reflect.ValueOf(elf.R_PPC64_TPREL16_LO_DS),\n\t\t\"R_PPC64_TPREL34\":                           reflect.ValueOf(elf.R_PPC64_TPREL34),\n\t\t\"R_PPC64_TPREL64\":                           reflect.ValueOf(elf.R_PPC64_TPREL64),\n\t\t\"R_PPC64_UADDR16\":                           reflect.ValueOf(elf.R_PPC64_UADDR16),\n\t\t\"R_PPC64_UADDR32\":                           reflect.ValueOf(elf.R_PPC64_UADDR32),\n\t\t\"R_PPC64_UADDR64\":                           reflect.ValueOf(elf.R_PPC64_UADDR64),\n\t\t\"R_PPC_ADDR14\":                              reflect.ValueOf(elf.R_PPC_ADDR14),\n\t\t\"R_PPC_ADDR14_BRNTAKEN\":                     reflect.ValueOf(elf.R_PPC_ADDR14_BRNTAKEN),\n\t\t\"R_PPC_ADDR14_BRTAKEN\":                      reflect.ValueOf(elf.R_PPC_ADDR14_BRTAKEN),\n\t\t\"R_PPC_ADDR16\":                              reflect.ValueOf(elf.R_PPC_ADDR16),\n\t\t\"R_PPC_ADDR16_HA\":                           reflect.ValueOf(elf.R_PPC_ADDR16_HA),\n\t\t\"R_PPC_ADDR16_HI\":                           reflect.ValueOf(elf.R_PPC_ADDR16_HI),\n\t\t\"R_PPC_ADDR16_LO\":                           reflect.ValueOf(elf.R_PPC_ADDR16_LO),\n\t\t\"R_PPC_ADDR24\":                              reflect.ValueOf(elf.R_PPC_ADDR24),\n\t\t\"R_PPC_ADDR32\":                              reflect.ValueOf(elf.R_PPC_ADDR32),\n\t\t\"R_PPC_COPY\":                                reflect.ValueOf(elf.R_PPC_COPY),\n\t\t\"R_PPC_DTPMOD32\":                            reflect.ValueOf(elf.R_PPC_DTPMOD32),\n\t\t\"R_PPC_DTPREL16\":                            reflect.ValueOf(elf.R_PPC_DTPREL16),\n\t\t\"R_PPC_DTPREL16_HA\":                         reflect.ValueOf(elf.R_PPC_DTPREL16_HA),\n\t\t\"R_PPC_DTPREL16_HI\":                         reflect.ValueOf(elf.R_PPC_DTPREL16_HI),\n\t\t\"R_PPC_DTPREL16_LO\":                         reflect.ValueOf(elf.R_PPC_DTPREL16_LO),\n\t\t\"R_PPC_DTPREL32\":                            reflect.ValueOf(elf.R_PPC_DTPREL32),\n\t\t\"R_PPC_EMB_BIT_FLD\":                         reflect.ValueOf(elf.R_PPC_EMB_BIT_FLD),\n\t\t\"R_PPC_EMB_MRKREF\":                          reflect.ValueOf(elf.R_PPC_EMB_MRKREF),\n\t\t\"R_PPC_EMB_NADDR16\":                         reflect.ValueOf(elf.R_PPC_EMB_NADDR16),\n\t\t\"R_PPC_EMB_NADDR16_HA\":                      reflect.ValueOf(elf.R_PPC_EMB_NADDR16_HA),\n\t\t\"R_PPC_EMB_NADDR16_HI\":                      reflect.ValueOf(elf.R_PPC_EMB_NADDR16_HI),\n\t\t\"R_PPC_EMB_NADDR16_LO\":                      reflect.ValueOf(elf.R_PPC_EMB_NADDR16_LO),\n\t\t\"R_PPC_EMB_NADDR32\":                         reflect.ValueOf(elf.R_PPC_EMB_NADDR32),\n\t\t\"R_PPC_EMB_RELSDA\":                          reflect.ValueOf(elf.R_PPC_EMB_RELSDA),\n\t\t\"R_PPC_EMB_RELSEC16\":                        reflect.ValueOf(elf.R_PPC_EMB_RELSEC16),\n\t\t\"R_PPC_EMB_RELST_HA\":                        reflect.ValueOf(elf.R_PPC_EMB_RELST_HA),\n\t\t\"R_PPC_EMB_RELST_HI\":                        reflect.ValueOf(elf.R_PPC_EMB_RELST_HI),\n\t\t\"R_PPC_EMB_RELST_LO\":                        reflect.ValueOf(elf.R_PPC_EMB_RELST_LO),\n\t\t\"R_PPC_EMB_SDA21\":                           reflect.ValueOf(elf.R_PPC_EMB_SDA21),\n\t\t\"R_PPC_EMB_SDA2I16\":                         reflect.ValueOf(elf.R_PPC_EMB_SDA2I16),\n\t\t\"R_PPC_EMB_SDA2REL\":                         reflect.ValueOf(elf.R_PPC_EMB_SDA2REL),\n\t\t\"R_PPC_EMB_SDAI16\":                          reflect.ValueOf(elf.R_PPC_EMB_SDAI16),\n\t\t\"R_PPC_GLOB_DAT\":                            reflect.ValueOf(elf.R_PPC_GLOB_DAT),\n\t\t\"R_PPC_GOT16\":                               reflect.ValueOf(elf.R_PPC_GOT16),\n\t\t\"R_PPC_GOT16_HA\":                            reflect.ValueOf(elf.R_PPC_GOT16_HA),\n\t\t\"R_PPC_GOT16_HI\":                            reflect.ValueOf(elf.R_PPC_GOT16_HI),\n\t\t\"R_PPC_GOT16_LO\":                            reflect.ValueOf(elf.R_PPC_GOT16_LO),\n\t\t\"R_PPC_GOT_TLSGD16\":                         reflect.ValueOf(elf.R_PPC_GOT_TLSGD16),\n\t\t\"R_PPC_GOT_TLSGD16_HA\":                      reflect.ValueOf(elf.R_PPC_GOT_TLSGD16_HA),\n\t\t\"R_PPC_GOT_TLSGD16_HI\":                      reflect.ValueOf(elf.R_PPC_GOT_TLSGD16_HI),\n\t\t\"R_PPC_GOT_TLSGD16_LO\":                      reflect.ValueOf(elf.R_PPC_GOT_TLSGD16_LO),\n\t\t\"R_PPC_GOT_TLSLD16\":                         reflect.ValueOf(elf.R_PPC_GOT_TLSLD16),\n\t\t\"R_PPC_GOT_TLSLD16_HA\":                      reflect.ValueOf(elf.R_PPC_GOT_TLSLD16_HA),\n\t\t\"R_PPC_GOT_TLSLD16_HI\":                      reflect.ValueOf(elf.R_PPC_GOT_TLSLD16_HI),\n\t\t\"R_PPC_GOT_TLSLD16_LO\":                      reflect.ValueOf(elf.R_PPC_GOT_TLSLD16_LO),\n\t\t\"R_PPC_GOT_TPREL16\":                         reflect.ValueOf(elf.R_PPC_GOT_TPREL16),\n\t\t\"R_PPC_GOT_TPREL16_HA\":                      reflect.ValueOf(elf.R_PPC_GOT_TPREL16_HA),\n\t\t\"R_PPC_GOT_TPREL16_HI\":                      reflect.ValueOf(elf.R_PPC_GOT_TPREL16_HI),\n\t\t\"R_PPC_GOT_TPREL16_LO\":                      reflect.ValueOf(elf.R_PPC_GOT_TPREL16_LO),\n\t\t\"R_PPC_JMP_SLOT\":                            reflect.ValueOf(elf.R_PPC_JMP_SLOT),\n\t\t\"R_PPC_LOCAL24PC\":                           reflect.ValueOf(elf.R_PPC_LOCAL24PC),\n\t\t\"R_PPC_NONE\":                                reflect.ValueOf(elf.R_PPC_NONE),\n\t\t\"R_PPC_PLT16_HA\":                            reflect.ValueOf(elf.R_PPC_PLT16_HA),\n\t\t\"R_PPC_PLT16_HI\":                            reflect.ValueOf(elf.R_PPC_PLT16_HI),\n\t\t\"R_PPC_PLT16_LO\":                            reflect.ValueOf(elf.R_PPC_PLT16_LO),\n\t\t\"R_PPC_PLT32\":                               reflect.ValueOf(elf.R_PPC_PLT32),\n\t\t\"R_PPC_PLTREL24\":                            reflect.ValueOf(elf.R_PPC_PLTREL24),\n\t\t\"R_PPC_PLTREL32\":                            reflect.ValueOf(elf.R_PPC_PLTREL32),\n\t\t\"R_PPC_REL14\":                               reflect.ValueOf(elf.R_PPC_REL14),\n\t\t\"R_PPC_REL14_BRNTAKEN\":                      reflect.ValueOf(elf.R_PPC_REL14_BRNTAKEN),\n\t\t\"R_PPC_REL14_BRTAKEN\":                       reflect.ValueOf(elf.R_PPC_REL14_BRTAKEN),\n\t\t\"R_PPC_REL24\":                               reflect.ValueOf(elf.R_PPC_REL24),\n\t\t\"R_PPC_REL32\":                               reflect.ValueOf(elf.R_PPC_REL32),\n\t\t\"R_PPC_RELATIVE\":                            reflect.ValueOf(elf.R_PPC_RELATIVE),\n\t\t\"R_PPC_SDAREL16\":                            reflect.ValueOf(elf.R_PPC_SDAREL16),\n\t\t\"R_PPC_SECTOFF\":                             reflect.ValueOf(elf.R_PPC_SECTOFF),\n\t\t\"R_PPC_SECTOFF_HA\":                          reflect.ValueOf(elf.R_PPC_SECTOFF_HA),\n\t\t\"R_PPC_SECTOFF_HI\":                          reflect.ValueOf(elf.R_PPC_SECTOFF_HI),\n\t\t\"R_PPC_SECTOFF_LO\":                          reflect.ValueOf(elf.R_PPC_SECTOFF_LO),\n\t\t\"R_PPC_TLS\":                                 reflect.ValueOf(elf.R_PPC_TLS),\n\t\t\"R_PPC_TPREL16\":                             reflect.ValueOf(elf.R_PPC_TPREL16),\n\t\t\"R_PPC_TPREL16_HA\":                          reflect.ValueOf(elf.R_PPC_TPREL16_HA),\n\t\t\"R_PPC_TPREL16_HI\":                          reflect.ValueOf(elf.R_PPC_TPREL16_HI),\n\t\t\"R_PPC_TPREL16_LO\":                          reflect.ValueOf(elf.R_PPC_TPREL16_LO),\n\t\t\"R_PPC_TPREL32\":                             reflect.ValueOf(elf.R_PPC_TPREL32),\n\t\t\"R_PPC_UADDR16\":                             reflect.ValueOf(elf.R_PPC_UADDR16),\n\t\t\"R_PPC_UADDR32\":                             reflect.ValueOf(elf.R_PPC_UADDR32),\n\t\t\"R_RISCV_32\":                                reflect.ValueOf(elf.R_RISCV_32),\n\t\t\"R_RISCV_32_PCREL\":                          reflect.ValueOf(elf.R_RISCV_32_PCREL),\n\t\t\"R_RISCV_64\":                                reflect.ValueOf(elf.R_RISCV_64),\n\t\t\"R_RISCV_ADD16\":                             reflect.ValueOf(elf.R_RISCV_ADD16),\n\t\t\"R_RISCV_ADD32\":                             reflect.ValueOf(elf.R_RISCV_ADD32),\n\t\t\"R_RISCV_ADD64\":                             reflect.ValueOf(elf.R_RISCV_ADD64),\n\t\t\"R_RISCV_ADD8\":                              reflect.ValueOf(elf.R_RISCV_ADD8),\n\t\t\"R_RISCV_ALIGN\":                             reflect.ValueOf(elf.R_RISCV_ALIGN),\n\t\t\"R_RISCV_BRANCH\":                            reflect.ValueOf(elf.R_RISCV_BRANCH),\n\t\t\"R_RISCV_CALL\":                              reflect.ValueOf(elf.R_RISCV_CALL),\n\t\t\"R_RISCV_CALL_PLT\":                          reflect.ValueOf(elf.R_RISCV_CALL_PLT),\n\t\t\"R_RISCV_COPY\":                              reflect.ValueOf(elf.R_RISCV_COPY),\n\t\t\"R_RISCV_GNU_VTENTRY\":                       reflect.ValueOf(elf.R_RISCV_GNU_VTENTRY),\n\t\t\"R_RISCV_GNU_VTINHERIT\":                     reflect.ValueOf(elf.R_RISCV_GNU_VTINHERIT),\n\t\t\"R_RISCV_GOT_HI20\":                          reflect.ValueOf(elf.R_RISCV_GOT_HI20),\n\t\t\"R_RISCV_GPREL_I\":                           reflect.ValueOf(elf.R_RISCV_GPREL_I),\n\t\t\"R_RISCV_GPREL_S\":                           reflect.ValueOf(elf.R_RISCV_GPREL_S),\n\t\t\"R_RISCV_HI20\":                              reflect.ValueOf(elf.R_RISCV_HI20),\n\t\t\"R_RISCV_JAL\":                               reflect.ValueOf(elf.R_RISCV_JAL),\n\t\t\"R_RISCV_JUMP_SLOT\":                         reflect.ValueOf(elf.R_RISCV_JUMP_SLOT),\n\t\t\"R_RISCV_LO12_I\":                            reflect.ValueOf(elf.R_RISCV_LO12_I),\n\t\t\"R_RISCV_LO12_S\":                            reflect.ValueOf(elf.R_RISCV_LO12_S),\n\t\t\"R_RISCV_NONE\":                              reflect.ValueOf(elf.R_RISCV_NONE),\n\t\t\"R_RISCV_PCREL_HI20\":                        reflect.ValueOf(elf.R_RISCV_PCREL_HI20),\n\t\t\"R_RISCV_PCREL_LO12_I\":                      reflect.ValueOf(elf.R_RISCV_PCREL_LO12_I),\n\t\t\"R_RISCV_PCREL_LO12_S\":                      reflect.ValueOf(elf.R_RISCV_PCREL_LO12_S),\n\t\t\"R_RISCV_RELATIVE\":                          reflect.ValueOf(elf.R_RISCV_RELATIVE),\n\t\t\"R_RISCV_RELAX\":                             reflect.ValueOf(elf.R_RISCV_RELAX),\n\t\t\"R_RISCV_RVC_BRANCH\":                        reflect.ValueOf(elf.R_RISCV_RVC_BRANCH),\n\t\t\"R_RISCV_RVC_JUMP\":                          reflect.ValueOf(elf.R_RISCV_RVC_JUMP),\n\t\t\"R_RISCV_RVC_LUI\":                           reflect.ValueOf(elf.R_RISCV_RVC_LUI),\n\t\t\"R_RISCV_SET16\":                             reflect.ValueOf(elf.R_RISCV_SET16),\n\t\t\"R_RISCV_SET32\":                             reflect.ValueOf(elf.R_RISCV_SET32),\n\t\t\"R_RISCV_SET6\":                              reflect.ValueOf(elf.R_RISCV_SET6),\n\t\t\"R_RISCV_SET8\":                              reflect.ValueOf(elf.R_RISCV_SET8),\n\t\t\"R_RISCV_SUB16\":                             reflect.ValueOf(elf.R_RISCV_SUB16),\n\t\t\"R_RISCV_SUB32\":                             reflect.ValueOf(elf.R_RISCV_SUB32),\n\t\t\"R_RISCV_SUB6\":                              reflect.ValueOf(elf.R_RISCV_SUB6),\n\t\t\"R_RISCV_SUB64\":                             reflect.ValueOf(elf.R_RISCV_SUB64),\n\t\t\"R_RISCV_SUB8\":                              reflect.ValueOf(elf.R_RISCV_SUB8),\n\t\t\"R_RISCV_TLS_DTPMOD32\":                      reflect.ValueOf(elf.R_RISCV_TLS_DTPMOD32),\n\t\t\"R_RISCV_TLS_DTPMOD64\":                      reflect.ValueOf(elf.R_RISCV_TLS_DTPMOD64),\n\t\t\"R_RISCV_TLS_DTPREL32\":                      reflect.ValueOf(elf.R_RISCV_TLS_DTPREL32),\n\t\t\"R_RISCV_TLS_DTPREL64\":                      reflect.ValueOf(elf.R_RISCV_TLS_DTPREL64),\n\t\t\"R_RISCV_TLS_GD_HI20\":                       reflect.ValueOf(elf.R_RISCV_TLS_GD_HI20),\n\t\t\"R_RISCV_TLS_GOT_HI20\":                      reflect.ValueOf(elf.R_RISCV_TLS_GOT_HI20),\n\t\t\"R_RISCV_TLS_TPREL32\":                       reflect.ValueOf(elf.R_RISCV_TLS_TPREL32),\n\t\t\"R_RISCV_TLS_TPREL64\":                       reflect.ValueOf(elf.R_RISCV_TLS_TPREL64),\n\t\t\"R_RISCV_TPREL_ADD\":                         reflect.ValueOf(elf.R_RISCV_TPREL_ADD),\n\t\t\"R_RISCV_TPREL_HI20\":                        reflect.ValueOf(elf.R_RISCV_TPREL_HI20),\n\t\t\"R_RISCV_TPREL_I\":                           reflect.ValueOf(elf.R_RISCV_TPREL_I),\n\t\t\"R_RISCV_TPREL_LO12_I\":                      reflect.ValueOf(elf.R_RISCV_TPREL_LO12_I),\n\t\t\"R_RISCV_TPREL_LO12_S\":                      reflect.ValueOf(elf.R_RISCV_TPREL_LO12_S),\n\t\t\"R_RISCV_TPREL_S\":                           reflect.ValueOf(elf.R_RISCV_TPREL_S),\n\t\t\"R_SPARC_10\":                                reflect.ValueOf(elf.R_SPARC_10),\n\t\t\"R_SPARC_11\":                                reflect.ValueOf(elf.R_SPARC_11),\n\t\t\"R_SPARC_13\":                                reflect.ValueOf(elf.R_SPARC_13),\n\t\t\"R_SPARC_16\":                                reflect.ValueOf(elf.R_SPARC_16),\n\t\t\"R_SPARC_22\":                                reflect.ValueOf(elf.R_SPARC_22),\n\t\t\"R_SPARC_32\":                                reflect.ValueOf(elf.R_SPARC_32),\n\t\t\"R_SPARC_5\":                                 reflect.ValueOf(elf.R_SPARC_5),\n\t\t\"R_SPARC_6\":                                 reflect.ValueOf(elf.R_SPARC_6),\n\t\t\"R_SPARC_64\":                                reflect.ValueOf(elf.R_SPARC_64),\n\t\t\"R_SPARC_7\":                                 reflect.ValueOf(elf.R_SPARC_7),\n\t\t\"R_SPARC_8\":                                 reflect.ValueOf(elf.R_SPARC_8),\n\t\t\"R_SPARC_COPY\":                              reflect.ValueOf(elf.R_SPARC_COPY),\n\t\t\"R_SPARC_DISP16\":                            reflect.ValueOf(elf.R_SPARC_DISP16),\n\t\t\"R_SPARC_DISP32\":                            reflect.ValueOf(elf.R_SPARC_DISP32),\n\t\t\"R_SPARC_DISP64\":                            reflect.ValueOf(elf.R_SPARC_DISP64),\n\t\t\"R_SPARC_DISP8\":                             reflect.ValueOf(elf.R_SPARC_DISP8),\n\t\t\"R_SPARC_GLOB_DAT\":                          reflect.ValueOf(elf.R_SPARC_GLOB_DAT),\n\t\t\"R_SPARC_GLOB_JMP\":                          reflect.ValueOf(elf.R_SPARC_GLOB_JMP),\n\t\t\"R_SPARC_GOT10\":                             reflect.ValueOf(elf.R_SPARC_GOT10),\n\t\t\"R_SPARC_GOT13\":                             reflect.ValueOf(elf.R_SPARC_GOT13),\n\t\t\"R_SPARC_GOT22\":                             reflect.ValueOf(elf.R_SPARC_GOT22),\n\t\t\"R_SPARC_H44\":                               reflect.ValueOf(elf.R_SPARC_H44),\n\t\t\"R_SPARC_HH22\":                              reflect.ValueOf(elf.R_SPARC_HH22),\n\t\t\"R_SPARC_HI22\":                              reflect.ValueOf(elf.R_SPARC_HI22),\n\t\t\"R_SPARC_HIPLT22\":                           reflect.ValueOf(elf.R_SPARC_HIPLT22),\n\t\t\"R_SPARC_HIX22\":                             reflect.ValueOf(elf.R_SPARC_HIX22),\n\t\t\"R_SPARC_HM10\":                              reflect.ValueOf(elf.R_SPARC_HM10),\n\t\t\"R_SPARC_JMP_SLOT\":                          reflect.ValueOf(elf.R_SPARC_JMP_SLOT),\n\t\t\"R_SPARC_L44\":                               reflect.ValueOf(elf.R_SPARC_L44),\n\t\t\"R_SPARC_LM22\":                              reflect.ValueOf(elf.R_SPARC_LM22),\n\t\t\"R_SPARC_LO10\":                              reflect.ValueOf(elf.R_SPARC_LO10),\n\t\t\"R_SPARC_LOPLT10\":                           reflect.ValueOf(elf.R_SPARC_LOPLT10),\n\t\t\"R_SPARC_LOX10\":                             reflect.ValueOf(elf.R_SPARC_LOX10),\n\t\t\"R_SPARC_M44\":                               reflect.ValueOf(elf.R_SPARC_M44),\n\t\t\"R_SPARC_NONE\":                              reflect.ValueOf(elf.R_SPARC_NONE),\n\t\t\"R_SPARC_OLO10\":                             reflect.ValueOf(elf.R_SPARC_OLO10),\n\t\t\"R_SPARC_PC10\":                              reflect.ValueOf(elf.R_SPARC_PC10),\n\t\t\"R_SPARC_PC22\":                              reflect.ValueOf(elf.R_SPARC_PC22),\n\t\t\"R_SPARC_PCPLT10\":                           reflect.ValueOf(elf.R_SPARC_PCPLT10),\n\t\t\"R_SPARC_PCPLT22\":                           reflect.ValueOf(elf.R_SPARC_PCPLT22),\n\t\t\"R_SPARC_PCPLT32\":                           reflect.ValueOf(elf.R_SPARC_PCPLT32),\n\t\t\"R_SPARC_PC_HH22\":                           reflect.ValueOf(elf.R_SPARC_PC_HH22),\n\t\t\"R_SPARC_PC_HM10\":                           reflect.ValueOf(elf.R_SPARC_PC_HM10),\n\t\t\"R_SPARC_PC_LM22\":                           reflect.ValueOf(elf.R_SPARC_PC_LM22),\n\t\t\"R_SPARC_PLT32\":                             reflect.ValueOf(elf.R_SPARC_PLT32),\n\t\t\"R_SPARC_PLT64\":                             reflect.ValueOf(elf.R_SPARC_PLT64),\n\t\t\"R_SPARC_REGISTER\":                          reflect.ValueOf(elf.R_SPARC_REGISTER),\n\t\t\"R_SPARC_RELATIVE\":                          reflect.ValueOf(elf.R_SPARC_RELATIVE),\n\t\t\"R_SPARC_UA16\":                              reflect.ValueOf(elf.R_SPARC_UA16),\n\t\t\"R_SPARC_UA32\":                              reflect.ValueOf(elf.R_SPARC_UA32),\n\t\t\"R_SPARC_UA64\":                              reflect.ValueOf(elf.R_SPARC_UA64),\n\t\t\"R_SPARC_WDISP16\":                           reflect.ValueOf(elf.R_SPARC_WDISP16),\n\t\t\"R_SPARC_WDISP19\":                           reflect.ValueOf(elf.R_SPARC_WDISP19),\n\t\t\"R_SPARC_WDISP22\":                           reflect.ValueOf(elf.R_SPARC_WDISP22),\n\t\t\"R_SPARC_WDISP30\":                           reflect.ValueOf(elf.R_SPARC_WDISP30),\n\t\t\"R_SPARC_WPLT30\":                            reflect.ValueOf(elf.R_SPARC_WPLT30),\n\t\t\"R_SYM32\":                                   reflect.ValueOf(elf.R_SYM32),\n\t\t\"R_SYM64\":                                   reflect.ValueOf(elf.R_SYM64),\n\t\t\"R_TYPE32\":                                  reflect.ValueOf(elf.R_TYPE32),\n\t\t\"R_TYPE64\":                                  reflect.ValueOf(elf.R_TYPE64),\n\t\t\"R_X86_64_16\":                               reflect.ValueOf(elf.R_X86_64_16),\n\t\t\"R_X86_64_32\":                               reflect.ValueOf(elf.R_X86_64_32),\n\t\t\"R_X86_64_32S\":                              reflect.ValueOf(elf.R_X86_64_32S),\n\t\t\"R_X86_64_64\":                               reflect.ValueOf(elf.R_X86_64_64),\n\t\t\"R_X86_64_8\":                                reflect.ValueOf(elf.R_X86_64_8),\n\t\t\"R_X86_64_COPY\":                             reflect.ValueOf(elf.R_X86_64_COPY),\n\t\t\"R_X86_64_DTPMOD64\":                         reflect.ValueOf(elf.R_X86_64_DTPMOD64),\n\t\t\"R_X86_64_DTPOFF32\":                         reflect.ValueOf(elf.R_X86_64_DTPOFF32),\n\t\t\"R_X86_64_DTPOFF64\":                         reflect.ValueOf(elf.R_X86_64_DTPOFF64),\n\t\t\"R_X86_64_GLOB_DAT\":                         reflect.ValueOf(elf.R_X86_64_GLOB_DAT),\n\t\t\"R_X86_64_GOT32\":                            reflect.ValueOf(elf.R_X86_64_GOT32),\n\t\t\"R_X86_64_GOT64\":                            reflect.ValueOf(elf.R_X86_64_GOT64),\n\t\t\"R_X86_64_GOTOFF64\":                         reflect.ValueOf(elf.R_X86_64_GOTOFF64),\n\t\t\"R_X86_64_GOTPC32\":                          reflect.ValueOf(elf.R_X86_64_GOTPC32),\n\t\t\"R_X86_64_GOTPC32_TLSDESC\":                  reflect.ValueOf(elf.R_X86_64_GOTPC32_TLSDESC),\n\t\t\"R_X86_64_GOTPC64\":                          reflect.ValueOf(elf.R_X86_64_GOTPC64),\n\t\t\"R_X86_64_GOTPCREL\":                         reflect.ValueOf(elf.R_X86_64_GOTPCREL),\n\t\t\"R_X86_64_GOTPCREL64\":                       reflect.ValueOf(elf.R_X86_64_GOTPCREL64),\n\t\t\"R_X86_64_GOTPCRELX\":                        reflect.ValueOf(elf.R_X86_64_GOTPCRELX),\n\t\t\"R_X86_64_GOTPLT64\":                         reflect.ValueOf(elf.R_X86_64_GOTPLT64),\n\t\t\"R_X86_64_GOTTPOFF\":                         reflect.ValueOf(elf.R_X86_64_GOTTPOFF),\n\t\t\"R_X86_64_IRELATIVE\":                        reflect.ValueOf(elf.R_X86_64_IRELATIVE),\n\t\t\"R_X86_64_JMP_SLOT\":                         reflect.ValueOf(elf.R_X86_64_JMP_SLOT),\n\t\t\"R_X86_64_NONE\":                             reflect.ValueOf(elf.R_X86_64_NONE),\n\t\t\"R_X86_64_PC16\":                             reflect.ValueOf(elf.R_X86_64_PC16),\n\t\t\"R_X86_64_PC32\":                             reflect.ValueOf(elf.R_X86_64_PC32),\n\t\t\"R_X86_64_PC32_BND\":                         reflect.ValueOf(elf.R_X86_64_PC32_BND),\n\t\t\"R_X86_64_PC64\":                             reflect.ValueOf(elf.R_X86_64_PC64),\n\t\t\"R_X86_64_PC8\":                              reflect.ValueOf(elf.R_X86_64_PC8),\n\t\t\"R_X86_64_PLT32\":                            reflect.ValueOf(elf.R_X86_64_PLT32),\n\t\t\"R_X86_64_PLT32_BND\":                        reflect.ValueOf(elf.R_X86_64_PLT32_BND),\n\t\t\"R_X86_64_PLTOFF64\":                         reflect.ValueOf(elf.R_X86_64_PLTOFF64),\n\t\t\"R_X86_64_RELATIVE\":                         reflect.ValueOf(elf.R_X86_64_RELATIVE),\n\t\t\"R_X86_64_RELATIVE64\":                       reflect.ValueOf(elf.R_X86_64_RELATIVE64),\n\t\t\"R_X86_64_REX_GOTPCRELX\":                    reflect.ValueOf(elf.R_X86_64_REX_GOTPCRELX),\n\t\t\"R_X86_64_SIZE32\":                           reflect.ValueOf(elf.R_X86_64_SIZE32),\n\t\t\"R_X86_64_SIZE64\":                           reflect.ValueOf(elf.R_X86_64_SIZE64),\n\t\t\"R_X86_64_TLSDESC\":                          reflect.ValueOf(elf.R_X86_64_TLSDESC),\n\t\t\"R_X86_64_TLSDESC_CALL\":                     reflect.ValueOf(elf.R_X86_64_TLSDESC_CALL),\n\t\t\"R_X86_64_TLSGD\":                            reflect.ValueOf(elf.R_X86_64_TLSGD),\n\t\t\"R_X86_64_TLSLD\":                            reflect.ValueOf(elf.R_X86_64_TLSLD),\n\t\t\"R_X86_64_TPOFF32\":                          reflect.ValueOf(elf.R_X86_64_TPOFF32),\n\t\t\"R_X86_64_TPOFF64\":                          reflect.ValueOf(elf.R_X86_64_TPOFF64),\n\t\t\"SHF_ALLOC\":                                 reflect.ValueOf(elf.SHF_ALLOC),\n\t\t\"SHF_COMPRESSED\":                            reflect.ValueOf(elf.SHF_COMPRESSED),\n\t\t\"SHF_EXECINSTR\":                             reflect.ValueOf(elf.SHF_EXECINSTR),\n\t\t\"SHF_GROUP\":                                 reflect.ValueOf(elf.SHF_GROUP),\n\t\t\"SHF_INFO_LINK\":                             reflect.ValueOf(elf.SHF_INFO_LINK),\n\t\t\"SHF_LINK_ORDER\":                            reflect.ValueOf(elf.SHF_LINK_ORDER),\n\t\t\"SHF_MASKOS\":                                reflect.ValueOf(elf.SHF_MASKOS),\n\t\t\"SHF_MASKPROC\":                              reflect.ValueOf(elf.SHF_MASKPROC),\n\t\t\"SHF_MERGE\":                                 reflect.ValueOf(elf.SHF_MERGE),\n\t\t\"SHF_OS_NONCONFORMING\":                      reflect.ValueOf(elf.SHF_OS_NONCONFORMING),\n\t\t\"SHF_STRINGS\":                               reflect.ValueOf(elf.SHF_STRINGS),\n\t\t\"SHF_TLS\":                                   reflect.ValueOf(elf.SHF_TLS),\n\t\t\"SHF_WRITE\":                                 reflect.ValueOf(elf.SHF_WRITE),\n\t\t\"SHN_ABS\":                                   reflect.ValueOf(elf.SHN_ABS),\n\t\t\"SHN_COMMON\":                                reflect.ValueOf(elf.SHN_COMMON),\n\t\t\"SHN_HIOS\":                                  reflect.ValueOf(elf.SHN_HIOS),\n\t\t\"SHN_HIPROC\":                                reflect.ValueOf(elf.SHN_HIPROC),\n\t\t\"SHN_HIRESERVE\":                             reflect.ValueOf(elf.SHN_HIRESERVE),\n\t\t\"SHN_LOOS\":                                  reflect.ValueOf(elf.SHN_LOOS),\n\t\t\"SHN_LOPROC\":                                reflect.ValueOf(elf.SHN_LOPROC),\n\t\t\"SHN_LORESERVE\":                             reflect.ValueOf(elf.SHN_LORESERVE),\n\t\t\"SHN_UNDEF\":                                 reflect.ValueOf(elf.SHN_UNDEF),\n\t\t\"SHN_XINDEX\":                                reflect.ValueOf(elf.SHN_XINDEX),\n\t\t\"SHT_DYNAMIC\":                               reflect.ValueOf(elf.SHT_DYNAMIC),\n\t\t\"SHT_DYNSYM\":                                reflect.ValueOf(elf.SHT_DYNSYM),\n\t\t\"SHT_FINI_ARRAY\":                            reflect.ValueOf(elf.SHT_FINI_ARRAY),\n\t\t\"SHT_GNU_ATTRIBUTES\":                        reflect.ValueOf(elf.SHT_GNU_ATTRIBUTES),\n\t\t\"SHT_GNU_HASH\":                              reflect.ValueOf(elf.SHT_GNU_HASH),\n\t\t\"SHT_GNU_LIBLIST\":                           reflect.ValueOf(elf.SHT_GNU_LIBLIST),\n\t\t\"SHT_GNU_VERDEF\":                            reflect.ValueOf(elf.SHT_GNU_VERDEF),\n\t\t\"SHT_GNU_VERNEED\":                           reflect.ValueOf(elf.SHT_GNU_VERNEED),\n\t\t\"SHT_GNU_VERSYM\":                            reflect.ValueOf(elf.SHT_GNU_VERSYM),\n\t\t\"SHT_GROUP\":                                 reflect.ValueOf(elf.SHT_GROUP),\n\t\t\"SHT_HASH\":                                  reflect.ValueOf(elf.SHT_HASH),\n\t\t\"SHT_HIOS\":                                  reflect.ValueOf(elf.SHT_HIOS),\n\t\t\"SHT_HIPROC\":                                reflect.ValueOf(elf.SHT_HIPROC),\n\t\t\"SHT_HIUSER\":                                reflect.ValueOf(elf.SHT_HIUSER),\n\t\t\"SHT_INIT_ARRAY\":                            reflect.ValueOf(elf.SHT_INIT_ARRAY),\n\t\t\"SHT_LOOS\":                                  reflect.ValueOf(elf.SHT_LOOS),\n\t\t\"SHT_LOPROC\":                                reflect.ValueOf(elf.SHT_LOPROC),\n\t\t\"SHT_LOUSER\":                                reflect.ValueOf(elf.SHT_LOUSER),\n\t\t\"SHT_MIPS_ABIFLAGS\":                         reflect.ValueOf(elf.SHT_MIPS_ABIFLAGS),\n\t\t\"SHT_NOBITS\":                                reflect.ValueOf(elf.SHT_NOBITS),\n\t\t\"SHT_NOTE\":                                  reflect.ValueOf(elf.SHT_NOTE),\n\t\t\"SHT_NULL\":                                  reflect.ValueOf(elf.SHT_NULL),\n\t\t\"SHT_PREINIT_ARRAY\":                         reflect.ValueOf(elf.SHT_PREINIT_ARRAY),\n\t\t\"SHT_PROGBITS\":                              reflect.ValueOf(elf.SHT_PROGBITS),\n\t\t\"SHT_REL\":                                   reflect.ValueOf(elf.SHT_REL),\n\t\t\"SHT_RELA\":                                  reflect.ValueOf(elf.SHT_RELA),\n\t\t\"SHT_SHLIB\":                                 reflect.ValueOf(elf.SHT_SHLIB),\n\t\t\"SHT_STRTAB\":                                reflect.ValueOf(elf.SHT_STRTAB),\n\t\t\"SHT_SYMTAB\":                                reflect.ValueOf(elf.SHT_SYMTAB),\n\t\t\"SHT_SYMTAB_SHNDX\":                          reflect.ValueOf(elf.SHT_SYMTAB_SHNDX),\n\t\t\"STB_GLOBAL\":                                reflect.ValueOf(elf.STB_GLOBAL),\n\t\t\"STB_HIOS\":                                  reflect.ValueOf(elf.STB_HIOS),\n\t\t\"STB_HIPROC\":                                reflect.ValueOf(elf.STB_HIPROC),\n\t\t\"STB_LOCAL\":                                 reflect.ValueOf(elf.STB_LOCAL),\n\t\t\"STB_LOOS\":                                  reflect.ValueOf(elf.STB_LOOS),\n\t\t\"STB_LOPROC\":                                reflect.ValueOf(elf.STB_LOPROC),\n\t\t\"STB_WEAK\":                                  reflect.ValueOf(elf.STB_WEAK),\n\t\t\"STT_COMMON\":                                reflect.ValueOf(elf.STT_COMMON),\n\t\t\"STT_FILE\":                                  reflect.ValueOf(elf.STT_FILE),\n\t\t\"STT_FUNC\":                                  reflect.ValueOf(elf.STT_FUNC),\n\t\t\"STT_HIOS\":                                  reflect.ValueOf(elf.STT_HIOS),\n\t\t\"STT_HIPROC\":                                reflect.ValueOf(elf.STT_HIPROC),\n\t\t\"STT_LOOS\":                                  reflect.ValueOf(elf.STT_LOOS),\n\t\t\"STT_LOPROC\":                                reflect.ValueOf(elf.STT_LOPROC),\n\t\t\"STT_NOTYPE\":                                reflect.ValueOf(elf.STT_NOTYPE),\n\t\t\"STT_OBJECT\":                                reflect.ValueOf(elf.STT_OBJECT),\n\t\t\"STT_SECTION\":                               reflect.ValueOf(elf.STT_SECTION),\n\t\t\"STT_TLS\":                                   reflect.ValueOf(elf.STT_TLS),\n\t\t\"STV_DEFAULT\":                               reflect.ValueOf(elf.STV_DEFAULT),\n\t\t\"STV_HIDDEN\":                                reflect.ValueOf(elf.STV_HIDDEN),\n\t\t\"STV_INTERNAL\":                              reflect.ValueOf(elf.STV_INTERNAL),\n\t\t\"STV_PROTECTED\":                             reflect.ValueOf(elf.STV_PROTECTED),\n\t\t\"ST_BIND\":                                   reflect.ValueOf(elf.ST_BIND),\n\t\t\"ST_INFO\":                                   reflect.ValueOf(elf.ST_INFO),\n\t\t\"ST_TYPE\":                                   reflect.ValueOf(elf.ST_TYPE),\n\t\t\"ST_VISIBILITY\":                             reflect.ValueOf(elf.ST_VISIBILITY),\n\t\t\"Sym32Size\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"Sym64Size\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Chdr32\":          reflect.ValueOf((*elf.Chdr32)(nil)),\n\t\t\"Chdr64\":          reflect.ValueOf((*elf.Chdr64)(nil)),\n\t\t\"Class\":           reflect.ValueOf((*elf.Class)(nil)),\n\t\t\"CompressionType\": reflect.ValueOf((*elf.CompressionType)(nil)),\n\t\t\"Data\":            reflect.ValueOf((*elf.Data)(nil)),\n\t\t\"Dyn32\":           reflect.ValueOf((*elf.Dyn32)(nil)),\n\t\t\"Dyn64\":           reflect.ValueOf((*elf.Dyn64)(nil)),\n\t\t\"DynFlag\":         reflect.ValueOf((*elf.DynFlag)(nil)),\n\t\t\"DynFlag1\":        reflect.ValueOf((*elf.DynFlag1)(nil)),\n\t\t\"DynTag\":          reflect.ValueOf((*elf.DynTag)(nil)),\n\t\t\"File\":            reflect.ValueOf((*elf.File)(nil)),\n\t\t\"FileHeader\":      reflect.ValueOf((*elf.FileHeader)(nil)),\n\t\t\"FormatError\":     reflect.ValueOf((*elf.FormatError)(nil)),\n\t\t\"Header32\":        reflect.ValueOf((*elf.Header32)(nil)),\n\t\t\"Header64\":        reflect.ValueOf((*elf.Header64)(nil)),\n\t\t\"ImportedSymbol\":  reflect.ValueOf((*elf.ImportedSymbol)(nil)),\n\t\t\"Machine\":         reflect.ValueOf((*elf.Machine)(nil)),\n\t\t\"NType\":           reflect.ValueOf((*elf.NType)(nil)),\n\t\t\"OSABI\":           reflect.ValueOf((*elf.OSABI)(nil)),\n\t\t\"Prog\":            reflect.ValueOf((*elf.Prog)(nil)),\n\t\t\"Prog32\":          reflect.ValueOf((*elf.Prog32)(nil)),\n\t\t\"Prog64\":          reflect.ValueOf((*elf.Prog64)(nil)),\n\t\t\"ProgFlag\":        reflect.ValueOf((*elf.ProgFlag)(nil)),\n\t\t\"ProgHeader\":      reflect.ValueOf((*elf.ProgHeader)(nil)),\n\t\t\"ProgType\":        reflect.ValueOf((*elf.ProgType)(nil)),\n\t\t\"R_386\":           reflect.ValueOf((*elf.R_386)(nil)),\n\t\t\"R_390\":           reflect.ValueOf((*elf.R_390)(nil)),\n\t\t\"R_AARCH64\":       reflect.ValueOf((*elf.R_AARCH64)(nil)),\n\t\t\"R_ALPHA\":         reflect.ValueOf((*elf.R_ALPHA)(nil)),\n\t\t\"R_ARM\":           reflect.ValueOf((*elf.R_ARM)(nil)),\n\t\t\"R_LARCH\":         reflect.ValueOf((*elf.R_LARCH)(nil)),\n\t\t\"R_MIPS\":          reflect.ValueOf((*elf.R_MIPS)(nil)),\n\t\t\"R_PPC\":           reflect.ValueOf((*elf.R_PPC)(nil)),\n\t\t\"R_PPC64\":         reflect.ValueOf((*elf.R_PPC64)(nil)),\n\t\t\"R_RISCV\":         reflect.ValueOf((*elf.R_RISCV)(nil)),\n\t\t\"R_SPARC\":         reflect.ValueOf((*elf.R_SPARC)(nil)),\n\t\t\"R_X86_64\":        reflect.ValueOf((*elf.R_X86_64)(nil)),\n\t\t\"Rel32\":           reflect.ValueOf((*elf.Rel32)(nil)),\n\t\t\"Rel64\":           reflect.ValueOf((*elf.Rel64)(nil)),\n\t\t\"Rela32\":          reflect.ValueOf((*elf.Rela32)(nil)),\n\t\t\"Rela64\":          reflect.ValueOf((*elf.Rela64)(nil)),\n\t\t\"Section\":         reflect.ValueOf((*elf.Section)(nil)),\n\t\t\"Section32\":       reflect.ValueOf((*elf.Section32)(nil)),\n\t\t\"Section64\":       reflect.ValueOf((*elf.Section64)(nil)),\n\t\t\"SectionFlag\":     reflect.ValueOf((*elf.SectionFlag)(nil)),\n\t\t\"SectionHeader\":   reflect.ValueOf((*elf.SectionHeader)(nil)),\n\t\t\"SectionIndex\":    reflect.ValueOf((*elf.SectionIndex)(nil)),\n\t\t\"SectionType\":     reflect.ValueOf((*elf.SectionType)(nil)),\n\t\t\"Sym32\":           reflect.ValueOf((*elf.Sym32)(nil)),\n\t\t\"Sym64\":           reflect.ValueOf((*elf.Sym64)(nil)),\n\t\t\"SymBind\":         reflect.ValueOf((*elf.SymBind)(nil)),\n\t\t\"SymType\":         reflect.ValueOf((*elf.SymType)(nil)),\n\t\t\"SymVis\":          reflect.ValueOf((*elf.SymVis)(nil)),\n\t\t\"Symbol\":          reflect.ValueOf((*elf.Symbol)(nil)),\n\t\t\"Type\":            reflect.ValueOf((*elf.Type)(nil)),\n\t\t\"Version\":         reflect.ValueOf((*elf.Version)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_debug_gosym.go",
    "content": "// Code generated by 'yaegi extract debug/gosym'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"debug/gosym\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"debug/gosym/gosym\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"NewLineTable\": reflect.ValueOf(gosym.NewLineTable),\n\t\t\"NewTable\":     reflect.ValueOf(gosym.NewTable),\n\n\t\t// type definitions\n\t\t\"DecodingError\":    reflect.ValueOf((*gosym.DecodingError)(nil)),\n\t\t\"Func\":             reflect.ValueOf((*gosym.Func)(nil)),\n\t\t\"LineTable\":        reflect.ValueOf((*gosym.LineTable)(nil)),\n\t\t\"Obj\":              reflect.ValueOf((*gosym.Obj)(nil)),\n\t\t\"Sym\":              reflect.ValueOf((*gosym.Sym)(nil)),\n\t\t\"Table\":            reflect.ValueOf((*gosym.Table)(nil)),\n\t\t\"UnknownFileError\": reflect.ValueOf((*gosym.UnknownFileError)(nil)),\n\t\t\"UnknownLineError\": reflect.ValueOf((*gosym.UnknownLineError)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_debug_macho.go",
    "content": "// Code generated by 'yaegi extract debug/macho'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"debug/macho\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"debug/macho/macho\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ARM64_RELOC_ADDEND\":              reflect.ValueOf(macho.ARM64_RELOC_ADDEND),\n\t\t\"ARM64_RELOC_BRANCH26\":            reflect.ValueOf(macho.ARM64_RELOC_BRANCH26),\n\t\t\"ARM64_RELOC_GOT_LOAD_PAGE21\":     reflect.ValueOf(macho.ARM64_RELOC_GOT_LOAD_PAGE21),\n\t\t\"ARM64_RELOC_GOT_LOAD_PAGEOFF12\":  reflect.ValueOf(macho.ARM64_RELOC_GOT_LOAD_PAGEOFF12),\n\t\t\"ARM64_RELOC_PAGE21\":              reflect.ValueOf(macho.ARM64_RELOC_PAGE21),\n\t\t\"ARM64_RELOC_PAGEOFF12\":           reflect.ValueOf(macho.ARM64_RELOC_PAGEOFF12),\n\t\t\"ARM64_RELOC_POINTER_TO_GOT\":      reflect.ValueOf(macho.ARM64_RELOC_POINTER_TO_GOT),\n\t\t\"ARM64_RELOC_SUBTRACTOR\":          reflect.ValueOf(macho.ARM64_RELOC_SUBTRACTOR),\n\t\t\"ARM64_RELOC_TLVP_LOAD_PAGE21\":    reflect.ValueOf(macho.ARM64_RELOC_TLVP_LOAD_PAGE21),\n\t\t\"ARM64_RELOC_TLVP_LOAD_PAGEOFF12\": reflect.ValueOf(macho.ARM64_RELOC_TLVP_LOAD_PAGEOFF12),\n\t\t\"ARM64_RELOC_UNSIGNED\":            reflect.ValueOf(macho.ARM64_RELOC_UNSIGNED),\n\t\t\"ARM_RELOC_BR24\":                  reflect.ValueOf(macho.ARM_RELOC_BR24),\n\t\t\"ARM_RELOC_HALF\":                  reflect.ValueOf(macho.ARM_RELOC_HALF),\n\t\t\"ARM_RELOC_HALF_SECTDIFF\":         reflect.ValueOf(macho.ARM_RELOC_HALF_SECTDIFF),\n\t\t\"ARM_RELOC_LOCAL_SECTDIFF\":        reflect.ValueOf(macho.ARM_RELOC_LOCAL_SECTDIFF),\n\t\t\"ARM_RELOC_PAIR\":                  reflect.ValueOf(macho.ARM_RELOC_PAIR),\n\t\t\"ARM_RELOC_PB_LA_PTR\":             reflect.ValueOf(macho.ARM_RELOC_PB_LA_PTR),\n\t\t\"ARM_RELOC_SECTDIFF\":              reflect.ValueOf(macho.ARM_RELOC_SECTDIFF),\n\t\t\"ARM_RELOC_VANILLA\":               reflect.ValueOf(macho.ARM_RELOC_VANILLA),\n\t\t\"ARM_THUMB_32BIT_BRANCH\":          reflect.ValueOf(macho.ARM_THUMB_32BIT_BRANCH),\n\t\t\"ARM_THUMB_RELOC_BR22\":            reflect.ValueOf(macho.ARM_THUMB_RELOC_BR22),\n\t\t\"Cpu386\":                          reflect.ValueOf(macho.Cpu386),\n\t\t\"CpuAmd64\":                        reflect.ValueOf(macho.CpuAmd64),\n\t\t\"CpuArm\":                          reflect.ValueOf(macho.CpuArm),\n\t\t\"CpuArm64\":                        reflect.ValueOf(macho.CpuArm64),\n\t\t\"CpuPpc\":                          reflect.ValueOf(macho.CpuPpc),\n\t\t\"CpuPpc64\":                        reflect.ValueOf(macho.CpuPpc64),\n\t\t\"ErrNotFat\":                       reflect.ValueOf(&macho.ErrNotFat).Elem(),\n\t\t\"FlagAllModsBound\":                reflect.ValueOf(macho.FlagAllModsBound),\n\t\t\"FlagAllowStackExecution\":         reflect.ValueOf(macho.FlagAllowStackExecution),\n\t\t\"FlagAppExtensionSafe\":            reflect.ValueOf(macho.FlagAppExtensionSafe),\n\t\t\"FlagBindAtLoad\":                  reflect.ValueOf(macho.FlagBindAtLoad),\n\t\t\"FlagBindsToWeak\":                 reflect.ValueOf(macho.FlagBindsToWeak),\n\t\t\"FlagCanonical\":                   reflect.ValueOf(macho.FlagCanonical),\n\t\t\"FlagDeadStrippableDylib\":         reflect.ValueOf(macho.FlagDeadStrippableDylib),\n\t\t\"FlagDyldLink\":                    reflect.ValueOf(macho.FlagDyldLink),\n\t\t\"FlagForceFlat\":                   reflect.ValueOf(macho.FlagForceFlat),\n\t\t\"FlagHasTLVDescriptors\":           reflect.ValueOf(macho.FlagHasTLVDescriptors),\n\t\t\"FlagIncrLink\":                    reflect.ValueOf(macho.FlagIncrLink),\n\t\t\"FlagLazyInit\":                    reflect.ValueOf(macho.FlagLazyInit),\n\t\t\"FlagNoFixPrebinding\":             reflect.ValueOf(macho.FlagNoFixPrebinding),\n\t\t\"FlagNoHeapExecution\":             reflect.ValueOf(macho.FlagNoHeapExecution),\n\t\t\"FlagNoMultiDefs\":                 reflect.ValueOf(macho.FlagNoMultiDefs),\n\t\t\"FlagNoReexportedDylibs\":          reflect.ValueOf(macho.FlagNoReexportedDylibs),\n\t\t\"FlagNoUndefs\":                    reflect.ValueOf(macho.FlagNoUndefs),\n\t\t\"FlagPIE\":                         reflect.ValueOf(macho.FlagPIE),\n\t\t\"FlagPrebindable\":                 reflect.ValueOf(macho.FlagPrebindable),\n\t\t\"FlagPrebound\":                    reflect.ValueOf(macho.FlagPrebound),\n\t\t\"FlagRootSafe\":                    reflect.ValueOf(macho.FlagRootSafe),\n\t\t\"FlagSetuidSafe\":                  reflect.ValueOf(macho.FlagSetuidSafe),\n\t\t\"FlagSplitSegs\":                   reflect.ValueOf(macho.FlagSplitSegs),\n\t\t\"FlagSubsectionsViaSymbols\":       reflect.ValueOf(macho.FlagSubsectionsViaSymbols),\n\t\t\"FlagTwoLevel\":                    reflect.ValueOf(macho.FlagTwoLevel),\n\t\t\"FlagWeakDefines\":                 reflect.ValueOf(macho.FlagWeakDefines),\n\t\t\"GENERIC_RELOC_LOCAL_SECTDIFF\":    reflect.ValueOf(macho.GENERIC_RELOC_LOCAL_SECTDIFF),\n\t\t\"GENERIC_RELOC_PAIR\":              reflect.ValueOf(macho.GENERIC_RELOC_PAIR),\n\t\t\"GENERIC_RELOC_PB_LA_PTR\":         reflect.ValueOf(macho.GENERIC_RELOC_PB_LA_PTR),\n\t\t\"GENERIC_RELOC_SECTDIFF\":          reflect.ValueOf(macho.GENERIC_RELOC_SECTDIFF),\n\t\t\"GENERIC_RELOC_TLV\":               reflect.ValueOf(macho.GENERIC_RELOC_TLV),\n\t\t\"GENERIC_RELOC_VANILLA\":           reflect.ValueOf(macho.GENERIC_RELOC_VANILLA),\n\t\t\"LoadCmdDylib\":                    reflect.ValueOf(macho.LoadCmdDylib),\n\t\t\"LoadCmdDylinker\":                 reflect.ValueOf(macho.LoadCmdDylinker),\n\t\t\"LoadCmdDysymtab\":                 reflect.ValueOf(macho.LoadCmdDysymtab),\n\t\t\"LoadCmdRpath\":                    reflect.ValueOf(macho.LoadCmdRpath),\n\t\t\"LoadCmdSegment\":                  reflect.ValueOf(macho.LoadCmdSegment),\n\t\t\"LoadCmdSegment64\":                reflect.ValueOf(macho.LoadCmdSegment64),\n\t\t\"LoadCmdSymtab\":                   reflect.ValueOf(macho.LoadCmdSymtab),\n\t\t\"LoadCmdThread\":                   reflect.ValueOf(macho.LoadCmdThread),\n\t\t\"LoadCmdUnixThread\":               reflect.ValueOf(macho.LoadCmdUnixThread),\n\t\t\"Magic32\":                         reflect.ValueOf(macho.Magic32),\n\t\t\"Magic64\":                         reflect.ValueOf(macho.Magic64),\n\t\t\"MagicFat\":                        reflect.ValueOf(macho.MagicFat),\n\t\t\"NewFatFile\":                      reflect.ValueOf(macho.NewFatFile),\n\t\t\"NewFile\":                         reflect.ValueOf(macho.NewFile),\n\t\t\"Open\":                            reflect.ValueOf(macho.Open),\n\t\t\"OpenFat\":                         reflect.ValueOf(macho.OpenFat),\n\t\t\"TypeBundle\":                      reflect.ValueOf(macho.TypeBundle),\n\t\t\"TypeDylib\":                       reflect.ValueOf(macho.TypeDylib),\n\t\t\"TypeExec\":                        reflect.ValueOf(macho.TypeExec),\n\t\t\"TypeObj\":                         reflect.ValueOf(macho.TypeObj),\n\t\t\"X86_64_RELOC_BRANCH\":             reflect.ValueOf(macho.X86_64_RELOC_BRANCH),\n\t\t\"X86_64_RELOC_GOT\":                reflect.ValueOf(macho.X86_64_RELOC_GOT),\n\t\t\"X86_64_RELOC_GOT_LOAD\":           reflect.ValueOf(macho.X86_64_RELOC_GOT_LOAD),\n\t\t\"X86_64_RELOC_SIGNED\":             reflect.ValueOf(macho.X86_64_RELOC_SIGNED),\n\t\t\"X86_64_RELOC_SIGNED_1\":           reflect.ValueOf(macho.X86_64_RELOC_SIGNED_1),\n\t\t\"X86_64_RELOC_SIGNED_2\":           reflect.ValueOf(macho.X86_64_RELOC_SIGNED_2),\n\t\t\"X86_64_RELOC_SIGNED_4\":           reflect.ValueOf(macho.X86_64_RELOC_SIGNED_4),\n\t\t\"X86_64_RELOC_SUBTRACTOR\":         reflect.ValueOf(macho.X86_64_RELOC_SUBTRACTOR),\n\t\t\"X86_64_RELOC_TLV\":                reflect.ValueOf(macho.X86_64_RELOC_TLV),\n\t\t\"X86_64_RELOC_UNSIGNED\":           reflect.ValueOf(macho.X86_64_RELOC_UNSIGNED),\n\n\t\t// type definitions\n\t\t\"Cpu\":              reflect.ValueOf((*macho.Cpu)(nil)),\n\t\t\"Dylib\":            reflect.ValueOf((*macho.Dylib)(nil)),\n\t\t\"DylibCmd\":         reflect.ValueOf((*macho.DylibCmd)(nil)),\n\t\t\"Dysymtab\":         reflect.ValueOf((*macho.Dysymtab)(nil)),\n\t\t\"DysymtabCmd\":      reflect.ValueOf((*macho.DysymtabCmd)(nil)),\n\t\t\"FatArch\":          reflect.ValueOf((*macho.FatArch)(nil)),\n\t\t\"FatArchHeader\":    reflect.ValueOf((*macho.FatArchHeader)(nil)),\n\t\t\"FatFile\":          reflect.ValueOf((*macho.FatFile)(nil)),\n\t\t\"File\":             reflect.ValueOf((*macho.File)(nil)),\n\t\t\"FileHeader\":       reflect.ValueOf((*macho.FileHeader)(nil)),\n\t\t\"FormatError\":      reflect.ValueOf((*macho.FormatError)(nil)),\n\t\t\"Load\":             reflect.ValueOf((*macho.Load)(nil)),\n\t\t\"LoadBytes\":        reflect.ValueOf((*macho.LoadBytes)(nil)),\n\t\t\"LoadCmd\":          reflect.ValueOf((*macho.LoadCmd)(nil)),\n\t\t\"Nlist32\":          reflect.ValueOf((*macho.Nlist32)(nil)),\n\t\t\"Nlist64\":          reflect.ValueOf((*macho.Nlist64)(nil)),\n\t\t\"Regs386\":          reflect.ValueOf((*macho.Regs386)(nil)),\n\t\t\"RegsAMD64\":        reflect.ValueOf((*macho.RegsAMD64)(nil)),\n\t\t\"Reloc\":            reflect.ValueOf((*macho.Reloc)(nil)),\n\t\t\"RelocTypeARM\":     reflect.ValueOf((*macho.RelocTypeARM)(nil)),\n\t\t\"RelocTypeARM64\":   reflect.ValueOf((*macho.RelocTypeARM64)(nil)),\n\t\t\"RelocTypeGeneric\": reflect.ValueOf((*macho.RelocTypeGeneric)(nil)),\n\t\t\"RelocTypeX86_64\":  reflect.ValueOf((*macho.RelocTypeX86_64)(nil)),\n\t\t\"Rpath\":            reflect.ValueOf((*macho.Rpath)(nil)),\n\t\t\"RpathCmd\":         reflect.ValueOf((*macho.RpathCmd)(nil)),\n\t\t\"Section\":          reflect.ValueOf((*macho.Section)(nil)),\n\t\t\"Section32\":        reflect.ValueOf((*macho.Section32)(nil)),\n\t\t\"Section64\":        reflect.ValueOf((*macho.Section64)(nil)),\n\t\t\"SectionHeader\":    reflect.ValueOf((*macho.SectionHeader)(nil)),\n\t\t\"Segment\":          reflect.ValueOf((*macho.Segment)(nil)),\n\t\t\"Segment32\":        reflect.ValueOf((*macho.Segment32)(nil)),\n\t\t\"Segment64\":        reflect.ValueOf((*macho.Segment64)(nil)),\n\t\t\"SegmentHeader\":    reflect.ValueOf((*macho.SegmentHeader)(nil)),\n\t\t\"Symbol\":           reflect.ValueOf((*macho.Symbol)(nil)),\n\t\t\"Symtab\":           reflect.ValueOf((*macho.Symtab)(nil)),\n\t\t\"SymtabCmd\":        reflect.ValueOf((*macho.SymtabCmd)(nil)),\n\t\t\"Thread\":           reflect.ValueOf((*macho.Thread)(nil)),\n\t\t\"Type\":             reflect.ValueOf((*macho.Type)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Load\": reflect.ValueOf((*_debug_macho_Load)(nil)),\n\t}\n}\n\n// _debug_macho_Load is an interface wrapper for Load type\ntype _debug_macho_Load struct {\n\tIValue interface{}\n\tWRaw   func() []byte\n}\n\nfunc (W _debug_macho_Load) Raw() []byte { return W.WRaw() }\n"
  },
  {
    "path": "stdlib/go1_21_debug_pe.go",
    "content": "// Code generated by 'yaegi extract debug/pe'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"debug/pe\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"debug/pe/pe\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"COFFSymbolSize\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IMAGE_COMDAT_SELECT_ANY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IMAGE_COMDAT_SELECT_ASSOCIATIVE\":                reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IMAGE_COMDAT_SELECT_EXACT_MATCH\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAGE_COMDAT_SELECT_LARGEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IMAGE_COMDAT_SELECT_NODUPLICATES\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IMAGE_COMDAT_SELECT_SAME_SIZE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_ARCHITECTURE\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_BASERELOC\":                reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT\":             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR\":           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_DEBUG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT\":             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_EXCEPTION\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_EXPORT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_GLOBALPTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_IAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_IMPORT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_RESOURCE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_SECURITY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_TLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_APPCONTAINER\":          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE\":          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY\":       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_GUARD_CF\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_NO_BIND\":               reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_NO_ISOLATION\":          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_NO_SEH\":                reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_NX_COMPAT\":             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE\": reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_WDM_DRIVER\":            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IMAGE_FILE_32BIT_MACHINE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IMAGE_FILE_AGGRESIVE_WS_TRIM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IMAGE_FILE_BYTES_REVERSED_HI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IMAGE_FILE_BYTES_REVERSED_LO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IMAGE_FILE_DEBUG_STRIPPED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IMAGE_FILE_DLL\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IMAGE_FILE_EXECUTABLE_IMAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IMAGE_FILE_LARGE_ADDRESS_AWARE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IMAGE_FILE_LINE_NUMS_STRIPPED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAGE_FILE_LOCAL_SYMS_STRIPPED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_AM33\":                        reflect.ValueOf(constant.MakeFromLiteral(\"467\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_AMD64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34404\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_ARM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_ARM64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43620\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_ARMNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"452\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_EBC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3772\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_I386\":                        reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_IA64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_LOONGARCH32\":                 reflect.ValueOf(constant.MakeFromLiteral(\"25138\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_LOONGARCH64\":                 reflect.ValueOf(constant.MakeFromLiteral(\"25188\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_M32R\":                        reflect.ValueOf(constant.MakeFromLiteral(\"36929\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_MIPS16\":                      reflect.ValueOf(constant.MakeFromLiteral(\"614\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_MIPSFPU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"870\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_MIPSFPU16\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1126\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_POWERPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"496\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_POWERPCFP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"497\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_R4000\":                       reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_RISCV128\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20776\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_RISCV32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20530\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_RISCV64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20580\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_SH3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"418\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_SH3DSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"419\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_SH4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_SH5\":                         reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_THUMB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_UNKNOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_WCEMIPSV2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"IMAGE_FILE_NET_RUN_FROM_SWAP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IMAGE_FILE_RELOCS_STRIPPED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP\":             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IMAGE_FILE_SYSTEM\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IMAGE_FILE_UP_SYSTEM_ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IMAGE_SCN_CNT_CODE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IMAGE_SCN_CNT_INITIALIZED_DATA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IMAGE_SCN_CNT_UNINITIALIZED_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IMAGE_SCN_LNK_COMDAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IMAGE_SCN_MEM_DISCARDABLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IMAGE_SCN_MEM_EXECUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IMAGE_SCN_MEM_READ\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IMAGE_SCN_MEM_WRITE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_EFI_APPLICATION\":                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER\":        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_EFI_ROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER\":             reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_NATIVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_NATIVE_WINDOWS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_OS2_CUI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_POSIX_CUI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_WINDOWS_CE_GUI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_WINDOWS_CUI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_WINDOWS_GUI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_XBOX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NewFile\":                                        reflect.ValueOf(pe.NewFile),\n\t\t\"Open\":                                           reflect.ValueOf(pe.Open),\n\n\t\t// type definitions\n\t\t\"COFFSymbol\":           reflect.ValueOf((*pe.COFFSymbol)(nil)),\n\t\t\"COFFSymbolAuxFormat5\": reflect.ValueOf((*pe.COFFSymbolAuxFormat5)(nil)),\n\t\t\"DataDirectory\":        reflect.ValueOf((*pe.DataDirectory)(nil)),\n\t\t\"File\":                 reflect.ValueOf((*pe.File)(nil)),\n\t\t\"FileHeader\":           reflect.ValueOf((*pe.FileHeader)(nil)),\n\t\t\"FormatError\":          reflect.ValueOf((*pe.FormatError)(nil)),\n\t\t\"ImportDirectory\":      reflect.ValueOf((*pe.ImportDirectory)(nil)),\n\t\t\"OptionalHeader32\":     reflect.ValueOf((*pe.OptionalHeader32)(nil)),\n\t\t\"OptionalHeader64\":     reflect.ValueOf((*pe.OptionalHeader64)(nil)),\n\t\t\"Reloc\":                reflect.ValueOf((*pe.Reloc)(nil)),\n\t\t\"Section\":              reflect.ValueOf((*pe.Section)(nil)),\n\t\t\"SectionHeader\":        reflect.ValueOf((*pe.SectionHeader)(nil)),\n\t\t\"SectionHeader32\":      reflect.ValueOf((*pe.SectionHeader32)(nil)),\n\t\t\"StringTable\":          reflect.ValueOf((*pe.StringTable)(nil)),\n\t\t\"Symbol\":               reflect.ValueOf((*pe.Symbol)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_debug_plan9obj.go",
    "content": "// Code generated by 'yaegi extract debug/plan9obj'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"debug/plan9obj\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"debug/plan9obj/plan9obj\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ErrNoSymbols\": reflect.ValueOf(&plan9obj.ErrNoSymbols).Elem(),\n\t\t\"Magic386\":     reflect.ValueOf(constant.MakeFromLiteral(\"491\", token.INT, 0)),\n\t\t\"Magic64\":      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MagicAMD64\":   reflect.ValueOf(constant.MakeFromLiteral(\"35479\", token.INT, 0)),\n\t\t\"MagicARM\":     reflect.ValueOf(constant.MakeFromLiteral(\"1607\", token.INT, 0)),\n\t\t\"NewFile\":      reflect.ValueOf(plan9obj.NewFile),\n\t\t\"Open\":         reflect.ValueOf(plan9obj.Open),\n\n\t\t// type definitions\n\t\t\"File\":          reflect.ValueOf((*plan9obj.File)(nil)),\n\t\t\"FileHeader\":    reflect.ValueOf((*plan9obj.FileHeader)(nil)),\n\t\t\"Section\":       reflect.ValueOf((*plan9obj.Section)(nil)),\n\t\t\"SectionHeader\": reflect.ValueOf((*plan9obj.SectionHeader)(nil)),\n\t\t\"Sym\":           reflect.ValueOf((*plan9obj.Sym)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_encoding.go",
    "content": "// Code generated by 'yaegi extract encoding'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/encoding\"] = map[string]reflect.Value{\n\t\t// type definitions\n\t\t\"BinaryMarshaler\":   reflect.ValueOf((*encoding.BinaryMarshaler)(nil)),\n\t\t\"BinaryUnmarshaler\": reflect.ValueOf((*encoding.BinaryUnmarshaler)(nil)),\n\t\t\"TextMarshaler\":     reflect.ValueOf((*encoding.TextMarshaler)(nil)),\n\t\t\"TextUnmarshaler\":   reflect.ValueOf((*encoding.TextUnmarshaler)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_BinaryMarshaler\":   reflect.ValueOf((*_encoding_BinaryMarshaler)(nil)),\n\t\t\"_BinaryUnmarshaler\": reflect.ValueOf((*_encoding_BinaryUnmarshaler)(nil)),\n\t\t\"_TextMarshaler\":     reflect.ValueOf((*_encoding_TextMarshaler)(nil)),\n\t\t\"_TextUnmarshaler\":   reflect.ValueOf((*_encoding_TextUnmarshaler)(nil)),\n\t}\n}\n\n// _encoding_BinaryMarshaler is an interface wrapper for BinaryMarshaler type\ntype _encoding_BinaryMarshaler struct {\n\tIValue         interface{}\n\tWMarshalBinary func() (data []byte, err error)\n}\n\nfunc (W _encoding_BinaryMarshaler) MarshalBinary() (data []byte, err error) {\n\treturn W.WMarshalBinary()\n}\n\n// _encoding_BinaryUnmarshaler is an interface wrapper for BinaryUnmarshaler type\ntype _encoding_BinaryUnmarshaler struct {\n\tIValue           interface{}\n\tWUnmarshalBinary func(data []byte) error\n}\n\nfunc (W _encoding_BinaryUnmarshaler) UnmarshalBinary(data []byte) error {\n\treturn W.WUnmarshalBinary(data)\n}\n\n// _encoding_TextMarshaler is an interface wrapper for TextMarshaler type\ntype _encoding_TextMarshaler struct {\n\tIValue       interface{}\n\tWMarshalText func() (text []byte, err error)\n}\n\nfunc (W _encoding_TextMarshaler) MarshalText() (text []byte, err error) { return W.WMarshalText() }\n\n// _encoding_TextUnmarshaler is an interface wrapper for TextUnmarshaler type\ntype _encoding_TextUnmarshaler struct {\n\tIValue         interface{}\n\tWUnmarshalText func(text []byte) error\n}\n\nfunc (W _encoding_TextUnmarshaler) UnmarshalText(text []byte) error { return W.WUnmarshalText(text) }\n"
  },
  {
    "path": "stdlib/go1_21_encoding_ascii85.go",
    "content": "// Code generated by 'yaegi extract encoding/ascii85'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/ascii85\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/ascii85/ascii85\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Decode\":        reflect.ValueOf(ascii85.Decode),\n\t\t\"Encode\":        reflect.ValueOf(ascii85.Encode),\n\t\t\"MaxEncodedLen\": reflect.ValueOf(ascii85.MaxEncodedLen),\n\t\t\"NewDecoder\":    reflect.ValueOf(ascii85.NewDecoder),\n\t\t\"NewEncoder\":    reflect.ValueOf(ascii85.NewEncoder),\n\n\t\t// type definitions\n\t\t\"CorruptInputError\": reflect.ValueOf((*ascii85.CorruptInputError)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_encoding_asn1.go",
    "content": "// Code generated by 'yaegi extract encoding/asn1'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/asn1\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/asn1/asn1\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ClassApplication\":     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ClassContextSpecific\": reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ClassPrivate\":         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ClassUniversal\":       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Marshal\":              reflect.ValueOf(asn1.Marshal),\n\t\t\"MarshalWithParams\":    reflect.ValueOf(asn1.MarshalWithParams),\n\t\t\"NullBytes\":            reflect.ValueOf(&asn1.NullBytes).Elem(),\n\t\t\"NullRawValue\":         reflect.ValueOf(&asn1.NullRawValue).Elem(),\n\t\t\"TagBMPString\":         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"TagBitString\":         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TagBoolean\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TagEnum\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TagGeneralString\":     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"TagGeneralizedTime\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TagIA5String\":         reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TagInteger\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TagNull\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TagNumericString\":     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TagOID\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TagOctetString\":       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TagPrintableString\":   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TagSequence\":          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TagSet\":               reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TagT61String\":         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TagUTCTime\":           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TagUTF8String\":        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"Unmarshal\":            reflect.ValueOf(asn1.Unmarshal),\n\t\t\"UnmarshalWithParams\":  reflect.ValueOf(asn1.UnmarshalWithParams),\n\n\t\t// type definitions\n\t\t\"BitString\":        reflect.ValueOf((*asn1.BitString)(nil)),\n\t\t\"Enumerated\":       reflect.ValueOf((*asn1.Enumerated)(nil)),\n\t\t\"Flag\":             reflect.ValueOf((*asn1.Flag)(nil)),\n\t\t\"ObjectIdentifier\": reflect.ValueOf((*asn1.ObjectIdentifier)(nil)),\n\t\t\"RawContent\":       reflect.ValueOf((*asn1.RawContent)(nil)),\n\t\t\"RawValue\":         reflect.ValueOf((*asn1.RawValue)(nil)),\n\t\t\"StructuralError\":  reflect.ValueOf((*asn1.StructuralError)(nil)),\n\t\t\"SyntaxError\":      reflect.ValueOf((*asn1.SyntaxError)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_encoding_base32.go",
    "content": "// Code generated by 'yaegi extract encoding/base32'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/base32\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/base32/base32\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"HexEncoding\": reflect.ValueOf(&base32.HexEncoding).Elem(),\n\t\t\"NewDecoder\":  reflect.ValueOf(base32.NewDecoder),\n\t\t\"NewEncoder\":  reflect.ValueOf(base32.NewEncoder),\n\t\t\"NewEncoding\": reflect.ValueOf(base32.NewEncoding),\n\t\t\"NoPadding\":   reflect.ValueOf(base32.NoPadding),\n\t\t\"StdEncoding\": reflect.ValueOf(&base32.StdEncoding).Elem(),\n\t\t\"StdPadding\":  reflect.ValueOf(base32.StdPadding),\n\n\t\t// type definitions\n\t\t\"CorruptInputError\": reflect.ValueOf((*base32.CorruptInputError)(nil)),\n\t\t\"Encoding\":          reflect.ValueOf((*base32.Encoding)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_encoding_base64.go",
    "content": "// Code generated by 'yaegi extract encoding/base64'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/base64\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/base64/base64\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"NewDecoder\":     reflect.ValueOf(base64.NewDecoder),\n\t\t\"NewEncoder\":     reflect.ValueOf(base64.NewEncoder),\n\t\t\"NewEncoding\":    reflect.ValueOf(base64.NewEncoding),\n\t\t\"NoPadding\":      reflect.ValueOf(base64.NoPadding),\n\t\t\"RawStdEncoding\": reflect.ValueOf(&base64.RawStdEncoding).Elem(),\n\t\t\"RawURLEncoding\": reflect.ValueOf(&base64.RawURLEncoding).Elem(),\n\t\t\"StdEncoding\":    reflect.ValueOf(&base64.StdEncoding).Elem(),\n\t\t\"StdPadding\":     reflect.ValueOf(base64.StdPadding),\n\t\t\"URLEncoding\":    reflect.ValueOf(&base64.URLEncoding).Elem(),\n\n\t\t// type definitions\n\t\t\"CorruptInputError\": reflect.ValueOf((*base64.CorruptInputError)(nil)),\n\t\t\"Encoding\":          reflect.ValueOf((*base64.Encoding)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_encoding_binary.go",
    "content": "// Code generated by 'yaegi extract encoding/binary'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/binary\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/binary/binary\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AppendUvarint\":  reflect.ValueOf(binary.AppendUvarint),\n\t\t\"AppendVarint\":   reflect.ValueOf(binary.AppendVarint),\n\t\t\"BigEndian\":      reflect.ValueOf(&binary.BigEndian).Elem(),\n\t\t\"LittleEndian\":   reflect.ValueOf(&binary.LittleEndian).Elem(),\n\t\t\"MaxVarintLen16\": reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MaxVarintLen32\": reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MaxVarintLen64\": reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NativeEndian\":   reflect.ValueOf(&binary.NativeEndian).Elem(),\n\t\t\"PutUvarint\":     reflect.ValueOf(binary.PutUvarint),\n\t\t\"PutVarint\":      reflect.ValueOf(binary.PutVarint),\n\t\t\"Read\":           reflect.ValueOf(binary.Read),\n\t\t\"ReadUvarint\":    reflect.ValueOf(binary.ReadUvarint),\n\t\t\"ReadVarint\":     reflect.ValueOf(binary.ReadVarint),\n\t\t\"Size\":           reflect.ValueOf(binary.Size),\n\t\t\"Uvarint\":        reflect.ValueOf(binary.Uvarint),\n\t\t\"Varint\":         reflect.ValueOf(binary.Varint),\n\t\t\"Write\":          reflect.ValueOf(binary.Write),\n\n\t\t// type definitions\n\t\t\"AppendByteOrder\": reflect.ValueOf((*binary.AppendByteOrder)(nil)),\n\t\t\"ByteOrder\":       reflect.ValueOf((*binary.ByteOrder)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_AppendByteOrder\": reflect.ValueOf((*_encoding_binary_AppendByteOrder)(nil)),\n\t\t\"_ByteOrder\":       reflect.ValueOf((*_encoding_binary_ByteOrder)(nil)),\n\t}\n}\n\n// _encoding_binary_AppendByteOrder is an interface wrapper for AppendByteOrder type\ntype _encoding_binary_AppendByteOrder struct {\n\tIValue        interface{}\n\tWAppendUint16 func(a0 []byte, a1 uint16) []byte\n\tWAppendUint32 func(a0 []byte, a1 uint32) []byte\n\tWAppendUint64 func(a0 []byte, a1 uint64) []byte\n\tWString       func() string\n}\n\nfunc (W _encoding_binary_AppendByteOrder) AppendUint16(a0 []byte, a1 uint16) []byte {\n\treturn W.WAppendUint16(a0, a1)\n}\nfunc (W _encoding_binary_AppendByteOrder) AppendUint32(a0 []byte, a1 uint32) []byte {\n\treturn W.WAppendUint32(a0, a1)\n}\nfunc (W _encoding_binary_AppendByteOrder) AppendUint64(a0 []byte, a1 uint64) []byte {\n\treturn W.WAppendUint64(a0, a1)\n}\nfunc (W _encoding_binary_AppendByteOrder) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n\n// _encoding_binary_ByteOrder is an interface wrapper for ByteOrder type\ntype _encoding_binary_ByteOrder struct {\n\tIValue     interface{}\n\tWPutUint16 func(a0 []byte, a1 uint16)\n\tWPutUint32 func(a0 []byte, a1 uint32)\n\tWPutUint64 func(a0 []byte, a1 uint64)\n\tWString    func() string\n\tWUint16    func(a0 []byte) uint16\n\tWUint32    func(a0 []byte) uint32\n\tWUint64    func(a0 []byte) uint64\n}\n\nfunc (W _encoding_binary_ByteOrder) PutUint16(a0 []byte, a1 uint16) { W.WPutUint16(a0, a1) }\nfunc (W _encoding_binary_ByteOrder) PutUint32(a0 []byte, a1 uint32) { W.WPutUint32(a0, a1) }\nfunc (W _encoding_binary_ByteOrder) PutUint64(a0 []byte, a1 uint64) { W.WPutUint64(a0, a1) }\nfunc (W _encoding_binary_ByteOrder) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\nfunc (W _encoding_binary_ByteOrder) Uint16(a0 []byte) uint16 { return W.WUint16(a0) }\nfunc (W _encoding_binary_ByteOrder) Uint32(a0 []byte) uint32 { return W.WUint32(a0) }\nfunc (W _encoding_binary_ByteOrder) Uint64(a0 []byte) uint64 { return W.WUint64(a0) }\n"
  },
  {
    "path": "stdlib/go1_21_encoding_csv.go",
    "content": "// Code generated by 'yaegi extract encoding/csv'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/csv\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/csv/csv\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ErrBareQuote\":     reflect.ValueOf(&csv.ErrBareQuote).Elem(),\n\t\t\"ErrFieldCount\":    reflect.ValueOf(&csv.ErrFieldCount).Elem(),\n\t\t\"ErrQuote\":         reflect.ValueOf(&csv.ErrQuote).Elem(),\n\t\t\"ErrTrailingComma\": reflect.ValueOf(&csv.ErrTrailingComma).Elem(),\n\t\t\"NewReader\":        reflect.ValueOf(csv.NewReader),\n\t\t\"NewWriter\":        reflect.ValueOf(csv.NewWriter),\n\n\t\t// type definitions\n\t\t\"ParseError\": reflect.ValueOf((*csv.ParseError)(nil)),\n\t\t\"Reader\":     reflect.ValueOf((*csv.Reader)(nil)),\n\t\t\"Writer\":     reflect.ValueOf((*csv.Writer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_encoding_gob.go",
    "content": "// Code generated by 'yaegi extract encoding/gob'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/gob\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/gob/gob\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"NewDecoder\":   reflect.ValueOf(gob.NewDecoder),\n\t\t\"NewEncoder\":   reflect.ValueOf(gob.NewEncoder),\n\t\t\"Register\":     reflect.ValueOf(gob.Register),\n\t\t\"RegisterName\": reflect.ValueOf(gob.RegisterName),\n\n\t\t// type definitions\n\t\t\"CommonType\": reflect.ValueOf((*gob.CommonType)(nil)),\n\t\t\"Decoder\":    reflect.ValueOf((*gob.Decoder)(nil)),\n\t\t\"Encoder\":    reflect.ValueOf((*gob.Encoder)(nil)),\n\t\t\"GobDecoder\": reflect.ValueOf((*gob.GobDecoder)(nil)),\n\t\t\"GobEncoder\": reflect.ValueOf((*gob.GobEncoder)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_GobDecoder\": reflect.ValueOf((*_encoding_gob_GobDecoder)(nil)),\n\t\t\"_GobEncoder\": reflect.ValueOf((*_encoding_gob_GobEncoder)(nil)),\n\t}\n}\n\n// _encoding_gob_GobDecoder is an interface wrapper for GobDecoder type\ntype _encoding_gob_GobDecoder struct {\n\tIValue     interface{}\n\tWGobDecode func(a0 []byte) error\n}\n\nfunc (W _encoding_gob_GobDecoder) GobDecode(a0 []byte) error { return W.WGobDecode(a0) }\n\n// _encoding_gob_GobEncoder is an interface wrapper for GobEncoder type\ntype _encoding_gob_GobEncoder struct {\n\tIValue     interface{}\n\tWGobEncode func() ([]byte, error)\n}\n\nfunc (W _encoding_gob_GobEncoder) GobEncode() ([]byte, error) { return W.WGobEncode() }\n"
  },
  {
    "path": "stdlib/go1_21_encoding_hex.go",
    "content": "// Code generated by 'yaegi extract encoding/hex'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/hex\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/hex/hex\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Decode\":         reflect.ValueOf(hex.Decode),\n\t\t\"DecodeString\":   reflect.ValueOf(hex.DecodeString),\n\t\t\"DecodedLen\":     reflect.ValueOf(hex.DecodedLen),\n\t\t\"Dump\":           reflect.ValueOf(hex.Dump),\n\t\t\"Dumper\":         reflect.ValueOf(hex.Dumper),\n\t\t\"Encode\":         reflect.ValueOf(hex.Encode),\n\t\t\"EncodeToString\": reflect.ValueOf(hex.EncodeToString),\n\t\t\"EncodedLen\":     reflect.ValueOf(hex.EncodedLen),\n\t\t\"ErrLength\":      reflect.ValueOf(&hex.ErrLength).Elem(),\n\t\t\"NewDecoder\":     reflect.ValueOf(hex.NewDecoder),\n\t\t\"NewEncoder\":     reflect.ValueOf(hex.NewEncoder),\n\n\t\t// type definitions\n\t\t\"InvalidByteError\": reflect.ValueOf((*hex.InvalidByteError)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_encoding_json.go",
    "content": "// Code generated by 'yaegi extract encoding/json'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/json\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/json/json\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Compact\":       reflect.ValueOf(json.Compact),\n\t\t\"HTMLEscape\":    reflect.ValueOf(json.HTMLEscape),\n\t\t\"Indent\":        reflect.ValueOf(json.Indent),\n\t\t\"Marshal\":       reflect.ValueOf(json.Marshal),\n\t\t\"MarshalIndent\": reflect.ValueOf(json.MarshalIndent),\n\t\t\"NewDecoder\":    reflect.ValueOf(json.NewDecoder),\n\t\t\"NewEncoder\":    reflect.ValueOf(json.NewEncoder),\n\t\t\"Unmarshal\":     reflect.ValueOf(json.Unmarshal),\n\t\t\"Valid\":         reflect.ValueOf(json.Valid),\n\n\t\t// type definitions\n\t\t\"Decoder\":               reflect.ValueOf((*json.Decoder)(nil)),\n\t\t\"Delim\":                 reflect.ValueOf((*json.Delim)(nil)),\n\t\t\"Encoder\":               reflect.ValueOf((*json.Encoder)(nil)),\n\t\t\"InvalidUTF8Error\":      reflect.ValueOf((*json.InvalidUTF8Error)(nil)),\n\t\t\"InvalidUnmarshalError\": reflect.ValueOf((*json.InvalidUnmarshalError)(nil)),\n\t\t\"Marshaler\":             reflect.ValueOf((*json.Marshaler)(nil)),\n\t\t\"MarshalerError\":        reflect.ValueOf((*json.MarshalerError)(nil)),\n\t\t\"Number\":                reflect.ValueOf((*json.Number)(nil)),\n\t\t\"RawMessage\":            reflect.ValueOf((*json.RawMessage)(nil)),\n\t\t\"SyntaxError\":           reflect.ValueOf((*json.SyntaxError)(nil)),\n\t\t\"Token\":                 reflect.ValueOf((*json.Token)(nil)),\n\t\t\"UnmarshalFieldError\":   reflect.ValueOf((*json.UnmarshalFieldError)(nil)),\n\t\t\"UnmarshalTypeError\":    reflect.ValueOf((*json.UnmarshalTypeError)(nil)),\n\t\t\"Unmarshaler\":           reflect.ValueOf((*json.Unmarshaler)(nil)),\n\t\t\"UnsupportedTypeError\":  reflect.ValueOf((*json.UnsupportedTypeError)(nil)),\n\t\t\"UnsupportedValueError\": reflect.ValueOf((*json.UnsupportedValueError)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Marshaler\":   reflect.ValueOf((*_encoding_json_Marshaler)(nil)),\n\t\t\"_Token\":       reflect.ValueOf((*_encoding_json_Token)(nil)),\n\t\t\"_Unmarshaler\": reflect.ValueOf((*_encoding_json_Unmarshaler)(nil)),\n\t}\n}\n\n// _encoding_json_Marshaler is an interface wrapper for Marshaler type\ntype _encoding_json_Marshaler struct {\n\tIValue       interface{}\n\tWMarshalJSON func() ([]byte, error)\n}\n\nfunc (W _encoding_json_Marshaler) MarshalJSON() ([]byte, error) { return W.WMarshalJSON() }\n\n// _encoding_json_Token is an interface wrapper for Token type\ntype _encoding_json_Token struct {\n\tIValue interface{}\n}\n\n// _encoding_json_Unmarshaler is an interface wrapper for Unmarshaler type\ntype _encoding_json_Unmarshaler struct {\n\tIValue         interface{}\n\tWUnmarshalJSON func(a0 []byte) error\n}\n\nfunc (W _encoding_json_Unmarshaler) UnmarshalJSON(a0 []byte) error { return W.WUnmarshalJSON(a0) }\n"
  },
  {
    "path": "stdlib/go1_21_encoding_pem.go",
    "content": "// Code generated by 'yaegi extract encoding/pem'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/pem\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/pem/pem\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Decode\":         reflect.ValueOf(pem.Decode),\n\t\t\"Encode\":         reflect.ValueOf(pem.Encode),\n\t\t\"EncodeToMemory\": reflect.ValueOf(pem.EncodeToMemory),\n\n\t\t// type definitions\n\t\t\"Block\": reflect.ValueOf((*pem.Block)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_encoding_xml.go",
    "content": "// Code generated by 'yaegi extract encoding/xml'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/xml\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/xml/xml\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"CopyToken\":       reflect.ValueOf(xml.CopyToken),\n\t\t\"Escape\":          reflect.ValueOf(xml.Escape),\n\t\t\"EscapeText\":      reflect.ValueOf(xml.EscapeText),\n\t\t\"HTMLAutoClose\":   reflect.ValueOf(&xml.HTMLAutoClose).Elem(),\n\t\t\"HTMLEntity\":      reflect.ValueOf(&xml.HTMLEntity).Elem(),\n\t\t\"Header\":          reflect.ValueOf(constant.MakeFromLiteral(\"\\\"<?xml version=\\\\\\\"1.0\\\\\\\" encoding=\\\\\\\"UTF-8\\\\\\\"?>\\\\n\\\"\", token.STRING, 0)),\n\t\t\"Marshal\":         reflect.ValueOf(xml.Marshal),\n\t\t\"MarshalIndent\":   reflect.ValueOf(xml.MarshalIndent),\n\t\t\"NewDecoder\":      reflect.ValueOf(xml.NewDecoder),\n\t\t\"NewEncoder\":      reflect.ValueOf(xml.NewEncoder),\n\t\t\"NewTokenDecoder\": reflect.ValueOf(xml.NewTokenDecoder),\n\t\t\"Unmarshal\":       reflect.ValueOf(xml.Unmarshal),\n\n\t\t// type definitions\n\t\t\"Attr\":                 reflect.ValueOf((*xml.Attr)(nil)),\n\t\t\"CharData\":             reflect.ValueOf((*xml.CharData)(nil)),\n\t\t\"Comment\":              reflect.ValueOf((*xml.Comment)(nil)),\n\t\t\"Decoder\":              reflect.ValueOf((*xml.Decoder)(nil)),\n\t\t\"Directive\":            reflect.ValueOf((*xml.Directive)(nil)),\n\t\t\"Encoder\":              reflect.ValueOf((*xml.Encoder)(nil)),\n\t\t\"EndElement\":           reflect.ValueOf((*xml.EndElement)(nil)),\n\t\t\"Marshaler\":            reflect.ValueOf((*xml.Marshaler)(nil)),\n\t\t\"MarshalerAttr\":        reflect.ValueOf((*xml.MarshalerAttr)(nil)),\n\t\t\"Name\":                 reflect.ValueOf((*xml.Name)(nil)),\n\t\t\"ProcInst\":             reflect.ValueOf((*xml.ProcInst)(nil)),\n\t\t\"StartElement\":         reflect.ValueOf((*xml.StartElement)(nil)),\n\t\t\"SyntaxError\":          reflect.ValueOf((*xml.SyntaxError)(nil)),\n\t\t\"TagPathError\":         reflect.ValueOf((*xml.TagPathError)(nil)),\n\t\t\"Token\":                reflect.ValueOf((*xml.Token)(nil)),\n\t\t\"TokenReader\":          reflect.ValueOf((*xml.TokenReader)(nil)),\n\t\t\"UnmarshalError\":       reflect.ValueOf((*xml.UnmarshalError)(nil)),\n\t\t\"Unmarshaler\":          reflect.ValueOf((*xml.Unmarshaler)(nil)),\n\t\t\"UnmarshalerAttr\":      reflect.ValueOf((*xml.UnmarshalerAttr)(nil)),\n\t\t\"UnsupportedTypeError\": reflect.ValueOf((*xml.UnsupportedTypeError)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Marshaler\":       reflect.ValueOf((*_encoding_xml_Marshaler)(nil)),\n\t\t\"_MarshalerAttr\":   reflect.ValueOf((*_encoding_xml_MarshalerAttr)(nil)),\n\t\t\"_Token\":           reflect.ValueOf((*_encoding_xml_Token)(nil)),\n\t\t\"_TokenReader\":     reflect.ValueOf((*_encoding_xml_TokenReader)(nil)),\n\t\t\"_Unmarshaler\":     reflect.ValueOf((*_encoding_xml_Unmarshaler)(nil)),\n\t\t\"_UnmarshalerAttr\": reflect.ValueOf((*_encoding_xml_UnmarshalerAttr)(nil)),\n\t}\n}\n\n// _encoding_xml_Marshaler is an interface wrapper for Marshaler type\ntype _encoding_xml_Marshaler struct {\n\tIValue      interface{}\n\tWMarshalXML func(e *xml.Encoder, start xml.StartElement) error\n}\n\nfunc (W _encoding_xml_Marshaler) MarshalXML(e *xml.Encoder, start xml.StartElement) error {\n\treturn W.WMarshalXML(e, start)\n}\n\n// _encoding_xml_MarshalerAttr is an interface wrapper for MarshalerAttr type\ntype _encoding_xml_MarshalerAttr struct {\n\tIValue          interface{}\n\tWMarshalXMLAttr func(name xml.Name) (xml.Attr, error)\n}\n\nfunc (W _encoding_xml_MarshalerAttr) MarshalXMLAttr(name xml.Name) (xml.Attr, error) {\n\treturn W.WMarshalXMLAttr(name)\n}\n\n// _encoding_xml_Token is an interface wrapper for Token type\ntype _encoding_xml_Token struct {\n\tIValue interface{}\n}\n\n// _encoding_xml_TokenReader is an interface wrapper for TokenReader type\ntype _encoding_xml_TokenReader struct {\n\tIValue interface{}\n\tWToken func() (xml.Token, error)\n}\n\nfunc (W _encoding_xml_TokenReader) Token() (xml.Token, error) { return W.WToken() }\n\n// _encoding_xml_Unmarshaler is an interface wrapper for Unmarshaler type\ntype _encoding_xml_Unmarshaler struct {\n\tIValue        interface{}\n\tWUnmarshalXML func(d *xml.Decoder, start xml.StartElement) error\n}\n\nfunc (W _encoding_xml_Unmarshaler) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {\n\treturn W.WUnmarshalXML(d, start)\n}\n\n// _encoding_xml_UnmarshalerAttr is an interface wrapper for UnmarshalerAttr type\ntype _encoding_xml_UnmarshalerAttr struct {\n\tIValue            interface{}\n\tWUnmarshalXMLAttr func(attr xml.Attr) error\n}\n\nfunc (W _encoding_xml_UnmarshalerAttr) UnmarshalXMLAttr(attr xml.Attr) error {\n\treturn W.WUnmarshalXMLAttr(attr)\n}\n"
  },
  {
    "path": "stdlib/go1_21_errors.go",
    "content": "// Code generated by 'yaegi extract errors'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"errors\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"errors/errors\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"As\":             reflect.ValueOf(errors.As),\n\t\t\"ErrUnsupported\": reflect.ValueOf(&errors.ErrUnsupported).Elem(),\n\t\t\"Is\":             reflect.ValueOf(errors.Is),\n\t\t\"Join\":           reflect.ValueOf(errors.Join),\n\t\t\"New\":            reflect.ValueOf(errors.New),\n\t\t\"Unwrap\":         reflect.ValueOf(errors.Unwrap),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_expvar.go",
    "content": "// Code generated by 'yaegi extract expvar'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"expvar\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"expvar/expvar\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Do\":        reflect.ValueOf(expvar.Do),\n\t\t\"Get\":       reflect.ValueOf(expvar.Get),\n\t\t\"Handler\":   reflect.ValueOf(expvar.Handler),\n\t\t\"NewFloat\":  reflect.ValueOf(expvar.NewFloat),\n\t\t\"NewInt\":    reflect.ValueOf(expvar.NewInt),\n\t\t\"NewMap\":    reflect.ValueOf(expvar.NewMap),\n\t\t\"NewString\": reflect.ValueOf(expvar.NewString),\n\t\t\"Publish\":   reflect.ValueOf(expvar.Publish),\n\n\t\t// type definitions\n\t\t\"Float\":    reflect.ValueOf((*expvar.Float)(nil)),\n\t\t\"Func\":     reflect.ValueOf((*expvar.Func)(nil)),\n\t\t\"Int\":      reflect.ValueOf((*expvar.Int)(nil)),\n\t\t\"KeyValue\": reflect.ValueOf((*expvar.KeyValue)(nil)),\n\t\t\"Map\":      reflect.ValueOf((*expvar.Map)(nil)),\n\t\t\"String\":   reflect.ValueOf((*expvar.String)(nil)),\n\t\t\"Var\":      reflect.ValueOf((*expvar.Var)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Var\": reflect.ValueOf((*_expvar_Var)(nil)),\n\t}\n}\n\n// _expvar_Var is an interface wrapper for Var type\ntype _expvar_Var struct {\n\tIValue  interface{}\n\tWString func() string\n}\n\nfunc (W _expvar_Var) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n"
  },
  {
    "path": "stdlib/go1_21_flag.go",
    "content": "// Code generated by 'yaegi extract flag'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"flag\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"flag/flag\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Arg\":             reflect.ValueOf(flag.Arg),\n\t\t\"Args\":            reflect.ValueOf(flag.Args),\n\t\t\"Bool\":            reflect.ValueOf(flag.Bool),\n\t\t\"BoolFunc\":        reflect.ValueOf(flag.BoolFunc),\n\t\t\"BoolVar\":         reflect.ValueOf(flag.BoolVar),\n\t\t\"CommandLine\":     reflect.ValueOf(&flag.CommandLine).Elem(),\n\t\t\"ContinueOnError\": reflect.ValueOf(flag.ContinueOnError),\n\t\t\"Duration\":        reflect.ValueOf(flag.Duration),\n\t\t\"DurationVar\":     reflect.ValueOf(flag.DurationVar),\n\t\t\"ErrHelp\":         reflect.ValueOf(&flag.ErrHelp).Elem(),\n\t\t\"ExitOnError\":     reflect.ValueOf(flag.ExitOnError),\n\t\t\"Float64\":         reflect.ValueOf(flag.Float64),\n\t\t\"Float64Var\":      reflect.ValueOf(flag.Float64Var),\n\t\t\"Func\":            reflect.ValueOf(flag.Func),\n\t\t\"Int\":             reflect.ValueOf(flag.Int),\n\t\t\"Int64\":           reflect.ValueOf(flag.Int64),\n\t\t\"Int64Var\":        reflect.ValueOf(flag.Int64Var),\n\t\t\"IntVar\":          reflect.ValueOf(flag.IntVar),\n\t\t\"Lookup\":          reflect.ValueOf(flag.Lookup),\n\t\t\"NArg\":            reflect.ValueOf(flag.NArg),\n\t\t\"NFlag\":           reflect.ValueOf(flag.NFlag),\n\t\t\"NewFlagSet\":      reflect.ValueOf(flag.NewFlagSet),\n\t\t\"PanicOnError\":    reflect.ValueOf(flag.PanicOnError),\n\t\t\"Parse\":           reflect.ValueOf(flag.Parse),\n\t\t\"Parsed\":          reflect.ValueOf(flag.Parsed),\n\t\t\"PrintDefaults\":   reflect.ValueOf(flag.PrintDefaults),\n\t\t\"Set\":             reflect.ValueOf(flag.Set),\n\t\t\"String\":          reflect.ValueOf(flag.String),\n\t\t\"StringVar\":       reflect.ValueOf(flag.StringVar),\n\t\t\"TextVar\":         reflect.ValueOf(flag.TextVar),\n\t\t\"Uint\":            reflect.ValueOf(flag.Uint),\n\t\t\"Uint64\":          reflect.ValueOf(flag.Uint64),\n\t\t\"Uint64Var\":       reflect.ValueOf(flag.Uint64Var),\n\t\t\"UintVar\":         reflect.ValueOf(flag.UintVar),\n\t\t\"UnquoteUsage\":    reflect.ValueOf(flag.UnquoteUsage),\n\t\t\"Usage\":           reflect.ValueOf(&flag.Usage).Elem(),\n\t\t\"Var\":             reflect.ValueOf(flag.Var),\n\t\t\"Visit\":           reflect.ValueOf(flag.Visit),\n\t\t\"VisitAll\":        reflect.ValueOf(flag.VisitAll),\n\n\t\t// type definitions\n\t\t\"ErrorHandling\": reflect.ValueOf((*flag.ErrorHandling)(nil)),\n\t\t\"Flag\":          reflect.ValueOf((*flag.Flag)(nil)),\n\t\t\"FlagSet\":       reflect.ValueOf((*flag.FlagSet)(nil)),\n\t\t\"Getter\":        reflect.ValueOf((*flag.Getter)(nil)),\n\t\t\"Value\":         reflect.ValueOf((*flag.Value)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Getter\": reflect.ValueOf((*_flag_Getter)(nil)),\n\t\t\"_Value\":  reflect.ValueOf((*_flag_Value)(nil)),\n\t}\n}\n\n// _flag_Getter is an interface wrapper for Getter type\ntype _flag_Getter struct {\n\tIValue  interface{}\n\tWGet    func() any\n\tWSet    func(a0 string) error\n\tWString func() string\n}\n\nfunc (W _flag_Getter) Get() any            { return W.WGet() }\nfunc (W _flag_Getter) Set(a0 string) error { return W.WSet(a0) }\nfunc (W _flag_Getter) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n\n// _flag_Value is an interface wrapper for Value type\ntype _flag_Value struct {\n\tIValue  interface{}\n\tWSet    func(a0 string) error\n\tWString func() string\n}\n\nfunc (W _flag_Value) Set(a0 string) error { return W.WSet(a0) }\nfunc (W _flag_Value) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n"
  },
  {
    "path": "stdlib/go1_21_fmt.go",
    "content": "// Code generated by 'yaegi extract fmt'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"fmt\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"fmt/fmt\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Append\":       reflect.ValueOf(fmt.Append),\n\t\t\"Appendf\":      reflect.ValueOf(fmt.Appendf),\n\t\t\"Appendln\":     reflect.ValueOf(fmt.Appendln),\n\t\t\"Errorf\":       reflect.ValueOf(fmt.Errorf),\n\t\t\"FormatString\": reflect.ValueOf(fmt.FormatString),\n\t\t\"Fprint\":       reflect.ValueOf(fmt.Fprint),\n\t\t\"Fprintf\":      reflect.ValueOf(fmt.Fprintf),\n\t\t\"Fprintln\":     reflect.ValueOf(fmt.Fprintln),\n\t\t\"Fscan\":        reflect.ValueOf(fmt.Fscan),\n\t\t\"Fscanf\":       reflect.ValueOf(fmt.Fscanf),\n\t\t\"Fscanln\":      reflect.ValueOf(fmt.Fscanln),\n\t\t\"Print\":        reflect.ValueOf(fmt.Print),\n\t\t\"Printf\":       reflect.ValueOf(fmt.Printf),\n\t\t\"Println\":      reflect.ValueOf(fmt.Println),\n\t\t\"Scan\":         reflect.ValueOf(fmt.Scan),\n\t\t\"Scanf\":        reflect.ValueOf(fmt.Scanf),\n\t\t\"Scanln\":       reflect.ValueOf(fmt.Scanln),\n\t\t\"Sprint\":       reflect.ValueOf(fmt.Sprint),\n\t\t\"Sprintf\":      reflect.ValueOf(fmt.Sprintf),\n\t\t\"Sprintln\":     reflect.ValueOf(fmt.Sprintln),\n\t\t\"Sscan\":        reflect.ValueOf(fmt.Sscan),\n\t\t\"Sscanf\":       reflect.ValueOf(fmt.Sscanf),\n\t\t\"Sscanln\":      reflect.ValueOf(fmt.Sscanln),\n\n\t\t// type definitions\n\t\t\"Formatter\":  reflect.ValueOf((*fmt.Formatter)(nil)),\n\t\t\"GoStringer\": reflect.ValueOf((*fmt.GoStringer)(nil)),\n\t\t\"ScanState\":  reflect.ValueOf((*fmt.ScanState)(nil)),\n\t\t\"Scanner\":    reflect.ValueOf((*fmt.Scanner)(nil)),\n\t\t\"State\":      reflect.ValueOf((*fmt.State)(nil)),\n\t\t\"Stringer\":   reflect.ValueOf((*fmt.Stringer)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Formatter\":  reflect.ValueOf((*_fmt_Formatter)(nil)),\n\t\t\"_GoStringer\": reflect.ValueOf((*_fmt_GoStringer)(nil)),\n\t\t\"_ScanState\":  reflect.ValueOf((*_fmt_ScanState)(nil)),\n\t\t\"_Scanner\":    reflect.ValueOf((*_fmt_Scanner)(nil)),\n\t\t\"_State\":      reflect.ValueOf((*_fmt_State)(nil)),\n\t\t\"_Stringer\":   reflect.ValueOf((*_fmt_Stringer)(nil)),\n\t}\n}\n\n// _fmt_Formatter is an interface wrapper for Formatter type\ntype _fmt_Formatter struct {\n\tIValue  interface{}\n\tWFormat func(f fmt.State, verb rune)\n}\n\nfunc (W _fmt_Formatter) Format(f fmt.State, verb rune) { W.WFormat(f, verb) }\n\n// _fmt_GoStringer is an interface wrapper for GoStringer type\ntype _fmt_GoStringer struct {\n\tIValue    interface{}\n\tWGoString func() string\n}\n\nfunc (W _fmt_GoStringer) GoString() string { return W.WGoString() }\n\n// _fmt_ScanState is an interface wrapper for ScanState type\ntype _fmt_ScanState struct {\n\tIValue      interface{}\n\tWRead       func(buf []byte) (n int, err error)\n\tWReadRune   func() (r rune, size int, err error)\n\tWSkipSpace  func()\n\tWToken      func(skipSpace bool, f func(rune) bool) (token []byte, err error)\n\tWUnreadRune func() error\n\tWWidth      func() (wid int, ok bool)\n}\n\nfunc (W _fmt_ScanState) Read(buf []byte) (n int, err error)      { return W.WRead(buf) }\nfunc (W _fmt_ScanState) ReadRune() (r rune, size int, err error) { return W.WReadRune() }\nfunc (W _fmt_ScanState) SkipSpace()                              { W.WSkipSpace() }\nfunc (W _fmt_ScanState) Token(skipSpace bool, f func(rune) bool) (token []byte, err error) {\n\treturn W.WToken(skipSpace, f)\n}\nfunc (W _fmt_ScanState) UnreadRune() error         { return W.WUnreadRune() }\nfunc (W _fmt_ScanState) Width() (wid int, ok bool) { return W.WWidth() }\n\n// _fmt_Scanner is an interface wrapper for Scanner type\ntype _fmt_Scanner struct {\n\tIValue interface{}\n\tWScan  func(state fmt.ScanState, verb rune) error\n}\n\nfunc (W _fmt_Scanner) Scan(state fmt.ScanState, verb rune) error { return W.WScan(state, verb) }\n\n// _fmt_State is an interface wrapper for State type\ntype _fmt_State struct {\n\tIValue     interface{}\n\tWFlag      func(c int) bool\n\tWPrecision func() (prec int, ok bool)\n\tWWidth     func() (wid int, ok bool)\n\tWWrite     func(b []byte) (n int, err error)\n}\n\nfunc (W _fmt_State) Flag(c int) bool                   { return W.WFlag(c) }\nfunc (W _fmt_State) Precision() (prec int, ok bool)    { return W.WPrecision() }\nfunc (W _fmt_State) Width() (wid int, ok bool)         { return W.WWidth() }\nfunc (W _fmt_State) Write(b []byte) (n int, err error) { return W.WWrite(b) }\n\n// _fmt_Stringer is an interface wrapper for Stringer type\ntype _fmt_Stringer struct {\n\tIValue  interface{}\n\tWString func() string\n}\n\nfunc (W _fmt_Stringer) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n"
  },
  {
    "path": "stdlib/go1_21_go_ast.go",
    "content": "// Code generated by 'yaegi extract go/ast'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/ast\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/ast/ast\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Bad\":                        reflect.ValueOf(ast.Bad),\n\t\t\"Con\":                        reflect.ValueOf(ast.Con),\n\t\t\"FileExports\":                reflect.ValueOf(ast.FileExports),\n\t\t\"FilterDecl\":                 reflect.ValueOf(ast.FilterDecl),\n\t\t\"FilterFile\":                 reflect.ValueOf(ast.FilterFile),\n\t\t\"FilterFuncDuplicates\":       reflect.ValueOf(ast.FilterFuncDuplicates),\n\t\t\"FilterImportDuplicates\":     reflect.ValueOf(ast.FilterImportDuplicates),\n\t\t\"FilterPackage\":              reflect.ValueOf(ast.FilterPackage),\n\t\t\"FilterUnassociatedComments\": reflect.ValueOf(ast.FilterUnassociatedComments),\n\t\t\"Fprint\":                     reflect.ValueOf(ast.Fprint),\n\t\t\"Fun\":                        reflect.ValueOf(ast.Fun),\n\t\t\"Inspect\":                    reflect.ValueOf(ast.Inspect),\n\t\t\"IsExported\":                 reflect.ValueOf(ast.IsExported),\n\t\t\"IsGenerated\":                reflect.ValueOf(ast.IsGenerated),\n\t\t\"Lbl\":                        reflect.ValueOf(ast.Lbl),\n\t\t\"MergePackageFiles\":          reflect.ValueOf(ast.MergePackageFiles),\n\t\t\"NewCommentMap\":              reflect.ValueOf(ast.NewCommentMap),\n\t\t\"NewIdent\":                   reflect.ValueOf(ast.NewIdent),\n\t\t\"NewObj\":                     reflect.ValueOf(ast.NewObj),\n\t\t\"NewPackage\":                 reflect.ValueOf(ast.NewPackage),\n\t\t\"NewScope\":                   reflect.ValueOf(ast.NewScope),\n\t\t\"NotNilFilter\":               reflect.ValueOf(ast.NotNilFilter),\n\t\t\"PackageExports\":             reflect.ValueOf(ast.PackageExports),\n\t\t\"Pkg\":                        reflect.ValueOf(ast.Pkg),\n\t\t\"Print\":                      reflect.ValueOf(ast.Print),\n\t\t\"RECV\":                       reflect.ValueOf(ast.RECV),\n\t\t\"SEND\":                       reflect.ValueOf(ast.SEND),\n\t\t\"SortImports\":                reflect.ValueOf(ast.SortImports),\n\t\t\"Typ\":                        reflect.ValueOf(ast.Typ),\n\t\t\"Var\":                        reflect.ValueOf(ast.Var),\n\t\t\"Walk\":                       reflect.ValueOf(ast.Walk),\n\n\t\t// type definitions\n\t\t\"ArrayType\":      reflect.ValueOf((*ast.ArrayType)(nil)),\n\t\t\"AssignStmt\":     reflect.ValueOf((*ast.AssignStmt)(nil)),\n\t\t\"BadDecl\":        reflect.ValueOf((*ast.BadDecl)(nil)),\n\t\t\"BadExpr\":        reflect.ValueOf((*ast.BadExpr)(nil)),\n\t\t\"BadStmt\":        reflect.ValueOf((*ast.BadStmt)(nil)),\n\t\t\"BasicLit\":       reflect.ValueOf((*ast.BasicLit)(nil)),\n\t\t\"BinaryExpr\":     reflect.ValueOf((*ast.BinaryExpr)(nil)),\n\t\t\"BlockStmt\":      reflect.ValueOf((*ast.BlockStmt)(nil)),\n\t\t\"BranchStmt\":     reflect.ValueOf((*ast.BranchStmt)(nil)),\n\t\t\"CallExpr\":       reflect.ValueOf((*ast.CallExpr)(nil)),\n\t\t\"CaseClause\":     reflect.ValueOf((*ast.CaseClause)(nil)),\n\t\t\"ChanDir\":        reflect.ValueOf((*ast.ChanDir)(nil)),\n\t\t\"ChanType\":       reflect.ValueOf((*ast.ChanType)(nil)),\n\t\t\"CommClause\":     reflect.ValueOf((*ast.CommClause)(nil)),\n\t\t\"Comment\":        reflect.ValueOf((*ast.Comment)(nil)),\n\t\t\"CommentGroup\":   reflect.ValueOf((*ast.CommentGroup)(nil)),\n\t\t\"CommentMap\":     reflect.ValueOf((*ast.CommentMap)(nil)),\n\t\t\"CompositeLit\":   reflect.ValueOf((*ast.CompositeLit)(nil)),\n\t\t\"Decl\":           reflect.ValueOf((*ast.Decl)(nil)),\n\t\t\"DeclStmt\":       reflect.ValueOf((*ast.DeclStmt)(nil)),\n\t\t\"DeferStmt\":      reflect.ValueOf((*ast.DeferStmt)(nil)),\n\t\t\"Ellipsis\":       reflect.ValueOf((*ast.Ellipsis)(nil)),\n\t\t\"EmptyStmt\":      reflect.ValueOf((*ast.EmptyStmt)(nil)),\n\t\t\"Expr\":           reflect.ValueOf((*ast.Expr)(nil)),\n\t\t\"ExprStmt\":       reflect.ValueOf((*ast.ExprStmt)(nil)),\n\t\t\"Field\":          reflect.ValueOf((*ast.Field)(nil)),\n\t\t\"FieldFilter\":    reflect.ValueOf((*ast.FieldFilter)(nil)),\n\t\t\"FieldList\":      reflect.ValueOf((*ast.FieldList)(nil)),\n\t\t\"File\":           reflect.ValueOf((*ast.File)(nil)),\n\t\t\"Filter\":         reflect.ValueOf((*ast.Filter)(nil)),\n\t\t\"ForStmt\":        reflect.ValueOf((*ast.ForStmt)(nil)),\n\t\t\"FuncDecl\":       reflect.ValueOf((*ast.FuncDecl)(nil)),\n\t\t\"FuncLit\":        reflect.ValueOf((*ast.FuncLit)(nil)),\n\t\t\"FuncType\":       reflect.ValueOf((*ast.FuncType)(nil)),\n\t\t\"GenDecl\":        reflect.ValueOf((*ast.GenDecl)(nil)),\n\t\t\"GoStmt\":         reflect.ValueOf((*ast.GoStmt)(nil)),\n\t\t\"Ident\":          reflect.ValueOf((*ast.Ident)(nil)),\n\t\t\"IfStmt\":         reflect.ValueOf((*ast.IfStmt)(nil)),\n\t\t\"ImportSpec\":     reflect.ValueOf((*ast.ImportSpec)(nil)),\n\t\t\"Importer\":       reflect.ValueOf((*ast.Importer)(nil)),\n\t\t\"IncDecStmt\":     reflect.ValueOf((*ast.IncDecStmt)(nil)),\n\t\t\"IndexExpr\":      reflect.ValueOf((*ast.IndexExpr)(nil)),\n\t\t\"IndexListExpr\":  reflect.ValueOf((*ast.IndexListExpr)(nil)),\n\t\t\"InterfaceType\":  reflect.ValueOf((*ast.InterfaceType)(nil)),\n\t\t\"KeyValueExpr\":   reflect.ValueOf((*ast.KeyValueExpr)(nil)),\n\t\t\"LabeledStmt\":    reflect.ValueOf((*ast.LabeledStmt)(nil)),\n\t\t\"MapType\":        reflect.ValueOf((*ast.MapType)(nil)),\n\t\t\"MergeMode\":      reflect.ValueOf((*ast.MergeMode)(nil)),\n\t\t\"Node\":           reflect.ValueOf((*ast.Node)(nil)),\n\t\t\"ObjKind\":        reflect.ValueOf((*ast.ObjKind)(nil)),\n\t\t\"Object\":         reflect.ValueOf((*ast.Object)(nil)),\n\t\t\"Package\":        reflect.ValueOf((*ast.Package)(nil)),\n\t\t\"ParenExpr\":      reflect.ValueOf((*ast.ParenExpr)(nil)),\n\t\t\"RangeStmt\":      reflect.ValueOf((*ast.RangeStmt)(nil)),\n\t\t\"ReturnStmt\":     reflect.ValueOf((*ast.ReturnStmt)(nil)),\n\t\t\"Scope\":          reflect.ValueOf((*ast.Scope)(nil)),\n\t\t\"SelectStmt\":     reflect.ValueOf((*ast.SelectStmt)(nil)),\n\t\t\"SelectorExpr\":   reflect.ValueOf((*ast.SelectorExpr)(nil)),\n\t\t\"SendStmt\":       reflect.ValueOf((*ast.SendStmt)(nil)),\n\t\t\"SliceExpr\":      reflect.ValueOf((*ast.SliceExpr)(nil)),\n\t\t\"Spec\":           reflect.ValueOf((*ast.Spec)(nil)),\n\t\t\"StarExpr\":       reflect.ValueOf((*ast.StarExpr)(nil)),\n\t\t\"Stmt\":           reflect.ValueOf((*ast.Stmt)(nil)),\n\t\t\"StructType\":     reflect.ValueOf((*ast.StructType)(nil)),\n\t\t\"SwitchStmt\":     reflect.ValueOf((*ast.SwitchStmt)(nil)),\n\t\t\"TypeAssertExpr\": reflect.ValueOf((*ast.TypeAssertExpr)(nil)),\n\t\t\"TypeSpec\":       reflect.ValueOf((*ast.TypeSpec)(nil)),\n\t\t\"TypeSwitchStmt\": reflect.ValueOf((*ast.TypeSwitchStmt)(nil)),\n\t\t\"UnaryExpr\":      reflect.ValueOf((*ast.UnaryExpr)(nil)),\n\t\t\"ValueSpec\":      reflect.ValueOf((*ast.ValueSpec)(nil)),\n\t\t\"Visitor\":        reflect.ValueOf((*ast.Visitor)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Decl\":    reflect.ValueOf((*_go_ast_Decl)(nil)),\n\t\t\"_Expr\":    reflect.ValueOf((*_go_ast_Expr)(nil)),\n\t\t\"_Node\":    reflect.ValueOf((*_go_ast_Node)(nil)),\n\t\t\"_Spec\":    reflect.ValueOf((*_go_ast_Spec)(nil)),\n\t\t\"_Stmt\":    reflect.ValueOf((*_go_ast_Stmt)(nil)),\n\t\t\"_Visitor\": reflect.ValueOf((*_go_ast_Visitor)(nil)),\n\t}\n}\n\n// _go_ast_Decl is an interface wrapper for Decl type\ntype _go_ast_Decl struct {\n\tIValue interface{}\n\tWEnd   func() token.Pos\n\tWPos   func() token.Pos\n}\n\nfunc (W _go_ast_Decl) End() token.Pos { return W.WEnd() }\nfunc (W _go_ast_Decl) Pos() token.Pos { return W.WPos() }\n\n// _go_ast_Expr is an interface wrapper for Expr type\ntype _go_ast_Expr struct {\n\tIValue interface{}\n\tWEnd   func() token.Pos\n\tWPos   func() token.Pos\n}\n\nfunc (W _go_ast_Expr) End() token.Pos { return W.WEnd() }\nfunc (W _go_ast_Expr) Pos() token.Pos { return W.WPos() }\n\n// _go_ast_Node is an interface wrapper for Node type\ntype _go_ast_Node struct {\n\tIValue interface{}\n\tWEnd   func() token.Pos\n\tWPos   func() token.Pos\n}\n\nfunc (W _go_ast_Node) End() token.Pos { return W.WEnd() }\nfunc (W _go_ast_Node) Pos() token.Pos { return W.WPos() }\n\n// _go_ast_Spec is an interface wrapper for Spec type\ntype _go_ast_Spec struct {\n\tIValue interface{}\n\tWEnd   func() token.Pos\n\tWPos   func() token.Pos\n}\n\nfunc (W _go_ast_Spec) End() token.Pos { return W.WEnd() }\nfunc (W _go_ast_Spec) Pos() token.Pos { return W.WPos() }\n\n// _go_ast_Stmt is an interface wrapper for Stmt type\ntype _go_ast_Stmt struct {\n\tIValue interface{}\n\tWEnd   func() token.Pos\n\tWPos   func() token.Pos\n}\n\nfunc (W _go_ast_Stmt) End() token.Pos { return W.WEnd() }\nfunc (W _go_ast_Stmt) Pos() token.Pos { return W.WPos() }\n\n// _go_ast_Visitor is an interface wrapper for Visitor type\ntype _go_ast_Visitor struct {\n\tIValue interface{}\n\tWVisit func(node ast.Node) (w ast.Visitor)\n}\n\nfunc (W _go_ast_Visitor) Visit(node ast.Node) (w ast.Visitor) { return W.WVisit(node) }\n"
  },
  {
    "path": "stdlib/go1_21_go_build.go",
    "content": "// Code generated by 'yaegi extract go/build'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/build\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/build/build\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllowBinary\":   reflect.ValueOf(build.AllowBinary),\n\t\t\"ArchChar\":      reflect.ValueOf(build.ArchChar),\n\t\t\"Default\":       reflect.ValueOf(&build.Default).Elem(),\n\t\t\"FindOnly\":      reflect.ValueOf(build.FindOnly),\n\t\t\"IgnoreVendor\":  reflect.ValueOf(build.IgnoreVendor),\n\t\t\"Import\":        reflect.ValueOf(build.Import),\n\t\t\"ImportComment\": reflect.ValueOf(build.ImportComment),\n\t\t\"ImportDir\":     reflect.ValueOf(build.ImportDir),\n\t\t\"IsLocalImport\": reflect.ValueOf(build.IsLocalImport),\n\t\t\"ToolDir\":       reflect.ValueOf(&build.ToolDir).Elem(),\n\n\t\t// type definitions\n\t\t\"Context\":              reflect.ValueOf((*build.Context)(nil)),\n\t\t\"Directive\":            reflect.ValueOf((*build.Directive)(nil)),\n\t\t\"ImportMode\":           reflect.ValueOf((*build.ImportMode)(nil)),\n\t\t\"MultiplePackageError\": reflect.ValueOf((*build.MultiplePackageError)(nil)),\n\t\t\"NoGoError\":            reflect.ValueOf((*build.NoGoError)(nil)),\n\t\t\"Package\":              reflect.ValueOf((*build.Package)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_go_build_constraint.go",
    "content": "// Code generated by 'yaegi extract go/build/constraint'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/build/constraint\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/build/constraint/constraint\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"GoVersion\":      reflect.ValueOf(constraint.GoVersion),\n\t\t\"IsGoBuild\":      reflect.ValueOf(constraint.IsGoBuild),\n\t\t\"IsPlusBuild\":    reflect.ValueOf(constraint.IsPlusBuild),\n\t\t\"Parse\":          reflect.ValueOf(constraint.Parse),\n\t\t\"PlusBuildLines\": reflect.ValueOf(constraint.PlusBuildLines),\n\n\t\t// type definitions\n\t\t\"AndExpr\":     reflect.ValueOf((*constraint.AndExpr)(nil)),\n\t\t\"Expr\":        reflect.ValueOf((*constraint.Expr)(nil)),\n\t\t\"NotExpr\":     reflect.ValueOf((*constraint.NotExpr)(nil)),\n\t\t\"OrExpr\":      reflect.ValueOf((*constraint.OrExpr)(nil)),\n\t\t\"SyntaxError\": reflect.ValueOf((*constraint.SyntaxError)(nil)),\n\t\t\"TagExpr\":     reflect.ValueOf((*constraint.TagExpr)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Expr\": reflect.ValueOf((*_go_build_constraint_Expr)(nil)),\n\t}\n}\n\n// _go_build_constraint_Expr is an interface wrapper for Expr type\ntype _go_build_constraint_Expr struct {\n\tIValue  interface{}\n\tWEval   func(ok func(tag string) bool) bool\n\tWString func() string\n}\n\nfunc (W _go_build_constraint_Expr) Eval(ok func(tag string) bool) bool { return W.WEval(ok) }\nfunc (W _go_build_constraint_Expr) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n"
  },
  {
    "path": "stdlib/go1_21_go_constant.go",
    "content": "// Code generated by 'yaegi extract go/constant'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/constant/constant\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BinaryOp\":        reflect.ValueOf(constant.BinaryOp),\n\t\t\"BitLen\":          reflect.ValueOf(constant.BitLen),\n\t\t\"Bool\":            reflect.ValueOf(constant.Bool),\n\t\t\"BoolVal\":         reflect.ValueOf(constant.BoolVal),\n\t\t\"Bytes\":           reflect.ValueOf(constant.Bytes),\n\t\t\"Compare\":         reflect.ValueOf(constant.Compare),\n\t\t\"Complex\":         reflect.ValueOf(constant.Complex),\n\t\t\"Denom\":           reflect.ValueOf(constant.Denom),\n\t\t\"Float\":           reflect.ValueOf(constant.Float),\n\t\t\"Float32Val\":      reflect.ValueOf(constant.Float32Val),\n\t\t\"Float64Val\":      reflect.ValueOf(constant.Float64Val),\n\t\t\"Imag\":            reflect.ValueOf(constant.Imag),\n\t\t\"Int\":             reflect.ValueOf(constant.Int),\n\t\t\"Int64Val\":        reflect.ValueOf(constant.Int64Val),\n\t\t\"Make\":            reflect.ValueOf(constant.Make),\n\t\t\"MakeBool\":        reflect.ValueOf(constant.MakeBool),\n\t\t\"MakeFloat64\":     reflect.ValueOf(constant.MakeFloat64),\n\t\t\"MakeFromBytes\":   reflect.ValueOf(constant.MakeFromBytes),\n\t\t\"MakeFromLiteral\": reflect.ValueOf(constant.MakeFromLiteral),\n\t\t\"MakeImag\":        reflect.ValueOf(constant.MakeImag),\n\t\t\"MakeInt64\":       reflect.ValueOf(constant.MakeInt64),\n\t\t\"MakeString\":      reflect.ValueOf(constant.MakeString),\n\t\t\"MakeUint64\":      reflect.ValueOf(constant.MakeUint64),\n\t\t\"MakeUnknown\":     reflect.ValueOf(constant.MakeUnknown),\n\t\t\"Num\":             reflect.ValueOf(constant.Num),\n\t\t\"Real\":            reflect.ValueOf(constant.Real),\n\t\t\"Shift\":           reflect.ValueOf(constant.Shift),\n\t\t\"Sign\":            reflect.ValueOf(constant.Sign),\n\t\t\"String\":          reflect.ValueOf(constant.String),\n\t\t\"StringVal\":       reflect.ValueOf(constant.StringVal),\n\t\t\"ToComplex\":       reflect.ValueOf(constant.ToComplex),\n\t\t\"ToFloat\":         reflect.ValueOf(constant.ToFloat),\n\t\t\"ToInt\":           reflect.ValueOf(constant.ToInt),\n\t\t\"Uint64Val\":       reflect.ValueOf(constant.Uint64Val),\n\t\t\"UnaryOp\":         reflect.ValueOf(constant.UnaryOp),\n\t\t\"Unknown\":         reflect.ValueOf(constant.Unknown),\n\t\t\"Val\":             reflect.ValueOf(constant.Val),\n\n\t\t// type definitions\n\t\t\"Kind\":  reflect.ValueOf((*constant.Kind)(nil)),\n\t\t\"Value\": reflect.ValueOf((*constant.Value)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Value\": reflect.ValueOf((*_go_constant_Value)(nil)),\n\t}\n}\n\n// _go_constant_Value is an interface wrapper for Value type\ntype _go_constant_Value struct {\n\tIValue       interface{}\n\tWExactString func() string\n\tWKind        func() constant.Kind\n\tWString      func() string\n}\n\nfunc (W _go_constant_Value) ExactString() string { return W.WExactString() }\nfunc (W _go_constant_Value) Kind() constant.Kind { return W.WKind() }\nfunc (W _go_constant_Value) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n"
  },
  {
    "path": "stdlib/go1_21_go_doc.go",
    "content": "// Code generated by 'yaegi extract go/doc'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/doc\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/doc/doc\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllDecls\":        reflect.ValueOf(doc.AllDecls),\n\t\t\"AllMethods\":      reflect.ValueOf(doc.AllMethods),\n\t\t\"Examples\":        reflect.ValueOf(doc.Examples),\n\t\t\"IllegalPrefixes\": reflect.ValueOf(&doc.IllegalPrefixes).Elem(),\n\t\t\"IsPredeclared\":   reflect.ValueOf(doc.IsPredeclared),\n\t\t\"New\":             reflect.ValueOf(doc.New),\n\t\t\"NewFromFiles\":    reflect.ValueOf(doc.NewFromFiles),\n\t\t\"PreserveAST\":     reflect.ValueOf(doc.PreserveAST),\n\t\t\"Synopsis\":        reflect.ValueOf(doc.Synopsis),\n\t\t\"ToHTML\":          reflect.ValueOf(doc.ToHTML),\n\t\t\"ToText\":          reflect.ValueOf(doc.ToText),\n\n\t\t// type definitions\n\t\t\"Example\": reflect.ValueOf((*doc.Example)(nil)),\n\t\t\"Filter\":  reflect.ValueOf((*doc.Filter)(nil)),\n\t\t\"Func\":    reflect.ValueOf((*doc.Func)(nil)),\n\t\t\"Mode\":    reflect.ValueOf((*doc.Mode)(nil)),\n\t\t\"Note\":    reflect.ValueOf((*doc.Note)(nil)),\n\t\t\"Package\": reflect.ValueOf((*doc.Package)(nil)),\n\t\t\"Type\":    reflect.ValueOf((*doc.Type)(nil)),\n\t\t\"Value\":   reflect.ValueOf((*doc.Value)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_go_doc_comment.go",
    "content": "// Code generated by 'yaegi extract go/doc/comment'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/doc/comment\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/doc/comment/comment\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"DefaultLookupPackage\": reflect.ValueOf(comment.DefaultLookupPackage),\n\n\t\t// type definitions\n\t\t\"Block\":     reflect.ValueOf((*comment.Block)(nil)),\n\t\t\"Code\":      reflect.ValueOf((*comment.Code)(nil)),\n\t\t\"Doc\":       reflect.ValueOf((*comment.Doc)(nil)),\n\t\t\"DocLink\":   reflect.ValueOf((*comment.DocLink)(nil)),\n\t\t\"Heading\":   reflect.ValueOf((*comment.Heading)(nil)),\n\t\t\"Italic\":    reflect.ValueOf((*comment.Italic)(nil)),\n\t\t\"Link\":      reflect.ValueOf((*comment.Link)(nil)),\n\t\t\"LinkDef\":   reflect.ValueOf((*comment.LinkDef)(nil)),\n\t\t\"List\":      reflect.ValueOf((*comment.List)(nil)),\n\t\t\"ListItem\":  reflect.ValueOf((*comment.ListItem)(nil)),\n\t\t\"Paragraph\": reflect.ValueOf((*comment.Paragraph)(nil)),\n\t\t\"Parser\":    reflect.ValueOf((*comment.Parser)(nil)),\n\t\t\"Plain\":     reflect.ValueOf((*comment.Plain)(nil)),\n\t\t\"Printer\":   reflect.ValueOf((*comment.Printer)(nil)),\n\t\t\"Text\":      reflect.ValueOf((*comment.Text)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Block\": reflect.ValueOf((*_go_doc_comment_Block)(nil)),\n\t\t\"_Text\":  reflect.ValueOf((*_go_doc_comment_Text)(nil)),\n\t}\n}\n\n// _go_doc_comment_Block is an interface wrapper for Block type\ntype _go_doc_comment_Block struct {\n\tIValue interface{}\n}\n\n// _go_doc_comment_Text is an interface wrapper for Text type\ntype _go_doc_comment_Text struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/go1_21_go_format.go",
    "content": "// Code generated by 'yaegi extract go/format'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/format\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/format/format\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Node\":   reflect.ValueOf(format.Node),\n\t\t\"Source\": reflect.ValueOf(format.Source),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_go_importer.go",
    "content": "// Code generated by 'yaegi extract go/importer'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/importer\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/importer/importer\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Default\":     reflect.ValueOf(importer.Default),\n\t\t\"For\":         reflect.ValueOf(importer.For),\n\t\t\"ForCompiler\": reflect.ValueOf(importer.ForCompiler),\n\n\t\t// type definitions\n\t\t\"Lookup\": reflect.ValueOf((*importer.Lookup)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_go_parser.go",
    "content": "// Code generated by 'yaegi extract go/parser'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/parser\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/parser/parser\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllErrors\":            reflect.ValueOf(parser.AllErrors),\n\t\t\"DeclarationErrors\":    reflect.ValueOf(parser.DeclarationErrors),\n\t\t\"ImportsOnly\":          reflect.ValueOf(parser.ImportsOnly),\n\t\t\"PackageClauseOnly\":    reflect.ValueOf(parser.PackageClauseOnly),\n\t\t\"ParseComments\":        reflect.ValueOf(parser.ParseComments),\n\t\t\"ParseDir\":             reflect.ValueOf(parser.ParseDir),\n\t\t\"ParseExpr\":            reflect.ValueOf(parser.ParseExpr),\n\t\t\"ParseExprFrom\":        reflect.ValueOf(parser.ParseExprFrom),\n\t\t\"ParseFile\":            reflect.ValueOf(parser.ParseFile),\n\t\t\"SkipObjectResolution\": reflect.ValueOf(parser.SkipObjectResolution),\n\t\t\"SpuriousErrors\":       reflect.ValueOf(parser.SpuriousErrors),\n\t\t\"Trace\":                reflect.ValueOf(parser.Trace),\n\n\t\t// type definitions\n\t\t\"Mode\": reflect.ValueOf((*parser.Mode)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_go_printer.go",
    "content": "// Code generated by 'yaegi extract go/printer'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/printer\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/printer/printer\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Fprint\":    reflect.ValueOf(printer.Fprint),\n\t\t\"RawFormat\": reflect.ValueOf(printer.RawFormat),\n\t\t\"SourcePos\": reflect.ValueOf(printer.SourcePos),\n\t\t\"TabIndent\": reflect.ValueOf(printer.TabIndent),\n\t\t\"UseSpaces\": reflect.ValueOf(printer.UseSpaces),\n\n\t\t// type definitions\n\t\t\"CommentedNode\": reflect.ValueOf((*printer.CommentedNode)(nil)),\n\t\t\"Config\":        reflect.ValueOf((*printer.Config)(nil)),\n\t\t\"Mode\":          reflect.ValueOf((*printer.Mode)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_go_scanner.go",
    "content": "// Code generated by 'yaegi extract go/scanner'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/scanner\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/scanner/scanner\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"PrintError\":   reflect.ValueOf(scanner.PrintError),\n\t\t\"ScanComments\": reflect.ValueOf(scanner.ScanComments),\n\n\t\t// type definitions\n\t\t\"Error\":        reflect.ValueOf((*scanner.Error)(nil)),\n\t\t\"ErrorHandler\": reflect.ValueOf((*scanner.ErrorHandler)(nil)),\n\t\t\"ErrorList\":    reflect.ValueOf((*scanner.ErrorList)(nil)),\n\t\t\"Mode\":         reflect.ValueOf((*scanner.Mode)(nil)),\n\t\t\"Scanner\":      reflect.ValueOf((*scanner.Scanner)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_go_token.go",
    "content": "// Code generated by 'yaegi extract go/token'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/token/token\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ADD\":            reflect.ValueOf(token.ADD),\n\t\t\"ADD_ASSIGN\":     reflect.ValueOf(token.ADD_ASSIGN),\n\t\t\"AND\":            reflect.ValueOf(token.AND),\n\t\t\"AND_ASSIGN\":     reflect.ValueOf(token.AND_ASSIGN),\n\t\t\"AND_NOT\":        reflect.ValueOf(token.AND_NOT),\n\t\t\"AND_NOT_ASSIGN\": reflect.ValueOf(token.AND_NOT_ASSIGN),\n\t\t\"ARROW\":          reflect.ValueOf(token.ARROW),\n\t\t\"ASSIGN\":         reflect.ValueOf(token.ASSIGN),\n\t\t\"BREAK\":          reflect.ValueOf(token.BREAK),\n\t\t\"CASE\":           reflect.ValueOf(token.CASE),\n\t\t\"CHAN\":           reflect.ValueOf(token.CHAN),\n\t\t\"CHAR\":           reflect.ValueOf(token.CHAR),\n\t\t\"COLON\":          reflect.ValueOf(token.COLON),\n\t\t\"COMMA\":          reflect.ValueOf(token.COMMA),\n\t\t\"COMMENT\":        reflect.ValueOf(token.COMMENT),\n\t\t\"CONST\":          reflect.ValueOf(token.CONST),\n\t\t\"CONTINUE\":       reflect.ValueOf(token.CONTINUE),\n\t\t\"DEC\":            reflect.ValueOf(token.DEC),\n\t\t\"DEFAULT\":        reflect.ValueOf(token.DEFAULT),\n\t\t\"DEFER\":          reflect.ValueOf(token.DEFER),\n\t\t\"DEFINE\":         reflect.ValueOf(token.DEFINE),\n\t\t\"ELLIPSIS\":       reflect.ValueOf(token.ELLIPSIS),\n\t\t\"ELSE\":           reflect.ValueOf(token.ELSE),\n\t\t\"EOF\":            reflect.ValueOf(token.EOF),\n\t\t\"EQL\":            reflect.ValueOf(token.EQL),\n\t\t\"FALLTHROUGH\":    reflect.ValueOf(token.FALLTHROUGH),\n\t\t\"FLOAT\":          reflect.ValueOf(token.FLOAT),\n\t\t\"FOR\":            reflect.ValueOf(token.FOR),\n\t\t\"FUNC\":           reflect.ValueOf(token.FUNC),\n\t\t\"GEQ\":            reflect.ValueOf(token.GEQ),\n\t\t\"GO\":             reflect.ValueOf(token.GO),\n\t\t\"GOTO\":           reflect.ValueOf(token.GOTO),\n\t\t\"GTR\":            reflect.ValueOf(token.GTR),\n\t\t\"HighestPrec\":    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IDENT\":          reflect.ValueOf(token.IDENT),\n\t\t\"IF\":             reflect.ValueOf(token.IF),\n\t\t\"ILLEGAL\":        reflect.ValueOf(token.ILLEGAL),\n\t\t\"IMAG\":           reflect.ValueOf(token.IMAG),\n\t\t\"IMPORT\":         reflect.ValueOf(token.IMPORT),\n\t\t\"INC\":            reflect.ValueOf(token.INC),\n\t\t\"INT\":            reflect.ValueOf(token.INT),\n\t\t\"INTERFACE\":      reflect.ValueOf(token.INTERFACE),\n\t\t\"IsExported\":     reflect.ValueOf(token.IsExported),\n\t\t\"IsIdentifier\":   reflect.ValueOf(token.IsIdentifier),\n\t\t\"IsKeyword\":      reflect.ValueOf(token.IsKeyword),\n\t\t\"LAND\":           reflect.ValueOf(token.LAND),\n\t\t\"LBRACE\":         reflect.ValueOf(token.LBRACE),\n\t\t\"LBRACK\":         reflect.ValueOf(token.LBRACK),\n\t\t\"LEQ\":            reflect.ValueOf(token.LEQ),\n\t\t\"LOR\":            reflect.ValueOf(token.LOR),\n\t\t\"LPAREN\":         reflect.ValueOf(token.LPAREN),\n\t\t\"LSS\":            reflect.ValueOf(token.LSS),\n\t\t\"Lookup\":         reflect.ValueOf(token.Lookup),\n\t\t\"LowestPrec\":     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP\":            reflect.ValueOf(token.MAP),\n\t\t\"MUL\":            reflect.ValueOf(token.MUL),\n\t\t\"MUL_ASSIGN\":     reflect.ValueOf(token.MUL_ASSIGN),\n\t\t\"NEQ\":            reflect.ValueOf(token.NEQ),\n\t\t\"NOT\":            reflect.ValueOf(token.NOT),\n\t\t\"NewFileSet\":     reflect.ValueOf(token.NewFileSet),\n\t\t\"NoPos\":          reflect.ValueOf(token.NoPos),\n\t\t\"OR\":             reflect.ValueOf(token.OR),\n\t\t\"OR_ASSIGN\":      reflect.ValueOf(token.OR_ASSIGN),\n\t\t\"PACKAGE\":        reflect.ValueOf(token.PACKAGE),\n\t\t\"PERIOD\":         reflect.ValueOf(token.PERIOD),\n\t\t\"QUO\":            reflect.ValueOf(token.QUO),\n\t\t\"QUO_ASSIGN\":     reflect.ValueOf(token.QUO_ASSIGN),\n\t\t\"RANGE\":          reflect.ValueOf(token.RANGE),\n\t\t\"RBRACE\":         reflect.ValueOf(token.RBRACE),\n\t\t\"RBRACK\":         reflect.ValueOf(token.RBRACK),\n\t\t\"REM\":            reflect.ValueOf(token.REM),\n\t\t\"REM_ASSIGN\":     reflect.ValueOf(token.REM_ASSIGN),\n\t\t\"RETURN\":         reflect.ValueOf(token.RETURN),\n\t\t\"RPAREN\":         reflect.ValueOf(token.RPAREN),\n\t\t\"SELECT\":         reflect.ValueOf(token.SELECT),\n\t\t\"SEMICOLON\":      reflect.ValueOf(token.SEMICOLON),\n\t\t\"SHL\":            reflect.ValueOf(token.SHL),\n\t\t\"SHL_ASSIGN\":     reflect.ValueOf(token.SHL_ASSIGN),\n\t\t\"SHR\":            reflect.ValueOf(token.SHR),\n\t\t\"SHR_ASSIGN\":     reflect.ValueOf(token.SHR_ASSIGN),\n\t\t\"STRING\":         reflect.ValueOf(token.STRING),\n\t\t\"STRUCT\":         reflect.ValueOf(token.STRUCT),\n\t\t\"SUB\":            reflect.ValueOf(token.SUB),\n\t\t\"SUB_ASSIGN\":     reflect.ValueOf(token.SUB_ASSIGN),\n\t\t\"SWITCH\":         reflect.ValueOf(token.SWITCH),\n\t\t\"TILDE\":          reflect.ValueOf(token.TILDE),\n\t\t\"TYPE\":           reflect.ValueOf(token.TYPE),\n\t\t\"UnaryPrec\":      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VAR\":            reflect.ValueOf(token.VAR),\n\t\t\"XOR\":            reflect.ValueOf(token.XOR),\n\t\t\"XOR_ASSIGN\":     reflect.ValueOf(token.XOR_ASSIGN),\n\n\t\t// type definitions\n\t\t\"File\":     reflect.ValueOf((*token.File)(nil)),\n\t\t\"FileSet\":  reflect.ValueOf((*token.FileSet)(nil)),\n\t\t\"Pos\":      reflect.ValueOf((*token.Pos)(nil)),\n\t\t\"Position\": reflect.ValueOf((*token.Position)(nil)),\n\t\t\"Token\":    reflect.ValueOf((*token.Token)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_go_types.go",
    "content": "// Code generated by 'yaegi extract go/types'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/token\"\n\t\"go/types\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/types/types\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AssertableTo\":            reflect.ValueOf(types.AssertableTo),\n\t\t\"AssignableTo\":            reflect.ValueOf(types.AssignableTo),\n\t\t\"Bool\":                    reflect.ValueOf(types.Bool),\n\t\t\"Byte\":                    reflect.ValueOf(types.Byte),\n\t\t\"CheckExpr\":               reflect.ValueOf(types.CheckExpr),\n\t\t\"Comparable\":              reflect.ValueOf(types.Comparable),\n\t\t\"Complex128\":              reflect.ValueOf(types.Complex128),\n\t\t\"Complex64\":               reflect.ValueOf(types.Complex64),\n\t\t\"ConvertibleTo\":           reflect.ValueOf(types.ConvertibleTo),\n\t\t\"DefPredeclaredTestFuncs\": reflect.ValueOf(types.DefPredeclaredTestFuncs),\n\t\t\"Default\":                 reflect.ValueOf(types.Default),\n\t\t\"Eval\":                    reflect.ValueOf(types.Eval),\n\t\t\"ExprString\":              reflect.ValueOf(types.ExprString),\n\t\t\"FieldVal\":                reflect.ValueOf(types.FieldVal),\n\t\t\"Float32\":                 reflect.ValueOf(types.Float32),\n\t\t\"Float64\":                 reflect.ValueOf(types.Float64),\n\t\t\"Id\":                      reflect.ValueOf(types.Id),\n\t\t\"Identical\":               reflect.ValueOf(types.Identical),\n\t\t\"IdenticalIgnoreTags\":     reflect.ValueOf(types.IdenticalIgnoreTags),\n\t\t\"Implements\":              reflect.ValueOf(types.Implements),\n\t\t\"Instantiate\":             reflect.ValueOf(types.Instantiate),\n\t\t\"Int\":                     reflect.ValueOf(types.Int),\n\t\t\"Int16\":                   reflect.ValueOf(types.Int16),\n\t\t\"Int32\":                   reflect.ValueOf(types.Int32),\n\t\t\"Int64\":                   reflect.ValueOf(types.Int64),\n\t\t\"Int8\":                    reflect.ValueOf(types.Int8),\n\t\t\"Invalid\":                 reflect.ValueOf(types.Invalid),\n\t\t\"IsBoolean\":               reflect.ValueOf(types.IsBoolean),\n\t\t\"IsComplex\":               reflect.ValueOf(types.IsComplex),\n\t\t\"IsConstType\":             reflect.ValueOf(types.IsConstType),\n\t\t\"IsFloat\":                 reflect.ValueOf(types.IsFloat),\n\t\t\"IsInteger\":               reflect.ValueOf(types.IsInteger),\n\t\t\"IsInterface\":             reflect.ValueOf(types.IsInterface),\n\t\t\"IsNumeric\":               reflect.ValueOf(types.IsNumeric),\n\t\t\"IsOrdered\":               reflect.ValueOf(types.IsOrdered),\n\t\t\"IsString\":                reflect.ValueOf(types.IsString),\n\t\t\"IsUnsigned\":              reflect.ValueOf(types.IsUnsigned),\n\t\t\"IsUntyped\":               reflect.ValueOf(types.IsUntyped),\n\t\t\"LookupFieldOrMethod\":     reflect.ValueOf(types.LookupFieldOrMethod),\n\t\t\"MethodExpr\":              reflect.ValueOf(types.MethodExpr),\n\t\t\"MethodVal\":               reflect.ValueOf(types.MethodVal),\n\t\t\"MissingMethod\":           reflect.ValueOf(types.MissingMethod),\n\t\t\"NewArray\":                reflect.ValueOf(types.NewArray),\n\t\t\"NewChan\":                 reflect.ValueOf(types.NewChan),\n\t\t\"NewChecker\":              reflect.ValueOf(types.NewChecker),\n\t\t\"NewConst\":                reflect.ValueOf(types.NewConst),\n\t\t\"NewContext\":              reflect.ValueOf(types.NewContext),\n\t\t\"NewField\":                reflect.ValueOf(types.NewField),\n\t\t\"NewFunc\":                 reflect.ValueOf(types.NewFunc),\n\t\t\"NewInterface\":            reflect.ValueOf(types.NewInterface),\n\t\t\"NewInterfaceType\":        reflect.ValueOf(types.NewInterfaceType),\n\t\t\"NewLabel\":                reflect.ValueOf(types.NewLabel),\n\t\t\"NewMap\":                  reflect.ValueOf(types.NewMap),\n\t\t\"NewMethodSet\":            reflect.ValueOf(types.NewMethodSet),\n\t\t\"NewNamed\":                reflect.ValueOf(types.NewNamed),\n\t\t\"NewPackage\":              reflect.ValueOf(types.NewPackage),\n\t\t\"NewParam\":                reflect.ValueOf(types.NewParam),\n\t\t\"NewPkgName\":              reflect.ValueOf(types.NewPkgName),\n\t\t\"NewPointer\":              reflect.ValueOf(types.NewPointer),\n\t\t\"NewScope\":                reflect.ValueOf(types.NewScope),\n\t\t\"NewSignature\":            reflect.ValueOf(types.NewSignature),\n\t\t\"NewSignatureType\":        reflect.ValueOf(types.NewSignatureType),\n\t\t\"NewSlice\":                reflect.ValueOf(types.NewSlice),\n\t\t\"NewStruct\":               reflect.ValueOf(types.NewStruct),\n\t\t\"NewTerm\":                 reflect.ValueOf(types.NewTerm),\n\t\t\"NewTuple\":                reflect.ValueOf(types.NewTuple),\n\t\t\"NewTypeName\":             reflect.ValueOf(types.NewTypeName),\n\t\t\"NewTypeParam\":            reflect.ValueOf(types.NewTypeParam),\n\t\t\"NewUnion\":                reflect.ValueOf(types.NewUnion),\n\t\t\"NewVar\":                  reflect.ValueOf(types.NewVar),\n\t\t\"ObjectString\":            reflect.ValueOf(types.ObjectString),\n\t\t\"RecvOnly\":                reflect.ValueOf(types.RecvOnly),\n\t\t\"RelativeTo\":              reflect.ValueOf(types.RelativeTo),\n\t\t\"Rune\":                    reflect.ValueOf(types.Rune),\n\t\t\"Satisfies\":               reflect.ValueOf(types.Satisfies),\n\t\t\"SelectionString\":         reflect.ValueOf(types.SelectionString),\n\t\t\"SendOnly\":                reflect.ValueOf(types.SendOnly),\n\t\t\"SendRecv\":                reflect.ValueOf(types.SendRecv),\n\t\t\"SizesFor\":                reflect.ValueOf(types.SizesFor),\n\t\t\"String\":                  reflect.ValueOf(types.String),\n\t\t\"Typ\":                     reflect.ValueOf(&types.Typ).Elem(),\n\t\t\"TypeString\":              reflect.ValueOf(types.TypeString),\n\t\t\"Uint\":                    reflect.ValueOf(types.Uint),\n\t\t\"Uint16\":                  reflect.ValueOf(types.Uint16),\n\t\t\"Uint32\":                  reflect.ValueOf(types.Uint32),\n\t\t\"Uint64\":                  reflect.ValueOf(types.Uint64),\n\t\t\"Uint8\":                   reflect.ValueOf(types.Uint8),\n\t\t\"Uintptr\":                 reflect.ValueOf(types.Uintptr),\n\t\t\"Universe\":                reflect.ValueOf(&types.Universe).Elem(),\n\t\t\"Unsafe\":                  reflect.ValueOf(&types.Unsafe).Elem(),\n\t\t\"UnsafePointer\":           reflect.ValueOf(types.UnsafePointer),\n\t\t\"UntypedBool\":             reflect.ValueOf(types.UntypedBool),\n\t\t\"UntypedComplex\":          reflect.ValueOf(types.UntypedComplex),\n\t\t\"UntypedFloat\":            reflect.ValueOf(types.UntypedFloat),\n\t\t\"UntypedInt\":              reflect.ValueOf(types.UntypedInt),\n\t\t\"UntypedNil\":              reflect.ValueOf(types.UntypedNil),\n\t\t\"UntypedRune\":             reflect.ValueOf(types.UntypedRune),\n\t\t\"UntypedString\":           reflect.ValueOf(types.UntypedString),\n\t\t\"WriteExpr\":               reflect.ValueOf(types.WriteExpr),\n\t\t\"WriteSignature\":          reflect.ValueOf(types.WriteSignature),\n\t\t\"WriteType\":               reflect.ValueOf(types.WriteType),\n\n\t\t// type definitions\n\t\t\"ArgumentError\": reflect.ValueOf((*types.ArgumentError)(nil)),\n\t\t\"Array\":         reflect.ValueOf((*types.Array)(nil)),\n\t\t\"Basic\":         reflect.ValueOf((*types.Basic)(nil)),\n\t\t\"BasicInfo\":     reflect.ValueOf((*types.BasicInfo)(nil)),\n\t\t\"BasicKind\":     reflect.ValueOf((*types.BasicKind)(nil)),\n\t\t\"Builtin\":       reflect.ValueOf((*types.Builtin)(nil)),\n\t\t\"Chan\":          reflect.ValueOf((*types.Chan)(nil)),\n\t\t\"ChanDir\":       reflect.ValueOf((*types.ChanDir)(nil)),\n\t\t\"Checker\":       reflect.ValueOf((*types.Checker)(nil)),\n\t\t\"Config\":        reflect.ValueOf((*types.Config)(nil)),\n\t\t\"Const\":         reflect.ValueOf((*types.Const)(nil)),\n\t\t\"Context\":       reflect.ValueOf((*types.Context)(nil)),\n\t\t\"Error\":         reflect.ValueOf((*types.Error)(nil)),\n\t\t\"Func\":          reflect.ValueOf((*types.Func)(nil)),\n\t\t\"ImportMode\":    reflect.ValueOf((*types.ImportMode)(nil)),\n\t\t\"Importer\":      reflect.ValueOf((*types.Importer)(nil)),\n\t\t\"ImporterFrom\":  reflect.ValueOf((*types.ImporterFrom)(nil)),\n\t\t\"Info\":          reflect.ValueOf((*types.Info)(nil)),\n\t\t\"Initializer\":   reflect.ValueOf((*types.Initializer)(nil)),\n\t\t\"Instance\":      reflect.ValueOf((*types.Instance)(nil)),\n\t\t\"Interface\":     reflect.ValueOf((*types.Interface)(nil)),\n\t\t\"Label\":         reflect.ValueOf((*types.Label)(nil)),\n\t\t\"Map\":           reflect.ValueOf((*types.Map)(nil)),\n\t\t\"MethodSet\":     reflect.ValueOf((*types.MethodSet)(nil)),\n\t\t\"Named\":         reflect.ValueOf((*types.Named)(nil)),\n\t\t\"Nil\":           reflect.ValueOf((*types.Nil)(nil)),\n\t\t\"Object\":        reflect.ValueOf((*types.Object)(nil)),\n\t\t\"Package\":       reflect.ValueOf((*types.Package)(nil)),\n\t\t\"PkgName\":       reflect.ValueOf((*types.PkgName)(nil)),\n\t\t\"Pointer\":       reflect.ValueOf((*types.Pointer)(nil)),\n\t\t\"Qualifier\":     reflect.ValueOf((*types.Qualifier)(nil)),\n\t\t\"Scope\":         reflect.ValueOf((*types.Scope)(nil)),\n\t\t\"Selection\":     reflect.ValueOf((*types.Selection)(nil)),\n\t\t\"SelectionKind\": reflect.ValueOf((*types.SelectionKind)(nil)),\n\t\t\"Signature\":     reflect.ValueOf((*types.Signature)(nil)),\n\t\t\"Sizes\":         reflect.ValueOf((*types.Sizes)(nil)),\n\t\t\"Slice\":         reflect.ValueOf((*types.Slice)(nil)),\n\t\t\"StdSizes\":      reflect.ValueOf((*types.StdSizes)(nil)),\n\t\t\"Struct\":        reflect.ValueOf((*types.Struct)(nil)),\n\t\t\"Term\":          reflect.ValueOf((*types.Term)(nil)),\n\t\t\"Tuple\":         reflect.ValueOf((*types.Tuple)(nil)),\n\t\t\"Type\":          reflect.ValueOf((*types.Type)(nil)),\n\t\t\"TypeAndValue\":  reflect.ValueOf((*types.TypeAndValue)(nil)),\n\t\t\"TypeList\":      reflect.ValueOf((*types.TypeList)(nil)),\n\t\t\"TypeName\":      reflect.ValueOf((*types.TypeName)(nil)),\n\t\t\"TypeParam\":     reflect.ValueOf((*types.TypeParam)(nil)),\n\t\t\"TypeParamList\": reflect.ValueOf((*types.TypeParamList)(nil)),\n\t\t\"Union\":         reflect.ValueOf((*types.Union)(nil)),\n\t\t\"Var\":           reflect.ValueOf((*types.Var)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Importer\":     reflect.ValueOf((*_go_types_Importer)(nil)),\n\t\t\"_ImporterFrom\": reflect.ValueOf((*_go_types_ImporterFrom)(nil)),\n\t\t\"_Object\":       reflect.ValueOf((*_go_types_Object)(nil)),\n\t\t\"_Sizes\":        reflect.ValueOf((*_go_types_Sizes)(nil)),\n\t\t\"_Type\":         reflect.ValueOf((*_go_types_Type)(nil)),\n\t}\n}\n\n// _go_types_Importer is an interface wrapper for Importer type\ntype _go_types_Importer struct {\n\tIValue  interface{}\n\tWImport func(path string) (*types.Package, error)\n}\n\nfunc (W _go_types_Importer) Import(path string) (*types.Package, error) { return W.WImport(path) }\n\n// _go_types_ImporterFrom is an interface wrapper for ImporterFrom type\ntype _go_types_ImporterFrom struct {\n\tIValue      interface{}\n\tWImport     func(path string) (*types.Package, error)\n\tWImportFrom func(path string, dir string, mode types.ImportMode) (*types.Package, error)\n}\n\nfunc (W _go_types_ImporterFrom) Import(path string) (*types.Package, error) { return W.WImport(path) }\nfunc (W _go_types_ImporterFrom) ImportFrom(path string, dir string, mode types.ImportMode) (*types.Package, error) {\n\treturn W.WImportFrom(path, dir, mode)\n}\n\n// _go_types_Object is an interface wrapper for Object type\ntype _go_types_Object struct {\n\tIValue    interface{}\n\tWExported func() bool\n\tWId       func() string\n\tWName     func() string\n\tWParent   func() *types.Scope\n\tWPkg      func() *types.Package\n\tWPos      func() token.Pos\n\tWString   func() string\n\tWType     func() types.Type\n}\n\nfunc (W _go_types_Object) Exported() bool       { return W.WExported() }\nfunc (W _go_types_Object) Id() string           { return W.WId() }\nfunc (W _go_types_Object) Name() string         { return W.WName() }\nfunc (W _go_types_Object) Parent() *types.Scope { return W.WParent() }\nfunc (W _go_types_Object) Pkg() *types.Package  { return W.WPkg() }\nfunc (W _go_types_Object) Pos() token.Pos       { return W.WPos() }\nfunc (W _go_types_Object) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\nfunc (W _go_types_Object) Type() types.Type { return W.WType() }\n\n// _go_types_Sizes is an interface wrapper for Sizes type\ntype _go_types_Sizes struct {\n\tIValue     interface{}\n\tWAlignof   func(T types.Type) int64\n\tWOffsetsof func(fields []*types.Var) []int64\n\tWSizeof    func(T types.Type) int64\n}\n\nfunc (W _go_types_Sizes) Alignof(T types.Type) int64            { return W.WAlignof(T) }\nfunc (W _go_types_Sizes) Offsetsof(fields []*types.Var) []int64 { return W.WOffsetsof(fields) }\nfunc (W _go_types_Sizes) Sizeof(T types.Type) int64             { return W.WSizeof(T) }\n\n// _go_types_Type is an interface wrapper for Type type\ntype _go_types_Type struct {\n\tIValue      interface{}\n\tWString     func() string\n\tWUnderlying func() types.Type\n}\n\nfunc (W _go_types_Type) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\nfunc (W _go_types_Type) Underlying() types.Type { return W.WUnderlying() }\n"
  },
  {
    "path": "stdlib/go1_21_hash.go",
    "content": "// Code generated by 'yaegi extract hash'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"hash\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"hash/hash\"] = map[string]reflect.Value{\n\t\t// type definitions\n\t\t\"Hash\":   reflect.ValueOf((*hash.Hash)(nil)),\n\t\t\"Hash32\": reflect.ValueOf((*hash.Hash32)(nil)),\n\t\t\"Hash64\": reflect.ValueOf((*hash.Hash64)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Hash\":   reflect.ValueOf((*_hash_Hash)(nil)),\n\t\t\"_Hash32\": reflect.ValueOf((*_hash_Hash32)(nil)),\n\t\t\"_Hash64\": reflect.ValueOf((*_hash_Hash64)(nil)),\n\t}\n}\n\n// _hash_Hash is an interface wrapper for Hash type\ntype _hash_Hash struct {\n\tIValue     interface{}\n\tWBlockSize func() int\n\tWReset     func()\n\tWSize      func() int\n\tWSum       func(b []byte) []byte\n\tWWrite     func(p []byte) (n int, err error)\n}\n\nfunc (W _hash_Hash) BlockSize() int                    { return W.WBlockSize() }\nfunc (W _hash_Hash) Reset()                            { W.WReset() }\nfunc (W _hash_Hash) Size() int                         { return W.WSize() }\nfunc (W _hash_Hash) Sum(b []byte) []byte               { return W.WSum(b) }\nfunc (W _hash_Hash) Write(p []byte) (n int, err error) { return W.WWrite(p) }\n\n// _hash_Hash32 is an interface wrapper for Hash32 type\ntype _hash_Hash32 struct {\n\tIValue     interface{}\n\tWBlockSize func() int\n\tWReset     func()\n\tWSize      func() int\n\tWSum       func(b []byte) []byte\n\tWSum32     func() uint32\n\tWWrite     func(p []byte) (n int, err error)\n}\n\nfunc (W _hash_Hash32) BlockSize() int                    { return W.WBlockSize() }\nfunc (W _hash_Hash32) Reset()                            { W.WReset() }\nfunc (W _hash_Hash32) Size() int                         { return W.WSize() }\nfunc (W _hash_Hash32) Sum(b []byte) []byte               { return W.WSum(b) }\nfunc (W _hash_Hash32) Sum32() uint32                     { return W.WSum32() }\nfunc (W _hash_Hash32) Write(p []byte) (n int, err error) { return W.WWrite(p) }\n\n// _hash_Hash64 is an interface wrapper for Hash64 type\ntype _hash_Hash64 struct {\n\tIValue     interface{}\n\tWBlockSize func() int\n\tWReset     func()\n\tWSize      func() int\n\tWSum       func(b []byte) []byte\n\tWSum64     func() uint64\n\tWWrite     func(p []byte) (n int, err error)\n}\n\nfunc (W _hash_Hash64) BlockSize() int                    { return W.WBlockSize() }\nfunc (W _hash_Hash64) Reset()                            { W.WReset() }\nfunc (W _hash_Hash64) Size() int                         { return W.WSize() }\nfunc (W _hash_Hash64) Sum(b []byte) []byte               { return W.WSum(b) }\nfunc (W _hash_Hash64) Sum64() uint64                     { return W.WSum64() }\nfunc (W _hash_Hash64) Write(p []byte) (n int, err error) { return W.WWrite(p) }\n"
  },
  {
    "path": "stdlib/go1_21_hash_adler32.go",
    "content": "// Code generated by 'yaegi extract hash/adler32'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"hash/adler32\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"hash/adler32/adler32\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Checksum\": reflect.ValueOf(adler32.Checksum),\n\t\t\"New\":      reflect.ValueOf(adler32.New),\n\t\t\"Size\":     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_hash_crc32.go",
    "content": "// Code generated by 'yaegi extract hash/crc32'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"hash/crc32\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"hash/crc32/crc32\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Castagnoli\":   reflect.ValueOf(constant.MakeFromLiteral(\"2197175160\", token.INT, 0)),\n\t\t\"Checksum\":     reflect.ValueOf(crc32.Checksum),\n\t\t\"ChecksumIEEE\": reflect.ValueOf(crc32.ChecksumIEEE),\n\t\t\"IEEE\":         reflect.ValueOf(constant.MakeFromLiteral(\"3988292384\", token.INT, 0)),\n\t\t\"IEEETable\":    reflect.ValueOf(&crc32.IEEETable).Elem(),\n\t\t\"Koopman\":      reflect.ValueOf(constant.MakeFromLiteral(\"3945912366\", token.INT, 0)),\n\t\t\"MakeTable\":    reflect.ValueOf(crc32.MakeTable),\n\t\t\"New\":          reflect.ValueOf(crc32.New),\n\t\t\"NewIEEE\":      reflect.ValueOf(crc32.NewIEEE),\n\t\t\"Size\":         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Update\":       reflect.ValueOf(crc32.Update),\n\n\t\t// type definitions\n\t\t\"Table\": reflect.ValueOf((*crc32.Table)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_hash_crc64.go",
    "content": "// Code generated by 'yaegi extract hash/crc64'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"hash/crc64\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"hash/crc64/crc64\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Checksum\":  reflect.ValueOf(crc64.Checksum),\n\t\t\"ECMA\":      reflect.ValueOf(constant.MakeFromLiteral(\"14514072000185962306\", token.INT, 0)),\n\t\t\"ISO\":       reflect.ValueOf(constant.MakeFromLiteral(\"15564440312192434176\", token.INT, 0)),\n\t\t\"MakeTable\": reflect.ValueOf(crc64.MakeTable),\n\t\t\"New\":       reflect.ValueOf(crc64.New),\n\t\t\"Size\":      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Update\":    reflect.ValueOf(crc64.Update),\n\n\t\t// type definitions\n\t\t\"Table\": reflect.ValueOf((*crc64.Table)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_hash_fnv.go",
    "content": "// Code generated by 'yaegi extract hash/fnv'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"hash/fnv\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"hash/fnv/fnv\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"New128\":  reflect.ValueOf(fnv.New128),\n\t\t\"New128a\": reflect.ValueOf(fnv.New128a),\n\t\t\"New32\":   reflect.ValueOf(fnv.New32),\n\t\t\"New32a\":  reflect.ValueOf(fnv.New32a),\n\t\t\"New64\":   reflect.ValueOf(fnv.New64),\n\t\t\"New64a\":  reflect.ValueOf(fnv.New64a),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_hash_maphash.go",
    "content": "// Code generated by 'yaegi extract hash/maphash'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"hash/maphash\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"hash/maphash/maphash\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Bytes\":    reflect.ValueOf(maphash.Bytes),\n\t\t\"MakeSeed\": reflect.ValueOf(maphash.MakeSeed),\n\t\t\"String\":   reflect.ValueOf(maphash.String),\n\n\t\t// type definitions\n\t\t\"Hash\": reflect.ValueOf((*maphash.Hash)(nil)),\n\t\t\"Seed\": reflect.ValueOf((*maphash.Seed)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_html.go",
    "content": "// Code generated by 'yaegi extract html'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"html\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"html/html\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"EscapeString\":   reflect.ValueOf(html.EscapeString),\n\t\t\"UnescapeString\": reflect.ValueOf(html.UnescapeString),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_html_template.go",
    "content": "// Code generated by 'yaegi extract html/template'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"html/template\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"html/template/template\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ErrAmbigContext\":      reflect.ValueOf(template.ErrAmbigContext),\n\t\t\"ErrBadHTML\":           reflect.ValueOf(template.ErrBadHTML),\n\t\t\"ErrBranchEnd\":         reflect.ValueOf(template.ErrBranchEnd),\n\t\t\"ErrEndContext\":        reflect.ValueOf(template.ErrEndContext),\n\t\t\"ErrJSTemplate\":        reflect.ValueOf(template.ErrJSTemplate),\n\t\t\"ErrNoSuchTemplate\":    reflect.ValueOf(template.ErrNoSuchTemplate),\n\t\t\"ErrOutputContext\":     reflect.ValueOf(template.ErrOutputContext),\n\t\t\"ErrPartialCharset\":    reflect.ValueOf(template.ErrPartialCharset),\n\t\t\"ErrPartialEscape\":     reflect.ValueOf(template.ErrPartialEscape),\n\t\t\"ErrPredefinedEscaper\": reflect.ValueOf(template.ErrPredefinedEscaper),\n\t\t\"ErrRangeLoopReentry\":  reflect.ValueOf(template.ErrRangeLoopReentry),\n\t\t\"ErrSlashAmbig\":        reflect.ValueOf(template.ErrSlashAmbig),\n\t\t\"HTMLEscape\":           reflect.ValueOf(template.HTMLEscape),\n\t\t\"HTMLEscapeString\":     reflect.ValueOf(template.HTMLEscapeString),\n\t\t\"HTMLEscaper\":          reflect.ValueOf(template.HTMLEscaper),\n\t\t\"IsTrue\":               reflect.ValueOf(template.IsTrue),\n\t\t\"JSEscape\":             reflect.ValueOf(template.JSEscape),\n\t\t\"JSEscapeString\":       reflect.ValueOf(template.JSEscapeString),\n\t\t\"JSEscaper\":            reflect.ValueOf(template.JSEscaper),\n\t\t\"Must\":                 reflect.ValueOf(template.Must),\n\t\t\"New\":                  reflect.ValueOf(template.New),\n\t\t\"OK\":                   reflect.ValueOf(template.OK),\n\t\t\"ParseFS\":              reflect.ValueOf(template.ParseFS),\n\t\t\"ParseFiles\":           reflect.ValueOf(template.ParseFiles),\n\t\t\"ParseGlob\":            reflect.ValueOf(template.ParseGlob),\n\t\t\"URLQueryEscaper\":      reflect.ValueOf(template.URLQueryEscaper),\n\n\t\t// type definitions\n\t\t\"CSS\":       reflect.ValueOf((*template.CSS)(nil)),\n\t\t\"Error\":     reflect.ValueOf((*template.Error)(nil)),\n\t\t\"ErrorCode\": reflect.ValueOf((*template.ErrorCode)(nil)),\n\t\t\"FuncMap\":   reflect.ValueOf((*template.FuncMap)(nil)),\n\t\t\"HTML\":      reflect.ValueOf((*template.HTML)(nil)),\n\t\t\"HTMLAttr\":  reflect.ValueOf((*template.HTMLAttr)(nil)),\n\t\t\"JS\":        reflect.ValueOf((*template.JS)(nil)),\n\t\t\"JSStr\":     reflect.ValueOf((*template.JSStr)(nil)),\n\t\t\"Srcset\":    reflect.ValueOf((*template.Srcset)(nil)),\n\t\t\"Template\":  reflect.ValueOf((*template.Template)(nil)),\n\t\t\"URL\":       reflect.ValueOf((*template.URL)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_image.go",
    "content": "// Code generated by 'yaegi extract image'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"image\"\n\t\"image/color\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"image/image\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Black\":                  reflect.ValueOf(&image.Black).Elem(),\n\t\t\"Decode\":                 reflect.ValueOf(image.Decode),\n\t\t\"DecodeConfig\":           reflect.ValueOf(image.DecodeConfig),\n\t\t\"ErrFormat\":              reflect.ValueOf(&image.ErrFormat).Elem(),\n\t\t\"NewAlpha\":               reflect.ValueOf(image.NewAlpha),\n\t\t\"NewAlpha16\":             reflect.ValueOf(image.NewAlpha16),\n\t\t\"NewCMYK\":                reflect.ValueOf(image.NewCMYK),\n\t\t\"NewGray\":                reflect.ValueOf(image.NewGray),\n\t\t\"NewGray16\":              reflect.ValueOf(image.NewGray16),\n\t\t\"NewNRGBA\":               reflect.ValueOf(image.NewNRGBA),\n\t\t\"NewNRGBA64\":             reflect.ValueOf(image.NewNRGBA64),\n\t\t\"NewNYCbCrA\":             reflect.ValueOf(image.NewNYCbCrA),\n\t\t\"NewPaletted\":            reflect.ValueOf(image.NewPaletted),\n\t\t\"NewRGBA\":                reflect.ValueOf(image.NewRGBA),\n\t\t\"NewRGBA64\":              reflect.ValueOf(image.NewRGBA64),\n\t\t\"NewUniform\":             reflect.ValueOf(image.NewUniform),\n\t\t\"NewYCbCr\":               reflect.ValueOf(image.NewYCbCr),\n\t\t\"Opaque\":                 reflect.ValueOf(&image.Opaque).Elem(),\n\t\t\"Pt\":                     reflect.ValueOf(image.Pt),\n\t\t\"Rect\":                   reflect.ValueOf(image.Rect),\n\t\t\"RegisterFormat\":         reflect.ValueOf(image.RegisterFormat),\n\t\t\"Transparent\":            reflect.ValueOf(&image.Transparent).Elem(),\n\t\t\"White\":                  reflect.ValueOf(&image.White).Elem(),\n\t\t\"YCbCrSubsampleRatio410\": reflect.ValueOf(image.YCbCrSubsampleRatio410),\n\t\t\"YCbCrSubsampleRatio411\": reflect.ValueOf(image.YCbCrSubsampleRatio411),\n\t\t\"YCbCrSubsampleRatio420\": reflect.ValueOf(image.YCbCrSubsampleRatio420),\n\t\t\"YCbCrSubsampleRatio422\": reflect.ValueOf(image.YCbCrSubsampleRatio422),\n\t\t\"YCbCrSubsampleRatio440\": reflect.ValueOf(image.YCbCrSubsampleRatio440),\n\t\t\"YCbCrSubsampleRatio444\": reflect.ValueOf(image.YCbCrSubsampleRatio444),\n\t\t\"ZP\":                     reflect.ValueOf(&image.ZP).Elem(),\n\t\t\"ZR\":                     reflect.ValueOf(&image.ZR).Elem(),\n\n\t\t// type definitions\n\t\t\"Alpha\":               reflect.ValueOf((*image.Alpha)(nil)),\n\t\t\"Alpha16\":             reflect.ValueOf((*image.Alpha16)(nil)),\n\t\t\"CMYK\":                reflect.ValueOf((*image.CMYK)(nil)),\n\t\t\"Config\":              reflect.ValueOf((*image.Config)(nil)),\n\t\t\"Gray\":                reflect.ValueOf((*image.Gray)(nil)),\n\t\t\"Gray16\":              reflect.ValueOf((*image.Gray16)(nil)),\n\t\t\"Image\":               reflect.ValueOf((*image.Image)(nil)),\n\t\t\"NRGBA\":               reflect.ValueOf((*image.NRGBA)(nil)),\n\t\t\"NRGBA64\":             reflect.ValueOf((*image.NRGBA64)(nil)),\n\t\t\"NYCbCrA\":             reflect.ValueOf((*image.NYCbCrA)(nil)),\n\t\t\"Paletted\":            reflect.ValueOf((*image.Paletted)(nil)),\n\t\t\"PalettedImage\":       reflect.ValueOf((*image.PalettedImage)(nil)),\n\t\t\"Point\":               reflect.ValueOf((*image.Point)(nil)),\n\t\t\"RGBA\":                reflect.ValueOf((*image.RGBA)(nil)),\n\t\t\"RGBA64\":              reflect.ValueOf((*image.RGBA64)(nil)),\n\t\t\"RGBA64Image\":         reflect.ValueOf((*image.RGBA64Image)(nil)),\n\t\t\"Rectangle\":           reflect.ValueOf((*image.Rectangle)(nil)),\n\t\t\"Uniform\":             reflect.ValueOf((*image.Uniform)(nil)),\n\t\t\"YCbCr\":               reflect.ValueOf((*image.YCbCr)(nil)),\n\t\t\"YCbCrSubsampleRatio\": reflect.ValueOf((*image.YCbCrSubsampleRatio)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Image\":         reflect.ValueOf((*_image_Image)(nil)),\n\t\t\"_PalettedImage\": reflect.ValueOf((*_image_PalettedImage)(nil)),\n\t\t\"_RGBA64Image\":   reflect.ValueOf((*_image_RGBA64Image)(nil)),\n\t}\n}\n\n// _image_Image is an interface wrapper for Image type\ntype _image_Image struct {\n\tIValue      interface{}\n\tWAt         func(x int, y int) color.Color\n\tWBounds     func() image.Rectangle\n\tWColorModel func() color.Model\n}\n\nfunc (W _image_Image) At(x int, y int) color.Color { return W.WAt(x, y) }\nfunc (W _image_Image) Bounds() image.Rectangle     { return W.WBounds() }\nfunc (W _image_Image) ColorModel() color.Model     { return W.WColorModel() }\n\n// _image_PalettedImage is an interface wrapper for PalettedImage type\ntype _image_PalettedImage struct {\n\tIValue        interface{}\n\tWAt           func(x int, y int) color.Color\n\tWBounds       func() image.Rectangle\n\tWColorIndexAt func(x int, y int) uint8\n\tWColorModel   func() color.Model\n}\n\nfunc (W _image_PalettedImage) At(x int, y int) color.Color     { return W.WAt(x, y) }\nfunc (W _image_PalettedImage) Bounds() image.Rectangle         { return W.WBounds() }\nfunc (W _image_PalettedImage) ColorIndexAt(x int, y int) uint8 { return W.WColorIndexAt(x, y) }\nfunc (W _image_PalettedImage) ColorModel() color.Model         { return W.WColorModel() }\n\n// _image_RGBA64Image is an interface wrapper for RGBA64Image type\ntype _image_RGBA64Image struct {\n\tIValue      interface{}\n\tWAt         func(x int, y int) color.Color\n\tWBounds     func() image.Rectangle\n\tWColorModel func() color.Model\n\tWRGBA64At   func(x int, y int) color.RGBA64\n}\n\nfunc (W _image_RGBA64Image) At(x int, y int) color.Color        { return W.WAt(x, y) }\nfunc (W _image_RGBA64Image) Bounds() image.Rectangle            { return W.WBounds() }\nfunc (W _image_RGBA64Image) ColorModel() color.Model            { return W.WColorModel() }\nfunc (W _image_RGBA64Image) RGBA64At(x int, y int) color.RGBA64 { return W.WRGBA64At(x, y) }\n"
  },
  {
    "path": "stdlib/go1_21_image_color.go",
    "content": "// Code generated by 'yaegi extract image/color'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"image/color\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"image/color/color\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Alpha16Model\": reflect.ValueOf(&color.Alpha16Model).Elem(),\n\t\t\"AlphaModel\":   reflect.ValueOf(&color.AlphaModel).Elem(),\n\t\t\"Black\":        reflect.ValueOf(&color.Black).Elem(),\n\t\t\"CMYKModel\":    reflect.ValueOf(&color.CMYKModel).Elem(),\n\t\t\"CMYKToRGB\":    reflect.ValueOf(color.CMYKToRGB),\n\t\t\"Gray16Model\":  reflect.ValueOf(&color.Gray16Model).Elem(),\n\t\t\"GrayModel\":    reflect.ValueOf(&color.GrayModel).Elem(),\n\t\t\"ModelFunc\":    reflect.ValueOf(color.ModelFunc),\n\t\t\"NRGBA64Model\": reflect.ValueOf(&color.NRGBA64Model).Elem(),\n\t\t\"NRGBAModel\":   reflect.ValueOf(&color.NRGBAModel).Elem(),\n\t\t\"NYCbCrAModel\": reflect.ValueOf(&color.NYCbCrAModel).Elem(),\n\t\t\"Opaque\":       reflect.ValueOf(&color.Opaque).Elem(),\n\t\t\"RGBA64Model\":  reflect.ValueOf(&color.RGBA64Model).Elem(),\n\t\t\"RGBAModel\":    reflect.ValueOf(&color.RGBAModel).Elem(),\n\t\t\"RGBToCMYK\":    reflect.ValueOf(color.RGBToCMYK),\n\t\t\"RGBToYCbCr\":   reflect.ValueOf(color.RGBToYCbCr),\n\t\t\"Transparent\":  reflect.ValueOf(&color.Transparent).Elem(),\n\t\t\"White\":        reflect.ValueOf(&color.White).Elem(),\n\t\t\"YCbCrModel\":   reflect.ValueOf(&color.YCbCrModel).Elem(),\n\t\t\"YCbCrToRGB\":   reflect.ValueOf(color.YCbCrToRGB),\n\n\t\t// type definitions\n\t\t\"Alpha\":   reflect.ValueOf((*color.Alpha)(nil)),\n\t\t\"Alpha16\": reflect.ValueOf((*color.Alpha16)(nil)),\n\t\t\"CMYK\":    reflect.ValueOf((*color.CMYK)(nil)),\n\t\t\"Color\":   reflect.ValueOf((*color.Color)(nil)),\n\t\t\"Gray\":    reflect.ValueOf((*color.Gray)(nil)),\n\t\t\"Gray16\":  reflect.ValueOf((*color.Gray16)(nil)),\n\t\t\"Model\":   reflect.ValueOf((*color.Model)(nil)),\n\t\t\"NRGBA\":   reflect.ValueOf((*color.NRGBA)(nil)),\n\t\t\"NRGBA64\": reflect.ValueOf((*color.NRGBA64)(nil)),\n\t\t\"NYCbCrA\": reflect.ValueOf((*color.NYCbCrA)(nil)),\n\t\t\"Palette\": reflect.ValueOf((*color.Palette)(nil)),\n\t\t\"RGBA\":    reflect.ValueOf((*color.RGBA)(nil)),\n\t\t\"RGBA64\":  reflect.ValueOf((*color.RGBA64)(nil)),\n\t\t\"YCbCr\":   reflect.ValueOf((*color.YCbCr)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Color\": reflect.ValueOf((*_image_color_Color)(nil)),\n\t\t\"_Model\": reflect.ValueOf((*_image_color_Model)(nil)),\n\t}\n}\n\n// _image_color_Color is an interface wrapper for Color type\ntype _image_color_Color struct {\n\tIValue interface{}\n\tWRGBA  func() (r uint32, g uint32, b uint32, a uint32)\n}\n\nfunc (W _image_color_Color) RGBA() (r uint32, g uint32, b uint32, a uint32) { return W.WRGBA() }\n\n// _image_color_Model is an interface wrapper for Model type\ntype _image_color_Model struct {\n\tIValue   interface{}\n\tWConvert func(c color.Color) color.Color\n}\n\nfunc (W _image_color_Model) Convert(c color.Color) color.Color { return W.WConvert(c) }\n"
  },
  {
    "path": "stdlib/go1_21_image_color_palette.go",
    "content": "// Code generated by 'yaegi extract image/color/palette'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"image/color/palette\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"image/color/palette/palette\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Plan9\":   reflect.ValueOf(&palette.Plan9).Elem(),\n\t\t\"WebSafe\": reflect.ValueOf(&palette.WebSafe).Elem(),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_image_draw.go",
    "content": "// Code generated by 'yaegi extract image/draw'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"image\"\n\t\"image/color\"\n\t\"image/draw\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"image/draw/draw\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Draw\":           reflect.ValueOf(draw.Draw),\n\t\t\"DrawMask\":       reflect.ValueOf(draw.DrawMask),\n\t\t\"FloydSteinberg\": reflect.ValueOf(&draw.FloydSteinberg).Elem(),\n\t\t\"Over\":           reflect.ValueOf(draw.Over),\n\t\t\"Src\":            reflect.ValueOf(draw.Src),\n\n\t\t// type definitions\n\t\t\"Drawer\":      reflect.ValueOf((*draw.Drawer)(nil)),\n\t\t\"Image\":       reflect.ValueOf((*draw.Image)(nil)),\n\t\t\"Op\":          reflect.ValueOf((*draw.Op)(nil)),\n\t\t\"Quantizer\":   reflect.ValueOf((*draw.Quantizer)(nil)),\n\t\t\"RGBA64Image\": reflect.ValueOf((*draw.RGBA64Image)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Drawer\":      reflect.ValueOf((*_image_draw_Drawer)(nil)),\n\t\t\"_Image\":       reflect.ValueOf((*_image_draw_Image)(nil)),\n\t\t\"_Quantizer\":   reflect.ValueOf((*_image_draw_Quantizer)(nil)),\n\t\t\"_RGBA64Image\": reflect.ValueOf((*_image_draw_RGBA64Image)(nil)),\n\t}\n}\n\n// _image_draw_Drawer is an interface wrapper for Drawer type\ntype _image_draw_Drawer struct {\n\tIValue interface{}\n\tWDraw  func(dst draw.Image, r image.Rectangle, src image.Image, sp image.Point)\n}\n\nfunc (W _image_draw_Drawer) Draw(dst draw.Image, r image.Rectangle, src image.Image, sp image.Point) {\n\tW.WDraw(dst, r, src, sp)\n}\n\n// _image_draw_Image is an interface wrapper for Image type\ntype _image_draw_Image struct {\n\tIValue      interface{}\n\tWAt         func(x int, y int) color.Color\n\tWBounds     func() image.Rectangle\n\tWColorModel func() color.Model\n\tWSet        func(x int, y int, c color.Color)\n}\n\nfunc (W _image_draw_Image) At(x int, y int) color.Color     { return W.WAt(x, y) }\nfunc (W _image_draw_Image) Bounds() image.Rectangle         { return W.WBounds() }\nfunc (W _image_draw_Image) ColorModel() color.Model         { return W.WColorModel() }\nfunc (W _image_draw_Image) Set(x int, y int, c color.Color) { W.WSet(x, y, c) }\n\n// _image_draw_Quantizer is an interface wrapper for Quantizer type\ntype _image_draw_Quantizer struct {\n\tIValue    interface{}\n\tWQuantize func(p color.Palette, m image.Image) color.Palette\n}\n\nfunc (W _image_draw_Quantizer) Quantize(p color.Palette, m image.Image) color.Palette {\n\treturn W.WQuantize(p, m)\n}\n\n// _image_draw_RGBA64Image is an interface wrapper for RGBA64Image type\ntype _image_draw_RGBA64Image struct {\n\tIValue      interface{}\n\tWAt         func(x int, y int) color.Color\n\tWBounds     func() image.Rectangle\n\tWColorModel func() color.Model\n\tWRGBA64At   func(x int, y int) color.RGBA64\n\tWSet        func(x int, y int, c color.Color)\n\tWSetRGBA64  func(x int, y int, c color.RGBA64)\n}\n\nfunc (W _image_draw_RGBA64Image) At(x int, y int) color.Color            { return W.WAt(x, y) }\nfunc (W _image_draw_RGBA64Image) Bounds() image.Rectangle                { return W.WBounds() }\nfunc (W _image_draw_RGBA64Image) ColorModel() color.Model                { return W.WColorModel() }\nfunc (W _image_draw_RGBA64Image) RGBA64At(x int, y int) color.RGBA64     { return W.WRGBA64At(x, y) }\nfunc (W _image_draw_RGBA64Image) Set(x int, y int, c color.Color)        { W.WSet(x, y, c) }\nfunc (W _image_draw_RGBA64Image) SetRGBA64(x int, y int, c color.RGBA64) { W.WSetRGBA64(x, y, c) }\n"
  },
  {
    "path": "stdlib/go1_21_image_gif.go",
    "content": "// Code generated by 'yaegi extract image/gif'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"image/gif\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"image/gif/gif\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Decode\":             reflect.ValueOf(gif.Decode),\n\t\t\"DecodeAll\":          reflect.ValueOf(gif.DecodeAll),\n\t\t\"DecodeConfig\":       reflect.ValueOf(gif.DecodeConfig),\n\t\t\"DisposalBackground\": reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DisposalNone\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DisposalPrevious\":   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Encode\":             reflect.ValueOf(gif.Encode),\n\t\t\"EncodeAll\":          reflect.ValueOf(gif.EncodeAll),\n\n\t\t// type definitions\n\t\t\"GIF\":     reflect.ValueOf((*gif.GIF)(nil)),\n\t\t\"Options\": reflect.ValueOf((*gif.Options)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_image_jpeg.go",
    "content": "// Code generated by 'yaegi extract image/jpeg'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"image/jpeg\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"image/jpeg/jpeg\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Decode\":         reflect.ValueOf(jpeg.Decode),\n\t\t\"DecodeConfig\":   reflect.ValueOf(jpeg.DecodeConfig),\n\t\t\"DefaultQuality\": reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"Encode\":         reflect.ValueOf(jpeg.Encode),\n\n\t\t// type definitions\n\t\t\"FormatError\":      reflect.ValueOf((*jpeg.FormatError)(nil)),\n\t\t\"Options\":          reflect.ValueOf((*jpeg.Options)(nil)),\n\t\t\"Reader\":           reflect.ValueOf((*jpeg.Reader)(nil)),\n\t\t\"UnsupportedError\": reflect.ValueOf((*jpeg.UnsupportedError)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Reader\": reflect.ValueOf((*_image_jpeg_Reader)(nil)),\n\t}\n}\n\n// _image_jpeg_Reader is an interface wrapper for Reader type\ntype _image_jpeg_Reader struct {\n\tIValue    interface{}\n\tWRead     func(p []byte) (n int, err error)\n\tWReadByte func() (byte, error)\n}\n\nfunc (W _image_jpeg_Reader) Read(p []byte) (n int, err error) { return W.WRead(p) }\nfunc (W _image_jpeg_Reader) ReadByte() (byte, error)          { return W.WReadByte() }\n"
  },
  {
    "path": "stdlib/go1_21_image_png.go",
    "content": "// Code generated by 'yaegi extract image/png'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"image/png\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"image/png/png\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BestCompression\":    reflect.ValueOf(png.BestCompression),\n\t\t\"BestSpeed\":          reflect.ValueOf(png.BestSpeed),\n\t\t\"Decode\":             reflect.ValueOf(png.Decode),\n\t\t\"DecodeConfig\":       reflect.ValueOf(png.DecodeConfig),\n\t\t\"DefaultCompression\": reflect.ValueOf(png.DefaultCompression),\n\t\t\"Encode\":             reflect.ValueOf(png.Encode),\n\t\t\"NoCompression\":      reflect.ValueOf(png.NoCompression),\n\n\t\t// type definitions\n\t\t\"CompressionLevel\":  reflect.ValueOf((*png.CompressionLevel)(nil)),\n\t\t\"Encoder\":           reflect.ValueOf((*png.Encoder)(nil)),\n\t\t\"EncoderBuffer\":     reflect.ValueOf((*png.EncoderBuffer)(nil)),\n\t\t\"EncoderBufferPool\": reflect.ValueOf((*png.EncoderBufferPool)(nil)),\n\t\t\"FormatError\":       reflect.ValueOf((*png.FormatError)(nil)),\n\t\t\"UnsupportedError\":  reflect.ValueOf((*png.UnsupportedError)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_EncoderBufferPool\": reflect.ValueOf((*_image_png_EncoderBufferPool)(nil)),\n\t}\n}\n\n// _image_png_EncoderBufferPool is an interface wrapper for EncoderBufferPool type\ntype _image_png_EncoderBufferPool struct {\n\tIValue interface{}\n\tWGet   func() *png.EncoderBuffer\n\tWPut   func(a0 *png.EncoderBuffer)\n}\n\nfunc (W _image_png_EncoderBufferPool) Get() *png.EncoderBuffer   { return W.WGet() }\nfunc (W _image_png_EncoderBufferPool) Put(a0 *png.EncoderBuffer) { W.WPut(a0) }\n"
  },
  {
    "path": "stdlib/go1_21_index_suffixarray.go",
    "content": "// Code generated by 'yaegi extract index/suffixarray'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"index/suffixarray\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"index/suffixarray/suffixarray\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"New\": reflect.ValueOf(suffixarray.New),\n\n\t\t// type definitions\n\t\t\"Index\": reflect.ValueOf((*suffixarray.Index)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_io.go",
    "content": "// Code generated by 'yaegi extract io'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"io\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"io/io\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Copy\":             reflect.ValueOf(io.Copy),\n\t\t\"CopyBuffer\":       reflect.ValueOf(io.CopyBuffer),\n\t\t\"CopyN\":            reflect.ValueOf(io.CopyN),\n\t\t\"Discard\":          reflect.ValueOf(&io.Discard).Elem(),\n\t\t\"EOF\":              reflect.ValueOf(&io.EOF).Elem(),\n\t\t\"ErrClosedPipe\":    reflect.ValueOf(&io.ErrClosedPipe).Elem(),\n\t\t\"ErrNoProgress\":    reflect.ValueOf(&io.ErrNoProgress).Elem(),\n\t\t\"ErrShortBuffer\":   reflect.ValueOf(&io.ErrShortBuffer).Elem(),\n\t\t\"ErrShortWrite\":    reflect.ValueOf(&io.ErrShortWrite).Elem(),\n\t\t\"ErrUnexpectedEOF\": reflect.ValueOf(&io.ErrUnexpectedEOF).Elem(),\n\t\t\"LimitReader\":      reflect.ValueOf(io.LimitReader),\n\t\t\"MultiReader\":      reflect.ValueOf(io.MultiReader),\n\t\t\"MultiWriter\":      reflect.ValueOf(io.MultiWriter),\n\t\t\"NewOffsetWriter\":  reflect.ValueOf(io.NewOffsetWriter),\n\t\t\"NewSectionReader\": reflect.ValueOf(io.NewSectionReader),\n\t\t\"NopCloser\":        reflect.ValueOf(io.NopCloser),\n\t\t\"Pipe\":             reflect.ValueOf(io.Pipe),\n\t\t\"ReadAll\":          reflect.ValueOf(io.ReadAll),\n\t\t\"ReadAtLeast\":      reflect.ValueOf(io.ReadAtLeast),\n\t\t\"ReadFull\":         reflect.ValueOf(io.ReadFull),\n\t\t\"SeekCurrent\":      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SeekEnd\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SeekStart\":        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TeeReader\":        reflect.ValueOf(io.TeeReader),\n\t\t\"WriteString\":      reflect.ValueOf(io.WriteString),\n\n\t\t// type definitions\n\t\t\"ByteReader\":      reflect.ValueOf((*io.ByteReader)(nil)),\n\t\t\"ByteScanner\":     reflect.ValueOf((*io.ByteScanner)(nil)),\n\t\t\"ByteWriter\":      reflect.ValueOf((*io.ByteWriter)(nil)),\n\t\t\"Closer\":          reflect.ValueOf((*io.Closer)(nil)),\n\t\t\"LimitedReader\":   reflect.ValueOf((*io.LimitedReader)(nil)),\n\t\t\"OffsetWriter\":    reflect.ValueOf((*io.OffsetWriter)(nil)),\n\t\t\"PipeReader\":      reflect.ValueOf((*io.PipeReader)(nil)),\n\t\t\"PipeWriter\":      reflect.ValueOf((*io.PipeWriter)(nil)),\n\t\t\"ReadCloser\":      reflect.ValueOf((*io.ReadCloser)(nil)),\n\t\t\"ReadSeekCloser\":  reflect.ValueOf((*io.ReadSeekCloser)(nil)),\n\t\t\"ReadSeeker\":      reflect.ValueOf((*io.ReadSeeker)(nil)),\n\t\t\"ReadWriteCloser\": reflect.ValueOf((*io.ReadWriteCloser)(nil)),\n\t\t\"ReadWriteSeeker\": reflect.ValueOf((*io.ReadWriteSeeker)(nil)),\n\t\t\"ReadWriter\":      reflect.ValueOf((*io.ReadWriter)(nil)),\n\t\t\"Reader\":          reflect.ValueOf((*io.Reader)(nil)),\n\t\t\"ReaderAt\":        reflect.ValueOf((*io.ReaderAt)(nil)),\n\t\t\"ReaderFrom\":      reflect.ValueOf((*io.ReaderFrom)(nil)),\n\t\t\"RuneReader\":      reflect.ValueOf((*io.RuneReader)(nil)),\n\t\t\"RuneScanner\":     reflect.ValueOf((*io.RuneScanner)(nil)),\n\t\t\"SectionReader\":   reflect.ValueOf((*io.SectionReader)(nil)),\n\t\t\"Seeker\":          reflect.ValueOf((*io.Seeker)(nil)),\n\t\t\"StringWriter\":    reflect.ValueOf((*io.StringWriter)(nil)),\n\t\t\"WriteCloser\":     reflect.ValueOf((*io.WriteCloser)(nil)),\n\t\t\"WriteSeeker\":     reflect.ValueOf((*io.WriteSeeker)(nil)),\n\t\t\"Writer\":          reflect.ValueOf((*io.Writer)(nil)),\n\t\t\"WriterAt\":        reflect.ValueOf((*io.WriterAt)(nil)),\n\t\t\"WriterTo\":        reflect.ValueOf((*io.WriterTo)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_ByteReader\":      reflect.ValueOf((*_io_ByteReader)(nil)),\n\t\t\"_ByteScanner\":     reflect.ValueOf((*_io_ByteScanner)(nil)),\n\t\t\"_ByteWriter\":      reflect.ValueOf((*_io_ByteWriter)(nil)),\n\t\t\"_Closer\":          reflect.ValueOf((*_io_Closer)(nil)),\n\t\t\"_ReadCloser\":      reflect.ValueOf((*_io_ReadCloser)(nil)),\n\t\t\"_ReadSeekCloser\":  reflect.ValueOf((*_io_ReadSeekCloser)(nil)),\n\t\t\"_ReadSeeker\":      reflect.ValueOf((*_io_ReadSeeker)(nil)),\n\t\t\"_ReadWriteCloser\": reflect.ValueOf((*_io_ReadWriteCloser)(nil)),\n\t\t\"_ReadWriteSeeker\": reflect.ValueOf((*_io_ReadWriteSeeker)(nil)),\n\t\t\"_ReadWriter\":      reflect.ValueOf((*_io_ReadWriter)(nil)),\n\t\t\"_Reader\":          reflect.ValueOf((*_io_Reader)(nil)),\n\t\t\"_ReaderAt\":        reflect.ValueOf((*_io_ReaderAt)(nil)),\n\t\t\"_ReaderFrom\":      reflect.ValueOf((*_io_ReaderFrom)(nil)),\n\t\t\"_RuneReader\":      reflect.ValueOf((*_io_RuneReader)(nil)),\n\t\t\"_RuneScanner\":     reflect.ValueOf((*_io_RuneScanner)(nil)),\n\t\t\"_Seeker\":          reflect.ValueOf((*_io_Seeker)(nil)),\n\t\t\"_StringWriter\":    reflect.ValueOf((*_io_StringWriter)(nil)),\n\t\t\"_WriteCloser\":     reflect.ValueOf((*_io_WriteCloser)(nil)),\n\t\t\"_WriteSeeker\":     reflect.ValueOf((*_io_WriteSeeker)(nil)),\n\t\t\"_Writer\":          reflect.ValueOf((*_io_Writer)(nil)),\n\t\t\"_WriterAt\":        reflect.ValueOf((*_io_WriterAt)(nil)),\n\t\t\"_WriterTo\":        reflect.ValueOf((*_io_WriterTo)(nil)),\n\t}\n}\n\n// _io_ByteReader is an interface wrapper for ByteReader type\ntype _io_ByteReader struct {\n\tIValue    interface{}\n\tWReadByte func() (byte, error)\n}\n\nfunc (W _io_ByteReader) ReadByte() (byte, error) { return W.WReadByte() }\n\n// _io_ByteScanner is an interface wrapper for ByteScanner type\ntype _io_ByteScanner struct {\n\tIValue      interface{}\n\tWReadByte   func() (byte, error)\n\tWUnreadByte func() error\n}\n\nfunc (W _io_ByteScanner) ReadByte() (byte, error) { return W.WReadByte() }\nfunc (W _io_ByteScanner) UnreadByte() error       { return W.WUnreadByte() }\n\n// _io_ByteWriter is an interface wrapper for ByteWriter type\ntype _io_ByteWriter struct {\n\tIValue     interface{}\n\tWWriteByte func(c byte) error\n}\n\nfunc (W _io_ByteWriter) WriteByte(c byte) error { return W.WWriteByte(c) }\n\n// _io_Closer is an interface wrapper for Closer type\ntype _io_Closer struct {\n\tIValue interface{}\n\tWClose func() error\n}\n\nfunc (W _io_Closer) Close() error { return W.WClose() }\n\n// _io_ReadCloser is an interface wrapper for ReadCloser type\ntype _io_ReadCloser struct {\n\tIValue interface{}\n\tWClose func() error\n\tWRead  func(p []byte) (n int, err error)\n}\n\nfunc (W _io_ReadCloser) Close() error                     { return W.WClose() }\nfunc (W _io_ReadCloser) Read(p []byte) (n int, err error) { return W.WRead(p) }\n\n// _io_ReadSeekCloser is an interface wrapper for ReadSeekCloser type\ntype _io_ReadSeekCloser struct {\n\tIValue interface{}\n\tWClose func() error\n\tWRead  func(p []byte) (n int, err error)\n\tWSeek  func(offset int64, whence int) (int64, error)\n}\n\nfunc (W _io_ReadSeekCloser) Close() error                     { return W.WClose() }\nfunc (W _io_ReadSeekCloser) Read(p []byte) (n int, err error) { return W.WRead(p) }\nfunc (W _io_ReadSeekCloser) Seek(offset int64, whence int) (int64, error) {\n\treturn W.WSeek(offset, whence)\n}\n\n// _io_ReadSeeker is an interface wrapper for ReadSeeker type\ntype _io_ReadSeeker struct {\n\tIValue interface{}\n\tWRead  func(p []byte) (n int, err error)\n\tWSeek  func(offset int64, whence int) (int64, error)\n}\n\nfunc (W _io_ReadSeeker) Read(p []byte) (n int, err error)             { return W.WRead(p) }\nfunc (W _io_ReadSeeker) Seek(offset int64, whence int) (int64, error) { return W.WSeek(offset, whence) }\n\n// _io_ReadWriteCloser is an interface wrapper for ReadWriteCloser type\ntype _io_ReadWriteCloser struct {\n\tIValue interface{}\n\tWClose func() error\n\tWRead  func(p []byte) (n int, err error)\n\tWWrite func(p []byte) (n int, err error)\n}\n\nfunc (W _io_ReadWriteCloser) Close() error                      { return W.WClose() }\nfunc (W _io_ReadWriteCloser) Read(p []byte) (n int, err error)  { return W.WRead(p) }\nfunc (W _io_ReadWriteCloser) Write(p []byte) (n int, err error) { return W.WWrite(p) }\n\n// _io_ReadWriteSeeker is an interface wrapper for ReadWriteSeeker type\ntype _io_ReadWriteSeeker struct {\n\tIValue interface{}\n\tWRead  func(p []byte) (n int, err error)\n\tWSeek  func(offset int64, whence int) (int64, error)\n\tWWrite func(p []byte) (n int, err error)\n}\n\nfunc (W _io_ReadWriteSeeker) Read(p []byte) (n int, err error) { return W.WRead(p) }\nfunc (W _io_ReadWriteSeeker) Seek(offset int64, whence int) (int64, error) {\n\treturn W.WSeek(offset, whence)\n}\nfunc (W _io_ReadWriteSeeker) Write(p []byte) (n int, err error) { return W.WWrite(p) }\n\n// _io_ReadWriter is an interface wrapper for ReadWriter type\ntype _io_ReadWriter struct {\n\tIValue interface{}\n\tWRead  func(p []byte) (n int, err error)\n\tWWrite func(p []byte) (n int, err error)\n}\n\nfunc (W _io_ReadWriter) Read(p []byte) (n int, err error)  { return W.WRead(p) }\nfunc (W _io_ReadWriter) Write(p []byte) (n int, err error) { return W.WWrite(p) }\n\n// _io_Reader is an interface wrapper for Reader type\ntype _io_Reader struct {\n\tIValue interface{}\n\tWRead  func(p []byte) (n int, err error)\n}\n\nfunc (W _io_Reader) Read(p []byte) (n int, err error) { return W.WRead(p) }\n\n// _io_ReaderAt is an interface wrapper for ReaderAt type\ntype _io_ReaderAt struct {\n\tIValue  interface{}\n\tWReadAt func(p []byte, off int64) (n int, err error)\n}\n\nfunc (W _io_ReaderAt) ReadAt(p []byte, off int64) (n int, err error) { return W.WReadAt(p, off) }\n\n// _io_ReaderFrom is an interface wrapper for ReaderFrom type\ntype _io_ReaderFrom struct {\n\tIValue    interface{}\n\tWReadFrom func(r io.Reader) (n int64, err error)\n}\n\nfunc (W _io_ReaderFrom) ReadFrom(r io.Reader) (n int64, err error) { return W.WReadFrom(r) }\n\n// _io_RuneReader is an interface wrapper for RuneReader type\ntype _io_RuneReader struct {\n\tIValue    interface{}\n\tWReadRune func() (r rune, size int, err error)\n}\n\nfunc (W _io_RuneReader) ReadRune() (r rune, size int, err error) { return W.WReadRune() }\n\n// _io_RuneScanner is an interface wrapper for RuneScanner type\ntype _io_RuneScanner struct {\n\tIValue      interface{}\n\tWReadRune   func() (r rune, size int, err error)\n\tWUnreadRune func() error\n}\n\nfunc (W _io_RuneScanner) ReadRune() (r rune, size int, err error) { return W.WReadRune() }\nfunc (W _io_RuneScanner) UnreadRune() error                       { return W.WUnreadRune() }\n\n// _io_Seeker is an interface wrapper for Seeker type\ntype _io_Seeker struct {\n\tIValue interface{}\n\tWSeek  func(offset int64, whence int) (int64, error)\n}\n\nfunc (W _io_Seeker) Seek(offset int64, whence int) (int64, error) { return W.WSeek(offset, whence) }\n\n// _io_StringWriter is an interface wrapper for StringWriter type\ntype _io_StringWriter struct {\n\tIValue       interface{}\n\tWWriteString func(s string) (n int, err error)\n}\n\nfunc (W _io_StringWriter) WriteString(s string) (n int, err error) { return W.WWriteString(s) }\n\n// _io_WriteCloser is an interface wrapper for WriteCloser type\ntype _io_WriteCloser struct {\n\tIValue interface{}\n\tWClose func() error\n\tWWrite func(p []byte) (n int, err error)\n}\n\nfunc (W _io_WriteCloser) Close() error                      { return W.WClose() }\nfunc (W _io_WriteCloser) Write(p []byte) (n int, err error) { return W.WWrite(p) }\n\n// _io_WriteSeeker is an interface wrapper for WriteSeeker type\ntype _io_WriteSeeker struct {\n\tIValue interface{}\n\tWSeek  func(offset int64, whence int) (int64, error)\n\tWWrite func(p []byte) (n int, err error)\n}\n\nfunc (W _io_WriteSeeker) Seek(offset int64, whence int) (int64, error) {\n\treturn W.WSeek(offset, whence)\n}\nfunc (W _io_WriteSeeker) Write(p []byte) (n int, err error) { return W.WWrite(p) }\n\n// _io_Writer is an interface wrapper for Writer type\ntype _io_Writer struct {\n\tIValue interface{}\n\tWWrite func(p []byte) (n int, err error)\n}\n\nfunc (W _io_Writer) Write(p []byte) (n int, err error) { return W.WWrite(p) }\n\n// _io_WriterAt is an interface wrapper for WriterAt type\ntype _io_WriterAt struct {\n\tIValue   interface{}\n\tWWriteAt func(p []byte, off int64) (n int, err error)\n}\n\nfunc (W _io_WriterAt) WriteAt(p []byte, off int64) (n int, err error) { return W.WWriteAt(p, off) }\n\n// _io_WriterTo is an interface wrapper for WriterTo type\ntype _io_WriterTo struct {\n\tIValue   interface{}\n\tWWriteTo func(w io.Writer) (n int64, err error)\n}\n\nfunc (W _io_WriterTo) WriteTo(w io.Writer) (n int64, err error) { return W.WWriteTo(w) }\n"
  },
  {
    "path": "stdlib/go1_21_io_fs.go",
    "content": "// Code generated by 'yaegi extract io/fs'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"io/fs\"\n\t\"reflect\"\n\t\"time\"\n)\n\nfunc init() {\n\tSymbols[\"io/fs/fs\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ErrClosed\":          reflect.ValueOf(&fs.ErrClosed).Elem(),\n\t\t\"ErrExist\":           reflect.ValueOf(&fs.ErrExist).Elem(),\n\t\t\"ErrInvalid\":         reflect.ValueOf(&fs.ErrInvalid).Elem(),\n\t\t\"ErrNotExist\":        reflect.ValueOf(&fs.ErrNotExist).Elem(),\n\t\t\"ErrPermission\":      reflect.ValueOf(&fs.ErrPermission).Elem(),\n\t\t\"FileInfoToDirEntry\": reflect.ValueOf(fs.FileInfoToDirEntry),\n\t\t\"FormatDirEntry\":     reflect.ValueOf(fs.FormatDirEntry),\n\t\t\"FormatFileInfo\":     reflect.ValueOf(fs.FormatFileInfo),\n\t\t\"Glob\":               reflect.ValueOf(fs.Glob),\n\t\t\"ModeAppend\":         reflect.ValueOf(fs.ModeAppend),\n\t\t\"ModeCharDevice\":     reflect.ValueOf(fs.ModeCharDevice),\n\t\t\"ModeDevice\":         reflect.ValueOf(fs.ModeDevice),\n\t\t\"ModeDir\":            reflect.ValueOf(fs.ModeDir),\n\t\t\"ModeExclusive\":      reflect.ValueOf(fs.ModeExclusive),\n\t\t\"ModeIrregular\":      reflect.ValueOf(fs.ModeIrregular),\n\t\t\"ModeNamedPipe\":      reflect.ValueOf(fs.ModeNamedPipe),\n\t\t\"ModePerm\":           reflect.ValueOf(fs.ModePerm),\n\t\t\"ModeSetgid\":         reflect.ValueOf(fs.ModeSetgid),\n\t\t\"ModeSetuid\":         reflect.ValueOf(fs.ModeSetuid),\n\t\t\"ModeSocket\":         reflect.ValueOf(fs.ModeSocket),\n\t\t\"ModeSticky\":         reflect.ValueOf(fs.ModeSticky),\n\t\t\"ModeSymlink\":        reflect.ValueOf(fs.ModeSymlink),\n\t\t\"ModeTemporary\":      reflect.ValueOf(fs.ModeTemporary),\n\t\t\"ModeType\":           reflect.ValueOf(fs.ModeType),\n\t\t\"ReadDir\":            reflect.ValueOf(fs.ReadDir),\n\t\t\"ReadFile\":           reflect.ValueOf(fs.ReadFile),\n\t\t\"SkipAll\":            reflect.ValueOf(&fs.SkipAll).Elem(),\n\t\t\"SkipDir\":            reflect.ValueOf(&fs.SkipDir).Elem(),\n\t\t\"Stat\":               reflect.ValueOf(fs.Stat),\n\t\t\"Sub\":                reflect.ValueOf(fs.Sub),\n\t\t\"ValidPath\":          reflect.ValueOf(fs.ValidPath),\n\t\t\"WalkDir\":            reflect.ValueOf(fs.WalkDir),\n\n\t\t// type definitions\n\t\t\"DirEntry\":    reflect.ValueOf((*fs.DirEntry)(nil)),\n\t\t\"FS\":          reflect.ValueOf((*fs.FS)(nil)),\n\t\t\"File\":        reflect.ValueOf((*fs.File)(nil)),\n\t\t\"FileInfo\":    reflect.ValueOf((*fs.FileInfo)(nil)),\n\t\t\"FileMode\":    reflect.ValueOf((*fs.FileMode)(nil)),\n\t\t\"GlobFS\":      reflect.ValueOf((*fs.GlobFS)(nil)),\n\t\t\"PathError\":   reflect.ValueOf((*fs.PathError)(nil)),\n\t\t\"ReadDirFS\":   reflect.ValueOf((*fs.ReadDirFS)(nil)),\n\t\t\"ReadDirFile\": reflect.ValueOf((*fs.ReadDirFile)(nil)),\n\t\t\"ReadFileFS\":  reflect.ValueOf((*fs.ReadFileFS)(nil)),\n\t\t\"StatFS\":      reflect.ValueOf((*fs.StatFS)(nil)),\n\t\t\"SubFS\":       reflect.ValueOf((*fs.SubFS)(nil)),\n\t\t\"WalkDirFunc\": reflect.ValueOf((*fs.WalkDirFunc)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_DirEntry\":    reflect.ValueOf((*_io_fs_DirEntry)(nil)),\n\t\t\"_FS\":          reflect.ValueOf((*_io_fs_FS)(nil)),\n\t\t\"_File\":        reflect.ValueOf((*_io_fs_File)(nil)),\n\t\t\"_FileInfo\":    reflect.ValueOf((*_io_fs_FileInfo)(nil)),\n\t\t\"_GlobFS\":      reflect.ValueOf((*_io_fs_GlobFS)(nil)),\n\t\t\"_ReadDirFS\":   reflect.ValueOf((*_io_fs_ReadDirFS)(nil)),\n\t\t\"_ReadDirFile\": reflect.ValueOf((*_io_fs_ReadDirFile)(nil)),\n\t\t\"_ReadFileFS\":  reflect.ValueOf((*_io_fs_ReadFileFS)(nil)),\n\t\t\"_StatFS\":      reflect.ValueOf((*_io_fs_StatFS)(nil)),\n\t\t\"_SubFS\":       reflect.ValueOf((*_io_fs_SubFS)(nil)),\n\t}\n}\n\n// _io_fs_DirEntry is an interface wrapper for DirEntry type\ntype _io_fs_DirEntry struct {\n\tIValue interface{}\n\tWInfo  func() (fs.FileInfo, error)\n\tWIsDir func() bool\n\tWName  func() string\n\tWType  func() fs.FileMode\n}\n\nfunc (W _io_fs_DirEntry) Info() (fs.FileInfo, error) { return W.WInfo() }\nfunc (W _io_fs_DirEntry) IsDir() bool                { return W.WIsDir() }\nfunc (W _io_fs_DirEntry) Name() string               { return W.WName() }\nfunc (W _io_fs_DirEntry) Type() fs.FileMode          { return W.WType() }\n\n// _io_fs_FS is an interface wrapper for FS type\ntype _io_fs_FS struct {\n\tIValue interface{}\n\tWOpen  func(name string) (fs.File, error)\n}\n\nfunc (W _io_fs_FS) Open(name string) (fs.File, error) { return W.WOpen(name) }\n\n// _io_fs_File is an interface wrapper for File type\ntype _io_fs_File struct {\n\tIValue interface{}\n\tWClose func() error\n\tWRead  func(a0 []byte) (int, error)\n\tWStat  func() (fs.FileInfo, error)\n}\n\nfunc (W _io_fs_File) Close() error                { return W.WClose() }\nfunc (W _io_fs_File) Read(a0 []byte) (int, error) { return W.WRead(a0) }\nfunc (W _io_fs_File) Stat() (fs.FileInfo, error)  { return W.WStat() }\n\n// _io_fs_FileInfo is an interface wrapper for FileInfo type\ntype _io_fs_FileInfo struct {\n\tIValue   interface{}\n\tWIsDir   func() bool\n\tWModTime func() time.Time\n\tWMode    func() fs.FileMode\n\tWName    func() string\n\tWSize    func() int64\n\tWSys     func() any\n}\n\nfunc (W _io_fs_FileInfo) IsDir() bool        { return W.WIsDir() }\nfunc (W _io_fs_FileInfo) ModTime() time.Time { return W.WModTime() }\nfunc (W _io_fs_FileInfo) Mode() fs.FileMode  { return W.WMode() }\nfunc (W _io_fs_FileInfo) Name() string       { return W.WName() }\nfunc (W _io_fs_FileInfo) Size() int64        { return W.WSize() }\nfunc (W _io_fs_FileInfo) Sys() any           { return W.WSys() }\n\n// _io_fs_GlobFS is an interface wrapper for GlobFS type\ntype _io_fs_GlobFS struct {\n\tIValue interface{}\n\tWGlob  func(pattern string) ([]string, error)\n\tWOpen  func(name string) (fs.File, error)\n}\n\nfunc (W _io_fs_GlobFS) Glob(pattern string) ([]string, error) { return W.WGlob(pattern) }\nfunc (W _io_fs_GlobFS) Open(name string) (fs.File, error)     { return W.WOpen(name) }\n\n// _io_fs_ReadDirFS is an interface wrapper for ReadDirFS type\ntype _io_fs_ReadDirFS struct {\n\tIValue   interface{}\n\tWOpen    func(name string) (fs.File, error)\n\tWReadDir func(name string) ([]fs.DirEntry, error)\n}\n\nfunc (W _io_fs_ReadDirFS) Open(name string) (fs.File, error)          { return W.WOpen(name) }\nfunc (W _io_fs_ReadDirFS) ReadDir(name string) ([]fs.DirEntry, error) { return W.WReadDir(name) }\n\n// _io_fs_ReadDirFile is an interface wrapper for ReadDirFile type\ntype _io_fs_ReadDirFile struct {\n\tIValue   interface{}\n\tWClose   func() error\n\tWRead    func(a0 []byte) (int, error)\n\tWReadDir func(n int) ([]fs.DirEntry, error)\n\tWStat    func() (fs.FileInfo, error)\n}\n\nfunc (W _io_fs_ReadDirFile) Close() error                         { return W.WClose() }\nfunc (W _io_fs_ReadDirFile) Read(a0 []byte) (int, error)          { return W.WRead(a0) }\nfunc (W _io_fs_ReadDirFile) ReadDir(n int) ([]fs.DirEntry, error) { return W.WReadDir(n) }\nfunc (W _io_fs_ReadDirFile) Stat() (fs.FileInfo, error)           { return W.WStat() }\n\n// _io_fs_ReadFileFS is an interface wrapper for ReadFileFS type\ntype _io_fs_ReadFileFS struct {\n\tIValue    interface{}\n\tWOpen     func(name string) (fs.File, error)\n\tWReadFile func(name string) ([]byte, error)\n}\n\nfunc (W _io_fs_ReadFileFS) Open(name string) (fs.File, error)    { return W.WOpen(name) }\nfunc (W _io_fs_ReadFileFS) ReadFile(name string) ([]byte, error) { return W.WReadFile(name) }\n\n// _io_fs_StatFS is an interface wrapper for StatFS type\ntype _io_fs_StatFS struct {\n\tIValue interface{}\n\tWOpen  func(name string) (fs.File, error)\n\tWStat  func(name string) (fs.FileInfo, error)\n}\n\nfunc (W _io_fs_StatFS) Open(name string) (fs.File, error)     { return W.WOpen(name) }\nfunc (W _io_fs_StatFS) Stat(name string) (fs.FileInfo, error) { return W.WStat(name) }\n\n// _io_fs_SubFS is an interface wrapper for SubFS type\ntype _io_fs_SubFS struct {\n\tIValue interface{}\n\tWOpen  func(name string) (fs.File, error)\n\tWSub   func(dir string) (fs.FS, error)\n}\n\nfunc (W _io_fs_SubFS) Open(name string) (fs.File, error) { return W.WOpen(name) }\nfunc (W _io_fs_SubFS) Sub(dir string) (fs.FS, error)     { return W.WSub(dir) }\n"
  },
  {
    "path": "stdlib/go1_21_io_ioutil.go",
    "content": "// Code generated by 'yaegi extract io/ioutil'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"io/ioutil\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"io/ioutil/ioutil\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Discard\":   reflect.ValueOf(&ioutil.Discard).Elem(),\n\t\t\"NopCloser\": reflect.ValueOf(ioutil.NopCloser),\n\t\t\"ReadAll\":   reflect.ValueOf(ioutil.ReadAll),\n\t\t\"ReadDir\":   reflect.ValueOf(ioutil.ReadDir),\n\t\t\"ReadFile\":  reflect.ValueOf(ioutil.ReadFile),\n\t\t\"TempDir\":   reflect.ValueOf(ioutil.TempDir),\n\t\t\"TempFile\":  reflect.ValueOf(ioutil.TempFile),\n\t\t\"WriteFile\": reflect.ValueOf(ioutil.WriteFile),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_log.go",
    "content": "// Code generated by 'yaegi extract log'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"log\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"log/log\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Default\":       reflect.ValueOf(log.Default),\n\t\t\"Fatal\":         reflect.ValueOf(logFatal),\n\t\t\"Fatalf\":        reflect.ValueOf(logFatalf),\n\t\t\"Fatalln\":       reflect.ValueOf(logFatalln),\n\t\t\"Flags\":         reflect.ValueOf(log.Flags),\n\t\t\"LUTC\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"Ldate\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Llongfile\":     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lmicroseconds\": reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Lmsgprefix\":    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Lshortfile\":    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"LstdFlags\":     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Ltime\":         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"New\":           reflect.ValueOf(logNew),\n\t\t\"Output\":        reflect.ValueOf(log.Output),\n\t\t\"Panic\":         reflect.ValueOf(log.Panic),\n\t\t\"Panicf\":        reflect.ValueOf(log.Panicf),\n\t\t\"Panicln\":       reflect.ValueOf(log.Panicln),\n\t\t\"Prefix\":        reflect.ValueOf(log.Prefix),\n\t\t\"Print\":         reflect.ValueOf(log.Print),\n\t\t\"Printf\":        reflect.ValueOf(log.Printf),\n\t\t\"Println\":       reflect.ValueOf(log.Println),\n\t\t\"SetFlags\":      reflect.ValueOf(log.SetFlags),\n\t\t\"SetOutput\":     reflect.ValueOf(log.SetOutput),\n\t\t\"SetPrefix\":     reflect.ValueOf(log.SetPrefix),\n\t\t\"Writer\":        reflect.ValueOf(log.Writer),\n\n\t\t// type definitions\n\t\t\"Logger\": reflect.ValueOf((*logLogger)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_log_slog.go",
    "content": "// Code generated by 'yaegi extract log/slog'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"context\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"log/slog\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"log/slog/slog\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Any\":            reflect.ValueOf(slog.Any),\n\t\t\"AnyValue\":       reflect.ValueOf(slog.AnyValue),\n\t\t\"Bool\":           reflect.ValueOf(slog.Bool),\n\t\t\"BoolValue\":      reflect.ValueOf(slog.BoolValue),\n\t\t\"Debug\":          reflect.ValueOf(slog.Debug),\n\t\t\"DebugContext\":   reflect.ValueOf(slog.DebugContext),\n\t\t\"Default\":        reflect.ValueOf(slog.Default),\n\t\t\"Duration\":       reflect.ValueOf(slog.Duration),\n\t\t\"DurationValue\":  reflect.ValueOf(slog.DurationValue),\n\t\t\"Error\":          reflect.ValueOf(slog.Error),\n\t\t\"ErrorContext\":   reflect.ValueOf(slog.ErrorContext),\n\t\t\"Float64\":        reflect.ValueOf(slog.Float64),\n\t\t\"Float64Value\":   reflect.ValueOf(slog.Float64Value),\n\t\t\"Group\":          reflect.ValueOf(slog.Group),\n\t\t\"GroupValue\":     reflect.ValueOf(slog.GroupValue),\n\t\t\"Info\":           reflect.ValueOf(slog.Info),\n\t\t\"InfoContext\":    reflect.ValueOf(slog.InfoContext),\n\t\t\"Int\":            reflect.ValueOf(slog.Int),\n\t\t\"Int64\":          reflect.ValueOf(slog.Int64),\n\t\t\"Int64Value\":     reflect.ValueOf(slog.Int64Value),\n\t\t\"IntValue\":       reflect.ValueOf(slog.IntValue),\n\t\t\"KindAny\":        reflect.ValueOf(slog.KindAny),\n\t\t\"KindBool\":       reflect.ValueOf(slog.KindBool),\n\t\t\"KindDuration\":   reflect.ValueOf(slog.KindDuration),\n\t\t\"KindFloat64\":    reflect.ValueOf(slog.KindFloat64),\n\t\t\"KindGroup\":      reflect.ValueOf(slog.KindGroup),\n\t\t\"KindInt64\":      reflect.ValueOf(slog.KindInt64),\n\t\t\"KindLogValuer\":  reflect.ValueOf(slog.KindLogValuer),\n\t\t\"KindString\":     reflect.ValueOf(slog.KindString),\n\t\t\"KindTime\":       reflect.ValueOf(slog.KindTime),\n\t\t\"KindUint64\":     reflect.ValueOf(slog.KindUint64),\n\t\t\"LevelDebug\":     reflect.ValueOf(slog.LevelDebug),\n\t\t\"LevelError\":     reflect.ValueOf(slog.LevelError),\n\t\t\"LevelInfo\":      reflect.ValueOf(slog.LevelInfo),\n\t\t\"LevelKey\":       reflect.ValueOf(constant.MakeFromLiteral(\"\\\"level\\\"\", token.STRING, 0)),\n\t\t\"LevelWarn\":      reflect.ValueOf(slog.LevelWarn),\n\t\t\"Log\":            reflect.ValueOf(slog.Log),\n\t\t\"LogAttrs\":       reflect.ValueOf(slog.LogAttrs),\n\t\t\"MessageKey\":     reflect.ValueOf(constant.MakeFromLiteral(\"\\\"msg\\\"\", token.STRING, 0)),\n\t\t\"New\":            reflect.ValueOf(slog.New),\n\t\t\"NewJSONHandler\": reflect.ValueOf(slog.NewJSONHandler),\n\t\t\"NewLogLogger\":   reflect.ValueOf(slog.NewLogLogger),\n\t\t\"NewRecord\":      reflect.ValueOf(slog.NewRecord),\n\t\t\"NewTextHandler\": reflect.ValueOf(slog.NewTextHandler),\n\t\t\"SetDefault\":     reflect.ValueOf(slog.SetDefault),\n\t\t\"SourceKey\":      reflect.ValueOf(constant.MakeFromLiteral(\"\\\"source\\\"\", token.STRING, 0)),\n\t\t\"String\":         reflect.ValueOf(slog.String),\n\t\t\"StringValue\":    reflect.ValueOf(slog.StringValue),\n\t\t\"Time\":           reflect.ValueOf(slog.Time),\n\t\t\"TimeKey\":        reflect.ValueOf(constant.MakeFromLiteral(\"\\\"time\\\"\", token.STRING, 0)),\n\t\t\"TimeValue\":      reflect.ValueOf(slog.TimeValue),\n\t\t\"Uint64\":         reflect.ValueOf(slog.Uint64),\n\t\t\"Uint64Value\":    reflect.ValueOf(slog.Uint64Value),\n\t\t\"Warn\":           reflect.ValueOf(slog.Warn),\n\t\t\"WarnContext\":    reflect.ValueOf(slog.WarnContext),\n\t\t\"With\":           reflect.ValueOf(slog.With),\n\n\t\t// type definitions\n\t\t\"Attr\":           reflect.ValueOf((*slog.Attr)(nil)),\n\t\t\"Handler\":        reflect.ValueOf((*slog.Handler)(nil)),\n\t\t\"HandlerOptions\": reflect.ValueOf((*slog.HandlerOptions)(nil)),\n\t\t\"JSONHandler\":    reflect.ValueOf((*slog.JSONHandler)(nil)),\n\t\t\"Kind\":           reflect.ValueOf((*slog.Kind)(nil)),\n\t\t\"Level\":          reflect.ValueOf((*slog.Level)(nil)),\n\t\t\"LevelVar\":       reflect.ValueOf((*slog.LevelVar)(nil)),\n\t\t\"Leveler\":        reflect.ValueOf((*slog.Leveler)(nil)),\n\t\t\"LogValuer\":      reflect.ValueOf((*slog.LogValuer)(nil)),\n\t\t\"Logger\":         reflect.ValueOf((*slog.Logger)(nil)),\n\t\t\"Record\":         reflect.ValueOf((*slog.Record)(nil)),\n\t\t\"Source\":         reflect.ValueOf((*slog.Source)(nil)),\n\t\t\"TextHandler\":    reflect.ValueOf((*slog.TextHandler)(nil)),\n\t\t\"Value\":          reflect.ValueOf((*slog.Value)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Handler\":   reflect.ValueOf((*_log_slog_Handler)(nil)),\n\t\t\"_Leveler\":   reflect.ValueOf((*_log_slog_Leveler)(nil)),\n\t\t\"_LogValuer\": reflect.ValueOf((*_log_slog_LogValuer)(nil)),\n\t}\n}\n\n// _log_slog_Handler is an interface wrapper for Handler type\ntype _log_slog_Handler struct {\n\tIValue     interface{}\n\tWEnabled   func(a0 context.Context, a1 slog.Level) bool\n\tWHandle    func(a0 context.Context, a1 slog.Record) error\n\tWWithAttrs func(attrs []slog.Attr) slog.Handler\n\tWWithGroup func(name string) slog.Handler\n}\n\nfunc (W _log_slog_Handler) Enabled(a0 context.Context, a1 slog.Level) bool  { return W.WEnabled(a0, a1) }\nfunc (W _log_slog_Handler) Handle(a0 context.Context, a1 slog.Record) error { return W.WHandle(a0, a1) }\nfunc (W _log_slog_Handler) WithAttrs(attrs []slog.Attr) slog.Handler        { return W.WWithAttrs(attrs) }\nfunc (W _log_slog_Handler) WithGroup(name string) slog.Handler              { return W.WWithGroup(name) }\n\n// _log_slog_Leveler is an interface wrapper for Leveler type\ntype _log_slog_Leveler struct {\n\tIValue interface{}\n\tWLevel func() slog.Level\n}\n\nfunc (W _log_slog_Leveler) Level() slog.Level { return W.WLevel() }\n\n// _log_slog_LogValuer is an interface wrapper for LogValuer type\ntype _log_slog_LogValuer struct {\n\tIValue    interface{}\n\tWLogValue func() slog.Value\n}\n\nfunc (W _log_slog_LogValuer) LogValue() slog.Value { return W.WLogValue() }\n"
  },
  {
    "path": "stdlib/go1_21_log_syslog.go",
    "content": "// Code generated by 'yaegi extract log/syslog'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22 && !windows && !nacl && !plan9\n// +build go1.21,!go1.22,!windows,!nacl,!plan9\n\npackage stdlib\n\nimport (\n\t\"log/syslog\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"log/syslog/syslog\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Dial\":         reflect.ValueOf(syslog.Dial),\n\t\t\"LOG_ALERT\":    reflect.ValueOf(syslog.LOG_ALERT),\n\t\t\"LOG_AUTH\":     reflect.ValueOf(syslog.LOG_AUTH),\n\t\t\"LOG_AUTHPRIV\": reflect.ValueOf(syslog.LOG_AUTHPRIV),\n\t\t\"LOG_CRIT\":     reflect.ValueOf(syslog.LOG_CRIT),\n\t\t\"LOG_CRON\":     reflect.ValueOf(syslog.LOG_CRON),\n\t\t\"LOG_DAEMON\":   reflect.ValueOf(syslog.LOG_DAEMON),\n\t\t\"LOG_DEBUG\":    reflect.ValueOf(syslog.LOG_DEBUG),\n\t\t\"LOG_EMERG\":    reflect.ValueOf(syslog.LOG_EMERG),\n\t\t\"LOG_ERR\":      reflect.ValueOf(syslog.LOG_ERR),\n\t\t\"LOG_FTP\":      reflect.ValueOf(syslog.LOG_FTP),\n\t\t\"LOG_INFO\":     reflect.ValueOf(syslog.LOG_INFO),\n\t\t\"LOG_KERN\":     reflect.ValueOf(syslog.LOG_KERN),\n\t\t\"LOG_LOCAL0\":   reflect.ValueOf(syslog.LOG_LOCAL0),\n\t\t\"LOG_LOCAL1\":   reflect.ValueOf(syslog.LOG_LOCAL1),\n\t\t\"LOG_LOCAL2\":   reflect.ValueOf(syslog.LOG_LOCAL2),\n\t\t\"LOG_LOCAL3\":   reflect.ValueOf(syslog.LOG_LOCAL3),\n\t\t\"LOG_LOCAL4\":   reflect.ValueOf(syslog.LOG_LOCAL4),\n\t\t\"LOG_LOCAL5\":   reflect.ValueOf(syslog.LOG_LOCAL5),\n\t\t\"LOG_LOCAL6\":   reflect.ValueOf(syslog.LOG_LOCAL6),\n\t\t\"LOG_LOCAL7\":   reflect.ValueOf(syslog.LOG_LOCAL7),\n\t\t\"LOG_LPR\":      reflect.ValueOf(syslog.LOG_LPR),\n\t\t\"LOG_MAIL\":     reflect.ValueOf(syslog.LOG_MAIL),\n\t\t\"LOG_NEWS\":     reflect.ValueOf(syslog.LOG_NEWS),\n\t\t\"LOG_NOTICE\":   reflect.ValueOf(syslog.LOG_NOTICE),\n\t\t\"LOG_SYSLOG\":   reflect.ValueOf(syslog.LOG_SYSLOG),\n\t\t\"LOG_USER\":     reflect.ValueOf(syslog.LOG_USER),\n\t\t\"LOG_UUCP\":     reflect.ValueOf(syslog.LOG_UUCP),\n\t\t\"LOG_WARNING\":  reflect.ValueOf(syslog.LOG_WARNING),\n\t\t\"New\":          reflect.ValueOf(syslog.New),\n\t\t\"NewLogger\":    reflect.ValueOf(syslog.NewLogger),\n\n\t\t// type definitions\n\t\t\"Priority\": reflect.ValueOf((*syslog.Priority)(nil)),\n\t\t\"Writer\":   reflect.ValueOf((*syslog.Writer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_maps.go",
    "content": "// Code generated by 'yaegi extract maps'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"maps/maps\"] = map[string]reflect.Value{}\n}\n"
  },
  {
    "path": "stdlib/go1_21_math.go",
    "content": "// Code generated by 'yaegi extract math'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"math\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"math/math\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Abs\":                    reflect.ValueOf(math.Abs),\n\t\t\"Acos\":                   reflect.ValueOf(math.Acos),\n\t\t\"Acosh\":                  reflect.ValueOf(math.Acosh),\n\t\t\"Asin\":                   reflect.ValueOf(math.Asin),\n\t\t\"Asinh\":                  reflect.ValueOf(math.Asinh),\n\t\t\"Atan\":                   reflect.ValueOf(math.Atan),\n\t\t\"Atan2\":                  reflect.ValueOf(math.Atan2),\n\t\t\"Atanh\":                  reflect.ValueOf(math.Atanh),\n\t\t\"Cbrt\":                   reflect.ValueOf(math.Cbrt),\n\t\t\"Ceil\":                   reflect.ValueOf(math.Ceil),\n\t\t\"Copysign\":               reflect.ValueOf(math.Copysign),\n\t\t\"Cos\":                    reflect.ValueOf(math.Cos),\n\t\t\"Cosh\":                   reflect.ValueOf(math.Cosh),\n\t\t\"Dim\":                    reflect.ValueOf(math.Dim),\n\t\t\"E\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2.71828182845904523536028747135266249775724709369995957496696762566337824315673231520670375558666729784504486779277967997696994772644702281675346915668215131895555530285035761295375777990557253360748291015625\", token.FLOAT, 0)),\n\t\t\"Erf\":                    reflect.ValueOf(math.Erf),\n\t\t\"Erfc\":                   reflect.ValueOf(math.Erfc),\n\t\t\"Erfcinv\":                reflect.ValueOf(math.Erfcinv),\n\t\t\"Erfinv\":                 reflect.ValueOf(math.Erfinv),\n\t\t\"Exp\":                    reflect.ValueOf(math.Exp),\n\t\t\"Exp2\":                   reflect.ValueOf(math.Exp2),\n\t\t\"Expm1\":                  reflect.ValueOf(math.Expm1),\n\t\t\"FMA\":                    reflect.ValueOf(math.FMA),\n\t\t\"Float32bits\":            reflect.ValueOf(math.Float32bits),\n\t\t\"Float32frombits\":        reflect.ValueOf(math.Float32frombits),\n\t\t\"Float64bits\":            reflect.ValueOf(math.Float64bits),\n\t\t\"Float64frombits\":        reflect.ValueOf(math.Float64frombits),\n\t\t\"Floor\":                  reflect.ValueOf(math.Floor),\n\t\t\"Frexp\":                  reflect.ValueOf(math.Frexp),\n\t\t\"Gamma\":                  reflect.ValueOf(math.Gamma),\n\t\t\"Hypot\":                  reflect.ValueOf(math.Hypot),\n\t\t\"Ilogb\":                  reflect.ValueOf(math.Ilogb),\n\t\t\"Inf\":                    reflect.ValueOf(math.Inf),\n\t\t\"IsInf\":                  reflect.ValueOf(math.IsInf),\n\t\t\"IsNaN\":                  reflect.ValueOf(math.IsNaN),\n\t\t\"J0\":                     reflect.ValueOf(math.J0),\n\t\t\"J1\":                     reflect.ValueOf(math.J1),\n\t\t\"Jn\":                     reflect.ValueOf(math.Jn),\n\t\t\"Ldexp\":                  reflect.ValueOf(math.Ldexp),\n\t\t\"Lgamma\":                 reflect.ValueOf(math.Lgamma),\n\t\t\"Ln10\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2.30258509299404568401799145468436420760110148862877297603332784146804725494827975466552490443295866962642372461496758838959542646932914211937012833592062802600362869664962772731087170541286468505859375\", token.FLOAT, 0)),\n\t\t\"Ln2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0.6931471805599453094172321214581765680755001343602552541206800092715999496201383079363438206637927920954189307729314303884387720696314608777673678644642390655170150035209453154294578780536539852619171142578125\", token.FLOAT, 0)),\n\t\t\"Log\":                    reflect.ValueOf(math.Log),\n\t\t\"Log10\":                  reflect.ValueOf(math.Log10),\n\t\t\"Log10E\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0.43429448190325182765112891891660508229439700580366656611445378416636798190620320263064286300825210972160277489744884502676719847561509639618196799746596688688378591625127711495224502868950366973876953125\", token.FLOAT, 0)),\n\t\t\"Log1p\":                  reflect.ValueOf(math.Log1p),\n\t\t\"Log2\":                   reflect.ValueOf(math.Log2),\n\t\t\"Log2E\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1.44269504088896340735992468100189213742664595415298593413544940772066427768997545329060870636212628972710992130324953463427359402479619301286929040235571747101382214539290471666532766903401352465152740478515625\", token.FLOAT, 0)),\n\t\t\"Logb\":                   reflect.ValueOf(math.Logb),\n\t\t\"Max\":                    reflect.ValueOf(math.Max),\n\t\t\"MaxFloat32\":             reflect.ValueOf(constant.MakeFromLiteral(\"340282346638528859811704183484516925440\", token.FLOAT, 0)),\n\t\t\"MaxFloat64\":             reflect.ValueOf(constant.MakeFromLiteral(\"179769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858368\", token.FLOAT, 0)),\n\t\t\"MaxInt\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"MaxInt16\":               reflect.ValueOf(constant.MakeFromLiteral(\"32767\", token.INT, 0)),\n\t\t\"MaxInt32\":               reflect.ValueOf(constant.MakeFromLiteral(\"2147483647\", token.INT, 0)),\n\t\t\"MaxInt64\":               reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"MaxInt8\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"MaxUint\":                reflect.ValueOf(constant.MakeFromLiteral(\"18446744073709551615\", token.INT, 0)),\n\t\t\"MaxUint16\":              reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"MaxUint32\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"MaxUint64\":              reflect.ValueOf(constant.MakeFromLiteral(\"18446744073709551615\", token.INT, 0)),\n\t\t\"MaxUint8\":               reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"Min\":                    reflect.ValueOf(math.Min),\n\t\t\"MinInt\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-9223372036854775808\", token.INT, 0)),\n\t\t\"MinInt16\":               reflect.ValueOf(constant.MakeFromLiteral(\"-32768\", token.INT, 0)),\n\t\t\"MinInt32\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MinInt64\":               reflect.ValueOf(constant.MakeFromLiteral(\"-9223372036854775808\", token.INT, 0)),\n\t\t\"MinInt8\":                reflect.ValueOf(constant.MakeFromLiteral(\"-128\", token.INT, 0)),\n\t\t\"Mod\":                    reflect.ValueOf(math.Mod),\n\t\t\"Modf\":                   reflect.ValueOf(math.Modf),\n\t\t\"NaN\":                    reflect.ValueOf(math.NaN),\n\t\t\"Nextafter\":              reflect.ValueOf(math.Nextafter),\n\t\t\"Nextafter32\":            reflect.ValueOf(math.Nextafter32),\n\t\t\"Phi\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1.6180339887498948482045868343656381177203091798057628621354486119746080982153796619881086049305501566952211682590824739205931370737029882996587050475921915678674035433959321750307935872115194797515869140625\", token.FLOAT, 0)),\n\t\t\"Pi\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3.141592653589793238462643383279502884197169399375105820974944594789982923695635954704435713335896673485663389728754819466702315787113662862838515639906529162340867271374644786874341662041842937469482421875\", token.FLOAT, 0)),\n\t\t\"Pow\":                    reflect.ValueOf(math.Pow),\n\t\t\"Pow10\":                  reflect.ValueOf(math.Pow10),\n\t\t\"Remainder\":              reflect.ValueOf(math.Remainder),\n\t\t\"Round\":                  reflect.ValueOf(math.Round),\n\t\t\"RoundToEven\":            reflect.ValueOf(math.RoundToEven),\n\t\t\"Signbit\":                reflect.ValueOf(math.Signbit),\n\t\t\"Sin\":                    reflect.ValueOf(math.Sin),\n\t\t\"Sincos\":                 reflect.ValueOf(math.Sincos),\n\t\t\"Sinh\":                   reflect.ValueOf(math.Sinh),\n\t\t\"SmallestNonzeroFloat32\": reflect.ValueOf(constant.MakeFromLiteral(\"1.40129846432481707092372958328991613128026194187651577175706828388979108268586060148663818836212158203125e-45\", token.FLOAT, 0)),\n\t\t\"SmallestNonzeroFloat64\": reflect.ValueOf(constant.MakeFromLiteral(\"4.940656458412465441765687928682213723650598026143247644255856825006755072702087518652998363616359923797965646954457177309266567103559397963987747960107818781263007131903114045278458171678489821036887186360569987307230500063874091535649843873124733972731696151400317153853980741262385655911710266585566867681870395603106249319452715914924553293054565444011274801297099995419319894090804165633245247571478690147267801593552386115501348035264934720193790268107107491703332226844753335720832431936092382893458368060106011506169809753078342277318329247904982524730776375927247874656084778203734469699533647017972677717585125660551199131504891101451037862738167250955837389733598993664809941164205702637090279242767544565229087538682506419718265533447265625e-324\", token.FLOAT, 0)),\n\t\t\"Sqrt\":                   reflect.ValueOf(math.Sqrt),\n\t\t\"Sqrt2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1.414213562373095048801688724209698078569671875376948073176679739576083351575381440094441524123797447886801949755143139115339040409162552642832693297721230919563348109313505318596071447245776653289794921875\", token.FLOAT, 0)),\n\t\t\"SqrtE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1.64872127070012814684865078781416357165377610071014801157507931167328763229187870850146925823776361770041160388013884200789716007979526823569827080974091691342077871211546646890155898290686309337615966796875\", token.FLOAT, 0)),\n\t\t\"SqrtPhi\":                reflect.ValueOf(constant.MakeFromLiteral(\"1.2720196495140689642524224617374914917156080418400962486166403754616080542166459302584536396369727769747312116100875915825863540562126478288118732191412003988041797518382391984914647764526307582855224609375\", token.FLOAT, 0)),\n\t\t\"SqrtPi\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1.772453850905516027298167483341145182797549456122387128213807789740599698370237052541269446184448945647349951047154197675245574635259260134350885938555625028620527962319730619356050738133490085601806640625\", token.FLOAT, 0)),\n\t\t\"Tan\":                    reflect.ValueOf(math.Tan),\n\t\t\"Tanh\":                   reflect.ValueOf(math.Tanh),\n\t\t\"Trunc\":                  reflect.ValueOf(math.Trunc),\n\t\t\"Y0\":                     reflect.ValueOf(math.Y0),\n\t\t\"Y1\":                     reflect.ValueOf(math.Y1),\n\t\t\"Yn\":                     reflect.ValueOf(math.Yn),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_math_big.go",
    "content": "// Code generated by 'yaegi extract math/big'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"math/big\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"math/big/big\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Above\":         reflect.ValueOf(big.Above),\n\t\t\"AwayFromZero\":  reflect.ValueOf(big.AwayFromZero),\n\t\t\"Below\":         reflect.ValueOf(big.Below),\n\t\t\"Exact\":         reflect.ValueOf(big.Exact),\n\t\t\"Jacobi\":        reflect.ValueOf(big.Jacobi),\n\t\t\"MaxBase\":       reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"MaxExp\":        reflect.ValueOf(constant.MakeFromLiteral(\"2147483647\", token.INT, 0)),\n\t\t\"MaxPrec\":       reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"MinExp\":        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"NewFloat\":      reflect.ValueOf(big.NewFloat),\n\t\t\"NewInt\":        reflect.ValueOf(big.NewInt),\n\t\t\"NewRat\":        reflect.ValueOf(big.NewRat),\n\t\t\"ParseFloat\":    reflect.ValueOf(big.ParseFloat),\n\t\t\"ToNearestAway\": reflect.ValueOf(big.ToNearestAway),\n\t\t\"ToNearestEven\": reflect.ValueOf(big.ToNearestEven),\n\t\t\"ToNegativeInf\": reflect.ValueOf(big.ToNegativeInf),\n\t\t\"ToPositiveInf\": reflect.ValueOf(big.ToPositiveInf),\n\t\t\"ToZero\":        reflect.ValueOf(big.ToZero),\n\n\t\t// type definitions\n\t\t\"Accuracy\":     reflect.ValueOf((*big.Accuracy)(nil)),\n\t\t\"ErrNaN\":       reflect.ValueOf((*big.ErrNaN)(nil)),\n\t\t\"Float\":        reflect.ValueOf((*big.Float)(nil)),\n\t\t\"Int\":          reflect.ValueOf((*big.Int)(nil)),\n\t\t\"Rat\":          reflect.ValueOf((*big.Rat)(nil)),\n\t\t\"RoundingMode\": reflect.ValueOf((*big.RoundingMode)(nil)),\n\t\t\"Word\":         reflect.ValueOf((*big.Word)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_math_bits.go",
    "content": "// Code generated by 'yaegi extract math/bits'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"math/bits\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"math/bits/bits\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Add\":             reflect.ValueOf(bits.Add),\n\t\t\"Add32\":           reflect.ValueOf(bits.Add32),\n\t\t\"Add64\":           reflect.ValueOf(bits.Add64),\n\t\t\"Div\":             reflect.ValueOf(bits.Div),\n\t\t\"Div32\":           reflect.ValueOf(bits.Div32),\n\t\t\"Div64\":           reflect.ValueOf(bits.Div64),\n\t\t\"LeadingZeros\":    reflect.ValueOf(bits.LeadingZeros),\n\t\t\"LeadingZeros16\":  reflect.ValueOf(bits.LeadingZeros16),\n\t\t\"LeadingZeros32\":  reflect.ValueOf(bits.LeadingZeros32),\n\t\t\"LeadingZeros64\":  reflect.ValueOf(bits.LeadingZeros64),\n\t\t\"LeadingZeros8\":   reflect.ValueOf(bits.LeadingZeros8),\n\t\t\"Len\":             reflect.ValueOf(bits.Len),\n\t\t\"Len16\":           reflect.ValueOf(bits.Len16),\n\t\t\"Len32\":           reflect.ValueOf(bits.Len32),\n\t\t\"Len64\":           reflect.ValueOf(bits.Len64),\n\t\t\"Len8\":            reflect.ValueOf(bits.Len8),\n\t\t\"Mul\":             reflect.ValueOf(bits.Mul),\n\t\t\"Mul32\":           reflect.ValueOf(bits.Mul32),\n\t\t\"Mul64\":           reflect.ValueOf(bits.Mul64),\n\t\t\"OnesCount\":       reflect.ValueOf(bits.OnesCount),\n\t\t\"OnesCount16\":     reflect.ValueOf(bits.OnesCount16),\n\t\t\"OnesCount32\":     reflect.ValueOf(bits.OnesCount32),\n\t\t\"OnesCount64\":     reflect.ValueOf(bits.OnesCount64),\n\t\t\"OnesCount8\":      reflect.ValueOf(bits.OnesCount8),\n\t\t\"Rem\":             reflect.ValueOf(bits.Rem),\n\t\t\"Rem32\":           reflect.ValueOf(bits.Rem32),\n\t\t\"Rem64\":           reflect.ValueOf(bits.Rem64),\n\t\t\"Reverse\":         reflect.ValueOf(bits.Reverse),\n\t\t\"Reverse16\":       reflect.ValueOf(bits.Reverse16),\n\t\t\"Reverse32\":       reflect.ValueOf(bits.Reverse32),\n\t\t\"Reverse64\":       reflect.ValueOf(bits.Reverse64),\n\t\t\"Reverse8\":        reflect.ValueOf(bits.Reverse8),\n\t\t\"ReverseBytes\":    reflect.ValueOf(bits.ReverseBytes),\n\t\t\"ReverseBytes16\":  reflect.ValueOf(bits.ReverseBytes16),\n\t\t\"ReverseBytes32\":  reflect.ValueOf(bits.ReverseBytes32),\n\t\t\"ReverseBytes64\":  reflect.ValueOf(bits.ReverseBytes64),\n\t\t\"RotateLeft\":      reflect.ValueOf(bits.RotateLeft),\n\t\t\"RotateLeft16\":    reflect.ValueOf(bits.RotateLeft16),\n\t\t\"RotateLeft32\":    reflect.ValueOf(bits.RotateLeft32),\n\t\t\"RotateLeft64\":    reflect.ValueOf(bits.RotateLeft64),\n\t\t\"RotateLeft8\":     reflect.ValueOf(bits.RotateLeft8),\n\t\t\"Sub\":             reflect.ValueOf(bits.Sub),\n\t\t\"Sub32\":           reflect.ValueOf(bits.Sub32),\n\t\t\"Sub64\":           reflect.ValueOf(bits.Sub64),\n\t\t\"TrailingZeros\":   reflect.ValueOf(bits.TrailingZeros),\n\t\t\"TrailingZeros16\": reflect.ValueOf(bits.TrailingZeros16),\n\t\t\"TrailingZeros32\": reflect.ValueOf(bits.TrailingZeros32),\n\t\t\"TrailingZeros64\": reflect.ValueOf(bits.TrailingZeros64),\n\t\t\"TrailingZeros8\":  reflect.ValueOf(bits.TrailingZeros8),\n\t\t\"UintSize\":        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_math_cmplx.go",
    "content": "// Code generated by 'yaegi extract math/cmplx'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"math/cmplx\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"math/cmplx/cmplx\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Abs\":   reflect.ValueOf(cmplx.Abs),\n\t\t\"Acos\":  reflect.ValueOf(cmplx.Acos),\n\t\t\"Acosh\": reflect.ValueOf(cmplx.Acosh),\n\t\t\"Asin\":  reflect.ValueOf(cmplx.Asin),\n\t\t\"Asinh\": reflect.ValueOf(cmplx.Asinh),\n\t\t\"Atan\":  reflect.ValueOf(cmplx.Atan),\n\t\t\"Atanh\": reflect.ValueOf(cmplx.Atanh),\n\t\t\"Conj\":  reflect.ValueOf(cmplx.Conj),\n\t\t\"Cos\":   reflect.ValueOf(cmplx.Cos),\n\t\t\"Cosh\":  reflect.ValueOf(cmplx.Cosh),\n\t\t\"Cot\":   reflect.ValueOf(cmplx.Cot),\n\t\t\"Exp\":   reflect.ValueOf(cmplx.Exp),\n\t\t\"Inf\":   reflect.ValueOf(cmplx.Inf),\n\t\t\"IsInf\": reflect.ValueOf(cmplx.IsInf),\n\t\t\"IsNaN\": reflect.ValueOf(cmplx.IsNaN),\n\t\t\"Log\":   reflect.ValueOf(cmplx.Log),\n\t\t\"Log10\": reflect.ValueOf(cmplx.Log10),\n\t\t\"NaN\":   reflect.ValueOf(cmplx.NaN),\n\t\t\"Phase\": reflect.ValueOf(cmplx.Phase),\n\t\t\"Polar\": reflect.ValueOf(cmplx.Polar),\n\t\t\"Pow\":   reflect.ValueOf(cmplx.Pow),\n\t\t\"Rect\":  reflect.ValueOf(cmplx.Rect),\n\t\t\"Sin\":   reflect.ValueOf(cmplx.Sin),\n\t\t\"Sinh\":  reflect.ValueOf(cmplx.Sinh),\n\t\t\"Sqrt\":  reflect.ValueOf(cmplx.Sqrt),\n\t\t\"Tan\":   reflect.ValueOf(cmplx.Tan),\n\t\t\"Tanh\":  reflect.ValueOf(cmplx.Tanh),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_math_rand.go",
    "content": "// Code generated by 'yaegi extract math/rand'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"math/rand\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"math/rand/rand\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ExpFloat64\":  reflect.ValueOf(rand.ExpFloat64),\n\t\t\"Float32\":     reflect.ValueOf(rand.Float32),\n\t\t\"Float64\":     reflect.ValueOf(rand.Float64),\n\t\t\"Int\":         reflect.ValueOf(rand.Int),\n\t\t\"Int31\":       reflect.ValueOf(rand.Int31),\n\t\t\"Int31n\":      reflect.ValueOf(rand.Int31n),\n\t\t\"Int63\":       reflect.ValueOf(rand.Int63),\n\t\t\"Int63n\":      reflect.ValueOf(rand.Int63n),\n\t\t\"Intn\":        reflect.ValueOf(rand.Intn),\n\t\t\"New\":         reflect.ValueOf(rand.New),\n\t\t\"NewSource\":   reflect.ValueOf(rand.NewSource),\n\t\t\"NewZipf\":     reflect.ValueOf(rand.NewZipf),\n\t\t\"NormFloat64\": reflect.ValueOf(rand.NormFloat64),\n\t\t\"Perm\":        reflect.ValueOf(rand.Perm),\n\t\t\"Read\":        reflect.ValueOf(rand.Read),\n\t\t\"Seed\":        reflect.ValueOf(rand.Seed),\n\t\t\"Shuffle\":     reflect.ValueOf(rand.Shuffle),\n\t\t\"Uint32\":      reflect.ValueOf(rand.Uint32),\n\t\t\"Uint64\":      reflect.ValueOf(rand.Uint64),\n\n\t\t// type definitions\n\t\t\"Rand\":     reflect.ValueOf((*rand.Rand)(nil)),\n\t\t\"Source\":   reflect.ValueOf((*rand.Source)(nil)),\n\t\t\"Source64\": reflect.ValueOf((*rand.Source64)(nil)),\n\t\t\"Zipf\":     reflect.ValueOf((*rand.Zipf)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Source\":   reflect.ValueOf((*_math_rand_Source)(nil)),\n\t\t\"_Source64\": reflect.ValueOf((*_math_rand_Source64)(nil)),\n\t}\n}\n\n// _math_rand_Source is an interface wrapper for Source type\ntype _math_rand_Source struct {\n\tIValue interface{}\n\tWInt63 func() int64\n\tWSeed  func(seed int64)\n}\n\nfunc (W _math_rand_Source) Int63() int64    { return W.WInt63() }\nfunc (W _math_rand_Source) Seed(seed int64) { W.WSeed(seed) }\n\n// _math_rand_Source64 is an interface wrapper for Source64 type\ntype _math_rand_Source64 struct {\n\tIValue  interface{}\n\tWInt63  func() int64\n\tWSeed   func(seed int64)\n\tWUint64 func() uint64\n}\n\nfunc (W _math_rand_Source64) Int63() int64    { return W.WInt63() }\nfunc (W _math_rand_Source64) Seed(seed int64) { W.WSeed(seed) }\nfunc (W _math_rand_Source64) Uint64() uint64  { return W.WUint64() }\n"
  },
  {
    "path": "stdlib/go1_21_mime.go",
    "content": "// Code generated by 'yaegi extract mime'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"mime\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"mime/mime\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AddExtensionType\":         reflect.ValueOf(mime.AddExtensionType),\n\t\t\"BEncoding\":                reflect.ValueOf(mime.BEncoding),\n\t\t\"ErrInvalidMediaParameter\": reflect.ValueOf(&mime.ErrInvalidMediaParameter).Elem(),\n\t\t\"ExtensionsByType\":         reflect.ValueOf(mime.ExtensionsByType),\n\t\t\"FormatMediaType\":          reflect.ValueOf(mime.FormatMediaType),\n\t\t\"ParseMediaType\":           reflect.ValueOf(mime.ParseMediaType),\n\t\t\"QEncoding\":                reflect.ValueOf(mime.QEncoding),\n\t\t\"TypeByExtension\":          reflect.ValueOf(mime.TypeByExtension),\n\n\t\t// type definitions\n\t\t\"WordDecoder\": reflect.ValueOf((*mime.WordDecoder)(nil)),\n\t\t\"WordEncoder\": reflect.ValueOf((*mime.WordEncoder)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_mime_multipart.go",
    "content": "// Code generated by 'yaegi extract mime/multipart'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"mime/multipart\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"mime/multipart/multipart\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ErrMessageTooLarge\": reflect.ValueOf(&multipart.ErrMessageTooLarge).Elem(),\n\t\t\"NewReader\":          reflect.ValueOf(multipart.NewReader),\n\t\t\"NewWriter\":          reflect.ValueOf(multipart.NewWriter),\n\n\t\t// type definitions\n\t\t\"File\":       reflect.ValueOf((*multipart.File)(nil)),\n\t\t\"FileHeader\": reflect.ValueOf((*multipart.FileHeader)(nil)),\n\t\t\"Form\":       reflect.ValueOf((*multipart.Form)(nil)),\n\t\t\"Part\":       reflect.ValueOf((*multipart.Part)(nil)),\n\t\t\"Reader\":     reflect.ValueOf((*multipart.Reader)(nil)),\n\t\t\"Writer\":     reflect.ValueOf((*multipart.Writer)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_File\": reflect.ValueOf((*_mime_multipart_File)(nil)),\n\t}\n}\n\n// _mime_multipart_File is an interface wrapper for File type\ntype _mime_multipart_File struct {\n\tIValue  interface{}\n\tWClose  func() error\n\tWRead   func(p []byte) (n int, err error)\n\tWReadAt func(p []byte, off int64) (n int, err error)\n\tWSeek   func(offset int64, whence int) (int64, error)\n}\n\nfunc (W _mime_multipart_File) Close() error                     { return W.WClose() }\nfunc (W _mime_multipart_File) Read(p []byte) (n int, err error) { return W.WRead(p) }\nfunc (W _mime_multipart_File) ReadAt(p []byte, off int64) (n int, err error) {\n\treturn W.WReadAt(p, off)\n}\nfunc (W _mime_multipart_File) Seek(offset int64, whence int) (int64, error) {\n\treturn W.WSeek(offset, whence)\n}\n"
  },
  {
    "path": "stdlib/go1_21_mime_quotedprintable.go",
    "content": "// Code generated by 'yaegi extract mime/quotedprintable'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"mime/quotedprintable\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"mime/quotedprintable/quotedprintable\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"NewReader\": reflect.ValueOf(quotedprintable.NewReader),\n\t\t\"NewWriter\": reflect.ValueOf(quotedprintable.NewWriter),\n\n\t\t// type definitions\n\t\t\"Reader\": reflect.ValueOf((*quotedprintable.Reader)(nil)),\n\t\t\"Writer\": reflect.ValueOf((*quotedprintable.Writer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_net.go",
    "content": "// Code generated by 'yaegi extract net'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"net\"\n\t\"reflect\"\n\t\"time\"\n)\n\nfunc init() {\n\tSymbols[\"net/net\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"CIDRMask\":                   reflect.ValueOf(net.CIDRMask),\n\t\t\"DefaultResolver\":            reflect.ValueOf(&net.DefaultResolver).Elem(),\n\t\t\"Dial\":                       reflect.ValueOf(net.Dial),\n\t\t\"DialIP\":                     reflect.ValueOf(net.DialIP),\n\t\t\"DialTCP\":                    reflect.ValueOf(net.DialTCP),\n\t\t\"DialTimeout\":                reflect.ValueOf(net.DialTimeout),\n\t\t\"DialUDP\":                    reflect.ValueOf(net.DialUDP),\n\t\t\"DialUnix\":                   reflect.ValueOf(net.DialUnix),\n\t\t\"ErrClosed\":                  reflect.ValueOf(&net.ErrClosed).Elem(),\n\t\t\"ErrWriteToConnected\":        reflect.ValueOf(&net.ErrWriteToConnected).Elem(),\n\t\t\"FileConn\":                   reflect.ValueOf(net.FileConn),\n\t\t\"FileListener\":               reflect.ValueOf(net.FileListener),\n\t\t\"FilePacketConn\":             reflect.ValueOf(net.FilePacketConn),\n\t\t\"FlagBroadcast\":              reflect.ValueOf(net.FlagBroadcast),\n\t\t\"FlagLoopback\":               reflect.ValueOf(net.FlagLoopback),\n\t\t\"FlagMulticast\":              reflect.ValueOf(net.FlagMulticast),\n\t\t\"FlagPointToPoint\":           reflect.ValueOf(net.FlagPointToPoint),\n\t\t\"FlagRunning\":                reflect.ValueOf(net.FlagRunning),\n\t\t\"FlagUp\":                     reflect.ValueOf(net.FlagUp),\n\t\t\"IPv4\":                       reflect.ValueOf(net.IPv4),\n\t\t\"IPv4Mask\":                   reflect.ValueOf(net.IPv4Mask),\n\t\t\"IPv4allrouter\":              reflect.ValueOf(&net.IPv4allrouter).Elem(),\n\t\t\"IPv4allsys\":                 reflect.ValueOf(&net.IPv4allsys).Elem(),\n\t\t\"IPv4bcast\":                  reflect.ValueOf(&net.IPv4bcast).Elem(),\n\t\t\"IPv4len\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPv4zero\":                   reflect.ValueOf(&net.IPv4zero).Elem(),\n\t\t\"IPv6interfacelocalallnodes\": reflect.ValueOf(&net.IPv6interfacelocalallnodes).Elem(),\n\t\t\"IPv6len\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPv6linklocalallnodes\":      reflect.ValueOf(&net.IPv6linklocalallnodes).Elem(),\n\t\t\"IPv6linklocalallrouters\":    reflect.ValueOf(&net.IPv6linklocalallrouters).Elem(),\n\t\t\"IPv6loopback\":               reflect.ValueOf(&net.IPv6loopback).Elem(),\n\t\t\"IPv6unspecified\":            reflect.ValueOf(&net.IPv6unspecified).Elem(),\n\t\t\"IPv6zero\":                   reflect.ValueOf(&net.IPv6zero).Elem(),\n\t\t\"InterfaceAddrs\":             reflect.ValueOf(net.InterfaceAddrs),\n\t\t\"InterfaceByIndex\":           reflect.ValueOf(net.InterfaceByIndex),\n\t\t\"InterfaceByName\":            reflect.ValueOf(net.InterfaceByName),\n\t\t\"Interfaces\":                 reflect.ValueOf(net.Interfaces),\n\t\t\"JoinHostPort\":               reflect.ValueOf(net.JoinHostPort),\n\t\t\"Listen\":                     reflect.ValueOf(net.Listen),\n\t\t\"ListenIP\":                   reflect.ValueOf(net.ListenIP),\n\t\t\"ListenMulticastUDP\":         reflect.ValueOf(net.ListenMulticastUDP),\n\t\t\"ListenPacket\":               reflect.ValueOf(net.ListenPacket),\n\t\t\"ListenTCP\":                  reflect.ValueOf(net.ListenTCP),\n\t\t\"ListenUDP\":                  reflect.ValueOf(net.ListenUDP),\n\t\t\"ListenUnix\":                 reflect.ValueOf(net.ListenUnix),\n\t\t\"ListenUnixgram\":             reflect.ValueOf(net.ListenUnixgram),\n\t\t\"LookupAddr\":                 reflect.ValueOf(net.LookupAddr),\n\t\t\"LookupCNAME\":                reflect.ValueOf(net.LookupCNAME),\n\t\t\"LookupHost\":                 reflect.ValueOf(net.LookupHost),\n\t\t\"LookupIP\":                   reflect.ValueOf(net.LookupIP),\n\t\t\"LookupMX\":                   reflect.ValueOf(net.LookupMX),\n\t\t\"LookupNS\":                   reflect.ValueOf(net.LookupNS),\n\t\t\"LookupPort\":                 reflect.ValueOf(net.LookupPort),\n\t\t\"LookupSRV\":                  reflect.ValueOf(net.LookupSRV),\n\t\t\"LookupTXT\":                  reflect.ValueOf(net.LookupTXT),\n\t\t\"ParseCIDR\":                  reflect.ValueOf(net.ParseCIDR),\n\t\t\"ParseIP\":                    reflect.ValueOf(net.ParseIP),\n\t\t\"ParseMAC\":                   reflect.ValueOf(net.ParseMAC),\n\t\t\"Pipe\":                       reflect.ValueOf(net.Pipe),\n\t\t\"ResolveIPAddr\":              reflect.ValueOf(net.ResolveIPAddr),\n\t\t\"ResolveTCPAddr\":             reflect.ValueOf(net.ResolveTCPAddr),\n\t\t\"ResolveUDPAddr\":             reflect.ValueOf(net.ResolveUDPAddr),\n\t\t\"ResolveUnixAddr\":            reflect.ValueOf(net.ResolveUnixAddr),\n\t\t\"SplitHostPort\":              reflect.ValueOf(net.SplitHostPort),\n\t\t\"TCPAddrFromAddrPort\":        reflect.ValueOf(net.TCPAddrFromAddrPort),\n\t\t\"UDPAddrFromAddrPort\":        reflect.ValueOf(net.UDPAddrFromAddrPort),\n\n\t\t// type definitions\n\t\t\"Addr\":                reflect.ValueOf((*net.Addr)(nil)),\n\t\t\"AddrError\":           reflect.ValueOf((*net.AddrError)(nil)),\n\t\t\"Buffers\":             reflect.ValueOf((*net.Buffers)(nil)),\n\t\t\"Conn\":                reflect.ValueOf((*net.Conn)(nil)),\n\t\t\"DNSConfigError\":      reflect.ValueOf((*net.DNSConfigError)(nil)),\n\t\t\"DNSError\":            reflect.ValueOf((*net.DNSError)(nil)),\n\t\t\"Dialer\":              reflect.ValueOf((*net.Dialer)(nil)),\n\t\t\"Error\":               reflect.ValueOf((*net.Error)(nil)),\n\t\t\"Flags\":               reflect.ValueOf((*net.Flags)(nil)),\n\t\t\"HardwareAddr\":        reflect.ValueOf((*net.HardwareAddr)(nil)),\n\t\t\"IP\":                  reflect.ValueOf((*net.IP)(nil)),\n\t\t\"IPAddr\":              reflect.ValueOf((*net.IPAddr)(nil)),\n\t\t\"IPConn\":              reflect.ValueOf((*net.IPConn)(nil)),\n\t\t\"IPMask\":              reflect.ValueOf((*net.IPMask)(nil)),\n\t\t\"IPNet\":               reflect.ValueOf((*net.IPNet)(nil)),\n\t\t\"Interface\":           reflect.ValueOf((*net.Interface)(nil)),\n\t\t\"InvalidAddrError\":    reflect.ValueOf((*net.InvalidAddrError)(nil)),\n\t\t\"ListenConfig\":        reflect.ValueOf((*net.ListenConfig)(nil)),\n\t\t\"Listener\":            reflect.ValueOf((*net.Listener)(nil)),\n\t\t\"MX\":                  reflect.ValueOf((*net.MX)(nil)),\n\t\t\"NS\":                  reflect.ValueOf((*net.NS)(nil)),\n\t\t\"OpError\":             reflect.ValueOf((*net.OpError)(nil)),\n\t\t\"PacketConn\":          reflect.ValueOf((*net.PacketConn)(nil)),\n\t\t\"ParseError\":          reflect.ValueOf((*net.ParseError)(nil)),\n\t\t\"Resolver\":            reflect.ValueOf((*net.Resolver)(nil)),\n\t\t\"SRV\":                 reflect.ValueOf((*net.SRV)(nil)),\n\t\t\"TCPAddr\":             reflect.ValueOf((*net.TCPAddr)(nil)),\n\t\t\"TCPConn\":             reflect.ValueOf((*net.TCPConn)(nil)),\n\t\t\"TCPListener\":         reflect.ValueOf((*net.TCPListener)(nil)),\n\t\t\"UDPAddr\":             reflect.ValueOf((*net.UDPAddr)(nil)),\n\t\t\"UDPConn\":             reflect.ValueOf((*net.UDPConn)(nil)),\n\t\t\"UnixAddr\":            reflect.ValueOf((*net.UnixAddr)(nil)),\n\t\t\"UnixConn\":            reflect.ValueOf((*net.UnixConn)(nil)),\n\t\t\"UnixListener\":        reflect.ValueOf((*net.UnixListener)(nil)),\n\t\t\"UnknownNetworkError\": reflect.ValueOf((*net.UnknownNetworkError)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Addr\":       reflect.ValueOf((*_net_Addr)(nil)),\n\t\t\"_Conn\":       reflect.ValueOf((*_net_Conn)(nil)),\n\t\t\"_Error\":      reflect.ValueOf((*_net_Error)(nil)),\n\t\t\"_Listener\":   reflect.ValueOf((*_net_Listener)(nil)),\n\t\t\"_PacketConn\": reflect.ValueOf((*_net_PacketConn)(nil)),\n\t}\n}\n\n// _net_Addr is an interface wrapper for Addr type\ntype _net_Addr struct {\n\tIValue   interface{}\n\tWNetwork func() string\n\tWString  func() string\n}\n\nfunc (W _net_Addr) Network() string { return W.WNetwork() }\nfunc (W _net_Addr) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n\n// _net_Conn is an interface wrapper for Conn type\ntype _net_Conn struct {\n\tIValue            interface{}\n\tWClose            func() error\n\tWLocalAddr        func() net.Addr\n\tWRead             func(b []byte) (n int, err error)\n\tWRemoteAddr       func() net.Addr\n\tWSetDeadline      func(t time.Time) error\n\tWSetReadDeadline  func(t time.Time) error\n\tWSetWriteDeadline func(t time.Time) error\n\tWWrite            func(b []byte) (n int, err error)\n}\n\nfunc (W _net_Conn) Close() error                       { return W.WClose() }\nfunc (W _net_Conn) LocalAddr() net.Addr                { return W.WLocalAddr() }\nfunc (W _net_Conn) Read(b []byte) (n int, err error)   { return W.WRead(b) }\nfunc (W _net_Conn) RemoteAddr() net.Addr               { return W.WRemoteAddr() }\nfunc (W _net_Conn) SetDeadline(t time.Time) error      { return W.WSetDeadline(t) }\nfunc (W _net_Conn) SetReadDeadline(t time.Time) error  { return W.WSetReadDeadline(t) }\nfunc (W _net_Conn) SetWriteDeadline(t time.Time) error { return W.WSetWriteDeadline(t) }\nfunc (W _net_Conn) Write(b []byte) (n int, err error)  { return W.WWrite(b) }\n\n// _net_Error is an interface wrapper for Error type\ntype _net_Error struct {\n\tIValue     interface{}\n\tWError     func() string\n\tWTemporary func() bool\n\tWTimeout   func() bool\n}\n\nfunc (W _net_Error) Error() string   { return W.WError() }\nfunc (W _net_Error) Temporary() bool { return W.WTemporary() }\nfunc (W _net_Error) Timeout() bool   { return W.WTimeout() }\n\n// _net_Listener is an interface wrapper for Listener type\ntype _net_Listener struct {\n\tIValue  interface{}\n\tWAccept func() (net.Conn, error)\n\tWAddr   func() net.Addr\n\tWClose  func() error\n}\n\nfunc (W _net_Listener) Accept() (net.Conn, error) { return W.WAccept() }\nfunc (W _net_Listener) Addr() net.Addr            { return W.WAddr() }\nfunc (W _net_Listener) Close() error              { return W.WClose() }\n\n// _net_PacketConn is an interface wrapper for PacketConn type\ntype _net_PacketConn struct {\n\tIValue            interface{}\n\tWClose            func() error\n\tWLocalAddr        func() net.Addr\n\tWReadFrom         func(p []byte) (n int, addr net.Addr, err error)\n\tWSetDeadline      func(t time.Time) error\n\tWSetReadDeadline  func(t time.Time) error\n\tWSetWriteDeadline func(t time.Time) error\n\tWWriteTo          func(p []byte, addr net.Addr) (n int, err error)\n}\n\nfunc (W _net_PacketConn) Close() error                                        { return W.WClose() }\nfunc (W _net_PacketConn) LocalAddr() net.Addr                                 { return W.WLocalAddr() }\nfunc (W _net_PacketConn) ReadFrom(p []byte) (n int, addr net.Addr, err error) { return W.WReadFrom(p) }\nfunc (W _net_PacketConn) SetDeadline(t time.Time) error                       { return W.WSetDeadline(t) }\nfunc (W _net_PacketConn) SetReadDeadline(t time.Time) error                   { return W.WSetReadDeadline(t) }\nfunc (W _net_PacketConn) SetWriteDeadline(t time.Time) error                  { return W.WSetWriteDeadline(t) }\nfunc (W _net_PacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error) {\n\treturn W.WWriteTo(p, addr)\n}\n"
  },
  {
    "path": "stdlib/go1_21_net_http.go",
    "content": "// Code generated by 'yaegi extract net/http'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"bufio\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"io/fs\"\n\t\"net\"\n\t\"net/http\"\n\t\"net/url\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/http/http\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllowQuerySemicolons\":                reflect.ValueOf(http.AllowQuerySemicolons),\n\t\t\"CanonicalHeaderKey\":                  reflect.ValueOf(http.CanonicalHeaderKey),\n\t\t\"DefaultClient\":                       reflect.ValueOf(&http.DefaultClient).Elem(),\n\t\t\"DefaultMaxHeaderBytes\":               reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"DefaultMaxIdleConnsPerHost\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DefaultServeMux\":                     reflect.ValueOf(&http.DefaultServeMux).Elem(),\n\t\t\"DefaultTransport\":                    reflect.ValueOf(&http.DefaultTransport).Elem(),\n\t\t\"DetectContentType\":                   reflect.ValueOf(http.DetectContentType),\n\t\t\"ErrAbortHandler\":                     reflect.ValueOf(&http.ErrAbortHandler).Elem(),\n\t\t\"ErrBodyNotAllowed\":                   reflect.ValueOf(&http.ErrBodyNotAllowed).Elem(),\n\t\t\"ErrBodyReadAfterClose\":               reflect.ValueOf(&http.ErrBodyReadAfterClose).Elem(),\n\t\t\"ErrContentLength\":                    reflect.ValueOf(&http.ErrContentLength).Elem(),\n\t\t\"ErrHandlerTimeout\":                   reflect.ValueOf(&http.ErrHandlerTimeout).Elem(),\n\t\t\"ErrHeaderTooLong\":                    reflect.ValueOf(&http.ErrHeaderTooLong).Elem(),\n\t\t\"ErrHijacked\":                         reflect.ValueOf(&http.ErrHijacked).Elem(),\n\t\t\"ErrLineTooLong\":                      reflect.ValueOf(&http.ErrLineTooLong).Elem(),\n\t\t\"ErrMissingBoundary\":                  reflect.ValueOf(&http.ErrMissingBoundary).Elem(),\n\t\t\"ErrMissingContentLength\":             reflect.ValueOf(&http.ErrMissingContentLength).Elem(),\n\t\t\"ErrMissingFile\":                      reflect.ValueOf(&http.ErrMissingFile).Elem(),\n\t\t\"ErrNoCookie\":                         reflect.ValueOf(&http.ErrNoCookie).Elem(),\n\t\t\"ErrNoLocation\":                       reflect.ValueOf(&http.ErrNoLocation).Elem(),\n\t\t\"ErrNotMultipart\":                     reflect.ValueOf(&http.ErrNotMultipart).Elem(),\n\t\t\"ErrNotSupported\":                     reflect.ValueOf(&http.ErrNotSupported).Elem(),\n\t\t\"ErrSchemeMismatch\":                   reflect.ValueOf(&http.ErrSchemeMismatch).Elem(),\n\t\t\"ErrServerClosed\":                     reflect.ValueOf(&http.ErrServerClosed).Elem(),\n\t\t\"ErrShortBody\":                        reflect.ValueOf(&http.ErrShortBody).Elem(),\n\t\t\"ErrSkipAltProtocol\":                  reflect.ValueOf(&http.ErrSkipAltProtocol).Elem(),\n\t\t\"ErrUnexpectedTrailer\":                reflect.ValueOf(&http.ErrUnexpectedTrailer).Elem(),\n\t\t\"ErrUseLastResponse\":                  reflect.ValueOf(&http.ErrUseLastResponse).Elem(),\n\t\t\"ErrWriteAfterFlush\":                  reflect.ValueOf(&http.ErrWriteAfterFlush).Elem(),\n\t\t\"Error\":                               reflect.ValueOf(http.Error),\n\t\t\"FS\":                                  reflect.ValueOf(http.FS),\n\t\t\"FileServer\":                          reflect.ValueOf(http.FileServer),\n\t\t\"Get\":                                 reflect.ValueOf(http.Get),\n\t\t\"Handle\":                              reflect.ValueOf(http.Handle),\n\t\t\"HandleFunc\":                          reflect.ValueOf(http.HandleFunc),\n\t\t\"Head\":                                reflect.ValueOf(http.Head),\n\t\t\"ListenAndServe\":                      reflect.ValueOf(http.ListenAndServe),\n\t\t\"ListenAndServeTLS\":                   reflect.ValueOf(http.ListenAndServeTLS),\n\t\t\"LocalAddrContextKey\":                 reflect.ValueOf(&http.LocalAddrContextKey).Elem(),\n\t\t\"MaxBytesHandler\":                     reflect.ValueOf(http.MaxBytesHandler),\n\t\t\"MaxBytesReader\":                      reflect.ValueOf(http.MaxBytesReader),\n\t\t\"MethodConnect\":                       reflect.ValueOf(constant.MakeFromLiteral(\"\\\"CONNECT\\\"\", token.STRING, 0)),\n\t\t\"MethodDelete\":                        reflect.ValueOf(constant.MakeFromLiteral(\"\\\"DELETE\\\"\", token.STRING, 0)),\n\t\t\"MethodGet\":                           reflect.ValueOf(constant.MakeFromLiteral(\"\\\"GET\\\"\", token.STRING, 0)),\n\t\t\"MethodHead\":                          reflect.ValueOf(constant.MakeFromLiteral(\"\\\"HEAD\\\"\", token.STRING, 0)),\n\t\t\"MethodOptions\":                       reflect.ValueOf(constant.MakeFromLiteral(\"\\\"OPTIONS\\\"\", token.STRING, 0)),\n\t\t\"MethodPatch\":                         reflect.ValueOf(constant.MakeFromLiteral(\"\\\"PATCH\\\"\", token.STRING, 0)),\n\t\t\"MethodPost\":                          reflect.ValueOf(constant.MakeFromLiteral(\"\\\"POST\\\"\", token.STRING, 0)),\n\t\t\"MethodPut\":                           reflect.ValueOf(constant.MakeFromLiteral(\"\\\"PUT\\\"\", token.STRING, 0)),\n\t\t\"MethodTrace\":                         reflect.ValueOf(constant.MakeFromLiteral(\"\\\"TRACE\\\"\", token.STRING, 0)),\n\t\t\"NewFileTransport\":                    reflect.ValueOf(http.NewFileTransport),\n\t\t\"NewRequest\":                          reflect.ValueOf(http.NewRequest),\n\t\t\"NewRequestWithContext\":               reflect.ValueOf(http.NewRequestWithContext),\n\t\t\"NewResponseController\":               reflect.ValueOf(http.NewResponseController),\n\t\t\"NewServeMux\":                         reflect.ValueOf(http.NewServeMux),\n\t\t\"NoBody\":                              reflect.ValueOf(&http.NoBody).Elem(),\n\t\t\"NotFound\":                            reflect.ValueOf(http.NotFound),\n\t\t\"NotFoundHandler\":                     reflect.ValueOf(http.NotFoundHandler),\n\t\t\"ParseHTTPVersion\":                    reflect.ValueOf(http.ParseHTTPVersion),\n\t\t\"ParseTime\":                           reflect.ValueOf(http.ParseTime),\n\t\t\"Post\":                                reflect.ValueOf(http.Post),\n\t\t\"PostForm\":                            reflect.ValueOf(http.PostForm),\n\t\t\"ProxyFromEnvironment\":                reflect.ValueOf(http.ProxyFromEnvironment),\n\t\t\"ProxyURL\":                            reflect.ValueOf(http.ProxyURL),\n\t\t\"ReadRequest\":                         reflect.ValueOf(http.ReadRequest),\n\t\t\"ReadResponse\":                        reflect.ValueOf(http.ReadResponse),\n\t\t\"Redirect\":                            reflect.ValueOf(http.Redirect),\n\t\t\"RedirectHandler\":                     reflect.ValueOf(http.RedirectHandler),\n\t\t\"SameSiteDefaultMode\":                 reflect.ValueOf(http.SameSiteDefaultMode),\n\t\t\"SameSiteLaxMode\":                     reflect.ValueOf(http.SameSiteLaxMode),\n\t\t\"SameSiteNoneMode\":                    reflect.ValueOf(http.SameSiteNoneMode),\n\t\t\"SameSiteStrictMode\":                  reflect.ValueOf(http.SameSiteStrictMode),\n\t\t\"Serve\":                               reflect.ValueOf(http.Serve),\n\t\t\"ServeContent\":                        reflect.ValueOf(http.ServeContent),\n\t\t\"ServeFile\":                           reflect.ValueOf(http.ServeFile),\n\t\t\"ServeTLS\":                            reflect.ValueOf(http.ServeTLS),\n\t\t\"ServerContextKey\":                    reflect.ValueOf(&http.ServerContextKey).Elem(),\n\t\t\"SetCookie\":                           reflect.ValueOf(http.SetCookie),\n\t\t\"StateActive\":                         reflect.ValueOf(http.StateActive),\n\t\t\"StateClosed\":                         reflect.ValueOf(http.StateClosed),\n\t\t\"StateHijacked\":                       reflect.ValueOf(http.StateHijacked),\n\t\t\"StateIdle\":                           reflect.ValueOf(http.StateIdle),\n\t\t\"StateNew\":                            reflect.ValueOf(http.StateNew),\n\t\t\"StatusAccepted\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"StatusAlreadyReported\":               reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"StatusBadGateway\":                    reflect.ValueOf(constant.MakeFromLiteral(\"502\", token.INT, 0)),\n\t\t\"StatusBadRequest\":                    reflect.ValueOf(constant.MakeFromLiteral(\"400\", token.INT, 0)),\n\t\t\"StatusConflict\":                      reflect.ValueOf(constant.MakeFromLiteral(\"409\", token.INT, 0)),\n\t\t\"StatusContinue\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"StatusCreated\":                       reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"StatusEarlyHints\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"StatusExpectationFailed\":             reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"StatusFailedDependency\":              reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"StatusForbidden\":                     reflect.ValueOf(constant.MakeFromLiteral(\"403\", token.INT, 0)),\n\t\t\"StatusFound\":                         reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"StatusGatewayTimeout\":                reflect.ValueOf(constant.MakeFromLiteral(\"504\", token.INT, 0)),\n\t\t\"StatusGone\":                          reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"StatusHTTPVersionNotSupported\":       reflect.ValueOf(constant.MakeFromLiteral(\"505\", token.INT, 0)),\n\t\t\"StatusIMUsed\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"StatusInsufficientStorage\":           reflect.ValueOf(constant.MakeFromLiteral(\"507\", token.INT, 0)),\n\t\t\"StatusInternalServerError\":           reflect.ValueOf(constant.MakeFromLiteral(\"500\", token.INT, 0)),\n\t\t\"StatusLengthRequired\":                reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"StatusLocked\":                        reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"StatusLoopDetected\":                  reflect.ValueOf(constant.MakeFromLiteral(\"508\", token.INT, 0)),\n\t\t\"StatusMethodNotAllowed\":              reflect.ValueOf(constant.MakeFromLiteral(\"405\", token.INT, 0)),\n\t\t\"StatusMisdirectedRequest\":            reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"StatusMovedPermanently\":              reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"StatusMultiStatus\":                   reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"StatusMultipleChoices\":               reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"StatusNetworkAuthenticationRequired\": reflect.ValueOf(constant.MakeFromLiteral(\"511\", token.INT, 0)),\n\t\t\"StatusNoContent\":                     reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"StatusNonAuthoritativeInfo\":          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"StatusNotAcceptable\":                 reflect.ValueOf(constant.MakeFromLiteral(\"406\", token.INT, 0)),\n\t\t\"StatusNotExtended\":                   reflect.ValueOf(constant.MakeFromLiteral(\"510\", token.INT, 0)),\n\t\t\"StatusNotFound\":                      reflect.ValueOf(constant.MakeFromLiteral(\"404\", token.INT, 0)),\n\t\t\"StatusNotImplemented\":                reflect.ValueOf(constant.MakeFromLiteral(\"501\", token.INT, 0)),\n\t\t\"StatusNotModified\":                   reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"StatusOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"StatusPartialContent\":                reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"StatusPaymentRequired\":               reflect.ValueOf(constant.MakeFromLiteral(\"402\", token.INT, 0)),\n\t\t\"StatusPermanentRedirect\":             reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"StatusPreconditionFailed\":            reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"StatusPreconditionRequired\":          reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"StatusProcessing\":                    reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"StatusProxyAuthRequired\":             reflect.ValueOf(constant.MakeFromLiteral(\"407\", token.INT, 0)),\n\t\t\"StatusRequestEntityTooLarge\":         reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"StatusRequestHeaderFieldsTooLarge\":   reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"StatusRequestTimeout\":                reflect.ValueOf(constant.MakeFromLiteral(\"408\", token.INT, 0)),\n\t\t\"StatusRequestURITooLong\":             reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"StatusRequestedRangeNotSatisfiable\":  reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"StatusResetContent\":                  reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"StatusSeeOther\":                      reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"StatusServiceUnavailable\":            reflect.ValueOf(constant.MakeFromLiteral(\"503\", token.INT, 0)),\n\t\t\"StatusSwitchingProtocols\":            reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"StatusTeapot\":                        reflect.ValueOf(constant.MakeFromLiteral(\"418\", token.INT, 0)),\n\t\t\"StatusTemporaryRedirect\":             reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"StatusText\":                          reflect.ValueOf(http.StatusText),\n\t\t\"StatusTooEarly\":                      reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"StatusTooManyRequests\":               reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"StatusUnauthorized\":                  reflect.ValueOf(constant.MakeFromLiteral(\"401\", token.INT, 0)),\n\t\t\"StatusUnavailableForLegalReasons\":    reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"StatusUnprocessableEntity\":           reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"StatusUnsupportedMediaType\":          reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"StatusUpgradeRequired\":               reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"StatusUseProxy\":                      reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"StatusVariantAlsoNegotiates\":         reflect.ValueOf(constant.MakeFromLiteral(\"506\", token.INT, 0)),\n\t\t\"StripPrefix\":                         reflect.ValueOf(http.StripPrefix),\n\t\t\"TimeFormat\":                          reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Mon, 02 Jan 2006 15:04:05 GMT\\\"\", token.STRING, 0)),\n\t\t\"TimeoutHandler\":                      reflect.ValueOf(http.TimeoutHandler),\n\t\t\"TrailerPrefix\":                       reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Trailer:\\\"\", token.STRING, 0)),\n\n\t\t// type definitions\n\t\t\"Client\":             reflect.ValueOf((*http.Client)(nil)),\n\t\t\"CloseNotifier\":      reflect.ValueOf((*http.CloseNotifier)(nil)),\n\t\t\"ConnState\":          reflect.ValueOf((*http.ConnState)(nil)),\n\t\t\"Cookie\":             reflect.ValueOf((*http.Cookie)(nil)),\n\t\t\"CookieJar\":          reflect.ValueOf((*http.CookieJar)(nil)),\n\t\t\"Dir\":                reflect.ValueOf((*http.Dir)(nil)),\n\t\t\"File\":               reflect.ValueOf((*http.File)(nil)),\n\t\t\"FileSystem\":         reflect.ValueOf((*http.FileSystem)(nil)),\n\t\t\"Flusher\":            reflect.ValueOf((*http.Flusher)(nil)),\n\t\t\"Handler\":            reflect.ValueOf((*http.Handler)(nil)),\n\t\t\"HandlerFunc\":        reflect.ValueOf((*http.HandlerFunc)(nil)),\n\t\t\"Header\":             reflect.ValueOf((*http.Header)(nil)),\n\t\t\"Hijacker\":           reflect.ValueOf((*http.Hijacker)(nil)),\n\t\t\"MaxBytesError\":      reflect.ValueOf((*http.MaxBytesError)(nil)),\n\t\t\"ProtocolError\":      reflect.ValueOf((*http.ProtocolError)(nil)),\n\t\t\"PushOptions\":        reflect.ValueOf((*http.PushOptions)(nil)),\n\t\t\"Pusher\":             reflect.ValueOf((*http.Pusher)(nil)),\n\t\t\"Request\":            reflect.ValueOf((*http.Request)(nil)),\n\t\t\"Response\":           reflect.ValueOf((*http.Response)(nil)),\n\t\t\"ResponseController\": reflect.ValueOf((*http.ResponseController)(nil)),\n\t\t\"ResponseWriter\":     reflect.ValueOf((*http.ResponseWriter)(nil)),\n\t\t\"RoundTripper\":       reflect.ValueOf((*http.RoundTripper)(nil)),\n\t\t\"SameSite\":           reflect.ValueOf((*http.SameSite)(nil)),\n\t\t\"ServeMux\":           reflect.ValueOf((*http.ServeMux)(nil)),\n\t\t\"Server\":             reflect.ValueOf((*http.Server)(nil)),\n\t\t\"Transport\":          reflect.ValueOf((*http.Transport)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_CloseNotifier\":  reflect.ValueOf((*_net_http_CloseNotifier)(nil)),\n\t\t\"_CookieJar\":      reflect.ValueOf((*_net_http_CookieJar)(nil)),\n\t\t\"_File\":           reflect.ValueOf((*_net_http_File)(nil)),\n\t\t\"_FileSystem\":     reflect.ValueOf((*_net_http_FileSystem)(nil)),\n\t\t\"_Flusher\":        reflect.ValueOf((*_net_http_Flusher)(nil)),\n\t\t\"_Handler\":        reflect.ValueOf((*_net_http_Handler)(nil)),\n\t\t\"_Hijacker\":       reflect.ValueOf((*_net_http_Hijacker)(nil)),\n\t\t\"_Pusher\":         reflect.ValueOf((*_net_http_Pusher)(nil)),\n\t\t\"_ResponseWriter\": reflect.ValueOf((*_net_http_ResponseWriter)(nil)),\n\t\t\"_RoundTripper\":   reflect.ValueOf((*_net_http_RoundTripper)(nil)),\n\t}\n}\n\n// _net_http_CloseNotifier is an interface wrapper for CloseNotifier type\ntype _net_http_CloseNotifier struct {\n\tIValue       interface{}\n\tWCloseNotify func() <-chan bool\n}\n\nfunc (W _net_http_CloseNotifier) CloseNotify() <-chan bool { return W.WCloseNotify() }\n\n// _net_http_CookieJar is an interface wrapper for CookieJar type\ntype _net_http_CookieJar struct {\n\tIValue      interface{}\n\tWCookies    func(u *url.URL) []*http.Cookie\n\tWSetCookies func(u *url.URL, cookies []*http.Cookie)\n}\n\nfunc (W _net_http_CookieJar) Cookies(u *url.URL) []*http.Cookie { return W.WCookies(u) }\nfunc (W _net_http_CookieJar) SetCookies(u *url.URL, cookies []*http.Cookie) {\n\tW.WSetCookies(u, cookies)\n}\n\n// _net_http_File is an interface wrapper for File type\ntype _net_http_File struct {\n\tIValue   interface{}\n\tWClose   func() error\n\tWRead    func(p []byte) (n int, err error)\n\tWReaddir func(count int) ([]fs.FileInfo, error)\n\tWSeek    func(offset int64, whence int) (int64, error)\n\tWStat    func() (fs.FileInfo, error)\n}\n\nfunc (W _net_http_File) Close() error                                 { return W.WClose() }\nfunc (W _net_http_File) Read(p []byte) (n int, err error)             { return W.WRead(p) }\nfunc (W _net_http_File) Readdir(count int) ([]fs.FileInfo, error)     { return W.WReaddir(count) }\nfunc (W _net_http_File) Seek(offset int64, whence int) (int64, error) { return W.WSeek(offset, whence) }\nfunc (W _net_http_File) Stat() (fs.FileInfo, error)                   { return W.WStat() }\n\n// _net_http_FileSystem is an interface wrapper for FileSystem type\ntype _net_http_FileSystem struct {\n\tIValue interface{}\n\tWOpen  func(name string) (http.File, error)\n}\n\nfunc (W _net_http_FileSystem) Open(name string) (http.File, error) { return W.WOpen(name) }\n\n// _net_http_Flusher is an interface wrapper for Flusher type\ntype _net_http_Flusher struct {\n\tIValue interface{}\n\tWFlush func()\n}\n\nfunc (W _net_http_Flusher) Flush() { W.WFlush() }\n\n// _net_http_Handler is an interface wrapper for Handler type\ntype _net_http_Handler struct {\n\tIValue     interface{}\n\tWServeHTTP func(a0 http.ResponseWriter, a1 *http.Request)\n}\n\nfunc (W _net_http_Handler) ServeHTTP(a0 http.ResponseWriter, a1 *http.Request) { W.WServeHTTP(a0, a1) }\n\n// _net_http_Hijacker is an interface wrapper for Hijacker type\ntype _net_http_Hijacker struct {\n\tIValue  interface{}\n\tWHijack func() (net.Conn, *bufio.ReadWriter, error)\n}\n\nfunc (W _net_http_Hijacker) Hijack() (net.Conn, *bufio.ReadWriter, error) { return W.WHijack() }\n\n// _net_http_Pusher is an interface wrapper for Pusher type\ntype _net_http_Pusher struct {\n\tIValue interface{}\n\tWPush  func(target string, opts *http.PushOptions) error\n}\n\nfunc (W _net_http_Pusher) Push(target string, opts *http.PushOptions) error {\n\treturn W.WPush(target, opts)\n}\n\n// _net_http_ResponseWriter is an interface wrapper for ResponseWriter type\ntype _net_http_ResponseWriter struct {\n\tIValue       interface{}\n\tWHeader      func() http.Header\n\tWWrite       func(a0 []byte) (int, error)\n\tWWriteHeader func(statusCode int)\n}\n\nfunc (W _net_http_ResponseWriter) Header() http.Header          { return W.WHeader() }\nfunc (W _net_http_ResponseWriter) Write(a0 []byte) (int, error) { return W.WWrite(a0) }\nfunc (W _net_http_ResponseWriter) WriteHeader(statusCode int)   { W.WWriteHeader(statusCode) }\n\n// _net_http_RoundTripper is an interface wrapper for RoundTripper type\ntype _net_http_RoundTripper struct {\n\tIValue     interface{}\n\tWRoundTrip func(a0 *http.Request) (*http.Response, error)\n}\n\nfunc (W _net_http_RoundTripper) RoundTrip(a0 *http.Request) (*http.Response, error) {\n\treturn W.WRoundTrip(a0)\n}\n"
  },
  {
    "path": "stdlib/go1_21_net_http_cgi.go",
    "content": "// Code generated by 'yaegi extract net/http/cgi'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"net/http/cgi\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/http/cgi/cgi\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Request\":        reflect.ValueOf(cgi.Request),\n\t\t\"RequestFromMap\": reflect.ValueOf(cgi.RequestFromMap),\n\t\t\"Serve\":          reflect.ValueOf(cgi.Serve),\n\n\t\t// type definitions\n\t\t\"Handler\": reflect.ValueOf((*cgi.Handler)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_net_http_cookiejar.go",
    "content": "// Code generated by 'yaegi extract net/http/cookiejar'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"net/http/cookiejar\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/http/cookiejar/cookiejar\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"New\": reflect.ValueOf(cookiejar.New),\n\n\t\t// type definitions\n\t\t\"Jar\":              reflect.ValueOf((*cookiejar.Jar)(nil)),\n\t\t\"Options\":          reflect.ValueOf((*cookiejar.Options)(nil)),\n\t\t\"PublicSuffixList\": reflect.ValueOf((*cookiejar.PublicSuffixList)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_PublicSuffixList\": reflect.ValueOf((*_net_http_cookiejar_PublicSuffixList)(nil)),\n\t}\n}\n\n// _net_http_cookiejar_PublicSuffixList is an interface wrapper for PublicSuffixList type\ntype _net_http_cookiejar_PublicSuffixList struct {\n\tIValue        interface{}\n\tWPublicSuffix func(domain string) string\n\tWString       func() string\n}\n\nfunc (W _net_http_cookiejar_PublicSuffixList) PublicSuffix(domain string) string {\n\treturn W.WPublicSuffix(domain)\n}\nfunc (W _net_http_cookiejar_PublicSuffixList) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n"
  },
  {
    "path": "stdlib/go1_21_net_http_fcgi.go",
    "content": "// Code generated by 'yaegi extract net/http/fcgi'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"net/http/fcgi\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/http/fcgi/fcgi\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ErrConnClosed\":     reflect.ValueOf(&fcgi.ErrConnClosed).Elem(),\n\t\t\"ErrRequestAborted\": reflect.ValueOf(&fcgi.ErrRequestAborted).Elem(),\n\t\t\"ProcessEnv\":        reflect.ValueOf(fcgi.ProcessEnv),\n\t\t\"Serve\":             reflect.ValueOf(fcgi.Serve),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_net_http_httptest.go",
    "content": "// Code generated by 'yaegi extract net/http/httptest'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"net/http/httptest\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/http/httptest/httptest\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"DefaultRemoteAddr\":  reflect.ValueOf(constant.MakeFromLiteral(\"\\\"1.2.3.4\\\"\", token.STRING, 0)),\n\t\t\"NewRecorder\":        reflect.ValueOf(httptest.NewRecorder),\n\t\t\"NewRequest\":         reflect.ValueOf(httptest.NewRequest),\n\t\t\"NewServer\":          reflect.ValueOf(httptest.NewServer),\n\t\t\"NewTLSServer\":       reflect.ValueOf(httptest.NewTLSServer),\n\t\t\"NewUnstartedServer\": reflect.ValueOf(httptest.NewUnstartedServer),\n\n\t\t// type definitions\n\t\t\"ResponseRecorder\": reflect.ValueOf((*httptest.ResponseRecorder)(nil)),\n\t\t\"Server\":           reflect.ValueOf((*httptest.Server)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_net_http_httptrace.go",
    "content": "// Code generated by 'yaegi extract net/http/httptrace'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"net/http/httptrace\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/http/httptrace/httptrace\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ContextClientTrace\": reflect.ValueOf(httptrace.ContextClientTrace),\n\t\t\"WithClientTrace\":    reflect.ValueOf(httptrace.WithClientTrace),\n\n\t\t// type definitions\n\t\t\"ClientTrace\":      reflect.ValueOf((*httptrace.ClientTrace)(nil)),\n\t\t\"DNSDoneInfo\":      reflect.ValueOf((*httptrace.DNSDoneInfo)(nil)),\n\t\t\"DNSStartInfo\":     reflect.ValueOf((*httptrace.DNSStartInfo)(nil)),\n\t\t\"GotConnInfo\":      reflect.ValueOf((*httptrace.GotConnInfo)(nil)),\n\t\t\"WroteRequestInfo\": reflect.ValueOf((*httptrace.WroteRequestInfo)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_net_http_httputil.go",
    "content": "// Code generated by 'yaegi extract net/http/httputil'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"net/http/httputil\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/http/httputil/httputil\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"DumpRequest\":               reflect.ValueOf(httputil.DumpRequest),\n\t\t\"DumpRequestOut\":            reflect.ValueOf(httputil.DumpRequestOut),\n\t\t\"DumpResponse\":              reflect.ValueOf(httputil.DumpResponse),\n\t\t\"ErrClosed\":                 reflect.ValueOf(&httputil.ErrClosed).Elem(),\n\t\t\"ErrLineTooLong\":            reflect.ValueOf(&httputil.ErrLineTooLong).Elem(),\n\t\t\"ErrPersistEOF\":             reflect.ValueOf(&httputil.ErrPersistEOF).Elem(),\n\t\t\"ErrPipeline\":               reflect.ValueOf(&httputil.ErrPipeline).Elem(),\n\t\t\"NewChunkedReader\":          reflect.ValueOf(httputil.NewChunkedReader),\n\t\t\"NewChunkedWriter\":          reflect.ValueOf(httputil.NewChunkedWriter),\n\t\t\"NewClientConn\":             reflect.ValueOf(httputil.NewClientConn),\n\t\t\"NewProxyClientConn\":        reflect.ValueOf(httputil.NewProxyClientConn),\n\t\t\"NewServerConn\":             reflect.ValueOf(httputil.NewServerConn),\n\t\t\"NewSingleHostReverseProxy\": reflect.ValueOf(httputil.NewSingleHostReverseProxy),\n\n\t\t// type definitions\n\t\t\"BufferPool\":   reflect.ValueOf((*httputil.BufferPool)(nil)),\n\t\t\"ClientConn\":   reflect.ValueOf((*httputil.ClientConn)(nil)),\n\t\t\"ProxyRequest\": reflect.ValueOf((*httputil.ProxyRequest)(nil)),\n\t\t\"ReverseProxy\": reflect.ValueOf((*httputil.ReverseProxy)(nil)),\n\t\t\"ServerConn\":   reflect.ValueOf((*httputil.ServerConn)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_BufferPool\": reflect.ValueOf((*_net_http_httputil_BufferPool)(nil)),\n\t}\n}\n\n// _net_http_httputil_BufferPool is an interface wrapper for BufferPool type\ntype _net_http_httputil_BufferPool struct {\n\tIValue interface{}\n\tWGet   func() []byte\n\tWPut   func(a0 []byte)\n}\n\nfunc (W _net_http_httputil_BufferPool) Get() []byte   { return W.WGet() }\nfunc (W _net_http_httputil_BufferPool) Put(a0 []byte) { W.WPut(a0) }\n"
  },
  {
    "path": "stdlib/go1_21_net_http_pprof.go",
    "content": "// Code generated by 'yaegi extract net/http/pprof'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"net/http/pprof\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/http/pprof/pprof\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Cmdline\": reflect.ValueOf(pprof.Cmdline),\n\t\t\"Handler\": reflect.ValueOf(pprof.Handler),\n\t\t\"Index\":   reflect.ValueOf(pprof.Index),\n\t\t\"Profile\": reflect.ValueOf(pprof.Profile),\n\t\t\"Symbol\":  reflect.ValueOf(pprof.Symbol),\n\t\t\"Trace\":   reflect.ValueOf(pprof.Trace),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_net_mail.go",
    "content": "// Code generated by 'yaegi extract net/mail'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"net/mail\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/mail/mail\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ErrHeaderNotPresent\": reflect.ValueOf(&mail.ErrHeaderNotPresent).Elem(),\n\t\t\"ParseAddress\":        reflect.ValueOf(mail.ParseAddress),\n\t\t\"ParseAddressList\":    reflect.ValueOf(mail.ParseAddressList),\n\t\t\"ParseDate\":           reflect.ValueOf(mail.ParseDate),\n\t\t\"ReadMessage\":         reflect.ValueOf(mail.ReadMessage),\n\n\t\t// type definitions\n\t\t\"Address\":       reflect.ValueOf((*mail.Address)(nil)),\n\t\t\"AddressParser\": reflect.ValueOf((*mail.AddressParser)(nil)),\n\t\t\"Header\":        reflect.ValueOf((*mail.Header)(nil)),\n\t\t\"Message\":       reflect.ValueOf((*mail.Message)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_net_netip.go",
    "content": "// Code generated by 'yaegi extract net/netip'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"net/netip\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/netip/netip\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AddrFrom16\":              reflect.ValueOf(netip.AddrFrom16),\n\t\t\"AddrFrom4\":               reflect.ValueOf(netip.AddrFrom4),\n\t\t\"AddrFromSlice\":           reflect.ValueOf(netip.AddrFromSlice),\n\t\t\"AddrPortFrom\":            reflect.ValueOf(netip.AddrPortFrom),\n\t\t\"IPv4Unspecified\":         reflect.ValueOf(netip.IPv4Unspecified),\n\t\t\"IPv6LinkLocalAllNodes\":   reflect.ValueOf(netip.IPv6LinkLocalAllNodes),\n\t\t\"IPv6LinkLocalAllRouters\": reflect.ValueOf(netip.IPv6LinkLocalAllRouters),\n\t\t\"IPv6Loopback\":            reflect.ValueOf(netip.IPv6Loopback),\n\t\t\"IPv6Unspecified\":         reflect.ValueOf(netip.IPv6Unspecified),\n\t\t\"MustParseAddr\":           reflect.ValueOf(netip.MustParseAddr),\n\t\t\"MustParseAddrPort\":       reflect.ValueOf(netip.MustParseAddrPort),\n\t\t\"MustParsePrefix\":         reflect.ValueOf(netip.MustParsePrefix),\n\t\t\"ParseAddr\":               reflect.ValueOf(netip.ParseAddr),\n\t\t\"ParseAddrPort\":           reflect.ValueOf(netip.ParseAddrPort),\n\t\t\"ParsePrefix\":             reflect.ValueOf(netip.ParsePrefix),\n\t\t\"PrefixFrom\":              reflect.ValueOf(netip.PrefixFrom),\n\n\t\t// type definitions\n\t\t\"Addr\":     reflect.ValueOf((*netip.Addr)(nil)),\n\t\t\"AddrPort\": reflect.ValueOf((*netip.AddrPort)(nil)),\n\t\t\"Prefix\":   reflect.ValueOf((*netip.Prefix)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_net_rpc.go",
    "content": "// Code generated by 'yaegi extract net/rpc'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"net/rpc\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/rpc/rpc\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Accept\":             reflect.ValueOf(rpc.Accept),\n\t\t\"DefaultDebugPath\":   reflect.ValueOf(constant.MakeFromLiteral(\"\\\"/debug/rpc\\\"\", token.STRING, 0)),\n\t\t\"DefaultRPCPath\":     reflect.ValueOf(constant.MakeFromLiteral(\"\\\"/_goRPC_\\\"\", token.STRING, 0)),\n\t\t\"DefaultServer\":      reflect.ValueOf(&rpc.DefaultServer).Elem(),\n\t\t\"Dial\":               reflect.ValueOf(rpc.Dial),\n\t\t\"DialHTTP\":           reflect.ValueOf(rpc.DialHTTP),\n\t\t\"DialHTTPPath\":       reflect.ValueOf(rpc.DialHTTPPath),\n\t\t\"ErrShutdown\":        reflect.ValueOf(&rpc.ErrShutdown).Elem(),\n\t\t\"HandleHTTP\":         reflect.ValueOf(rpc.HandleHTTP),\n\t\t\"NewClient\":          reflect.ValueOf(rpc.NewClient),\n\t\t\"NewClientWithCodec\": reflect.ValueOf(rpc.NewClientWithCodec),\n\t\t\"NewServer\":          reflect.ValueOf(rpc.NewServer),\n\t\t\"Register\":           reflect.ValueOf(rpc.Register),\n\t\t\"RegisterName\":       reflect.ValueOf(rpc.RegisterName),\n\t\t\"ServeCodec\":         reflect.ValueOf(rpc.ServeCodec),\n\t\t\"ServeConn\":          reflect.ValueOf(rpc.ServeConn),\n\t\t\"ServeRequest\":       reflect.ValueOf(rpc.ServeRequest),\n\n\t\t// type definitions\n\t\t\"Call\":        reflect.ValueOf((*rpc.Call)(nil)),\n\t\t\"Client\":      reflect.ValueOf((*rpc.Client)(nil)),\n\t\t\"ClientCodec\": reflect.ValueOf((*rpc.ClientCodec)(nil)),\n\t\t\"Request\":     reflect.ValueOf((*rpc.Request)(nil)),\n\t\t\"Response\":    reflect.ValueOf((*rpc.Response)(nil)),\n\t\t\"Server\":      reflect.ValueOf((*rpc.Server)(nil)),\n\t\t\"ServerCodec\": reflect.ValueOf((*rpc.ServerCodec)(nil)),\n\t\t\"ServerError\": reflect.ValueOf((*rpc.ServerError)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_ClientCodec\": reflect.ValueOf((*_net_rpc_ClientCodec)(nil)),\n\t\t\"_ServerCodec\": reflect.ValueOf((*_net_rpc_ServerCodec)(nil)),\n\t}\n}\n\n// _net_rpc_ClientCodec is an interface wrapper for ClientCodec type\ntype _net_rpc_ClientCodec struct {\n\tIValue              interface{}\n\tWClose              func() error\n\tWReadResponseBody   func(a0 any) error\n\tWReadResponseHeader func(a0 *rpc.Response) error\n\tWWriteRequest       func(a0 *rpc.Request, a1 any) error\n}\n\nfunc (W _net_rpc_ClientCodec) Close() error                  { return W.WClose() }\nfunc (W _net_rpc_ClientCodec) ReadResponseBody(a0 any) error { return W.WReadResponseBody(a0) }\nfunc (W _net_rpc_ClientCodec) ReadResponseHeader(a0 *rpc.Response) error {\n\treturn W.WReadResponseHeader(a0)\n}\nfunc (W _net_rpc_ClientCodec) WriteRequest(a0 *rpc.Request, a1 any) error {\n\treturn W.WWriteRequest(a0, a1)\n}\n\n// _net_rpc_ServerCodec is an interface wrapper for ServerCodec type\ntype _net_rpc_ServerCodec struct {\n\tIValue             interface{}\n\tWClose             func() error\n\tWReadRequestBody   func(a0 any) error\n\tWReadRequestHeader func(a0 *rpc.Request) error\n\tWWriteResponse     func(a0 *rpc.Response, a1 any) error\n}\n\nfunc (W _net_rpc_ServerCodec) Close() error                 { return W.WClose() }\nfunc (W _net_rpc_ServerCodec) ReadRequestBody(a0 any) error { return W.WReadRequestBody(a0) }\nfunc (W _net_rpc_ServerCodec) ReadRequestHeader(a0 *rpc.Request) error {\n\treturn W.WReadRequestHeader(a0)\n}\nfunc (W _net_rpc_ServerCodec) WriteResponse(a0 *rpc.Response, a1 any) error {\n\treturn W.WWriteResponse(a0, a1)\n}\n"
  },
  {
    "path": "stdlib/go1_21_net_rpc_jsonrpc.go",
    "content": "// Code generated by 'yaegi extract net/rpc/jsonrpc'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"net/rpc/jsonrpc\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/rpc/jsonrpc/jsonrpc\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Dial\":           reflect.ValueOf(jsonrpc.Dial),\n\t\t\"NewClient\":      reflect.ValueOf(jsonrpc.NewClient),\n\t\t\"NewClientCodec\": reflect.ValueOf(jsonrpc.NewClientCodec),\n\t\t\"NewServerCodec\": reflect.ValueOf(jsonrpc.NewServerCodec),\n\t\t\"ServeConn\":      reflect.ValueOf(jsonrpc.ServeConn),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_net_smtp.go",
    "content": "// Code generated by 'yaegi extract net/smtp'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"net/smtp\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/smtp/smtp\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"CRAMMD5Auth\": reflect.ValueOf(smtp.CRAMMD5Auth),\n\t\t\"Dial\":        reflect.ValueOf(smtp.Dial),\n\t\t\"NewClient\":   reflect.ValueOf(smtp.NewClient),\n\t\t\"PlainAuth\":   reflect.ValueOf(smtp.PlainAuth),\n\t\t\"SendMail\":    reflect.ValueOf(smtp.SendMail),\n\n\t\t// type definitions\n\t\t\"Auth\":       reflect.ValueOf((*smtp.Auth)(nil)),\n\t\t\"Client\":     reflect.ValueOf((*smtp.Client)(nil)),\n\t\t\"ServerInfo\": reflect.ValueOf((*smtp.ServerInfo)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Auth\": reflect.ValueOf((*_net_smtp_Auth)(nil)),\n\t}\n}\n\n// _net_smtp_Auth is an interface wrapper for Auth type\ntype _net_smtp_Auth struct {\n\tIValue interface{}\n\tWNext  func(fromServer []byte, more bool) (toServer []byte, err error)\n\tWStart func(server *smtp.ServerInfo) (proto string, toServer []byte, err error)\n}\n\nfunc (W _net_smtp_Auth) Next(fromServer []byte, more bool) (toServer []byte, err error) {\n\treturn W.WNext(fromServer, more)\n}\nfunc (W _net_smtp_Auth) Start(server *smtp.ServerInfo) (proto string, toServer []byte, err error) {\n\treturn W.WStart(server)\n}\n"
  },
  {
    "path": "stdlib/go1_21_net_textproto.go",
    "content": "// Code generated by 'yaegi extract net/textproto'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"net/textproto\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/textproto/textproto\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"CanonicalMIMEHeaderKey\": reflect.ValueOf(textproto.CanonicalMIMEHeaderKey),\n\t\t\"Dial\":                   reflect.ValueOf(textproto.Dial),\n\t\t\"NewConn\":                reflect.ValueOf(textproto.NewConn),\n\t\t\"NewReader\":              reflect.ValueOf(textproto.NewReader),\n\t\t\"NewWriter\":              reflect.ValueOf(textproto.NewWriter),\n\t\t\"TrimBytes\":              reflect.ValueOf(textproto.TrimBytes),\n\t\t\"TrimString\":             reflect.ValueOf(textproto.TrimString),\n\n\t\t// type definitions\n\t\t\"Conn\":          reflect.ValueOf((*textproto.Conn)(nil)),\n\t\t\"Error\":         reflect.ValueOf((*textproto.Error)(nil)),\n\t\t\"MIMEHeader\":    reflect.ValueOf((*textproto.MIMEHeader)(nil)),\n\t\t\"Pipeline\":      reflect.ValueOf((*textproto.Pipeline)(nil)),\n\t\t\"ProtocolError\": reflect.ValueOf((*textproto.ProtocolError)(nil)),\n\t\t\"Reader\":        reflect.ValueOf((*textproto.Reader)(nil)),\n\t\t\"Writer\":        reflect.ValueOf((*textproto.Writer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_net_url.go",
    "content": "// Code generated by 'yaegi extract net/url'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"net/url\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/url/url\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"JoinPath\":        reflect.ValueOf(url.JoinPath),\n\t\t\"Parse\":           reflect.ValueOf(url.Parse),\n\t\t\"ParseQuery\":      reflect.ValueOf(url.ParseQuery),\n\t\t\"ParseRequestURI\": reflect.ValueOf(url.ParseRequestURI),\n\t\t\"PathEscape\":      reflect.ValueOf(url.PathEscape),\n\t\t\"PathUnescape\":    reflect.ValueOf(url.PathUnescape),\n\t\t\"QueryEscape\":     reflect.ValueOf(url.QueryEscape),\n\t\t\"QueryUnescape\":   reflect.ValueOf(url.QueryUnescape),\n\t\t\"User\":            reflect.ValueOf(url.User),\n\t\t\"UserPassword\":    reflect.ValueOf(url.UserPassword),\n\n\t\t// type definitions\n\t\t\"Error\":            reflect.ValueOf((*url.Error)(nil)),\n\t\t\"EscapeError\":      reflect.ValueOf((*url.EscapeError)(nil)),\n\t\t\"InvalidHostError\": reflect.ValueOf((*url.InvalidHostError)(nil)),\n\t\t\"URL\":              reflect.ValueOf((*url.URL)(nil)),\n\t\t\"Userinfo\":         reflect.ValueOf((*url.Userinfo)(nil)),\n\t\t\"Values\":           reflect.ValueOf((*url.Values)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_os.go",
    "content": "// Code generated by 'yaegi extract os'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"io/fs\"\n\t\"os\"\n\t\"reflect\"\n\t\"time\"\n)\n\nfunc init() {\n\tSymbols[\"os/os\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Args\":                reflect.ValueOf(&os.Args).Elem(),\n\t\t\"Chdir\":               reflect.ValueOf(os.Chdir),\n\t\t\"Chmod\":               reflect.ValueOf(os.Chmod),\n\t\t\"Chown\":               reflect.ValueOf(os.Chown),\n\t\t\"Chtimes\":             reflect.ValueOf(os.Chtimes),\n\t\t\"Clearenv\":            reflect.ValueOf(os.Clearenv),\n\t\t\"Create\":              reflect.ValueOf(os.Create),\n\t\t\"CreateTemp\":          reflect.ValueOf(os.CreateTemp),\n\t\t\"DevNull\":             reflect.ValueOf(constant.MakeFromLiteral(\"\\\"/dev/null\\\"\", token.STRING, 0)),\n\t\t\"DirFS\":               reflect.ValueOf(os.DirFS),\n\t\t\"Environ\":             reflect.ValueOf(os.Environ),\n\t\t\"ErrClosed\":           reflect.ValueOf(&os.ErrClosed).Elem(),\n\t\t\"ErrDeadlineExceeded\": reflect.ValueOf(&os.ErrDeadlineExceeded).Elem(),\n\t\t\"ErrExist\":            reflect.ValueOf(&os.ErrExist).Elem(),\n\t\t\"ErrInvalid\":          reflect.ValueOf(&os.ErrInvalid).Elem(),\n\t\t\"ErrNoDeadline\":       reflect.ValueOf(&os.ErrNoDeadline).Elem(),\n\t\t\"ErrNotExist\":         reflect.ValueOf(&os.ErrNotExist).Elem(),\n\t\t\"ErrPermission\":       reflect.ValueOf(&os.ErrPermission).Elem(),\n\t\t\"ErrProcessDone\":      reflect.ValueOf(&os.ErrProcessDone).Elem(),\n\t\t\"Executable\":          reflect.ValueOf(os.Executable),\n\t\t\"Exit\":                reflect.ValueOf(osExit),\n\t\t\"Expand\":              reflect.ValueOf(os.Expand),\n\t\t\"ExpandEnv\":           reflect.ValueOf(os.ExpandEnv),\n\t\t\"FindProcess\":         reflect.ValueOf(osFindProcess),\n\t\t\"Getegid\":             reflect.ValueOf(os.Getegid),\n\t\t\"Getenv\":              reflect.ValueOf(os.Getenv),\n\t\t\"Geteuid\":             reflect.ValueOf(os.Geteuid),\n\t\t\"Getgid\":              reflect.ValueOf(os.Getgid),\n\t\t\"Getgroups\":           reflect.ValueOf(os.Getgroups),\n\t\t\"Getpagesize\":         reflect.ValueOf(os.Getpagesize),\n\t\t\"Getpid\":              reflect.ValueOf(os.Getpid),\n\t\t\"Getppid\":             reflect.ValueOf(os.Getppid),\n\t\t\"Getuid\":              reflect.ValueOf(os.Getuid),\n\t\t\"Getwd\":               reflect.ValueOf(os.Getwd),\n\t\t\"Hostname\":            reflect.ValueOf(os.Hostname),\n\t\t\"Interrupt\":           reflect.ValueOf(&os.Interrupt).Elem(),\n\t\t\"IsExist\":             reflect.ValueOf(os.IsExist),\n\t\t\"IsNotExist\":          reflect.ValueOf(os.IsNotExist),\n\t\t\"IsPathSeparator\":     reflect.ValueOf(os.IsPathSeparator),\n\t\t\"IsPermission\":        reflect.ValueOf(os.IsPermission),\n\t\t\"IsTimeout\":           reflect.ValueOf(os.IsTimeout),\n\t\t\"Kill\":                reflect.ValueOf(&os.Kill).Elem(),\n\t\t\"Lchown\":              reflect.ValueOf(os.Lchown),\n\t\t\"Link\":                reflect.ValueOf(os.Link),\n\t\t\"LookupEnv\":           reflect.ValueOf(os.LookupEnv),\n\t\t\"Lstat\":               reflect.ValueOf(os.Lstat),\n\t\t\"Mkdir\":               reflect.ValueOf(os.Mkdir),\n\t\t\"MkdirAll\":            reflect.ValueOf(os.MkdirAll),\n\t\t\"MkdirTemp\":           reflect.ValueOf(os.MkdirTemp),\n\t\t\"ModeAppend\":          reflect.ValueOf(os.ModeAppend),\n\t\t\"ModeCharDevice\":      reflect.ValueOf(os.ModeCharDevice),\n\t\t\"ModeDevice\":          reflect.ValueOf(os.ModeDevice),\n\t\t\"ModeDir\":             reflect.ValueOf(os.ModeDir),\n\t\t\"ModeExclusive\":       reflect.ValueOf(os.ModeExclusive),\n\t\t\"ModeIrregular\":       reflect.ValueOf(os.ModeIrregular),\n\t\t\"ModeNamedPipe\":       reflect.ValueOf(os.ModeNamedPipe),\n\t\t\"ModePerm\":            reflect.ValueOf(os.ModePerm),\n\t\t\"ModeSetgid\":          reflect.ValueOf(os.ModeSetgid),\n\t\t\"ModeSetuid\":          reflect.ValueOf(os.ModeSetuid),\n\t\t\"ModeSocket\":          reflect.ValueOf(os.ModeSocket),\n\t\t\"ModeSticky\":          reflect.ValueOf(os.ModeSticky),\n\t\t\"ModeSymlink\":         reflect.ValueOf(os.ModeSymlink),\n\t\t\"ModeTemporary\":       reflect.ValueOf(os.ModeTemporary),\n\t\t\"ModeType\":            reflect.ValueOf(os.ModeType),\n\t\t\"NewFile\":             reflect.ValueOf(os.NewFile),\n\t\t\"NewSyscallError\":     reflect.ValueOf(os.NewSyscallError),\n\t\t\"O_APPEND\":            reflect.ValueOf(os.O_APPEND),\n\t\t\"O_CREATE\":            reflect.ValueOf(os.O_CREATE),\n\t\t\"O_EXCL\":              reflect.ValueOf(os.O_EXCL),\n\t\t\"O_RDONLY\":            reflect.ValueOf(os.O_RDONLY),\n\t\t\"O_RDWR\":              reflect.ValueOf(os.O_RDWR),\n\t\t\"O_SYNC\":              reflect.ValueOf(os.O_SYNC),\n\t\t\"O_TRUNC\":             reflect.ValueOf(os.O_TRUNC),\n\t\t\"O_WRONLY\":            reflect.ValueOf(os.O_WRONLY),\n\t\t\"Open\":                reflect.ValueOf(os.Open),\n\t\t\"OpenFile\":            reflect.ValueOf(os.OpenFile),\n\t\t\"PathListSeparator\":   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"PathSeparator\":       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"Pipe\":                reflect.ValueOf(os.Pipe),\n\t\t\"ReadDir\":             reflect.ValueOf(os.ReadDir),\n\t\t\"ReadFile\":            reflect.ValueOf(os.ReadFile),\n\t\t\"Readlink\":            reflect.ValueOf(os.Readlink),\n\t\t\"Remove\":              reflect.ValueOf(os.Remove),\n\t\t\"RemoveAll\":           reflect.ValueOf(os.RemoveAll),\n\t\t\"Rename\":              reflect.ValueOf(os.Rename),\n\t\t\"SEEK_CUR\":            reflect.ValueOf(os.SEEK_CUR),\n\t\t\"SEEK_END\":            reflect.ValueOf(os.SEEK_END),\n\t\t\"SEEK_SET\":            reflect.ValueOf(os.SEEK_SET),\n\t\t\"SameFile\":            reflect.ValueOf(os.SameFile),\n\t\t\"Setenv\":              reflect.ValueOf(os.Setenv),\n\t\t\"StartProcess\":        reflect.ValueOf(os.StartProcess),\n\t\t\"Stat\":                reflect.ValueOf(os.Stat),\n\t\t\"Stderr\":              reflect.ValueOf(&os.Stderr).Elem(),\n\t\t\"Stdin\":               reflect.ValueOf(&os.Stdin).Elem(),\n\t\t\"Stdout\":              reflect.ValueOf(&os.Stdout).Elem(),\n\t\t\"Symlink\":             reflect.ValueOf(os.Symlink),\n\t\t\"TempDir\":             reflect.ValueOf(os.TempDir),\n\t\t\"Truncate\":            reflect.ValueOf(os.Truncate),\n\t\t\"Unsetenv\":            reflect.ValueOf(os.Unsetenv),\n\t\t\"UserCacheDir\":        reflect.ValueOf(os.UserCacheDir),\n\t\t\"UserConfigDir\":       reflect.ValueOf(os.UserConfigDir),\n\t\t\"UserHomeDir\":         reflect.ValueOf(os.UserHomeDir),\n\t\t\"WriteFile\":           reflect.ValueOf(os.WriteFile),\n\n\t\t// type definitions\n\t\t\"DirEntry\":     reflect.ValueOf((*os.DirEntry)(nil)),\n\t\t\"File\":         reflect.ValueOf((*os.File)(nil)),\n\t\t\"FileInfo\":     reflect.ValueOf((*os.FileInfo)(nil)),\n\t\t\"FileMode\":     reflect.ValueOf((*os.FileMode)(nil)),\n\t\t\"LinkError\":    reflect.ValueOf((*os.LinkError)(nil)),\n\t\t\"PathError\":    reflect.ValueOf((*os.PathError)(nil)),\n\t\t\"ProcAttr\":     reflect.ValueOf((*os.ProcAttr)(nil)),\n\t\t\"Process\":      reflect.ValueOf((*os.Process)(nil)),\n\t\t\"ProcessState\": reflect.ValueOf((*os.ProcessState)(nil)),\n\t\t\"Signal\":       reflect.ValueOf((*os.Signal)(nil)),\n\t\t\"SyscallError\": reflect.ValueOf((*os.SyscallError)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_DirEntry\": reflect.ValueOf((*_os_DirEntry)(nil)),\n\t\t\"_FileInfo\": reflect.ValueOf((*_os_FileInfo)(nil)),\n\t\t\"_Signal\":   reflect.ValueOf((*_os_Signal)(nil)),\n\t}\n}\n\n// _os_DirEntry is an interface wrapper for DirEntry type\ntype _os_DirEntry struct {\n\tIValue interface{}\n\tWInfo  func() (fs.FileInfo, error)\n\tWIsDir func() bool\n\tWName  func() string\n\tWType  func() fs.FileMode\n}\n\nfunc (W _os_DirEntry) Info() (fs.FileInfo, error) { return W.WInfo() }\nfunc (W _os_DirEntry) IsDir() bool                { return W.WIsDir() }\nfunc (W _os_DirEntry) Name() string               { return W.WName() }\nfunc (W _os_DirEntry) Type() fs.FileMode          { return W.WType() }\n\n// _os_FileInfo is an interface wrapper for FileInfo type\ntype _os_FileInfo struct {\n\tIValue   interface{}\n\tWIsDir   func() bool\n\tWModTime func() time.Time\n\tWMode    func() fs.FileMode\n\tWName    func() string\n\tWSize    func() int64\n\tWSys     func() any\n}\n\nfunc (W _os_FileInfo) IsDir() bool        { return W.WIsDir() }\nfunc (W _os_FileInfo) ModTime() time.Time { return W.WModTime() }\nfunc (W _os_FileInfo) Mode() fs.FileMode  { return W.WMode() }\nfunc (W _os_FileInfo) Name() string       { return W.WName() }\nfunc (W _os_FileInfo) Size() int64        { return W.WSize() }\nfunc (W _os_FileInfo) Sys() any           { return W.WSys() }\n\n// _os_Signal is an interface wrapper for Signal type\ntype _os_Signal struct {\n\tIValue  interface{}\n\tWSignal func()\n\tWString func() string\n}\n\nfunc (W _os_Signal) Signal() { W.WSignal() }\nfunc (W _os_Signal) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n"
  },
  {
    "path": "stdlib/go1_21_os_signal.go",
    "content": "// Code generated by 'yaegi extract os/signal'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"os/signal\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"os/signal/signal\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Ignore\":        reflect.ValueOf(signal.Ignore),\n\t\t\"Ignored\":       reflect.ValueOf(signal.Ignored),\n\t\t\"Notify\":        reflect.ValueOf(signal.Notify),\n\t\t\"NotifyContext\": reflect.ValueOf(signal.NotifyContext),\n\t\t\"Reset\":         reflect.ValueOf(signal.Reset),\n\t\t\"Stop\":          reflect.ValueOf(signal.Stop),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_os_user.go",
    "content": "// Code generated by 'yaegi extract os/user'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"os/user\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"os/user/user\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Current\":       reflect.ValueOf(user.Current),\n\t\t\"Lookup\":        reflect.ValueOf(user.Lookup),\n\t\t\"LookupGroup\":   reflect.ValueOf(user.LookupGroup),\n\t\t\"LookupGroupId\": reflect.ValueOf(user.LookupGroupId),\n\t\t\"LookupId\":      reflect.ValueOf(user.LookupId),\n\n\t\t// type definitions\n\t\t\"Group\":               reflect.ValueOf((*user.Group)(nil)),\n\t\t\"UnknownGroupError\":   reflect.ValueOf((*user.UnknownGroupError)(nil)),\n\t\t\"UnknownGroupIdError\": reflect.ValueOf((*user.UnknownGroupIdError)(nil)),\n\t\t\"UnknownUserError\":    reflect.ValueOf((*user.UnknownUserError)(nil)),\n\t\t\"UnknownUserIdError\":  reflect.ValueOf((*user.UnknownUserIdError)(nil)),\n\t\t\"User\":                reflect.ValueOf((*user.User)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_path.go",
    "content": "// Code generated by 'yaegi extract path'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"path\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"path/path\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Base\":          reflect.ValueOf(path.Base),\n\t\t\"Clean\":         reflect.ValueOf(path.Clean),\n\t\t\"Dir\":           reflect.ValueOf(path.Dir),\n\t\t\"ErrBadPattern\": reflect.ValueOf(&path.ErrBadPattern).Elem(),\n\t\t\"Ext\":           reflect.ValueOf(path.Ext),\n\t\t\"IsAbs\":         reflect.ValueOf(path.IsAbs),\n\t\t\"Join\":          reflect.ValueOf(path.Join),\n\t\t\"Match\":         reflect.ValueOf(path.Match),\n\t\t\"Split\":         reflect.ValueOf(path.Split),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_path_filepath.go",
    "content": "// Code generated by 'yaegi extract path/filepath'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"path/filepath\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"path/filepath/filepath\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Abs\":           reflect.ValueOf(filepath.Abs),\n\t\t\"Base\":          reflect.ValueOf(filepath.Base),\n\t\t\"Clean\":         reflect.ValueOf(filepath.Clean),\n\t\t\"Dir\":           reflect.ValueOf(filepath.Dir),\n\t\t\"ErrBadPattern\": reflect.ValueOf(&filepath.ErrBadPattern).Elem(),\n\t\t\"EvalSymlinks\":  reflect.ValueOf(filepath.EvalSymlinks),\n\t\t\"Ext\":           reflect.ValueOf(filepath.Ext),\n\t\t\"FromSlash\":     reflect.ValueOf(filepath.FromSlash),\n\t\t\"Glob\":          reflect.ValueOf(filepath.Glob),\n\t\t\"HasPrefix\":     reflect.ValueOf(filepath.HasPrefix),\n\t\t\"IsAbs\":         reflect.ValueOf(filepath.IsAbs),\n\t\t\"IsLocal\":       reflect.ValueOf(filepath.IsLocal),\n\t\t\"Join\":          reflect.ValueOf(filepath.Join),\n\t\t\"ListSeparator\": reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"Match\":         reflect.ValueOf(filepath.Match),\n\t\t\"Rel\":           reflect.ValueOf(filepath.Rel),\n\t\t\"Separator\":     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SkipAll\":       reflect.ValueOf(&filepath.SkipAll).Elem(),\n\t\t\"SkipDir\":       reflect.ValueOf(&filepath.SkipDir).Elem(),\n\t\t\"Split\":         reflect.ValueOf(filepath.Split),\n\t\t\"SplitList\":     reflect.ValueOf(filepath.SplitList),\n\t\t\"ToSlash\":       reflect.ValueOf(filepath.ToSlash),\n\t\t\"VolumeName\":    reflect.ValueOf(filepath.VolumeName),\n\t\t\"Walk\":          reflect.ValueOf(filepath.Walk),\n\t\t\"WalkDir\":       reflect.ValueOf(filepath.WalkDir),\n\n\t\t// type definitions\n\t\t\"WalkFunc\": reflect.ValueOf((*filepath.WalkFunc)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_reflect.go",
    "content": "// Code generated by 'yaegi extract reflect'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"reflect/reflect\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Append\":          reflect.ValueOf(reflect.Append),\n\t\t\"AppendSlice\":     reflect.ValueOf(reflect.AppendSlice),\n\t\t\"Array\":           reflect.ValueOf(reflect.Array),\n\t\t\"ArrayOf\":         reflect.ValueOf(reflect.ArrayOf),\n\t\t\"Bool\":            reflect.ValueOf(reflect.Bool),\n\t\t\"BothDir\":         reflect.ValueOf(reflect.BothDir),\n\t\t\"Chan\":            reflect.ValueOf(reflect.Chan),\n\t\t\"ChanOf\":          reflect.ValueOf(reflect.ChanOf),\n\t\t\"Complex128\":      reflect.ValueOf(reflect.Complex128),\n\t\t\"Complex64\":       reflect.ValueOf(reflect.Complex64),\n\t\t\"Copy\":            reflect.ValueOf(reflect.Copy),\n\t\t\"DeepEqual\":       reflect.ValueOf(reflect.DeepEqual),\n\t\t\"Float32\":         reflect.ValueOf(reflect.Float32),\n\t\t\"Float64\":         reflect.ValueOf(reflect.Float64),\n\t\t\"Func\":            reflect.ValueOf(reflect.Func),\n\t\t\"FuncOf\":          reflect.ValueOf(reflect.FuncOf),\n\t\t\"Indirect\":        reflect.ValueOf(reflect.Indirect),\n\t\t\"Int\":             reflect.ValueOf(reflect.Int),\n\t\t\"Int16\":           reflect.ValueOf(reflect.Int16),\n\t\t\"Int32\":           reflect.ValueOf(reflect.Int32),\n\t\t\"Int64\":           reflect.ValueOf(reflect.Int64),\n\t\t\"Int8\":            reflect.ValueOf(reflect.Int8),\n\t\t\"Interface\":       reflect.ValueOf(reflect.Interface),\n\t\t\"Invalid\":         reflect.ValueOf(reflect.Invalid),\n\t\t\"MakeChan\":        reflect.ValueOf(reflect.MakeChan),\n\t\t\"MakeFunc\":        reflect.ValueOf(reflect.MakeFunc),\n\t\t\"MakeMap\":         reflect.ValueOf(reflect.MakeMap),\n\t\t\"MakeMapWithSize\": reflect.ValueOf(reflect.MakeMapWithSize),\n\t\t\"MakeSlice\":       reflect.ValueOf(reflect.MakeSlice),\n\t\t\"Map\":             reflect.ValueOf(reflect.Map),\n\t\t\"MapOf\":           reflect.ValueOf(reflect.MapOf),\n\t\t\"New\":             reflect.ValueOf(reflect.New),\n\t\t\"NewAt\":           reflect.ValueOf(reflect.NewAt),\n\t\t\"Pointer\":         reflect.ValueOf(reflect.Pointer),\n\t\t\"PointerTo\":       reflect.ValueOf(reflect.PointerTo),\n\t\t\"Ptr\":             reflect.ValueOf(reflect.Ptr),\n\t\t\"PtrTo\":           reflect.ValueOf(reflect.PtrTo),\n\t\t\"RecvDir\":         reflect.ValueOf(reflect.RecvDir),\n\t\t\"Select\":          reflect.ValueOf(reflect.Select),\n\t\t\"SelectDefault\":   reflect.ValueOf(reflect.SelectDefault),\n\t\t\"SelectRecv\":      reflect.ValueOf(reflect.SelectRecv),\n\t\t\"SelectSend\":      reflect.ValueOf(reflect.SelectSend),\n\t\t\"SendDir\":         reflect.ValueOf(reflect.SendDir),\n\t\t\"Slice\":           reflect.ValueOf(reflect.Slice),\n\t\t\"SliceOf\":         reflect.ValueOf(reflect.SliceOf),\n\t\t\"String\":          reflect.ValueOf(reflect.String),\n\t\t\"Struct\":          reflect.ValueOf(reflect.Struct),\n\t\t\"StructOf\":        reflect.ValueOf(reflect.StructOf),\n\t\t\"Swapper\":         reflect.ValueOf(reflect.Swapper),\n\t\t\"TypeOf\":          reflect.ValueOf(reflect.TypeOf),\n\t\t\"Uint\":            reflect.ValueOf(reflect.Uint),\n\t\t\"Uint16\":          reflect.ValueOf(reflect.Uint16),\n\t\t\"Uint32\":          reflect.ValueOf(reflect.Uint32),\n\t\t\"Uint64\":          reflect.ValueOf(reflect.Uint64),\n\t\t\"Uint8\":           reflect.ValueOf(reflect.Uint8),\n\t\t\"Uintptr\":         reflect.ValueOf(reflect.Uintptr),\n\t\t\"UnsafePointer\":   reflect.ValueOf(reflect.UnsafePointer),\n\t\t\"ValueOf\":         reflect.ValueOf(reflect.ValueOf),\n\t\t\"VisibleFields\":   reflect.ValueOf(reflect.VisibleFields),\n\t\t\"Zero\":            reflect.ValueOf(reflect.Zero),\n\n\t\t// type definitions\n\t\t\"ChanDir\":      reflect.ValueOf((*reflect.ChanDir)(nil)),\n\t\t\"Kind\":         reflect.ValueOf((*reflect.Kind)(nil)),\n\t\t\"MapIter\":      reflect.ValueOf((*reflect.MapIter)(nil)),\n\t\t\"Method\":       reflect.ValueOf((*reflect.Method)(nil)),\n\t\t\"SelectCase\":   reflect.ValueOf((*reflect.SelectCase)(nil)),\n\t\t\"SelectDir\":    reflect.ValueOf((*reflect.SelectDir)(nil)),\n\t\t\"SliceHeader\":  reflect.ValueOf((*reflect.SliceHeader)(nil)),\n\t\t\"StringHeader\": reflect.ValueOf((*reflect.StringHeader)(nil)),\n\t\t\"StructField\":  reflect.ValueOf((*reflect.StructField)(nil)),\n\t\t\"StructTag\":    reflect.ValueOf((*reflect.StructTag)(nil)),\n\t\t\"Type\":         reflect.ValueOf((*reflect.Type)(nil)),\n\t\t\"Value\":        reflect.ValueOf((*reflect.Value)(nil)),\n\t\t\"ValueError\":   reflect.ValueOf((*reflect.ValueError)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Type\": reflect.ValueOf((*_reflect_Type)(nil)),\n\t}\n}\n\n// _reflect_Type is an interface wrapper for Type type\ntype _reflect_Type struct {\n\tIValue           interface{}\n\tWAlign           func() int\n\tWAssignableTo    func(u reflect.Type) bool\n\tWBits            func() int\n\tWChanDir         func() reflect.ChanDir\n\tWComparable      func() bool\n\tWConvertibleTo   func(u reflect.Type) bool\n\tWElem            func() reflect.Type\n\tWField           func(i int) reflect.StructField\n\tWFieldAlign      func() int\n\tWFieldByIndex    func(index []int) reflect.StructField\n\tWFieldByName     func(name string) (reflect.StructField, bool)\n\tWFieldByNameFunc func(match func(string) bool) (reflect.StructField, bool)\n\tWImplements      func(u reflect.Type) bool\n\tWIn              func(i int) reflect.Type\n\tWIsVariadic      func() bool\n\tWKey             func() reflect.Type\n\tWKind            func() reflect.Kind\n\tWLen             func() int\n\tWMethod          func(a0 int) reflect.Method\n\tWMethodByName    func(a0 string) (reflect.Method, bool)\n\tWName            func() string\n\tWNumField        func() int\n\tWNumIn           func() int\n\tWNumMethod       func() int\n\tWNumOut          func() int\n\tWOut             func(i int) reflect.Type\n\tWPkgPath         func() string\n\tWSize            func() uintptr\n\tWString          func() string\n}\n\nfunc (W _reflect_Type) Align() int                                   { return W.WAlign() }\nfunc (W _reflect_Type) AssignableTo(u reflect.Type) bool             { return W.WAssignableTo(u) }\nfunc (W _reflect_Type) Bits() int                                    { return W.WBits() }\nfunc (W _reflect_Type) ChanDir() reflect.ChanDir                     { return W.WChanDir() }\nfunc (W _reflect_Type) Comparable() bool                             { return W.WComparable() }\nfunc (W _reflect_Type) ConvertibleTo(u reflect.Type) bool            { return W.WConvertibleTo(u) }\nfunc (W _reflect_Type) Elem() reflect.Type                           { return W.WElem() }\nfunc (W _reflect_Type) Field(i int) reflect.StructField              { return W.WField(i) }\nfunc (W _reflect_Type) FieldAlign() int                              { return W.WFieldAlign() }\nfunc (W _reflect_Type) FieldByIndex(index []int) reflect.StructField { return W.WFieldByIndex(index) }\nfunc (W _reflect_Type) FieldByName(name string) (reflect.StructField, bool) {\n\treturn W.WFieldByName(name)\n}\nfunc (W _reflect_Type) FieldByNameFunc(match func(string) bool) (reflect.StructField, bool) {\n\treturn W.WFieldByNameFunc(match)\n}\nfunc (W _reflect_Type) Implements(u reflect.Type) bool                { return W.WImplements(u) }\nfunc (W _reflect_Type) In(i int) reflect.Type                         { return W.WIn(i) }\nfunc (W _reflect_Type) IsVariadic() bool                              { return W.WIsVariadic() }\nfunc (W _reflect_Type) Key() reflect.Type                             { return W.WKey() }\nfunc (W _reflect_Type) Kind() reflect.Kind                            { return W.WKind() }\nfunc (W _reflect_Type) Len() int                                      { return W.WLen() }\nfunc (W _reflect_Type) Method(a0 int) reflect.Method                  { return W.WMethod(a0) }\nfunc (W _reflect_Type) MethodByName(a0 string) (reflect.Method, bool) { return W.WMethodByName(a0) }\nfunc (W _reflect_Type) Name() string                                  { return W.WName() }\nfunc (W _reflect_Type) NumField() int                                 { return W.WNumField() }\nfunc (W _reflect_Type) NumIn() int                                    { return W.WNumIn() }\nfunc (W _reflect_Type) NumMethod() int                                { return W.WNumMethod() }\nfunc (W _reflect_Type) NumOut() int                                   { return W.WNumOut() }\nfunc (W _reflect_Type) Out(i int) reflect.Type                        { return W.WOut(i) }\nfunc (W _reflect_Type) PkgPath() string                               { return W.WPkgPath() }\nfunc (W _reflect_Type) Size() uintptr                                 { return W.WSize() }\nfunc (W _reflect_Type) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n"
  },
  {
    "path": "stdlib/go1_21_regexp.go",
    "content": "// Code generated by 'yaegi extract regexp'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"regexp\"\n)\n\nfunc init() {\n\tSymbols[\"regexp/regexp\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Compile\":          reflect.ValueOf(regexp.Compile),\n\t\t\"CompilePOSIX\":     reflect.ValueOf(regexp.CompilePOSIX),\n\t\t\"Match\":            reflect.ValueOf(regexp.Match),\n\t\t\"MatchReader\":      reflect.ValueOf(regexp.MatchReader),\n\t\t\"MatchString\":      reflect.ValueOf(regexp.MatchString),\n\t\t\"MustCompile\":      reflect.ValueOf(regexp.MustCompile),\n\t\t\"MustCompilePOSIX\": reflect.ValueOf(regexp.MustCompilePOSIX),\n\t\t\"QuoteMeta\":        reflect.ValueOf(regexp.QuoteMeta),\n\n\t\t// type definitions\n\t\t\"Regexp\": reflect.ValueOf((*regexp.Regexp)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_regexp_syntax.go",
    "content": "// Code generated by 'yaegi extract regexp/syntax'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"regexp/syntax\"\n)\n\nfunc init() {\n\tSymbols[\"regexp/syntax/syntax\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ClassNL\":                  reflect.ValueOf(syntax.ClassNL),\n\t\t\"Compile\":                  reflect.ValueOf(syntax.Compile),\n\t\t\"DotNL\":                    reflect.ValueOf(syntax.DotNL),\n\t\t\"EmptyBeginLine\":           reflect.ValueOf(syntax.EmptyBeginLine),\n\t\t\"EmptyBeginText\":           reflect.ValueOf(syntax.EmptyBeginText),\n\t\t\"EmptyEndLine\":             reflect.ValueOf(syntax.EmptyEndLine),\n\t\t\"EmptyEndText\":             reflect.ValueOf(syntax.EmptyEndText),\n\t\t\"EmptyNoWordBoundary\":      reflect.ValueOf(syntax.EmptyNoWordBoundary),\n\t\t\"EmptyOpContext\":           reflect.ValueOf(syntax.EmptyOpContext),\n\t\t\"EmptyWordBoundary\":        reflect.ValueOf(syntax.EmptyWordBoundary),\n\t\t\"ErrInternalError\":         reflect.ValueOf(syntax.ErrInternalError),\n\t\t\"ErrInvalidCharClass\":      reflect.ValueOf(syntax.ErrInvalidCharClass),\n\t\t\"ErrInvalidCharRange\":      reflect.ValueOf(syntax.ErrInvalidCharRange),\n\t\t\"ErrInvalidEscape\":         reflect.ValueOf(syntax.ErrInvalidEscape),\n\t\t\"ErrInvalidNamedCapture\":   reflect.ValueOf(syntax.ErrInvalidNamedCapture),\n\t\t\"ErrInvalidPerlOp\":         reflect.ValueOf(syntax.ErrInvalidPerlOp),\n\t\t\"ErrInvalidRepeatOp\":       reflect.ValueOf(syntax.ErrInvalidRepeatOp),\n\t\t\"ErrInvalidRepeatSize\":     reflect.ValueOf(syntax.ErrInvalidRepeatSize),\n\t\t\"ErrInvalidUTF8\":           reflect.ValueOf(syntax.ErrInvalidUTF8),\n\t\t\"ErrLarge\":                 reflect.ValueOf(syntax.ErrLarge),\n\t\t\"ErrMissingBracket\":        reflect.ValueOf(syntax.ErrMissingBracket),\n\t\t\"ErrMissingParen\":          reflect.ValueOf(syntax.ErrMissingParen),\n\t\t\"ErrMissingRepeatArgument\": reflect.ValueOf(syntax.ErrMissingRepeatArgument),\n\t\t\"ErrNestingDepth\":          reflect.ValueOf(syntax.ErrNestingDepth),\n\t\t\"ErrTrailingBackslash\":     reflect.ValueOf(syntax.ErrTrailingBackslash),\n\t\t\"ErrUnexpectedParen\":       reflect.ValueOf(syntax.ErrUnexpectedParen),\n\t\t\"FoldCase\":                 reflect.ValueOf(syntax.FoldCase),\n\t\t\"InstAlt\":                  reflect.ValueOf(syntax.InstAlt),\n\t\t\"InstAltMatch\":             reflect.ValueOf(syntax.InstAltMatch),\n\t\t\"InstCapture\":              reflect.ValueOf(syntax.InstCapture),\n\t\t\"InstEmptyWidth\":           reflect.ValueOf(syntax.InstEmptyWidth),\n\t\t\"InstFail\":                 reflect.ValueOf(syntax.InstFail),\n\t\t\"InstMatch\":                reflect.ValueOf(syntax.InstMatch),\n\t\t\"InstNop\":                  reflect.ValueOf(syntax.InstNop),\n\t\t\"InstRune\":                 reflect.ValueOf(syntax.InstRune),\n\t\t\"InstRune1\":                reflect.ValueOf(syntax.InstRune1),\n\t\t\"InstRuneAny\":              reflect.ValueOf(syntax.InstRuneAny),\n\t\t\"InstRuneAnyNotNL\":         reflect.ValueOf(syntax.InstRuneAnyNotNL),\n\t\t\"IsWordChar\":               reflect.ValueOf(syntax.IsWordChar),\n\t\t\"Literal\":                  reflect.ValueOf(syntax.Literal),\n\t\t\"MatchNL\":                  reflect.ValueOf(syntax.MatchNL),\n\t\t\"NonGreedy\":                reflect.ValueOf(syntax.NonGreedy),\n\t\t\"OneLine\":                  reflect.ValueOf(syntax.OneLine),\n\t\t\"OpAlternate\":              reflect.ValueOf(syntax.OpAlternate),\n\t\t\"OpAnyChar\":                reflect.ValueOf(syntax.OpAnyChar),\n\t\t\"OpAnyCharNotNL\":           reflect.ValueOf(syntax.OpAnyCharNotNL),\n\t\t\"OpBeginLine\":              reflect.ValueOf(syntax.OpBeginLine),\n\t\t\"OpBeginText\":              reflect.ValueOf(syntax.OpBeginText),\n\t\t\"OpCapture\":                reflect.ValueOf(syntax.OpCapture),\n\t\t\"OpCharClass\":              reflect.ValueOf(syntax.OpCharClass),\n\t\t\"OpConcat\":                 reflect.ValueOf(syntax.OpConcat),\n\t\t\"OpEmptyMatch\":             reflect.ValueOf(syntax.OpEmptyMatch),\n\t\t\"OpEndLine\":                reflect.ValueOf(syntax.OpEndLine),\n\t\t\"OpEndText\":                reflect.ValueOf(syntax.OpEndText),\n\t\t\"OpLiteral\":                reflect.ValueOf(syntax.OpLiteral),\n\t\t\"OpNoMatch\":                reflect.ValueOf(syntax.OpNoMatch),\n\t\t\"OpNoWordBoundary\":         reflect.ValueOf(syntax.OpNoWordBoundary),\n\t\t\"OpPlus\":                   reflect.ValueOf(syntax.OpPlus),\n\t\t\"OpQuest\":                  reflect.ValueOf(syntax.OpQuest),\n\t\t\"OpRepeat\":                 reflect.ValueOf(syntax.OpRepeat),\n\t\t\"OpStar\":                   reflect.ValueOf(syntax.OpStar),\n\t\t\"OpWordBoundary\":           reflect.ValueOf(syntax.OpWordBoundary),\n\t\t\"POSIX\":                    reflect.ValueOf(syntax.POSIX),\n\t\t\"Parse\":                    reflect.ValueOf(syntax.Parse),\n\t\t\"Perl\":                     reflect.ValueOf(syntax.Perl),\n\t\t\"PerlX\":                    reflect.ValueOf(syntax.PerlX),\n\t\t\"Simple\":                   reflect.ValueOf(syntax.Simple),\n\t\t\"UnicodeGroups\":            reflect.ValueOf(syntax.UnicodeGroups),\n\t\t\"WasDollar\":                reflect.ValueOf(syntax.WasDollar),\n\n\t\t// type definitions\n\t\t\"EmptyOp\":   reflect.ValueOf((*syntax.EmptyOp)(nil)),\n\t\t\"Error\":     reflect.ValueOf((*syntax.Error)(nil)),\n\t\t\"ErrorCode\": reflect.ValueOf((*syntax.ErrorCode)(nil)),\n\t\t\"Flags\":     reflect.ValueOf((*syntax.Flags)(nil)),\n\t\t\"Inst\":      reflect.ValueOf((*syntax.Inst)(nil)),\n\t\t\"InstOp\":    reflect.ValueOf((*syntax.InstOp)(nil)),\n\t\t\"Op\":        reflect.ValueOf((*syntax.Op)(nil)),\n\t\t\"Prog\":      reflect.ValueOf((*syntax.Prog)(nil)),\n\t\t\"Regexp\":    reflect.ValueOf((*syntax.Regexp)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_runtime.go",
    "content": "// Code generated by 'yaegi extract runtime'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"runtime\"\n)\n\nfunc init() {\n\tSymbols[\"runtime/runtime\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BlockProfile\":            reflect.ValueOf(runtime.BlockProfile),\n\t\t\"Breakpoint\":              reflect.ValueOf(runtime.Breakpoint),\n\t\t\"CPUProfile\":              reflect.ValueOf(runtime.CPUProfile),\n\t\t\"Caller\":                  reflect.ValueOf(runtime.Caller),\n\t\t\"Callers\":                 reflect.ValueOf(runtime.Callers),\n\t\t\"CallersFrames\":           reflect.ValueOf(runtime.CallersFrames),\n\t\t\"Compiler\":                reflect.ValueOf(constant.MakeFromLiteral(\"\\\"gc\\\"\", token.STRING, 0)),\n\t\t\"FuncForPC\":               reflect.ValueOf(runtime.FuncForPC),\n\t\t\"GC\":                      reflect.ValueOf(runtime.GC),\n\t\t\"GOARCH\":                  reflect.ValueOf(runtime.GOARCH),\n\t\t\"GOMAXPROCS\":              reflect.ValueOf(runtime.GOMAXPROCS),\n\t\t\"GOOS\":                    reflect.ValueOf(runtime.GOOS),\n\t\t\"GOROOT\":                  reflect.ValueOf(runtime.GOROOT),\n\t\t\"Goexit\":                  reflect.ValueOf(runtime.Goexit),\n\t\t\"GoroutineProfile\":        reflect.ValueOf(runtime.GoroutineProfile),\n\t\t\"Gosched\":                 reflect.ValueOf(runtime.Gosched),\n\t\t\"KeepAlive\":               reflect.ValueOf(runtime.KeepAlive),\n\t\t\"LockOSThread\":            reflect.ValueOf(runtime.LockOSThread),\n\t\t\"MemProfile\":              reflect.ValueOf(runtime.MemProfile),\n\t\t\"MemProfileRate\":          reflect.ValueOf(&runtime.MemProfileRate).Elem(),\n\t\t\"MutexProfile\":            reflect.ValueOf(runtime.MutexProfile),\n\t\t\"NumCPU\":                  reflect.ValueOf(runtime.NumCPU),\n\t\t\"NumCgoCall\":              reflect.ValueOf(runtime.NumCgoCall),\n\t\t\"NumGoroutine\":            reflect.ValueOf(runtime.NumGoroutine),\n\t\t\"ReadMemStats\":            reflect.ValueOf(runtime.ReadMemStats),\n\t\t\"ReadTrace\":               reflect.ValueOf(runtime.ReadTrace),\n\t\t\"SetBlockProfileRate\":     reflect.ValueOf(runtime.SetBlockProfileRate),\n\t\t\"SetCPUProfileRate\":       reflect.ValueOf(runtime.SetCPUProfileRate),\n\t\t\"SetCgoTraceback\":         reflect.ValueOf(runtime.SetCgoTraceback),\n\t\t\"SetFinalizer\":            reflect.ValueOf(runtime.SetFinalizer),\n\t\t\"SetMutexProfileFraction\": reflect.ValueOf(runtime.SetMutexProfileFraction),\n\t\t\"Stack\":                   reflect.ValueOf(runtime.Stack),\n\t\t\"StartTrace\":              reflect.ValueOf(runtime.StartTrace),\n\t\t\"StopTrace\":               reflect.ValueOf(runtime.StopTrace),\n\t\t\"ThreadCreateProfile\":     reflect.ValueOf(runtime.ThreadCreateProfile),\n\t\t\"UnlockOSThread\":          reflect.ValueOf(runtime.UnlockOSThread),\n\t\t\"Version\":                 reflect.ValueOf(runtime.Version),\n\n\t\t// type definitions\n\t\t\"BlockProfileRecord\": reflect.ValueOf((*runtime.BlockProfileRecord)(nil)),\n\t\t\"Error\":              reflect.ValueOf((*runtime.Error)(nil)),\n\t\t\"Frame\":              reflect.ValueOf((*runtime.Frame)(nil)),\n\t\t\"Frames\":             reflect.ValueOf((*runtime.Frames)(nil)),\n\t\t\"Func\":               reflect.ValueOf((*runtime.Func)(nil)),\n\t\t\"MemProfileRecord\":   reflect.ValueOf((*runtime.MemProfileRecord)(nil)),\n\t\t\"MemStats\":           reflect.ValueOf((*runtime.MemStats)(nil)),\n\t\t\"PanicNilError\":      reflect.ValueOf((*runtime.PanicNilError)(nil)),\n\t\t\"Pinner\":             reflect.ValueOf((*runtime.Pinner)(nil)),\n\t\t\"StackRecord\":        reflect.ValueOf((*runtime.StackRecord)(nil)),\n\t\t\"TypeAssertionError\": reflect.ValueOf((*runtime.TypeAssertionError)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Error\": reflect.ValueOf((*_runtime_Error)(nil)),\n\t}\n}\n\n// _runtime_Error is an interface wrapper for Error type\ntype _runtime_Error struct {\n\tIValue        interface{}\n\tWError        func() string\n\tWRuntimeError func()\n}\n\nfunc (W _runtime_Error) Error() string { return W.WError() }\nfunc (W _runtime_Error) RuntimeError() { W.WRuntimeError() }\n"
  },
  {
    "path": "stdlib/go1_21_runtime_debug.go",
    "content": "// Code generated by 'yaegi extract runtime/debug'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"runtime/debug\"\n)\n\nfunc init() {\n\tSymbols[\"runtime/debug/debug\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"FreeOSMemory\":    reflect.ValueOf(debug.FreeOSMemory),\n\t\t\"ParseBuildInfo\":  reflect.ValueOf(debug.ParseBuildInfo),\n\t\t\"PrintStack\":      reflect.ValueOf(debug.PrintStack),\n\t\t\"ReadBuildInfo\":   reflect.ValueOf(debug.ReadBuildInfo),\n\t\t\"ReadGCStats\":     reflect.ValueOf(debug.ReadGCStats),\n\t\t\"SetGCPercent\":    reflect.ValueOf(debug.SetGCPercent),\n\t\t\"SetMaxStack\":     reflect.ValueOf(debug.SetMaxStack),\n\t\t\"SetMaxThreads\":   reflect.ValueOf(debug.SetMaxThreads),\n\t\t\"SetMemoryLimit\":  reflect.ValueOf(debug.SetMemoryLimit),\n\t\t\"SetPanicOnFault\": reflect.ValueOf(debug.SetPanicOnFault),\n\t\t\"SetTraceback\":    reflect.ValueOf(debug.SetTraceback),\n\t\t\"Stack\":           reflect.ValueOf(debug.Stack),\n\t\t\"WriteHeapDump\":   reflect.ValueOf(debug.WriteHeapDump),\n\n\t\t// type definitions\n\t\t\"BuildInfo\":    reflect.ValueOf((*debug.BuildInfo)(nil)),\n\t\t\"BuildSetting\": reflect.ValueOf((*debug.BuildSetting)(nil)),\n\t\t\"GCStats\":      reflect.ValueOf((*debug.GCStats)(nil)),\n\t\t\"Module\":       reflect.ValueOf((*debug.Module)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_runtime_metrics.go",
    "content": "// Code generated by 'yaegi extract runtime/metrics'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"runtime/metrics\"\n)\n\nfunc init() {\n\tSymbols[\"runtime/metrics/metrics\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"All\":                  reflect.ValueOf(metrics.All),\n\t\t\"KindBad\":              reflect.ValueOf(metrics.KindBad),\n\t\t\"KindFloat64\":          reflect.ValueOf(metrics.KindFloat64),\n\t\t\"KindFloat64Histogram\": reflect.ValueOf(metrics.KindFloat64Histogram),\n\t\t\"KindUint64\":           reflect.ValueOf(metrics.KindUint64),\n\t\t\"Read\":                 reflect.ValueOf(metrics.Read),\n\n\t\t// type definitions\n\t\t\"Description\":      reflect.ValueOf((*metrics.Description)(nil)),\n\t\t\"Float64Histogram\": reflect.ValueOf((*metrics.Float64Histogram)(nil)),\n\t\t\"Sample\":           reflect.ValueOf((*metrics.Sample)(nil)),\n\t\t\"Value\":            reflect.ValueOf((*metrics.Value)(nil)),\n\t\t\"ValueKind\":        reflect.ValueOf((*metrics.ValueKind)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_runtime_pprof.go",
    "content": "// Code generated by 'yaegi extract runtime/pprof'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"runtime/pprof\"\n)\n\nfunc init() {\n\tSymbols[\"runtime/pprof/pprof\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Do\":                 reflect.ValueOf(pprof.Do),\n\t\t\"ForLabels\":          reflect.ValueOf(pprof.ForLabels),\n\t\t\"Label\":              reflect.ValueOf(pprof.Label),\n\t\t\"Labels\":             reflect.ValueOf(pprof.Labels),\n\t\t\"Lookup\":             reflect.ValueOf(pprof.Lookup),\n\t\t\"NewProfile\":         reflect.ValueOf(pprof.NewProfile),\n\t\t\"Profiles\":           reflect.ValueOf(pprof.Profiles),\n\t\t\"SetGoroutineLabels\": reflect.ValueOf(pprof.SetGoroutineLabels),\n\t\t\"StartCPUProfile\":    reflect.ValueOf(pprof.StartCPUProfile),\n\t\t\"StopCPUProfile\":     reflect.ValueOf(pprof.StopCPUProfile),\n\t\t\"WithLabels\":         reflect.ValueOf(pprof.WithLabels),\n\t\t\"WriteHeapProfile\":   reflect.ValueOf(pprof.WriteHeapProfile),\n\n\t\t// type definitions\n\t\t\"LabelSet\": reflect.ValueOf((*pprof.LabelSet)(nil)),\n\t\t\"Profile\":  reflect.ValueOf((*pprof.Profile)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_runtime_trace.go",
    "content": "// Code generated by 'yaegi extract runtime/trace'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"runtime/trace\"\n)\n\nfunc init() {\n\tSymbols[\"runtime/trace/trace\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"IsEnabled\":   reflect.ValueOf(trace.IsEnabled),\n\t\t\"Log\":         reflect.ValueOf(trace.Log),\n\t\t\"Logf\":        reflect.ValueOf(trace.Logf),\n\t\t\"NewTask\":     reflect.ValueOf(trace.NewTask),\n\t\t\"Start\":       reflect.ValueOf(trace.Start),\n\t\t\"StartRegion\": reflect.ValueOf(trace.StartRegion),\n\t\t\"Stop\":        reflect.ValueOf(trace.Stop),\n\t\t\"WithRegion\":  reflect.ValueOf(trace.WithRegion),\n\n\t\t// type definitions\n\t\t\"Region\": reflect.ValueOf((*trace.Region)(nil)),\n\t\t\"Task\":   reflect.ValueOf((*trace.Task)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_slices.go",
    "content": "// Code generated by 'yaegi extract slices'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"slices/slices\"] = map[string]reflect.Value{}\n}\n"
  },
  {
    "path": "stdlib/go1_21_sort.go",
    "content": "// Code generated by 'yaegi extract sort'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"sort\"\n)\n\nfunc init() {\n\tSymbols[\"sort/sort\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Find\":              reflect.ValueOf(sort.Find),\n\t\t\"Float64s\":          reflect.ValueOf(sort.Float64s),\n\t\t\"Float64sAreSorted\": reflect.ValueOf(sort.Float64sAreSorted),\n\t\t\"Ints\":              reflect.ValueOf(sort.Ints),\n\t\t\"IntsAreSorted\":     reflect.ValueOf(sort.IntsAreSorted),\n\t\t\"IsSorted\":          reflect.ValueOf(sort.IsSorted),\n\t\t\"Reverse\":           reflect.ValueOf(sort.Reverse),\n\t\t\"Search\":            reflect.ValueOf(sort.Search),\n\t\t\"SearchFloat64s\":    reflect.ValueOf(sort.SearchFloat64s),\n\t\t\"SearchInts\":        reflect.ValueOf(sort.SearchInts),\n\t\t\"SearchStrings\":     reflect.ValueOf(sort.SearchStrings),\n\t\t\"Slice\":             reflect.ValueOf(sort.Slice),\n\t\t\"SliceIsSorted\":     reflect.ValueOf(sort.SliceIsSorted),\n\t\t\"SliceStable\":       reflect.ValueOf(sort.SliceStable),\n\t\t\"Sort\":              reflect.ValueOf(sort.Sort),\n\t\t\"Stable\":            reflect.ValueOf(sort.Stable),\n\t\t\"Strings\":           reflect.ValueOf(sort.Strings),\n\t\t\"StringsAreSorted\":  reflect.ValueOf(sort.StringsAreSorted),\n\n\t\t// type definitions\n\t\t\"Float64Slice\": reflect.ValueOf((*sort.Float64Slice)(nil)),\n\t\t\"IntSlice\":     reflect.ValueOf((*sort.IntSlice)(nil)),\n\t\t\"Interface\":    reflect.ValueOf((*sort.Interface)(nil)),\n\t\t\"StringSlice\":  reflect.ValueOf((*sort.StringSlice)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Interface\": reflect.ValueOf((*_sort_Interface)(nil)),\n\t}\n}\n\n// _sort_Interface is an interface wrapper for Interface type\ntype _sort_Interface struct {\n\tIValue interface{}\n\tWLen   func() int\n\tWLess  func(i int, j int) bool\n\tWSwap  func(i int, j int)\n}\n\nfunc (W _sort_Interface) Len() int               { return W.WLen() }\nfunc (W _sort_Interface) Less(i int, j int) bool { return W.WLess(i, j) }\nfunc (W _sort_Interface) Swap(i int, j int)      { W.WSwap(i, j) }\n"
  },
  {
    "path": "stdlib/go1_21_strconv.go",
    "content": "// Code generated by 'yaegi extract strconv'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"strconv\"\n)\n\nfunc init() {\n\tSymbols[\"strconv/strconv\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AppendBool\":               reflect.ValueOf(strconv.AppendBool),\n\t\t\"AppendFloat\":              reflect.ValueOf(strconv.AppendFloat),\n\t\t\"AppendInt\":                reflect.ValueOf(strconv.AppendInt),\n\t\t\"AppendQuote\":              reflect.ValueOf(strconv.AppendQuote),\n\t\t\"AppendQuoteRune\":          reflect.ValueOf(strconv.AppendQuoteRune),\n\t\t\"AppendQuoteRuneToASCII\":   reflect.ValueOf(strconv.AppendQuoteRuneToASCII),\n\t\t\"AppendQuoteRuneToGraphic\": reflect.ValueOf(strconv.AppendQuoteRuneToGraphic),\n\t\t\"AppendQuoteToASCII\":       reflect.ValueOf(strconv.AppendQuoteToASCII),\n\t\t\"AppendQuoteToGraphic\":     reflect.ValueOf(strconv.AppendQuoteToGraphic),\n\t\t\"AppendUint\":               reflect.ValueOf(strconv.AppendUint),\n\t\t\"Atoi\":                     reflect.ValueOf(strconv.Atoi),\n\t\t\"CanBackquote\":             reflect.ValueOf(strconv.CanBackquote),\n\t\t\"ErrRange\":                 reflect.ValueOf(&strconv.ErrRange).Elem(),\n\t\t\"ErrSyntax\":                reflect.ValueOf(&strconv.ErrSyntax).Elem(),\n\t\t\"FormatBool\":               reflect.ValueOf(strconv.FormatBool),\n\t\t\"FormatComplex\":            reflect.ValueOf(strconv.FormatComplex),\n\t\t\"FormatFloat\":              reflect.ValueOf(strconv.FormatFloat),\n\t\t\"FormatInt\":                reflect.ValueOf(strconv.FormatInt),\n\t\t\"FormatUint\":               reflect.ValueOf(strconv.FormatUint),\n\t\t\"IntSize\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IsGraphic\":                reflect.ValueOf(strconv.IsGraphic),\n\t\t\"IsPrint\":                  reflect.ValueOf(strconv.IsPrint),\n\t\t\"Itoa\":                     reflect.ValueOf(strconv.Itoa),\n\t\t\"ParseBool\":                reflect.ValueOf(strconv.ParseBool),\n\t\t\"ParseComplex\":             reflect.ValueOf(strconv.ParseComplex),\n\t\t\"ParseFloat\":               reflect.ValueOf(strconv.ParseFloat),\n\t\t\"ParseInt\":                 reflect.ValueOf(strconv.ParseInt),\n\t\t\"ParseUint\":                reflect.ValueOf(strconv.ParseUint),\n\t\t\"Quote\":                    reflect.ValueOf(strconv.Quote),\n\t\t\"QuoteRune\":                reflect.ValueOf(strconv.QuoteRune),\n\t\t\"QuoteRuneToASCII\":         reflect.ValueOf(strconv.QuoteRuneToASCII),\n\t\t\"QuoteRuneToGraphic\":       reflect.ValueOf(strconv.QuoteRuneToGraphic),\n\t\t\"QuoteToASCII\":             reflect.ValueOf(strconv.QuoteToASCII),\n\t\t\"QuoteToGraphic\":           reflect.ValueOf(strconv.QuoteToGraphic),\n\t\t\"QuotedPrefix\":             reflect.ValueOf(strconv.QuotedPrefix),\n\t\t\"Unquote\":                  reflect.ValueOf(strconv.Unquote),\n\t\t\"UnquoteChar\":              reflect.ValueOf(strconv.UnquoteChar),\n\n\t\t// type definitions\n\t\t\"NumError\": reflect.ValueOf((*strconv.NumError)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_strings.go",
    "content": "// Code generated by 'yaegi extract strings'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"strings\"\n)\n\nfunc init() {\n\tSymbols[\"strings/strings\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Clone\":          reflect.ValueOf(strings.Clone),\n\t\t\"Compare\":        reflect.ValueOf(strings.Compare),\n\t\t\"Contains\":       reflect.ValueOf(strings.Contains),\n\t\t\"ContainsAny\":    reflect.ValueOf(strings.ContainsAny),\n\t\t\"ContainsFunc\":   reflect.ValueOf(strings.ContainsFunc),\n\t\t\"ContainsRune\":   reflect.ValueOf(strings.ContainsRune),\n\t\t\"Count\":          reflect.ValueOf(strings.Count),\n\t\t\"Cut\":            reflect.ValueOf(strings.Cut),\n\t\t\"CutPrefix\":      reflect.ValueOf(strings.CutPrefix),\n\t\t\"CutSuffix\":      reflect.ValueOf(strings.CutSuffix),\n\t\t\"EqualFold\":      reflect.ValueOf(strings.EqualFold),\n\t\t\"Fields\":         reflect.ValueOf(strings.Fields),\n\t\t\"FieldsFunc\":     reflect.ValueOf(strings.FieldsFunc),\n\t\t\"HasPrefix\":      reflect.ValueOf(strings.HasPrefix),\n\t\t\"HasSuffix\":      reflect.ValueOf(strings.HasSuffix),\n\t\t\"Index\":          reflect.ValueOf(strings.Index),\n\t\t\"IndexAny\":       reflect.ValueOf(strings.IndexAny),\n\t\t\"IndexByte\":      reflect.ValueOf(strings.IndexByte),\n\t\t\"IndexFunc\":      reflect.ValueOf(strings.IndexFunc),\n\t\t\"IndexRune\":      reflect.ValueOf(strings.IndexRune),\n\t\t\"Join\":           reflect.ValueOf(strings.Join),\n\t\t\"LastIndex\":      reflect.ValueOf(strings.LastIndex),\n\t\t\"LastIndexAny\":   reflect.ValueOf(strings.LastIndexAny),\n\t\t\"LastIndexByte\":  reflect.ValueOf(strings.LastIndexByte),\n\t\t\"LastIndexFunc\":  reflect.ValueOf(strings.LastIndexFunc),\n\t\t\"Map\":            reflect.ValueOf(strings.Map),\n\t\t\"NewReader\":      reflect.ValueOf(strings.NewReader),\n\t\t\"NewReplacer\":    reflect.ValueOf(strings.NewReplacer),\n\t\t\"Repeat\":         reflect.ValueOf(strings.Repeat),\n\t\t\"Replace\":        reflect.ValueOf(strings.Replace),\n\t\t\"ReplaceAll\":     reflect.ValueOf(strings.ReplaceAll),\n\t\t\"Split\":          reflect.ValueOf(strings.Split),\n\t\t\"SplitAfter\":     reflect.ValueOf(strings.SplitAfter),\n\t\t\"SplitAfterN\":    reflect.ValueOf(strings.SplitAfterN),\n\t\t\"SplitN\":         reflect.ValueOf(strings.SplitN),\n\t\t\"Title\":          reflect.ValueOf(strings.Title),\n\t\t\"ToLower\":        reflect.ValueOf(strings.ToLower),\n\t\t\"ToLowerSpecial\": reflect.ValueOf(strings.ToLowerSpecial),\n\t\t\"ToTitle\":        reflect.ValueOf(strings.ToTitle),\n\t\t\"ToTitleSpecial\": reflect.ValueOf(strings.ToTitleSpecial),\n\t\t\"ToUpper\":        reflect.ValueOf(strings.ToUpper),\n\t\t\"ToUpperSpecial\": reflect.ValueOf(strings.ToUpperSpecial),\n\t\t\"ToValidUTF8\":    reflect.ValueOf(strings.ToValidUTF8),\n\t\t\"Trim\":           reflect.ValueOf(strings.Trim),\n\t\t\"TrimFunc\":       reflect.ValueOf(strings.TrimFunc),\n\t\t\"TrimLeft\":       reflect.ValueOf(strings.TrimLeft),\n\t\t\"TrimLeftFunc\":   reflect.ValueOf(strings.TrimLeftFunc),\n\t\t\"TrimPrefix\":     reflect.ValueOf(strings.TrimPrefix),\n\t\t\"TrimRight\":      reflect.ValueOf(strings.TrimRight),\n\t\t\"TrimRightFunc\":  reflect.ValueOf(strings.TrimRightFunc),\n\t\t\"TrimSpace\":      reflect.ValueOf(strings.TrimSpace),\n\t\t\"TrimSuffix\":     reflect.ValueOf(strings.TrimSuffix),\n\n\t\t// type definitions\n\t\t\"Builder\":  reflect.ValueOf((*strings.Builder)(nil)),\n\t\t\"Reader\":   reflect.ValueOf((*strings.Reader)(nil)),\n\t\t\"Replacer\": reflect.ValueOf((*strings.Replacer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_sync.go",
    "content": "// Code generated by 'yaegi extract sync'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"sync\"\n)\n\nfunc init() {\n\tSymbols[\"sync/sync\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"NewCond\":  reflect.ValueOf(sync.NewCond),\n\t\t\"OnceFunc\": reflect.ValueOf(sync.OnceFunc),\n\n\t\t// type definitions\n\t\t\"Cond\":      reflect.ValueOf((*sync.Cond)(nil)),\n\t\t\"Locker\":    reflect.ValueOf((*sync.Locker)(nil)),\n\t\t\"Map\":       reflect.ValueOf((*sync.Map)(nil)),\n\t\t\"Mutex\":     reflect.ValueOf((*sync.Mutex)(nil)),\n\t\t\"Once\":      reflect.ValueOf((*sync.Once)(nil)),\n\t\t\"Pool\":      reflect.ValueOf((*sync.Pool)(nil)),\n\t\t\"RWMutex\":   reflect.ValueOf((*sync.RWMutex)(nil)),\n\t\t\"WaitGroup\": reflect.ValueOf((*sync.WaitGroup)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Locker\": reflect.ValueOf((*_sync_Locker)(nil)),\n\t}\n}\n\n// _sync_Locker is an interface wrapper for Locker type\ntype _sync_Locker struct {\n\tIValue  interface{}\n\tWLock   func()\n\tWUnlock func()\n}\n\nfunc (W _sync_Locker) Lock()   { W.WLock() }\nfunc (W _sync_Locker) Unlock() { W.WUnlock() }\n"
  },
  {
    "path": "stdlib/go1_21_sync_atomic.go",
    "content": "// Code generated by 'yaegi extract sync/atomic'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"sync/atomic\"\n)\n\nfunc init() {\n\tSymbols[\"sync/atomic/atomic\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AddInt32\":              reflect.ValueOf(atomic.AddInt32),\n\t\t\"AddInt64\":              reflect.ValueOf(atomic.AddInt64),\n\t\t\"AddUint32\":             reflect.ValueOf(atomic.AddUint32),\n\t\t\"AddUint64\":             reflect.ValueOf(atomic.AddUint64),\n\t\t\"AddUintptr\":            reflect.ValueOf(atomic.AddUintptr),\n\t\t\"CompareAndSwapInt32\":   reflect.ValueOf(atomic.CompareAndSwapInt32),\n\t\t\"CompareAndSwapInt64\":   reflect.ValueOf(atomic.CompareAndSwapInt64),\n\t\t\"CompareAndSwapPointer\": reflect.ValueOf(atomic.CompareAndSwapPointer),\n\t\t\"CompareAndSwapUint32\":  reflect.ValueOf(atomic.CompareAndSwapUint32),\n\t\t\"CompareAndSwapUint64\":  reflect.ValueOf(atomic.CompareAndSwapUint64),\n\t\t\"CompareAndSwapUintptr\": reflect.ValueOf(atomic.CompareAndSwapUintptr),\n\t\t\"LoadInt32\":             reflect.ValueOf(atomic.LoadInt32),\n\t\t\"LoadInt64\":             reflect.ValueOf(atomic.LoadInt64),\n\t\t\"LoadPointer\":           reflect.ValueOf(atomic.LoadPointer),\n\t\t\"LoadUint32\":            reflect.ValueOf(atomic.LoadUint32),\n\t\t\"LoadUint64\":            reflect.ValueOf(atomic.LoadUint64),\n\t\t\"LoadUintptr\":           reflect.ValueOf(atomic.LoadUintptr),\n\t\t\"StoreInt32\":            reflect.ValueOf(atomic.StoreInt32),\n\t\t\"StoreInt64\":            reflect.ValueOf(atomic.StoreInt64),\n\t\t\"StorePointer\":          reflect.ValueOf(atomic.StorePointer),\n\t\t\"StoreUint32\":           reflect.ValueOf(atomic.StoreUint32),\n\t\t\"StoreUint64\":           reflect.ValueOf(atomic.StoreUint64),\n\t\t\"StoreUintptr\":          reflect.ValueOf(atomic.StoreUintptr),\n\t\t\"SwapInt32\":             reflect.ValueOf(atomic.SwapInt32),\n\t\t\"SwapInt64\":             reflect.ValueOf(atomic.SwapInt64),\n\t\t\"SwapPointer\":           reflect.ValueOf(atomic.SwapPointer),\n\t\t\"SwapUint32\":            reflect.ValueOf(atomic.SwapUint32),\n\t\t\"SwapUint64\":            reflect.ValueOf(atomic.SwapUint64),\n\t\t\"SwapUintptr\":           reflect.ValueOf(atomic.SwapUintptr),\n\n\t\t// type definitions\n\t\t\"Bool\":    reflect.ValueOf((*atomic.Bool)(nil)),\n\t\t\"Int32\":   reflect.ValueOf((*atomic.Int32)(nil)),\n\t\t\"Int64\":   reflect.ValueOf((*atomic.Int64)(nil)),\n\t\t\"Uint32\":  reflect.ValueOf((*atomic.Uint32)(nil)),\n\t\t\"Uint64\":  reflect.ValueOf((*atomic.Uint64)(nil)),\n\t\t\"Uintptr\": reflect.ValueOf((*atomic.Uintptr)(nil)),\n\t\t\"Value\":   reflect.ValueOf((*atomic.Value)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_testing.go",
    "content": "// Code generated by 'yaegi extract testing'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"testing\"\n)\n\nfunc init() {\n\tSymbols[\"testing/testing\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllocsPerRun\":  reflect.ValueOf(testing.AllocsPerRun),\n\t\t\"Benchmark\":     reflect.ValueOf(testing.Benchmark),\n\t\t\"CoverMode\":     reflect.ValueOf(testing.CoverMode),\n\t\t\"Coverage\":      reflect.ValueOf(testing.Coverage),\n\t\t\"Init\":          reflect.ValueOf(testing.Init),\n\t\t\"Main\":          reflect.ValueOf(testing.Main),\n\t\t\"MainStart\":     reflect.ValueOf(testing.MainStart),\n\t\t\"RegisterCover\": reflect.ValueOf(testing.RegisterCover),\n\t\t\"RunBenchmarks\": reflect.ValueOf(testing.RunBenchmarks),\n\t\t\"RunExamples\":   reflect.ValueOf(testing.RunExamples),\n\t\t\"RunTests\":      reflect.ValueOf(testing.RunTests),\n\t\t\"Short\":         reflect.ValueOf(testing.Short),\n\t\t\"Testing\":       reflect.ValueOf(testing.Testing),\n\t\t\"Verbose\":       reflect.ValueOf(testing.Verbose),\n\n\t\t// type definitions\n\t\t\"B\":                  reflect.ValueOf((*testing.B)(nil)),\n\t\t\"BenchmarkResult\":    reflect.ValueOf((*testing.BenchmarkResult)(nil)),\n\t\t\"Cover\":              reflect.ValueOf((*testing.Cover)(nil)),\n\t\t\"CoverBlock\":         reflect.ValueOf((*testing.CoverBlock)(nil)),\n\t\t\"F\":                  reflect.ValueOf((*testing.F)(nil)),\n\t\t\"InternalBenchmark\":  reflect.ValueOf((*testing.InternalBenchmark)(nil)),\n\t\t\"InternalExample\":    reflect.ValueOf((*testing.InternalExample)(nil)),\n\t\t\"InternalFuzzTarget\": reflect.ValueOf((*testing.InternalFuzzTarget)(nil)),\n\t\t\"InternalTest\":       reflect.ValueOf((*testing.InternalTest)(nil)),\n\t\t\"M\":                  reflect.ValueOf((*testing.M)(nil)),\n\t\t\"PB\":                 reflect.ValueOf((*testing.PB)(nil)),\n\t\t\"T\":                  reflect.ValueOf((*testing.T)(nil)),\n\t\t\"TB\":                 reflect.ValueOf((*testing.TB)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_TB\": reflect.ValueOf((*_testing_TB)(nil)),\n\t}\n}\n\n// _testing_TB is an interface wrapper for TB type\ntype _testing_TB struct {\n\tIValue   interface{}\n\tWCleanup func(a0 func())\n\tWError   func(args ...any)\n\tWErrorf  func(format string, args ...any)\n\tWFail    func()\n\tWFailNow func()\n\tWFailed  func() bool\n\tWFatal   func(args ...any)\n\tWFatalf  func(format string, args ...any)\n\tWHelper  func()\n\tWLog     func(args ...any)\n\tWLogf    func(format string, args ...any)\n\tWName    func() string\n\tWSetenv  func(key string, value string)\n\tWSkip    func(args ...any)\n\tWSkipNow func()\n\tWSkipf   func(format string, args ...any)\n\tWSkipped func() bool\n\tWTempDir func() string\n}\n\nfunc (W _testing_TB) Cleanup(a0 func())                 { W.WCleanup(a0) }\nfunc (W _testing_TB) Error(args ...any)                 { W.WError(args...) }\nfunc (W _testing_TB) Errorf(format string, args ...any) { W.WErrorf(format, args...) }\nfunc (W _testing_TB) Fail()                             { W.WFail() }\nfunc (W _testing_TB) FailNow()                          { W.WFailNow() }\nfunc (W _testing_TB) Failed() bool                      { return W.WFailed() }\nfunc (W _testing_TB) Fatal(args ...any)                 { W.WFatal(args...) }\nfunc (W _testing_TB) Fatalf(format string, args ...any) { W.WFatalf(format, args...) }\nfunc (W _testing_TB) Helper()                           { W.WHelper() }\nfunc (W _testing_TB) Log(args ...any)                   { W.WLog(args...) }\nfunc (W _testing_TB) Logf(format string, args ...any)   { W.WLogf(format, args...) }\nfunc (W _testing_TB) Name() string                      { return W.WName() }\nfunc (W _testing_TB) Setenv(key string, value string)   { W.WSetenv(key, value) }\nfunc (W _testing_TB) Skip(args ...any)                  { W.WSkip(args...) }\nfunc (W _testing_TB) SkipNow()                          { W.WSkipNow() }\nfunc (W _testing_TB) Skipf(format string, args ...any)  { W.WSkipf(format, args...) }\nfunc (W _testing_TB) Skipped() bool                     { return W.WSkipped() }\nfunc (W _testing_TB) TempDir() string                   { return W.WTempDir() }\n"
  },
  {
    "path": "stdlib/go1_21_testing_fstest.go",
    "content": "// Code generated by 'yaegi extract testing/fstest'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"testing/fstest\"\n)\n\nfunc init() {\n\tSymbols[\"testing/fstest/fstest\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"TestFS\": reflect.ValueOf(fstest.TestFS),\n\n\t\t// type definitions\n\t\t\"MapFS\":   reflect.ValueOf((*fstest.MapFS)(nil)),\n\t\t\"MapFile\": reflect.ValueOf((*fstest.MapFile)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_testing_iotest.go",
    "content": "// Code generated by 'yaegi extract testing/iotest'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"testing/iotest\"\n)\n\nfunc init() {\n\tSymbols[\"testing/iotest/iotest\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"DataErrReader\":  reflect.ValueOf(iotest.DataErrReader),\n\t\t\"ErrReader\":      reflect.ValueOf(iotest.ErrReader),\n\t\t\"ErrTimeout\":     reflect.ValueOf(&iotest.ErrTimeout).Elem(),\n\t\t\"HalfReader\":     reflect.ValueOf(iotest.HalfReader),\n\t\t\"NewReadLogger\":  reflect.ValueOf(iotest.NewReadLogger),\n\t\t\"NewWriteLogger\": reflect.ValueOf(iotest.NewWriteLogger),\n\t\t\"OneByteReader\":  reflect.ValueOf(iotest.OneByteReader),\n\t\t\"TestReader\":     reflect.ValueOf(iotest.TestReader),\n\t\t\"TimeoutReader\":  reflect.ValueOf(iotest.TimeoutReader),\n\t\t\"TruncateWriter\": reflect.ValueOf(iotest.TruncateWriter),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_testing_quick.go",
    "content": "// Code generated by 'yaegi extract testing/quick'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"math/rand\"\n\t\"reflect\"\n\t\"testing/quick\"\n)\n\nfunc init() {\n\tSymbols[\"testing/quick/quick\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Check\":      reflect.ValueOf(quick.Check),\n\t\t\"CheckEqual\": reflect.ValueOf(quick.CheckEqual),\n\t\t\"Value\":      reflect.ValueOf(quick.Value),\n\n\t\t// type definitions\n\t\t\"CheckEqualError\": reflect.ValueOf((*quick.CheckEqualError)(nil)),\n\t\t\"CheckError\":      reflect.ValueOf((*quick.CheckError)(nil)),\n\t\t\"Config\":          reflect.ValueOf((*quick.Config)(nil)),\n\t\t\"Generator\":       reflect.ValueOf((*quick.Generator)(nil)),\n\t\t\"SetupError\":      reflect.ValueOf((*quick.SetupError)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Generator\": reflect.ValueOf((*_testing_quick_Generator)(nil)),\n\t}\n}\n\n// _testing_quick_Generator is an interface wrapper for Generator type\ntype _testing_quick_Generator struct {\n\tIValue    interface{}\n\tWGenerate func(rand *rand.Rand, size int) reflect.Value\n}\n\nfunc (W _testing_quick_Generator) Generate(rand *rand.Rand, size int) reflect.Value {\n\treturn W.WGenerate(rand, size)\n}\n"
  },
  {
    "path": "stdlib/go1_21_testing_slogtest.go",
    "content": "// Code generated by 'yaegi extract testing/slogtest'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"testing/slogtest\"\n)\n\nfunc init() {\n\tSymbols[\"testing/slogtest/slogtest\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"TestHandler\": reflect.ValueOf(slogtest.TestHandler),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_text_scanner.go",
    "content": "// Code generated by 'yaegi extract text/scanner'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"text/scanner\"\n)\n\nfunc init() {\n\tSymbols[\"text/scanner/scanner\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Char\":           reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"Comment\":        reflect.ValueOf(constant.MakeFromLiteral(\"-8\", token.INT, 0)),\n\t\t\"EOF\":            reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"Float\":          reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"GoTokens\":       reflect.ValueOf(constant.MakeFromLiteral(\"1012\", token.INT, 0)),\n\t\t\"GoWhitespace\":   reflect.ValueOf(constant.MakeFromLiteral(\"4294977024\", token.INT, 0)),\n\t\t\"Ident\":          reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"Int\":            reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"RawString\":      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"ScanChars\":      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ScanComments\":   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ScanFloats\":     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ScanIdents\":     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ScanInts\":       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ScanRawStrings\": reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ScanStrings\":    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SkipComments\":   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"String\":         reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"TokenString\":    reflect.ValueOf(scanner.TokenString),\n\n\t\t// type definitions\n\t\t\"Position\": reflect.ValueOf((*scanner.Position)(nil)),\n\t\t\"Scanner\":  reflect.ValueOf((*scanner.Scanner)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_text_tabwriter.go",
    "content": "// Code generated by 'yaegi extract text/tabwriter'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"text/tabwriter\"\n)\n\nfunc init() {\n\tSymbols[\"text/tabwriter/tabwriter\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AlignRight\":          reflect.ValueOf(tabwriter.AlignRight),\n\t\t\"Debug\":               reflect.ValueOf(tabwriter.Debug),\n\t\t\"DiscardEmptyColumns\": reflect.ValueOf(tabwriter.DiscardEmptyColumns),\n\t\t\"Escape\":              reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"FilterHTML\":          reflect.ValueOf(tabwriter.FilterHTML),\n\t\t\"NewWriter\":           reflect.ValueOf(tabwriter.NewWriter),\n\t\t\"StripEscape\":         reflect.ValueOf(tabwriter.StripEscape),\n\t\t\"TabIndent\":           reflect.ValueOf(tabwriter.TabIndent),\n\n\t\t// type definitions\n\t\t\"Writer\": reflect.ValueOf((*tabwriter.Writer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_text_template.go",
    "content": "// Code generated by 'yaegi extract text/template'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"text/template\"\n)\n\nfunc init() {\n\tSymbols[\"text/template/template\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"HTMLEscape\":       reflect.ValueOf(template.HTMLEscape),\n\t\t\"HTMLEscapeString\": reflect.ValueOf(template.HTMLEscapeString),\n\t\t\"HTMLEscaper\":      reflect.ValueOf(template.HTMLEscaper),\n\t\t\"IsTrue\":           reflect.ValueOf(template.IsTrue),\n\t\t\"JSEscape\":         reflect.ValueOf(template.JSEscape),\n\t\t\"JSEscapeString\":   reflect.ValueOf(template.JSEscapeString),\n\t\t\"JSEscaper\":        reflect.ValueOf(template.JSEscaper),\n\t\t\"Must\":             reflect.ValueOf(template.Must),\n\t\t\"New\":              reflect.ValueOf(template.New),\n\t\t\"ParseFS\":          reflect.ValueOf(template.ParseFS),\n\t\t\"ParseFiles\":       reflect.ValueOf(template.ParseFiles),\n\t\t\"ParseGlob\":        reflect.ValueOf(template.ParseGlob),\n\t\t\"URLQueryEscaper\":  reflect.ValueOf(template.URLQueryEscaper),\n\n\t\t// type definitions\n\t\t\"ExecError\": reflect.ValueOf((*template.ExecError)(nil)),\n\t\t\"FuncMap\":   reflect.ValueOf((*template.FuncMap)(nil)),\n\t\t\"Template\":  reflect.ValueOf((*template.Template)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_text_template_parse.go",
    "content": "// Code generated by 'yaegi extract text/template/parse'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"text/template/parse\"\n)\n\nfunc init() {\n\tSymbols[\"text/template/parse/parse\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"IsEmptyTree\":    reflect.ValueOf(parse.IsEmptyTree),\n\t\t\"New\":            reflect.ValueOf(parse.New),\n\t\t\"NewIdentifier\":  reflect.ValueOf(parse.NewIdentifier),\n\t\t\"NodeAction\":     reflect.ValueOf(parse.NodeAction),\n\t\t\"NodeBool\":       reflect.ValueOf(parse.NodeBool),\n\t\t\"NodeBreak\":      reflect.ValueOf(parse.NodeBreak),\n\t\t\"NodeChain\":      reflect.ValueOf(parse.NodeChain),\n\t\t\"NodeCommand\":    reflect.ValueOf(parse.NodeCommand),\n\t\t\"NodeComment\":    reflect.ValueOf(parse.NodeComment),\n\t\t\"NodeContinue\":   reflect.ValueOf(parse.NodeContinue),\n\t\t\"NodeDot\":        reflect.ValueOf(parse.NodeDot),\n\t\t\"NodeField\":      reflect.ValueOf(parse.NodeField),\n\t\t\"NodeIdentifier\": reflect.ValueOf(parse.NodeIdentifier),\n\t\t\"NodeIf\":         reflect.ValueOf(parse.NodeIf),\n\t\t\"NodeList\":       reflect.ValueOf(parse.NodeList),\n\t\t\"NodeNil\":        reflect.ValueOf(parse.NodeNil),\n\t\t\"NodeNumber\":     reflect.ValueOf(parse.NodeNumber),\n\t\t\"NodePipe\":       reflect.ValueOf(parse.NodePipe),\n\t\t\"NodeRange\":      reflect.ValueOf(parse.NodeRange),\n\t\t\"NodeString\":     reflect.ValueOf(parse.NodeString),\n\t\t\"NodeTemplate\":   reflect.ValueOf(parse.NodeTemplate),\n\t\t\"NodeText\":       reflect.ValueOf(parse.NodeText),\n\t\t\"NodeVariable\":   reflect.ValueOf(parse.NodeVariable),\n\t\t\"NodeWith\":       reflect.ValueOf(parse.NodeWith),\n\t\t\"Parse\":          reflect.ValueOf(parse.Parse),\n\t\t\"ParseComments\":  reflect.ValueOf(parse.ParseComments),\n\t\t\"SkipFuncCheck\":  reflect.ValueOf(parse.SkipFuncCheck),\n\n\t\t// type definitions\n\t\t\"ActionNode\":     reflect.ValueOf((*parse.ActionNode)(nil)),\n\t\t\"BoolNode\":       reflect.ValueOf((*parse.BoolNode)(nil)),\n\t\t\"BranchNode\":     reflect.ValueOf((*parse.BranchNode)(nil)),\n\t\t\"BreakNode\":      reflect.ValueOf((*parse.BreakNode)(nil)),\n\t\t\"ChainNode\":      reflect.ValueOf((*parse.ChainNode)(nil)),\n\t\t\"CommandNode\":    reflect.ValueOf((*parse.CommandNode)(nil)),\n\t\t\"CommentNode\":    reflect.ValueOf((*parse.CommentNode)(nil)),\n\t\t\"ContinueNode\":   reflect.ValueOf((*parse.ContinueNode)(nil)),\n\t\t\"DotNode\":        reflect.ValueOf((*parse.DotNode)(nil)),\n\t\t\"FieldNode\":      reflect.ValueOf((*parse.FieldNode)(nil)),\n\t\t\"IdentifierNode\": reflect.ValueOf((*parse.IdentifierNode)(nil)),\n\t\t\"IfNode\":         reflect.ValueOf((*parse.IfNode)(nil)),\n\t\t\"ListNode\":       reflect.ValueOf((*parse.ListNode)(nil)),\n\t\t\"Mode\":           reflect.ValueOf((*parse.Mode)(nil)),\n\t\t\"NilNode\":        reflect.ValueOf((*parse.NilNode)(nil)),\n\t\t\"Node\":           reflect.ValueOf((*parse.Node)(nil)),\n\t\t\"NodeType\":       reflect.ValueOf((*parse.NodeType)(nil)),\n\t\t\"NumberNode\":     reflect.ValueOf((*parse.NumberNode)(nil)),\n\t\t\"PipeNode\":       reflect.ValueOf((*parse.PipeNode)(nil)),\n\t\t\"Pos\":            reflect.ValueOf((*parse.Pos)(nil)),\n\t\t\"RangeNode\":      reflect.ValueOf((*parse.RangeNode)(nil)),\n\t\t\"StringNode\":     reflect.ValueOf((*parse.StringNode)(nil)),\n\t\t\"TemplateNode\":   reflect.ValueOf((*parse.TemplateNode)(nil)),\n\t\t\"TextNode\":       reflect.ValueOf((*parse.TextNode)(nil)),\n\t\t\"Tree\":           reflect.ValueOf((*parse.Tree)(nil)),\n\t\t\"VariableNode\":   reflect.ValueOf((*parse.VariableNode)(nil)),\n\t\t\"WithNode\":       reflect.ValueOf((*parse.WithNode)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Node\": reflect.ValueOf((*_text_template_parse_Node)(nil)),\n\t}\n}\n\n// _text_template_parse_Node is an interface wrapper for Node type\ntype _text_template_parse_Node struct {\n\tIValue    interface{}\n\tWCopy     func() parse.Node\n\tWPosition func() parse.Pos\n\tWString   func() string\n\tWType     func() parse.NodeType\n}\n\nfunc (W _text_template_parse_Node) Copy() parse.Node    { return W.WCopy() }\nfunc (W _text_template_parse_Node) Position() parse.Pos { return W.WPosition() }\nfunc (W _text_template_parse_Node) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\nfunc (W _text_template_parse_Node) Type() parse.NodeType { return W.WType() }\n"
  },
  {
    "path": "stdlib/go1_21_time.go",
    "content": "// Code generated by 'yaegi extract time'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"time\"\n)\n\nfunc init() {\n\tSymbols[\"time/time\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ANSIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Mon Jan _2 15:04:05 2006\\\"\", token.STRING, 0)),\n\t\t\"After\":                  reflect.ValueOf(time.After),\n\t\t\"AfterFunc\":              reflect.ValueOf(time.AfterFunc),\n\t\t\"April\":                  reflect.ValueOf(time.April),\n\t\t\"August\":                 reflect.ValueOf(time.August),\n\t\t\"Date\":                   reflect.ValueOf(time.Date),\n\t\t\"DateOnly\":               reflect.ValueOf(constant.MakeFromLiteral(\"\\\"2006-01-02\\\"\", token.STRING, 0)),\n\t\t\"DateTime\":               reflect.ValueOf(constant.MakeFromLiteral(\"\\\"2006-01-02 15:04:05\\\"\", token.STRING, 0)),\n\t\t\"December\":               reflect.ValueOf(time.December),\n\t\t\"February\":               reflect.ValueOf(time.February),\n\t\t\"FixedZone\":              reflect.ValueOf(time.FixedZone),\n\t\t\"Friday\":                 reflect.ValueOf(time.Friday),\n\t\t\"Hour\":                   reflect.ValueOf(time.Hour),\n\t\t\"January\":                reflect.ValueOf(time.January),\n\t\t\"July\":                   reflect.ValueOf(time.July),\n\t\t\"June\":                   reflect.ValueOf(time.June),\n\t\t\"Kitchen\":                reflect.ValueOf(constant.MakeFromLiteral(\"\\\"3:04PM\\\"\", token.STRING, 0)),\n\t\t\"Layout\":                 reflect.ValueOf(constant.MakeFromLiteral(\"\\\"01/02 03:04:05PM '06 -0700\\\"\", token.STRING, 0)),\n\t\t\"LoadLocation\":           reflect.ValueOf(time.LoadLocation),\n\t\t\"LoadLocationFromTZData\": reflect.ValueOf(time.LoadLocationFromTZData),\n\t\t\"Local\":                  reflect.ValueOf(&time.Local).Elem(),\n\t\t\"March\":                  reflect.ValueOf(time.March),\n\t\t\"May\":                    reflect.ValueOf(time.May),\n\t\t\"Microsecond\":            reflect.ValueOf(time.Microsecond),\n\t\t\"Millisecond\":            reflect.ValueOf(time.Millisecond),\n\t\t\"Minute\":                 reflect.ValueOf(time.Minute),\n\t\t\"Monday\":                 reflect.ValueOf(time.Monday),\n\t\t\"Nanosecond\":             reflect.ValueOf(time.Nanosecond),\n\t\t\"NewTicker\":              reflect.ValueOf(time.NewTicker),\n\t\t\"NewTimer\":               reflect.ValueOf(time.NewTimer),\n\t\t\"November\":               reflect.ValueOf(time.November),\n\t\t\"Now\":                    reflect.ValueOf(time.Now),\n\t\t\"October\":                reflect.ValueOf(time.October),\n\t\t\"Parse\":                  reflect.ValueOf(time.Parse),\n\t\t\"ParseDuration\":          reflect.ValueOf(time.ParseDuration),\n\t\t\"ParseInLocation\":        reflect.ValueOf(time.ParseInLocation),\n\t\t\"RFC1123\":                reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Mon, 02 Jan 2006 15:04:05 MST\\\"\", token.STRING, 0)),\n\t\t\"RFC1123Z\":               reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Mon, 02 Jan 2006 15:04:05 -0700\\\"\", token.STRING, 0)),\n\t\t\"RFC3339\":                reflect.ValueOf(constant.MakeFromLiteral(\"\\\"2006-01-02T15:04:05Z07:00\\\"\", token.STRING, 0)),\n\t\t\"RFC3339Nano\":            reflect.ValueOf(constant.MakeFromLiteral(\"\\\"2006-01-02T15:04:05.999999999Z07:00\\\"\", token.STRING, 0)),\n\t\t\"RFC822\":                 reflect.ValueOf(constant.MakeFromLiteral(\"\\\"02 Jan 06 15:04 MST\\\"\", token.STRING, 0)),\n\t\t\"RFC822Z\":                reflect.ValueOf(constant.MakeFromLiteral(\"\\\"02 Jan 06 15:04 -0700\\\"\", token.STRING, 0)),\n\t\t\"RFC850\":                 reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Monday, 02-Jan-06 15:04:05 MST\\\"\", token.STRING, 0)),\n\t\t\"RubyDate\":               reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Mon Jan 02 15:04:05 -0700 2006\\\"\", token.STRING, 0)),\n\t\t\"Saturday\":               reflect.ValueOf(time.Saturday),\n\t\t\"Second\":                 reflect.ValueOf(time.Second),\n\t\t\"September\":              reflect.ValueOf(time.September),\n\t\t\"Since\":                  reflect.ValueOf(time.Since),\n\t\t\"Sleep\":                  reflect.ValueOf(time.Sleep),\n\t\t\"Stamp\":                  reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Jan _2 15:04:05\\\"\", token.STRING, 0)),\n\t\t\"StampMicro\":             reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Jan _2 15:04:05.000000\\\"\", token.STRING, 0)),\n\t\t\"StampMilli\":             reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Jan _2 15:04:05.000\\\"\", token.STRING, 0)),\n\t\t\"StampNano\":              reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Jan _2 15:04:05.000000000\\\"\", token.STRING, 0)),\n\t\t\"Sunday\":                 reflect.ValueOf(time.Sunday),\n\t\t\"Thursday\":               reflect.ValueOf(time.Thursday),\n\t\t\"Tick\":                   reflect.ValueOf(time.Tick),\n\t\t\"TimeOnly\":               reflect.ValueOf(constant.MakeFromLiteral(\"\\\"15:04:05\\\"\", token.STRING, 0)),\n\t\t\"Tuesday\":                reflect.ValueOf(time.Tuesday),\n\t\t\"UTC\":                    reflect.ValueOf(&time.UTC).Elem(),\n\t\t\"Unix\":                   reflect.ValueOf(time.Unix),\n\t\t\"UnixDate\":               reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Mon Jan _2 15:04:05 MST 2006\\\"\", token.STRING, 0)),\n\t\t\"UnixMicro\":              reflect.ValueOf(time.UnixMicro),\n\t\t\"UnixMilli\":              reflect.ValueOf(time.UnixMilli),\n\t\t\"Until\":                  reflect.ValueOf(time.Until),\n\t\t\"Wednesday\":              reflect.ValueOf(time.Wednesday),\n\n\t\t// type definitions\n\t\t\"Duration\":   reflect.ValueOf((*time.Duration)(nil)),\n\t\t\"Location\":   reflect.ValueOf((*time.Location)(nil)),\n\t\t\"Month\":      reflect.ValueOf((*time.Month)(nil)),\n\t\t\"ParseError\": reflect.ValueOf((*time.ParseError)(nil)),\n\t\t\"Ticker\":     reflect.ValueOf((*time.Ticker)(nil)),\n\t\t\"Time\":       reflect.ValueOf((*time.Time)(nil)),\n\t\t\"Timer\":      reflect.ValueOf((*time.Timer)(nil)),\n\t\t\"Weekday\":    reflect.ValueOf((*time.Weekday)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_unicode.go",
    "content": "// Code generated by 'yaegi extract unicode'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"unicode\"\n)\n\nfunc init() {\n\tSymbols[\"unicode/unicode\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ASCII_Hex_Digit\":                    reflect.ValueOf(&unicode.ASCII_Hex_Digit).Elem(),\n\t\t\"Adlam\":                              reflect.ValueOf(&unicode.Adlam).Elem(),\n\t\t\"Ahom\":                               reflect.ValueOf(&unicode.Ahom).Elem(),\n\t\t\"Anatolian_Hieroglyphs\":              reflect.ValueOf(&unicode.Anatolian_Hieroglyphs).Elem(),\n\t\t\"Arabic\":                             reflect.ValueOf(&unicode.Arabic).Elem(),\n\t\t\"Armenian\":                           reflect.ValueOf(&unicode.Armenian).Elem(),\n\t\t\"Avestan\":                            reflect.ValueOf(&unicode.Avestan).Elem(),\n\t\t\"AzeriCase\":                          reflect.ValueOf(&unicode.AzeriCase).Elem(),\n\t\t\"Balinese\":                           reflect.ValueOf(&unicode.Balinese).Elem(),\n\t\t\"Bamum\":                              reflect.ValueOf(&unicode.Bamum).Elem(),\n\t\t\"Bassa_Vah\":                          reflect.ValueOf(&unicode.Bassa_Vah).Elem(),\n\t\t\"Batak\":                              reflect.ValueOf(&unicode.Batak).Elem(),\n\t\t\"Bengali\":                            reflect.ValueOf(&unicode.Bengali).Elem(),\n\t\t\"Bhaiksuki\":                          reflect.ValueOf(&unicode.Bhaiksuki).Elem(),\n\t\t\"Bidi_Control\":                       reflect.ValueOf(&unicode.Bidi_Control).Elem(),\n\t\t\"Bopomofo\":                           reflect.ValueOf(&unicode.Bopomofo).Elem(),\n\t\t\"Brahmi\":                             reflect.ValueOf(&unicode.Brahmi).Elem(),\n\t\t\"Braille\":                            reflect.ValueOf(&unicode.Braille).Elem(),\n\t\t\"Buginese\":                           reflect.ValueOf(&unicode.Buginese).Elem(),\n\t\t\"Buhid\":                              reflect.ValueOf(&unicode.Buhid).Elem(),\n\t\t\"C\":                                  reflect.ValueOf(&unicode.C).Elem(),\n\t\t\"Canadian_Aboriginal\":                reflect.ValueOf(&unicode.Canadian_Aboriginal).Elem(),\n\t\t\"Carian\":                             reflect.ValueOf(&unicode.Carian).Elem(),\n\t\t\"CaseRanges\":                         reflect.ValueOf(&unicode.CaseRanges).Elem(),\n\t\t\"Categories\":                         reflect.ValueOf(&unicode.Categories).Elem(),\n\t\t\"Caucasian_Albanian\":                 reflect.ValueOf(&unicode.Caucasian_Albanian).Elem(),\n\t\t\"Cc\":                                 reflect.ValueOf(&unicode.Cc).Elem(),\n\t\t\"Cf\":                                 reflect.ValueOf(&unicode.Cf).Elem(),\n\t\t\"Chakma\":                             reflect.ValueOf(&unicode.Chakma).Elem(),\n\t\t\"Cham\":                               reflect.ValueOf(&unicode.Cham).Elem(),\n\t\t\"Cherokee\":                           reflect.ValueOf(&unicode.Cherokee).Elem(),\n\t\t\"Chorasmian\":                         reflect.ValueOf(&unicode.Chorasmian).Elem(),\n\t\t\"Co\":                                 reflect.ValueOf(&unicode.Co).Elem(),\n\t\t\"Common\":                             reflect.ValueOf(&unicode.Common).Elem(),\n\t\t\"Coptic\":                             reflect.ValueOf(&unicode.Coptic).Elem(),\n\t\t\"Cs\":                                 reflect.ValueOf(&unicode.Cs).Elem(),\n\t\t\"Cuneiform\":                          reflect.ValueOf(&unicode.Cuneiform).Elem(),\n\t\t\"Cypriot\":                            reflect.ValueOf(&unicode.Cypriot).Elem(),\n\t\t\"Cypro_Minoan\":                       reflect.ValueOf(&unicode.Cypro_Minoan).Elem(),\n\t\t\"Cyrillic\":                           reflect.ValueOf(&unicode.Cyrillic).Elem(),\n\t\t\"Dash\":                               reflect.ValueOf(&unicode.Dash).Elem(),\n\t\t\"Deprecated\":                         reflect.ValueOf(&unicode.Deprecated).Elem(),\n\t\t\"Deseret\":                            reflect.ValueOf(&unicode.Deseret).Elem(),\n\t\t\"Devanagari\":                         reflect.ValueOf(&unicode.Devanagari).Elem(),\n\t\t\"Diacritic\":                          reflect.ValueOf(&unicode.Diacritic).Elem(),\n\t\t\"Digit\":                              reflect.ValueOf(&unicode.Digit).Elem(),\n\t\t\"Dives_Akuru\":                        reflect.ValueOf(&unicode.Dives_Akuru).Elem(),\n\t\t\"Dogra\":                              reflect.ValueOf(&unicode.Dogra).Elem(),\n\t\t\"Duployan\":                           reflect.ValueOf(&unicode.Duployan).Elem(),\n\t\t\"Egyptian_Hieroglyphs\":               reflect.ValueOf(&unicode.Egyptian_Hieroglyphs).Elem(),\n\t\t\"Elbasan\":                            reflect.ValueOf(&unicode.Elbasan).Elem(),\n\t\t\"Elymaic\":                            reflect.ValueOf(&unicode.Elymaic).Elem(),\n\t\t\"Ethiopic\":                           reflect.ValueOf(&unicode.Ethiopic).Elem(),\n\t\t\"Extender\":                           reflect.ValueOf(&unicode.Extender).Elem(),\n\t\t\"FoldCategory\":                       reflect.ValueOf(&unicode.FoldCategory).Elem(),\n\t\t\"FoldScript\":                         reflect.ValueOf(&unicode.FoldScript).Elem(),\n\t\t\"Georgian\":                           reflect.ValueOf(&unicode.Georgian).Elem(),\n\t\t\"Glagolitic\":                         reflect.ValueOf(&unicode.Glagolitic).Elem(),\n\t\t\"Gothic\":                             reflect.ValueOf(&unicode.Gothic).Elem(),\n\t\t\"Grantha\":                            reflect.ValueOf(&unicode.Grantha).Elem(),\n\t\t\"GraphicRanges\":                      reflect.ValueOf(&unicode.GraphicRanges).Elem(),\n\t\t\"Greek\":                              reflect.ValueOf(&unicode.Greek).Elem(),\n\t\t\"Gujarati\":                           reflect.ValueOf(&unicode.Gujarati).Elem(),\n\t\t\"Gunjala_Gondi\":                      reflect.ValueOf(&unicode.Gunjala_Gondi).Elem(),\n\t\t\"Gurmukhi\":                           reflect.ValueOf(&unicode.Gurmukhi).Elem(),\n\t\t\"Han\":                                reflect.ValueOf(&unicode.Han).Elem(),\n\t\t\"Hangul\":                             reflect.ValueOf(&unicode.Hangul).Elem(),\n\t\t\"Hanifi_Rohingya\":                    reflect.ValueOf(&unicode.Hanifi_Rohingya).Elem(),\n\t\t\"Hanunoo\":                            reflect.ValueOf(&unicode.Hanunoo).Elem(),\n\t\t\"Hatran\":                             reflect.ValueOf(&unicode.Hatran).Elem(),\n\t\t\"Hebrew\":                             reflect.ValueOf(&unicode.Hebrew).Elem(),\n\t\t\"Hex_Digit\":                          reflect.ValueOf(&unicode.Hex_Digit).Elem(),\n\t\t\"Hiragana\":                           reflect.ValueOf(&unicode.Hiragana).Elem(),\n\t\t\"Hyphen\":                             reflect.ValueOf(&unicode.Hyphen).Elem(),\n\t\t\"IDS_Binary_Operator\":                reflect.ValueOf(&unicode.IDS_Binary_Operator).Elem(),\n\t\t\"IDS_Trinary_Operator\":               reflect.ValueOf(&unicode.IDS_Trinary_Operator).Elem(),\n\t\t\"Ideographic\":                        reflect.ValueOf(&unicode.Ideographic).Elem(),\n\t\t\"Imperial_Aramaic\":                   reflect.ValueOf(&unicode.Imperial_Aramaic).Elem(),\n\t\t\"In\":                                 reflect.ValueOf(unicode.In),\n\t\t\"Inherited\":                          reflect.ValueOf(&unicode.Inherited).Elem(),\n\t\t\"Inscriptional_Pahlavi\":              reflect.ValueOf(&unicode.Inscriptional_Pahlavi).Elem(),\n\t\t\"Inscriptional_Parthian\":             reflect.ValueOf(&unicode.Inscriptional_Parthian).Elem(),\n\t\t\"Is\":                                 reflect.ValueOf(unicode.Is),\n\t\t\"IsControl\":                          reflect.ValueOf(unicode.IsControl),\n\t\t\"IsDigit\":                            reflect.ValueOf(unicode.IsDigit),\n\t\t\"IsGraphic\":                          reflect.ValueOf(unicode.IsGraphic),\n\t\t\"IsLetter\":                           reflect.ValueOf(unicode.IsLetter),\n\t\t\"IsLower\":                            reflect.ValueOf(unicode.IsLower),\n\t\t\"IsMark\":                             reflect.ValueOf(unicode.IsMark),\n\t\t\"IsNumber\":                           reflect.ValueOf(unicode.IsNumber),\n\t\t\"IsOneOf\":                            reflect.ValueOf(unicode.IsOneOf),\n\t\t\"IsPrint\":                            reflect.ValueOf(unicode.IsPrint),\n\t\t\"IsPunct\":                            reflect.ValueOf(unicode.IsPunct),\n\t\t\"IsSpace\":                            reflect.ValueOf(unicode.IsSpace),\n\t\t\"IsSymbol\":                           reflect.ValueOf(unicode.IsSymbol),\n\t\t\"IsTitle\":                            reflect.ValueOf(unicode.IsTitle),\n\t\t\"IsUpper\":                            reflect.ValueOf(unicode.IsUpper),\n\t\t\"Javanese\":                           reflect.ValueOf(&unicode.Javanese).Elem(),\n\t\t\"Join_Control\":                       reflect.ValueOf(&unicode.Join_Control).Elem(),\n\t\t\"Kaithi\":                             reflect.ValueOf(&unicode.Kaithi).Elem(),\n\t\t\"Kannada\":                            reflect.ValueOf(&unicode.Kannada).Elem(),\n\t\t\"Katakana\":                           reflect.ValueOf(&unicode.Katakana).Elem(),\n\t\t\"Kawi\":                               reflect.ValueOf(&unicode.Kawi).Elem(),\n\t\t\"Kayah_Li\":                           reflect.ValueOf(&unicode.Kayah_Li).Elem(),\n\t\t\"Kharoshthi\":                         reflect.ValueOf(&unicode.Kharoshthi).Elem(),\n\t\t\"Khitan_Small_Script\":                reflect.ValueOf(&unicode.Khitan_Small_Script).Elem(),\n\t\t\"Khmer\":                              reflect.ValueOf(&unicode.Khmer).Elem(),\n\t\t\"Khojki\":                             reflect.ValueOf(&unicode.Khojki).Elem(),\n\t\t\"Khudawadi\":                          reflect.ValueOf(&unicode.Khudawadi).Elem(),\n\t\t\"L\":                                  reflect.ValueOf(&unicode.L).Elem(),\n\t\t\"Lao\":                                reflect.ValueOf(&unicode.Lao).Elem(),\n\t\t\"Latin\":                              reflect.ValueOf(&unicode.Latin).Elem(),\n\t\t\"Lepcha\":                             reflect.ValueOf(&unicode.Lepcha).Elem(),\n\t\t\"Letter\":                             reflect.ValueOf(&unicode.Letter).Elem(),\n\t\t\"Limbu\":                              reflect.ValueOf(&unicode.Limbu).Elem(),\n\t\t\"Linear_A\":                           reflect.ValueOf(&unicode.Linear_A).Elem(),\n\t\t\"Linear_B\":                           reflect.ValueOf(&unicode.Linear_B).Elem(),\n\t\t\"Lisu\":                               reflect.ValueOf(&unicode.Lisu).Elem(),\n\t\t\"Ll\":                                 reflect.ValueOf(&unicode.Ll).Elem(),\n\t\t\"Lm\":                                 reflect.ValueOf(&unicode.Lm).Elem(),\n\t\t\"Lo\":                                 reflect.ValueOf(&unicode.Lo).Elem(),\n\t\t\"Logical_Order_Exception\":            reflect.ValueOf(&unicode.Logical_Order_Exception).Elem(),\n\t\t\"Lower\":                              reflect.ValueOf(&unicode.Lower).Elem(),\n\t\t\"LowerCase\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Lt\":                                 reflect.ValueOf(&unicode.Lt).Elem(),\n\t\t\"Lu\":                                 reflect.ValueOf(&unicode.Lu).Elem(),\n\t\t\"Lycian\":                             reflect.ValueOf(&unicode.Lycian).Elem(),\n\t\t\"Lydian\":                             reflect.ValueOf(&unicode.Lydian).Elem(),\n\t\t\"M\":                                  reflect.ValueOf(&unicode.M).Elem(),\n\t\t\"Mahajani\":                           reflect.ValueOf(&unicode.Mahajani).Elem(),\n\t\t\"Makasar\":                            reflect.ValueOf(&unicode.Makasar).Elem(),\n\t\t\"Malayalam\":                          reflect.ValueOf(&unicode.Malayalam).Elem(),\n\t\t\"Mandaic\":                            reflect.ValueOf(&unicode.Mandaic).Elem(),\n\t\t\"Manichaean\":                         reflect.ValueOf(&unicode.Manichaean).Elem(),\n\t\t\"Marchen\":                            reflect.ValueOf(&unicode.Marchen).Elem(),\n\t\t\"Mark\":                               reflect.ValueOf(&unicode.Mark).Elem(),\n\t\t\"Masaram_Gondi\":                      reflect.ValueOf(&unicode.Masaram_Gondi).Elem(),\n\t\t\"MaxASCII\":                           reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"MaxCase\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MaxLatin1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"MaxRune\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1114111\", token.INT, 0)),\n\t\t\"Mc\":                                 reflect.ValueOf(&unicode.Mc).Elem(),\n\t\t\"Me\":                                 reflect.ValueOf(&unicode.Me).Elem(),\n\t\t\"Medefaidrin\":                        reflect.ValueOf(&unicode.Medefaidrin).Elem(),\n\t\t\"Meetei_Mayek\":                       reflect.ValueOf(&unicode.Meetei_Mayek).Elem(),\n\t\t\"Mende_Kikakui\":                      reflect.ValueOf(&unicode.Mende_Kikakui).Elem(),\n\t\t\"Meroitic_Cursive\":                   reflect.ValueOf(&unicode.Meroitic_Cursive).Elem(),\n\t\t\"Meroitic_Hieroglyphs\":               reflect.ValueOf(&unicode.Meroitic_Hieroglyphs).Elem(),\n\t\t\"Miao\":                               reflect.ValueOf(&unicode.Miao).Elem(),\n\t\t\"Mn\":                                 reflect.ValueOf(&unicode.Mn).Elem(),\n\t\t\"Modi\":                               reflect.ValueOf(&unicode.Modi).Elem(),\n\t\t\"Mongolian\":                          reflect.ValueOf(&unicode.Mongolian).Elem(),\n\t\t\"Mro\":                                reflect.ValueOf(&unicode.Mro).Elem(),\n\t\t\"Multani\":                            reflect.ValueOf(&unicode.Multani).Elem(),\n\t\t\"Myanmar\":                            reflect.ValueOf(&unicode.Myanmar).Elem(),\n\t\t\"N\":                                  reflect.ValueOf(&unicode.N).Elem(),\n\t\t\"Nabataean\":                          reflect.ValueOf(&unicode.Nabataean).Elem(),\n\t\t\"Nag_Mundari\":                        reflect.ValueOf(&unicode.Nag_Mundari).Elem(),\n\t\t\"Nandinagari\":                        reflect.ValueOf(&unicode.Nandinagari).Elem(),\n\t\t\"Nd\":                                 reflect.ValueOf(&unicode.Nd).Elem(),\n\t\t\"New_Tai_Lue\":                        reflect.ValueOf(&unicode.New_Tai_Lue).Elem(),\n\t\t\"Newa\":                               reflect.ValueOf(&unicode.Newa).Elem(),\n\t\t\"Nko\":                                reflect.ValueOf(&unicode.Nko).Elem(),\n\t\t\"Nl\":                                 reflect.ValueOf(&unicode.Nl).Elem(),\n\t\t\"No\":                                 reflect.ValueOf(&unicode.No).Elem(),\n\t\t\"Noncharacter_Code_Point\":            reflect.ValueOf(&unicode.Noncharacter_Code_Point).Elem(),\n\t\t\"Number\":                             reflect.ValueOf(&unicode.Number).Elem(),\n\t\t\"Nushu\":                              reflect.ValueOf(&unicode.Nushu).Elem(),\n\t\t\"Nyiakeng_Puachue_Hmong\":             reflect.ValueOf(&unicode.Nyiakeng_Puachue_Hmong).Elem(),\n\t\t\"Ogham\":                              reflect.ValueOf(&unicode.Ogham).Elem(),\n\t\t\"Ol_Chiki\":                           reflect.ValueOf(&unicode.Ol_Chiki).Elem(),\n\t\t\"Old_Hungarian\":                      reflect.ValueOf(&unicode.Old_Hungarian).Elem(),\n\t\t\"Old_Italic\":                         reflect.ValueOf(&unicode.Old_Italic).Elem(),\n\t\t\"Old_North_Arabian\":                  reflect.ValueOf(&unicode.Old_North_Arabian).Elem(),\n\t\t\"Old_Permic\":                         reflect.ValueOf(&unicode.Old_Permic).Elem(),\n\t\t\"Old_Persian\":                        reflect.ValueOf(&unicode.Old_Persian).Elem(),\n\t\t\"Old_Sogdian\":                        reflect.ValueOf(&unicode.Old_Sogdian).Elem(),\n\t\t\"Old_South_Arabian\":                  reflect.ValueOf(&unicode.Old_South_Arabian).Elem(),\n\t\t\"Old_Turkic\":                         reflect.ValueOf(&unicode.Old_Turkic).Elem(),\n\t\t\"Old_Uyghur\":                         reflect.ValueOf(&unicode.Old_Uyghur).Elem(),\n\t\t\"Oriya\":                              reflect.ValueOf(&unicode.Oriya).Elem(),\n\t\t\"Osage\":                              reflect.ValueOf(&unicode.Osage).Elem(),\n\t\t\"Osmanya\":                            reflect.ValueOf(&unicode.Osmanya).Elem(),\n\t\t\"Other\":                              reflect.ValueOf(&unicode.Other).Elem(),\n\t\t\"Other_Alphabetic\":                   reflect.ValueOf(&unicode.Other_Alphabetic).Elem(),\n\t\t\"Other_Default_Ignorable_Code_Point\": reflect.ValueOf(&unicode.Other_Default_Ignorable_Code_Point).Elem(),\n\t\t\"Other_Grapheme_Extend\":              reflect.ValueOf(&unicode.Other_Grapheme_Extend).Elem(),\n\t\t\"Other_ID_Continue\":                  reflect.ValueOf(&unicode.Other_ID_Continue).Elem(),\n\t\t\"Other_ID_Start\":                     reflect.ValueOf(&unicode.Other_ID_Start).Elem(),\n\t\t\"Other_Lowercase\":                    reflect.ValueOf(&unicode.Other_Lowercase).Elem(),\n\t\t\"Other_Math\":                         reflect.ValueOf(&unicode.Other_Math).Elem(),\n\t\t\"Other_Uppercase\":                    reflect.ValueOf(&unicode.Other_Uppercase).Elem(),\n\t\t\"P\":                                  reflect.ValueOf(&unicode.P).Elem(),\n\t\t\"Pahawh_Hmong\":                       reflect.ValueOf(&unicode.Pahawh_Hmong).Elem(),\n\t\t\"Palmyrene\":                          reflect.ValueOf(&unicode.Palmyrene).Elem(),\n\t\t\"Pattern_Syntax\":                     reflect.ValueOf(&unicode.Pattern_Syntax).Elem(),\n\t\t\"Pattern_White_Space\":                reflect.ValueOf(&unicode.Pattern_White_Space).Elem(),\n\t\t\"Pau_Cin_Hau\":                        reflect.ValueOf(&unicode.Pau_Cin_Hau).Elem(),\n\t\t\"Pc\":                                 reflect.ValueOf(&unicode.Pc).Elem(),\n\t\t\"Pd\":                                 reflect.ValueOf(&unicode.Pd).Elem(),\n\t\t\"Pe\":                                 reflect.ValueOf(&unicode.Pe).Elem(),\n\t\t\"Pf\":                                 reflect.ValueOf(&unicode.Pf).Elem(),\n\t\t\"Phags_Pa\":                           reflect.ValueOf(&unicode.Phags_Pa).Elem(),\n\t\t\"Phoenician\":                         reflect.ValueOf(&unicode.Phoenician).Elem(),\n\t\t\"Pi\":                                 reflect.ValueOf(&unicode.Pi).Elem(),\n\t\t\"Po\":                                 reflect.ValueOf(&unicode.Po).Elem(),\n\t\t\"Prepended_Concatenation_Mark\":       reflect.ValueOf(&unicode.Prepended_Concatenation_Mark).Elem(),\n\t\t\"PrintRanges\":                        reflect.ValueOf(&unicode.PrintRanges).Elem(),\n\t\t\"Properties\":                         reflect.ValueOf(&unicode.Properties).Elem(),\n\t\t\"Ps\":                                 reflect.ValueOf(&unicode.Ps).Elem(),\n\t\t\"Psalter_Pahlavi\":                    reflect.ValueOf(&unicode.Psalter_Pahlavi).Elem(),\n\t\t\"Punct\":                              reflect.ValueOf(&unicode.Punct).Elem(),\n\t\t\"Quotation_Mark\":                     reflect.ValueOf(&unicode.Quotation_Mark).Elem(),\n\t\t\"Radical\":                            reflect.ValueOf(&unicode.Radical).Elem(),\n\t\t\"Regional_Indicator\":                 reflect.ValueOf(&unicode.Regional_Indicator).Elem(),\n\t\t\"Rejang\":                             reflect.ValueOf(&unicode.Rejang).Elem(),\n\t\t\"ReplacementChar\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65533\", token.INT, 0)),\n\t\t\"Runic\":                              reflect.ValueOf(&unicode.Runic).Elem(),\n\t\t\"S\":                                  reflect.ValueOf(&unicode.S).Elem(),\n\t\t\"STerm\":                              reflect.ValueOf(&unicode.STerm).Elem(),\n\t\t\"Samaritan\":                          reflect.ValueOf(&unicode.Samaritan).Elem(),\n\t\t\"Saurashtra\":                         reflect.ValueOf(&unicode.Saurashtra).Elem(),\n\t\t\"Sc\":                                 reflect.ValueOf(&unicode.Sc).Elem(),\n\t\t\"Scripts\":                            reflect.ValueOf(&unicode.Scripts).Elem(),\n\t\t\"Sentence_Terminal\":                  reflect.ValueOf(&unicode.Sentence_Terminal).Elem(),\n\t\t\"Sharada\":                            reflect.ValueOf(&unicode.Sharada).Elem(),\n\t\t\"Shavian\":                            reflect.ValueOf(&unicode.Shavian).Elem(),\n\t\t\"Siddham\":                            reflect.ValueOf(&unicode.Siddham).Elem(),\n\t\t\"SignWriting\":                        reflect.ValueOf(&unicode.SignWriting).Elem(),\n\t\t\"SimpleFold\":                         reflect.ValueOf(unicode.SimpleFold),\n\t\t\"Sinhala\":                            reflect.ValueOf(&unicode.Sinhala).Elem(),\n\t\t\"Sk\":                                 reflect.ValueOf(&unicode.Sk).Elem(),\n\t\t\"Sm\":                                 reflect.ValueOf(&unicode.Sm).Elem(),\n\t\t\"So\":                                 reflect.ValueOf(&unicode.So).Elem(),\n\t\t\"Soft_Dotted\":                        reflect.ValueOf(&unicode.Soft_Dotted).Elem(),\n\t\t\"Sogdian\":                            reflect.ValueOf(&unicode.Sogdian).Elem(),\n\t\t\"Sora_Sompeng\":                       reflect.ValueOf(&unicode.Sora_Sompeng).Elem(),\n\t\t\"Soyombo\":                            reflect.ValueOf(&unicode.Soyombo).Elem(),\n\t\t\"Space\":                              reflect.ValueOf(&unicode.Space).Elem(),\n\t\t\"Sundanese\":                          reflect.ValueOf(&unicode.Sundanese).Elem(),\n\t\t\"Syloti_Nagri\":                       reflect.ValueOf(&unicode.Syloti_Nagri).Elem(),\n\t\t\"Symbol\":                             reflect.ValueOf(&unicode.Symbol).Elem(),\n\t\t\"Syriac\":                             reflect.ValueOf(&unicode.Syriac).Elem(),\n\t\t\"Tagalog\":                            reflect.ValueOf(&unicode.Tagalog).Elem(),\n\t\t\"Tagbanwa\":                           reflect.ValueOf(&unicode.Tagbanwa).Elem(),\n\t\t\"Tai_Le\":                             reflect.ValueOf(&unicode.Tai_Le).Elem(),\n\t\t\"Tai_Tham\":                           reflect.ValueOf(&unicode.Tai_Tham).Elem(),\n\t\t\"Tai_Viet\":                           reflect.ValueOf(&unicode.Tai_Viet).Elem(),\n\t\t\"Takri\":                              reflect.ValueOf(&unicode.Takri).Elem(),\n\t\t\"Tamil\":                              reflect.ValueOf(&unicode.Tamil).Elem(),\n\t\t\"Tangsa\":                             reflect.ValueOf(&unicode.Tangsa).Elem(),\n\t\t\"Tangut\":                             reflect.ValueOf(&unicode.Tangut).Elem(),\n\t\t\"Telugu\":                             reflect.ValueOf(&unicode.Telugu).Elem(),\n\t\t\"Terminal_Punctuation\":               reflect.ValueOf(&unicode.Terminal_Punctuation).Elem(),\n\t\t\"Thaana\":                             reflect.ValueOf(&unicode.Thaana).Elem(),\n\t\t\"Thai\":                               reflect.ValueOf(&unicode.Thai).Elem(),\n\t\t\"Tibetan\":                            reflect.ValueOf(&unicode.Tibetan).Elem(),\n\t\t\"Tifinagh\":                           reflect.ValueOf(&unicode.Tifinagh).Elem(),\n\t\t\"Tirhuta\":                            reflect.ValueOf(&unicode.Tirhuta).Elem(),\n\t\t\"Title\":                              reflect.ValueOf(&unicode.Title).Elem(),\n\t\t\"TitleCase\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"To\":                                 reflect.ValueOf(unicode.To),\n\t\t\"ToLower\":                            reflect.ValueOf(unicode.ToLower),\n\t\t\"ToTitle\":                            reflect.ValueOf(unicode.ToTitle),\n\t\t\"ToUpper\":                            reflect.ValueOf(unicode.ToUpper),\n\t\t\"Toto\":                               reflect.ValueOf(&unicode.Toto).Elem(),\n\t\t\"TurkishCase\":                        reflect.ValueOf(&unicode.TurkishCase).Elem(),\n\t\t\"Ugaritic\":                           reflect.ValueOf(&unicode.Ugaritic).Elem(),\n\t\t\"Unified_Ideograph\":                  reflect.ValueOf(&unicode.Unified_Ideograph).Elem(),\n\t\t\"Upper\":                              reflect.ValueOf(&unicode.Upper).Elem(),\n\t\t\"UpperCase\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"UpperLower\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1114112\", token.INT, 0)),\n\t\t\"Vai\":                                reflect.ValueOf(&unicode.Vai).Elem(),\n\t\t\"Variation_Selector\":                 reflect.ValueOf(&unicode.Variation_Selector).Elem(),\n\t\t\"Version\":                            reflect.ValueOf(constant.MakeFromLiteral(\"\\\"15.0.0\\\"\", token.STRING, 0)),\n\t\t\"Vithkuqi\":                           reflect.ValueOf(&unicode.Vithkuqi).Elem(),\n\t\t\"Wancho\":                             reflect.ValueOf(&unicode.Wancho).Elem(),\n\t\t\"Warang_Citi\":                        reflect.ValueOf(&unicode.Warang_Citi).Elem(),\n\t\t\"White_Space\":                        reflect.ValueOf(&unicode.White_Space).Elem(),\n\t\t\"Yezidi\":                             reflect.ValueOf(&unicode.Yezidi).Elem(),\n\t\t\"Yi\":                                 reflect.ValueOf(&unicode.Yi).Elem(),\n\t\t\"Z\":                                  reflect.ValueOf(&unicode.Z).Elem(),\n\t\t\"Zanabazar_Square\":                   reflect.ValueOf(&unicode.Zanabazar_Square).Elem(),\n\t\t\"Zl\":                                 reflect.ValueOf(&unicode.Zl).Elem(),\n\t\t\"Zp\":                                 reflect.ValueOf(&unicode.Zp).Elem(),\n\t\t\"Zs\":                                 reflect.ValueOf(&unicode.Zs).Elem(),\n\n\t\t// type definitions\n\t\t\"CaseRange\":   reflect.ValueOf((*unicode.CaseRange)(nil)),\n\t\t\"Range16\":     reflect.ValueOf((*unicode.Range16)(nil)),\n\t\t\"Range32\":     reflect.ValueOf((*unicode.Range32)(nil)),\n\t\t\"RangeTable\":  reflect.ValueOf((*unicode.RangeTable)(nil)),\n\t\t\"SpecialCase\": reflect.ValueOf((*unicode.SpecialCase)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_unicode_utf16.go",
    "content": "// Code generated by 'yaegi extract unicode/utf16'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"unicode/utf16\"\n)\n\nfunc init() {\n\tSymbols[\"unicode/utf16/utf16\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AppendRune\":  reflect.ValueOf(utf16.AppendRune),\n\t\t\"Decode\":      reflect.ValueOf(utf16.Decode),\n\t\t\"DecodeRune\":  reflect.ValueOf(utf16.DecodeRune),\n\t\t\"Encode\":      reflect.ValueOf(utf16.Encode),\n\t\t\"EncodeRune\":  reflect.ValueOf(utf16.EncodeRune),\n\t\t\"IsSurrogate\": reflect.ValueOf(utf16.IsSurrogate),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_21_unicode_utf8.go",
    "content": "// Code generated by 'yaegi extract unicode/utf8'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"unicode/utf8\"\n)\n\nfunc init() {\n\tSymbols[\"unicode/utf8/utf8\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AppendRune\":             reflect.ValueOf(utf8.AppendRune),\n\t\t\"DecodeLastRune\":         reflect.ValueOf(utf8.DecodeLastRune),\n\t\t\"DecodeLastRuneInString\": reflect.ValueOf(utf8.DecodeLastRuneInString),\n\t\t\"DecodeRune\":             reflect.ValueOf(utf8.DecodeRune),\n\t\t\"DecodeRuneInString\":     reflect.ValueOf(utf8.DecodeRuneInString),\n\t\t\"EncodeRune\":             reflect.ValueOf(utf8.EncodeRune),\n\t\t\"FullRune\":               reflect.ValueOf(utf8.FullRune),\n\t\t\"FullRuneInString\":       reflect.ValueOf(utf8.FullRuneInString),\n\t\t\"MaxRune\":                reflect.ValueOf(constant.MakeFromLiteral(\"1114111\", token.INT, 0)),\n\t\t\"RuneCount\":              reflect.ValueOf(utf8.RuneCount),\n\t\t\"RuneCountInString\":      reflect.ValueOf(utf8.RuneCountInString),\n\t\t\"RuneError\":              reflect.ValueOf(constant.MakeFromLiteral(\"65533\", token.INT, 0)),\n\t\t\"RuneLen\":                reflect.ValueOf(utf8.RuneLen),\n\t\t\"RuneSelf\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RuneStart\":              reflect.ValueOf(utf8.RuneStart),\n\t\t\"UTFMax\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Valid\":                  reflect.ValueOf(utf8.Valid),\n\t\t\"ValidRune\":              reflect.ValueOf(utf8.ValidRune),\n\t\t\"ValidString\":            reflect.ValueOf(utf8.ValidString),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_archive_tar.go",
    "content": "// Code generated by 'yaegi extract archive/tar'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"archive/tar\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"archive/tar/tar\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ErrFieldTooLong\":    reflect.ValueOf(&tar.ErrFieldTooLong).Elem(),\n\t\t\"ErrHeader\":          reflect.ValueOf(&tar.ErrHeader).Elem(),\n\t\t\"ErrInsecurePath\":    reflect.ValueOf(&tar.ErrInsecurePath).Elem(),\n\t\t\"ErrWriteAfterClose\": reflect.ValueOf(&tar.ErrWriteAfterClose).Elem(),\n\t\t\"ErrWriteTooLong\":    reflect.ValueOf(&tar.ErrWriteTooLong).Elem(),\n\t\t\"FileInfoHeader\":     reflect.ValueOf(tar.FileInfoHeader),\n\t\t\"FormatGNU\":          reflect.ValueOf(tar.FormatGNU),\n\t\t\"FormatPAX\":          reflect.ValueOf(tar.FormatPAX),\n\t\t\"FormatUSTAR\":        reflect.ValueOf(tar.FormatUSTAR),\n\t\t\"FormatUnknown\":      reflect.ValueOf(tar.FormatUnknown),\n\t\t\"NewReader\":          reflect.ValueOf(tar.NewReader),\n\t\t\"NewWriter\":          reflect.ValueOf(tar.NewWriter),\n\t\t\"TypeBlock\":          reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"TypeChar\":           reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"TypeCont\":           reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"TypeDir\":            reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"TypeFifo\":           reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"TypeGNULongLink\":    reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"TypeGNULongName\":    reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"TypeGNUSparse\":      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"TypeLink\":           reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"TypeReg\":            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"TypeRegA\":           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TypeSymlink\":        reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"TypeXGlobalHeader\":  reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"TypeXHeader\":        reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Format\": reflect.ValueOf((*tar.Format)(nil)),\n\t\t\"Header\": reflect.ValueOf((*tar.Header)(nil)),\n\t\t\"Reader\": reflect.ValueOf((*tar.Reader)(nil)),\n\t\t\"Writer\": reflect.ValueOf((*tar.Writer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_archive_zip.go",
    "content": "// Code generated by 'yaegi extract archive/zip'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"archive/zip\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"archive/zip/zip\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Deflate\":              reflect.ValueOf(zip.Deflate),\n\t\t\"ErrAlgorithm\":         reflect.ValueOf(&zip.ErrAlgorithm).Elem(),\n\t\t\"ErrChecksum\":          reflect.ValueOf(&zip.ErrChecksum).Elem(),\n\t\t\"ErrFormat\":            reflect.ValueOf(&zip.ErrFormat).Elem(),\n\t\t\"ErrInsecurePath\":      reflect.ValueOf(&zip.ErrInsecurePath).Elem(),\n\t\t\"FileInfoHeader\":       reflect.ValueOf(zip.FileInfoHeader),\n\t\t\"NewReader\":            reflect.ValueOf(zip.NewReader),\n\t\t\"NewWriter\":            reflect.ValueOf(zip.NewWriter),\n\t\t\"OpenReader\":           reflect.ValueOf(zip.OpenReader),\n\t\t\"RegisterCompressor\":   reflect.ValueOf(zip.RegisterCompressor),\n\t\t\"RegisterDecompressor\": reflect.ValueOf(zip.RegisterDecompressor),\n\t\t\"Store\":                reflect.ValueOf(zip.Store),\n\n\t\t// type definitions\n\t\t\"Compressor\":   reflect.ValueOf((*zip.Compressor)(nil)),\n\t\t\"Decompressor\": reflect.ValueOf((*zip.Decompressor)(nil)),\n\t\t\"File\":         reflect.ValueOf((*zip.File)(nil)),\n\t\t\"FileHeader\":   reflect.ValueOf((*zip.FileHeader)(nil)),\n\t\t\"ReadCloser\":   reflect.ValueOf((*zip.ReadCloser)(nil)),\n\t\t\"Reader\":       reflect.ValueOf((*zip.Reader)(nil)),\n\t\t\"Writer\":       reflect.ValueOf((*zip.Writer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_bufio.go",
    "content": "// Code generated by 'yaegi extract bufio'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"bufio\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"bufio/bufio\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ErrAdvanceTooFar\":     reflect.ValueOf(&bufio.ErrAdvanceTooFar).Elem(),\n\t\t\"ErrBadReadCount\":      reflect.ValueOf(&bufio.ErrBadReadCount).Elem(),\n\t\t\"ErrBufferFull\":        reflect.ValueOf(&bufio.ErrBufferFull).Elem(),\n\t\t\"ErrFinalToken\":        reflect.ValueOf(&bufio.ErrFinalToken).Elem(),\n\t\t\"ErrInvalidUnreadByte\": reflect.ValueOf(&bufio.ErrInvalidUnreadByte).Elem(),\n\t\t\"ErrInvalidUnreadRune\": reflect.ValueOf(&bufio.ErrInvalidUnreadRune).Elem(),\n\t\t\"ErrNegativeAdvance\":   reflect.ValueOf(&bufio.ErrNegativeAdvance).Elem(),\n\t\t\"ErrNegativeCount\":     reflect.ValueOf(&bufio.ErrNegativeCount).Elem(),\n\t\t\"ErrTooLong\":           reflect.ValueOf(&bufio.ErrTooLong).Elem(),\n\t\t\"MaxScanTokenSize\":     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"NewReadWriter\":        reflect.ValueOf(bufio.NewReadWriter),\n\t\t\"NewReader\":            reflect.ValueOf(bufio.NewReader),\n\t\t\"NewReaderSize\":        reflect.ValueOf(bufio.NewReaderSize),\n\t\t\"NewScanner\":           reflect.ValueOf(bufio.NewScanner),\n\t\t\"NewWriter\":            reflect.ValueOf(bufio.NewWriter),\n\t\t\"NewWriterSize\":        reflect.ValueOf(bufio.NewWriterSize),\n\t\t\"ScanBytes\":            reflect.ValueOf(bufio.ScanBytes),\n\t\t\"ScanLines\":            reflect.ValueOf(bufio.ScanLines),\n\t\t\"ScanRunes\":            reflect.ValueOf(bufio.ScanRunes),\n\t\t\"ScanWords\":            reflect.ValueOf(bufio.ScanWords),\n\n\t\t// type definitions\n\t\t\"ReadWriter\": reflect.ValueOf((*bufio.ReadWriter)(nil)),\n\t\t\"Reader\":     reflect.ValueOf((*bufio.Reader)(nil)),\n\t\t\"Scanner\":    reflect.ValueOf((*bufio.Scanner)(nil)),\n\t\t\"SplitFunc\":  reflect.ValueOf((*bufio.SplitFunc)(nil)),\n\t\t\"Writer\":     reflect.ValueOf((*bufio.Writer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_bytes.go",
    "content": "// Code generated by 'yaegi extract bytes'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"bytes\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"bytes/bytes\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Clone\":           reflect.ValueOf(bytes.Clone),\n\t\t\"Compare\":         reflect.ValueOf(bytes.Compare),\n\t\t\"Contains\":        reflect.ValueOf(bytes.Contains),\n\t\t\"ContainsAny\":     reflect.ValueOf(bytes.ContainsAny),\n\t\t\"ContainsFunc\":    reflect.ValueOf(bytes.ContainsFunc),\n\t\t\"ContainsRune\":    reflect.ValueOf(bytes.ContainsRune),\n\t\t\"Count\":           reflect.ValueOf(bytes.Count),\n\t\t\"Cut\":             reflect.ValueOf(bytes.Cut),\n\t\t\"CutPrefix\":       reflect.ValueOf(bytes.CutPrefix),\n\t\t\"CutSuffix\":       reflect.ValueOf(bytes.CutSuffix),\n\t\t\"Equal\":           reflect.ValueOf(bytes.Equal),\n\t\t\"EqualFold\":       reflect.ValueOf(bytes.EqualFold),\n\t\t\"ErrTooLarge\":     reflect.ValueOf(&bytes.ErrTooLarge).Elem(),\n\t\t\"Fields\":          reflect.ValueOf(bytes.Fields),\n\t\t\"FieldsFunc\":      reflect.ValueOf(bytes.FieldsFunc),\n\t\t\"HasPrefix\":       reflect.ValueOf(bytes.HasPrefix),\n\t\t\"HasSuffix\":       reflect.ValueOf(bytes.HasSuffix),\n\t\t\"Index\":           reflect.ValueOf(bytes.Index),\n\t\t\"IndexAny\":        reflect.ValueOf(bytes.IndexAny),\n\t\t\"IndexByte\":       reflect.ValueOf(bytes.IndexByte),\n\t\t\"IndexFunc\":       reflect.ValueOf(bytes.IndexFunc),\n\t\t\"IndexRune\":       reflect.ValueOf(bytes.IndexRune),\n\t\t\"Join\":            reflect.ValueOf(bytes.Join),\n\t\t\"LastIndex\":       reflect.ValueOf(bytes.LastIndex),\n\t\t\"LastIndexAny\":    reflect.ValueOf(bytes.LastIndexAny),\n\t\t\"LastIndexByte\":   reflect.ValueOf(bytes.LastIndexByte),\n\t\t\"LastIndexFunc\":   reflect.ValueOf(bytes.LastIndexFunc),\n\t\t\"Map\":             reflect.ValueOf(bytes.Map),\n\t\t\"MinRead\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NewBuffer\":       reflect.ValueOf(bytes.NewBuffer),\n\t\t\"NewBufferString\": reflect.ValueOf(bytes.NewBufferString),\n\t\t\"NewReader\":       reflect.ValueOf(bytes.NewReader),\n\t\t\"Repeat\":          reflect.ValueOf(bytes.Repeat),\n\t\t\"Replace\":         reflect.ValueOf(bytes.Replace),\n\t\t\"ReplaceAll\":      reflect.ValueOf(bytes.ReplaceAll),\n\t\t\"Runes\":           reflect.ValueOf(bytes.Runes),\n\t\t\"Split\":           reflect.ValueOf(bytes.Split),\n\t\t\"SplitAfter\":      reflect.ValueOf(bytes.SplitAfter),\n\t\t\"SplitAfterN\":     reflect.ValueOf(bytes.SplitAfterN),\n\t\t\"SplitN\":          reflect.ValueOf(bytes.SplitN),\n\t\t\"Title\":           reflect.ValueOf(bytes.Title),\n\t\t\"ToLower\":         reflect.ValueOf(bytes.ToLower),\n\t\t\"ToLowerSpecial\":  reflect.ValueOf(bytes.ToLowerSpecial),\n\t\t\"ToTitle\":         reflect.ValueOf(bytes.ToTitle),\n\t\t\"ToTitleSpecial\":  reflect.ValueOf(bytes.ToTitleSpecial),\n\t\t\"ToUpper\":         reflect.ValueOf(bytes.ToUpper),\n\t\t\"ToUpperSpecial\":  reflect.ValueOf(bytes.ToUpperSpecial),\n\t\t\"ToValidUTF8\":     reflect.ValueOf(bytes.ToValidUTF8),\n\t\t\"Trim\":            reflect.ValueOf(bytes.Trim),\n\t\t\"TrimFunc\":        reflect.ValueOf(bytes.TrimFunc),\n\t\t\"TrimLeft\":        reflect.ValueOf(bytes.TrimLeft),\n\t\t\"TrimLeftFunc\":    reflect.ValueOf(bytes.TrimLeftFunc),\n\t\t\"TrimPrefix\":      reflect.ValueOf(bytes.TrimPrefix),\n\t\t\"TrimRight\":       reflect.ValueOf(bytes.TrimRight),\n\t\t\"TrimRightFunc\":   reflect.ValueOf(bytes.TrimRightFunc),\n\t\t\"TrimSpace\":       reflect.ValueOf(bytes.TrimSpace),\n\t\t\"TrimSuffix\":      reflect.ValueOf(bytes.TrimSuffix),\n\n\t\t// type definitions\n\t\t\"Buffer\": reflect.ValueOf((*bytes.Buffer)(nil)),\n\t\t\"Reader\": reflect.ValueOf((*bytes.Reader)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_cmp.go",
    "content": "// Code generated by 'yaegi extract cmp'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"cmp/cmp\"] = map[string]reflect.Value{}\n}\n"
  },
  {
    "path": "stdlib/go1_22_compress_bzip2.go",
    "content": "// Code generated by 'yaegi extract compress/bzip2'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"compress/bzip2\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"compress/bzip2/bzip2\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"NewReader\": reflect.ValueOf(bzip2.NewReader),\n\n\t\t// type definitions\n\t\t\"StructuralError\": reflect.ValueOf((*bzip2.StructuralError)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_compress_flate.go",
    "content": "// Code generated by 'yaegi extract compress/flate'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"compress/flate\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"io\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"compress/flate/flate\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BestCompression\":    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"BestSpeed\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DefaultCompression\": reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"HuffmanOnly\":        reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"NewReader\":          reflect.ValueOf(flate.NewReader),\n\t\t\"NewReaderDict\":      reflect.ValueOf(flate.NewReaderDict),\n\t\t\"NewWriter\":          reflect.ValueOf(flate.NewWriter),\n\t\t\"NewWriterDict\":      reflect.ValueOf(flate.NewWriterDict),\n\t\t\"NoCompression\":      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"CorruptInputError\": reflect.ValueOf((*flate.CorruptInputError)(nil)),\n\t\t\"InternalError\":     reflect.ValueOf((*flate.InternalError)(nil)),\n\t\t\"ReadError\":         reflect.ValueOf((*flate.ReadError)(nil)),\n\t\t\"Reader\":            reflect.ValueOf((*flate.Reader)(nil)),\n\t\t\"Resetter\":          reflect.ValueOf((*flate.Resetter)(nil)),\n\t\t\"WriteError\":        reflect.ValueOf((*flate.WriteError)(nil)),\n\t\t\"Writer\":            reflect.ValueOf((*flate.Writer)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Reader\":   reflect.ValueOf((*_compress_flate_Reader)(nil)),\n\t\t\"_Resetter\": reflect.ValueOf((*_compress_flate_Resetter)(nil)),\n\t}\n}\n\n// _compress_flate_Reader is an interface wrapper for Reader type\ntype _compress_flate_Reader struct {\n\tIValue    interface{}\n\tWRead     func(p []byte) (n int, err error)\n\tWReadByte func() (byte, error)\n}\n\nfunc (W _compress_flate_Reader) Read(p []byte) (n int, err error) { return W.WRead(p) }\nfunc (W _compress_flate_Reader) ReadByte() (byte, error)          { return W.WReadByte() }\n\n// _compress_flate_Resetter is an interface wrapper for Resetter type\ntype _compress_flate_Resetter struct {\n\tIValue interface{}\n\tWReset func(r io.Reader, dict []byte) error\n}\n\nfunc (W _compress_flate_Resetter) Reset(r io.Reader, dict []byte) error { return W.WReset(r, dict) }\n"
  },
  {
    "path": "stdlib/go1_22_compress_gzip.go",
    "content": "// Code generated by 'yaegi extract compress/gzip'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"compress/gzip\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"compress/gzip/gzip\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BestCompression\":    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"BestSpeed\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DefaultCompression\": reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"ErrChecksum\":        reflect.ValueOf(&gzip.ErrChecksum).Elem(),\n\t\t\"ErrHeader\":          reflect.ValueOf(&gzip.ErrHeader).Elem(),\n\t\t\"HuffmanOnly\":        reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"NewReader\":          reflect.ValueOf(gzip.NewReader),\n\t\t\"NewWriter\":          reflect.ValueOf(gzip.NewWriter),\n\t\t\"NewWriterLevel\":     reflect.ValueOf(gzip.NewWriterLevel),\n\t\t\"NoCompression\":      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Header\": reflect.ValueOf((*gzip.Header)(nil)),\n\t\t\"Reader\": reflect.ValueOf((*gzip.Reader)(nil)),\n\t\t\"Writer\": reflect.ValueOf((*gzip.Writer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_compress_lzw.go",
    "content": "// Code generated by 'yaegi extract compress/lzw'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"compress/lzw\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"compress/lzw/lzw\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"LSB\":       reflect.ValueOf(lzw.LSB),\n\t\t\"MSB\":       reflect.ValueOf(lzw.MSB),\n\t\t\"NewReader\": reflect.ValueOf(lzw.NewReader),\n\t\t\"NewWriter\": reflect.ValueOf(lzw.NewWriter),\n\n\t\t// type definitions\n\t\t\"Order\":  reflect.ValueOf((*lzw.Order)(nil)),\n\t\t\"Reader\": reflect.ValueOf((*lzw.Reader)(nil)),\n\t\t\"Writer\": reflect.ValueOf((*lzw.Writer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_compress_zlib.go",
    "content": "// Code generated by 'yaegi extract compress/zlib'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"compress/zlib\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"io\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"compress/zlib/zlib\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BestCompression\":    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"BestSpeed\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DefaultCompression\": reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"ErrChecksum\":        reflect.ValueOf(&zlib.ErrChecksum).Elem(),\n\t\t\"ErrDictionary\":      reflect.ValueOf(&zlib.ErrDictionary).Elem(),\n\t\t\"ErrHeader\":          reflect.ValueOf(&zlib.ErrHeader).Elem(),\n\t\t\"HuffmanOnly\":        reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"NewReader\":          reflect.ValueOf(zlib.NewReader),\n\t\t\"NewReaderDict\":      reflect.ValueOf(zlib.NewReaderDict),\n\t\t\"NewWriter\":          reflect.ValueOf(zlib.NewWriter),\n\t\t\"NewWriterLevel\":     reflect.ValueOf(zlib.NewWriterLevel),\n\t\t\"NewWriterLevelDict\": reflect.ValueOf(zlib.NewWriterLevelDict),\n\t\t\"NoCompression\":      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Resetter\": reflect.ValueOf((*zlib.Resetter)(nil)),\n\t\t\"Writer\":   reflect.ValueOf((*zlib.Writer)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Resetter\": reflect.ValueOf((*_compress_zlib_Resetter)(nil)),\n\t}\n}\n\n// _compress_zlib_Resetter is an interface wrapper for Resetter type\ntype _compress_zlib_Resetter struct {\n\tIValue interface{}\n\tWReset func(r io.Reader, dict []byte) error\n}\n\nfunc (W _compress_zlib_Resetter) Reset(r io.Reader, dict []byte) error { return W.WReset(r, dict) }\n"
  },
  {
    "path": "stdlib/go1_22_container_heap.go",
    "content": "// Code generated by 'yaegi extract container/heap'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"container/heap\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"container/heap/heap\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Fix\":    reflect.ValueOf(heap.Fix),\n\t\t\"Init\":   reflect.ValueOf(heap.Init),\n\t\t\"Pop\":    reflect.ValueOf(heap.Pop),\n\t\t\"Push\":   reflect.ValueOf(heap.Push),\n\t\t\"Remove\": reflect.ValueOf(heap.Remove),\n\n\t\t// type definitions\n\t\t\"Interface\": reflect.ValueOf((*heap.Interface)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Interface\": reflect.ValueOf((*_container_heap_Interface)(nil)),\n\t}\n}\n\n// _container_heap_Interface is an interface wrapper for Interface type\ntype _container_heap_Interface struct {\n\tIValue interface{}\n\tWLen   func() int\n\tWLess  func(i int, j int) bool\n\tWPop   func() any\n\tWPush  func(x any)\n\tWSwap  func(i int, j int)\n}\n\nfunc (W _container_heap_Interface) Len() int               { return W.WLen() }\nfunc (W _container_heap_Interface) Less(i int, j int) bool { return W.WLess(i, j) }\nfunc (W _container_heap_Interface) Pop() any               { return W.WPop() }\nfunc (W _container_heap_Interface) Push(x any)             { W.WPush(x) }\nfunc (W _container_heap_Interface) Swap(i int, j int)      { W.WSwap(i, j) }\n"
  },
  {
    "path": "stdlib/go1_22_container_list.go",
    "content": "// Code generated by 'yaegi extract container/list'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"container/list\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"container/list/list\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"New\": reflect.ValueOf(list.New),\n\n\t\t// type definitions\n\t\t\"Element\": reflect.ValueOf((*list.Element)(nil)),\n\t\t\"List\":    reflect.ValueOf((*list.List)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_container_ring.go",
    "content": "// Code generated by 'yaegi extract container/ring'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"container/ring\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"container/ring/ring\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"New\": reflect.ValueOf(ring.New),\n\n\t\t// type definitions\n\t\t\"Ring\": reflect.ValueOf((*ring.Ring)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_context.go",
    "content": "// Code generated by 'yaegi extract context'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"context\"\n\t\"reflect\"\n\t\"time\"\n)\n\nfunc init() {\n\tSymbols[\"context/context\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AfterFunc\":         reflect.ValueOf(context.AfterFunc),\n\t\t\"Background\":        reflect.ValueOf(context.Background),\n\t\t\"Canceled\":          reflect.ValueOf(&context.Canceled).Elem(),\n\t\t\"Cause\":             reflect.ValueOf(context.Cause),\n\t\t\"DeadlineExceeded\":  reflect.ValueOf(&context.DeadlineExceeded).Elem(),\n\t\t\"TODO\":              reflect.ValueOf(context.TODO),\n\t\t\"WithCancel\":        reflect.ValueOf(context.WithCancel),\n\t\t\"WithCancelCause\":   reflect.ValueOf(context.WithCancelCause),\n\t\t\"WithDeadline\":      reflect.ValueOf(context.WithDeadline),\n\t\t\"WithDeadlineCause\": reflect.ValueOf(context.WithDeadlineCause),\n\t\t\"WithTimeout\":       reflect.ValueOf(context.WithTimeout),\n\t\t\"WithTimeoutCause\":  reflect.ValueOf(context.WithTimeoutCause),\n\t\t\"WithValue\":         reflect.ValueOf(context.WithValue),\n\t\t\"WithoutCancel\":     reflect.ValueOf(context.WithoutCancel),\n\n\t\t// type definitions\n\t\t\"CancelCauseFunc\": reflect.ValueOf((*context.CancelCauseFunc)(nil)),\n\t\t\"CancelFunc\":      reflect.ValueOf((*context.CancelFunc)(nil)),\n\t\t\"Context\":         reflect.ValueOf((*context.Context)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Context\": reflect.ValueOf((*_context_Context)(nil)),\n\t}\n}\n\n// _context_Context is an interface wrapper for Context type\ntype _context_Context struct {\n\tIValue    interface{}\n\tWDeadline func() (deadline time.Time, ok bool)\n\tWDone     func() <-chan struct{}\n\tWErr      func() error\n\tWValue    func(key any) any\n}\n\nfunc (W _context_Context) Deadline() (deadline time.Time, ok bool) { return W.WDeadline() }\nfunc (W _context_Context) Done() <-chan struct{}                   { return W.WDone() }\nfunc (W _context_Context) Err() error                              { return W.WErr() }\nfunc (W _context_Context) Value(key any) any                       { return W.WValue(key) }\n"
  },
  {
    "path": "stdlib/go1_22_crypto.go",
    "content": "// Code generated by 'yaegi extract crypto'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto\"\n\t\"io\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/crypto\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BLAKE2b_256\":  reflect.ValueOf(crypto.BLAKE2b_256),\n\t\t\"BLAKE2b_384\":  reflect.ValueOf(crypto.BLAKE2b_384),\n\t\t\"BLAKE2b_512\":  reflect.ValueOf(crypto.BLAKE2b_512),\n\t\t\"BLAKE2s_256\":  reflect.ValueOf(crypto.BLAKE2s_256),\n\t\t\"MD4\":          reflect.ValueOf(crypto.MD4),\n\t\t\"MD5\":          reflect.ValueOf(crypto.MD5),\n\t\t\"MD5SHA1\":      reflect.ValueOf(crypto.MD5SHA1),\n\t\t\"RIPEMD160\":    reflect.ValueOf(crypto.RIPEMD160),\n\t\t\"RegisterHash\": reflect.ValueOf(crypto.RegisterHash),\n\t\t\"SHA1\":         reflect.ValueOf(crypto.SHA1),\n\t\t\"SHA224\":       reflect.ValueOf(crypto.SHA224),\n\t\t\"SHA256\":       reflect.ValueOf(crypto.SHA256),\n\t\t\"SHA384\":       reflect.ValueOf(crypto.SHA384),\n\t\t\"SHA3_224\":     reflect.ValueOf(crypto.SHA3_224),\n\t\t\"SHA3_256\":     reflect.ValueOf(crypto.SHA3_256),\n\t\t\"SHA3_384\":     reflect.ValueOf(crypto.SHA3_384),\n\t\t\"SHA3_512\":     reflect.ValueOf(crypto.SHA3_512),\n\t\t\"SHA512\":       reflect.ValueOf(crypto.SHA512),\n\t\t\"SHA512_224\":   reflect.ValueOf(crypto.SHA512_224),\n\t\t\"SHA512_256\":   reflect.ValueOf(crypto.SHA512_256),\n\n\t\t// type definitions\n\t\t\"Decrypter\":     reflect.ValueOf((*crypto.Decrypter)(nil)),\n\t\t\"DecrypterOpts\": reflect.ValueOf((*crypto.DecrypterOpts)(nil)),\n\t\t\"Hash\":          reflect.ValueOf((*crypto.Hash)(nil)),\n\t\t\"PrivateKey\":    reflect.ValueOf((*crypto.PrivateKey)(nil)),\n\t\t\"PublicKey\":     reflect.ValueOf((*crypto.PublicKey)(nil)),\n\t\t\"Signer\":        reflect.ValueOf((*crypto.Signer)(nil)),\n\t\t\"SignerOpts\":    reflect.ValueOf((*crypto.SignerOpts)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Decrypter\":     reflect.ValueOf((*_crypto_Decrypter)(nil)),\n\t\t\"_DecrypterOpts\": reflect.ValueOf((*_crypto_DecrypterOpts)(nil)),\n\t\t\"_PrivateKey\":    reflect.ValueOf((*_crypto_PrivateKey)(nil)),\n\t\t\"_PublicKey\":     reflect.ValueOf((*_crypto_PublicKey)(nil)),\n\t\t\"_Signer\":        reflect.ValueOf((*_crypto_Signer)(nil)),\n\t\t\"_SignerOpts\":    reflect.ValueOf((*_crypto_SignerOpts)(nil)),\n\t}\n}\n\n// _crypto_Decrypter is an interface wrapper for Decrypter type\ntype _crypto_Decrypter struct {\n\tIValue   interface{}\n\tWDecrypt func(rand io.Reader, msg []byte, opts crypto.DecrypterOpts) (plaintext []byte, err error)\n\tWPublic  func() crypto.PublicKey\n}\n\nfunc (W _crypto_Decrypter) Decrypt(rand io.Reader, msg []byte, opts crypto.DecrypterOpts) (plaintext []byte, err error) {\n\treturn W.WDecrypt(rand, msg, opts)\n}\nfunc (W _crypto_Decrypter) Public() crypto.PublicKey { return W.WPublic() }\n\n// _crypto_DecrypterOpts is an interface wrapper for DecrypterOpts type\ntype _crypto_DecrypterOpts struct {\n\tIValue interface{}\n}\n\n// _crypto_PrivateKey is an interface wrapper for PrivateKey type\ntype _crypto_PrivateKey struct {\n\tIValue interface{}\n}\n\n// _crypto_PublicKey is an interface wrapper for PublicKey type\ntype _crypto_PublicKey struct {\n\tIValue interface{}\n}\n\n// _crypto_Signer is an interface wrapper for Signer type\ntype _crypto_Signer struct {\n\tIValue  interface{}\n\tWPublic func() crypto.PublicKey\n\tWSign   func(rand io.Reader, digest []byte, opts crypto.SignerOpts) (signature []byte, err error)\n}\n\nfunc (W _crypto_Signer) Public() crypto.PublicKey { return W.WPublic() }\nfunc (W _crypto_Signer) Sign(rand io.Reader, digest []byte, opts crypto.SignerOpts) (signature []byte, err error) {\n\treturn W.WSign(rand, digest, opts)\n}\n\n// _crypto_SignerOpts is an interface wrapper for SignerOpts type\ntype _crypto_SignerOpts struct {\n\tIValue    interface{}\n\tWHashFunc func() crypto.Hash\n}\n\nfunc (W _crypto_SignerOpts) HashFunc() crypto.Hash { return W.WHashFunc() }\n"
  },
  {
    "path": "stdlib/go1_22_crypto_aes.go",
    "content": "// Code generated by 'yaegi extract crypto/aes'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/aes\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/aes/aes\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BlockSize\": reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NewCipher\": reflect.ValueOf(aes.NewCipher),\n\n\t\t// type definitions\n\t\t\"KeySizeError\": reflect.ValueOf((*aes.KeySizeError)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_crypto_cipher.go",
    "content": "// Code generated by 'yaegi extract crypto/cipher'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/cipher\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/cipher/cipher\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"NewCBCDecrypter\":     reflect.ValueOf(cipher.NewCBCDecrypter),\n\t\t\"NewCBCEncrypter\":     reflect.ValueOf(cipher.NewCBCEncrypter),\n\t\t\"NewCFBDecrypter\":     reflect.ValueOf(cipher.NewCFBDecrypter),\n\t\t\"NewCFBEncrypter\":     reflect.ValueOf(cipher.NewCFBEncrypter),\n\t\t\"NewCTR\":              reflect.ValueOf(cipher.NewCTR),\n\t\t\"NewGCM\":              reflect.ValueOf(cipher.NewGCM),\n\t\t\"NewGCMWithNonceSize\": reflect.ValueOf(cipher.NewGCMWithNonceSize),\n\t\t\"NewGCMWithTagSize\":   reflect.ValueOf(cipher.NewGCMWithTagSize),\n\t\t\"NewOFB\":              reflect.ValueOf(cipher.NewOFB),\n\n\t\t// type definitions\n\t\t\"AEAD\":         reflect.ValueOf((*cipher.AEAD)(nil)),\n\t\t\"Block\":        reflect.ValueOf((*cipher.Block)(nil)),\n\t\t\"BlockMode\":    reflect.ValueOf((*cipher.BlockMode)(nil)),\n\t\t\"Stream\":       reflect.ValueOf((*cipher.Stream)(nil)),\n\t\t\"StreamReader\": reflect.ValueOf((*cipher.StreamReader)(nil)),\n\t\t\"StreamWriter\": reflect.ValueOf((*cipher.StreamWriter)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_AEAD\":      reflect.ValueOf((*_crypto_cipher_AEAD)(nil)),\n\t\t\"_Block\":     reflect.ValueOf((*_crypto_cipher_Block)(nil)),\n\t\t\"_BlockMode\": reflect.ValueOf((*_crypto_cipher_BlockMode)(nil)),\n\t\t\"_Stream\":    reflect.ValueOf((*_crypto_cipher_Stream)(nil)),\n\t}\n}\n\n// _crypto_cipher_AEAD is an interface wrapper for AEAD type\ntype _crypto_cipher_AEAD struct {\n\tIValue     interface{}\n\tWNonceSize func() int\n\tWOpen      func(dst []byte, nonce []byte, ciphertext []byte, additionalData []byte) ([]byte, error)\n\tWOverhead  func() int\n\tWSeal      func(dst []byte, nonce []byte, plaintext []byte, additionalData []byte) []byte\n}\n\nfunc (W _crypto_cipher_AEAD) NonceSize() int { return W.WNonceSize() }\nfunc (W _crypto_cipher_AEAD) Open(dst []byte, nonce []byte, ciphertext []byte, additionalData []byte) ([]byte, error) {\n\treturn W.WOpen(dst, nonce, ciphertext, additionalData)\n}\nfunc (W _crypto_cipher_AEAD) Overhead() int { return W.WOverhead() }\nfunc (W _crypto_cipher_AEAD) Seal(dst []byte, nonce []byte, plaintext []byte, additionalData []byte) []byte {\n\treturn W.WSeal(dst, nonce, plaintext, additionalData)\n}\n\n// _crypto_cipher_Block is an interface wrapper for Block type\ntype _crypto_cipher_Block struct {\n\tIValue     interface{}\n\tWBlockSize func() int\n\tWDecrypt   func(dst []byte, src []byte)\n\tWEncrypt   func(dst []byte, src []byte)\n}\n\nfunc (W _crypto_cipher_Block) BlockSize() int                 { return W.WBlockSize() }\nfunc (W _crypto_cipher_Block) Decrypt(dst []byte, src []byte) { W.WDecrypt(dst, src) }\nfunc (W _crypto_cipher_Block) Encrypt(dst []byte, src []byte) { W.WEncrypt(dst, src) }\n\n// _crypto_cipher_BlockMode is an interface wrapper for BlockMode type\ntype _crypto_cipher_BlockMode struct {\n\tIValue       interface{}\n\tWBlockSize   func() int\n\tWCryptBlocks func(dst []byte, src []byte)\n}\n\nfunc (W _crypto_cipher_BlockMode) BlockSize() int                     { return W.WBlockSize() }\nfunc (W _crypto_cipher_BlockMode) CryptBlocks(dst []byte, src []byte) { W.WCryptBlocks(dst, src) }\n\n// _crypto_cipher_Stream is an interface wrapper for Stream type\ntype _crypto_cipher_Stream struct {\n\tIValue        interface{}\n\tWXORKeyStream func(dst []byte, src []byte)\n}\n\nfunc (W _crypto_cipher_Stream) XORKeyStream(dst []byte, src []byte) { W.WXORKeyStream(dst, src) }\n"
  },
  {
    "path": "stdlib/go1_22_crypto_des.go",
    "content": "// Code generated by 'yaegi extract crypto/des'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/des\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/des/des\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BlockSize\":          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NewCipher\":          reflect.ValueOf(des.NewCipher),\n\t\t\"NewTripleDESCipher\": reflect.ValueOf(des.NewTripleDESCipher),\n\n\t\t// type definitions\n\t\t\"KeySizeError\": reflect.ValueOf((*des.KeySizeError)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_crypto_dsa.go",
    "content": "// Code generated by 'yaegi extract crypto/dsa'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/dsa\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/dsa/dsa\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ErrInvalidPublicKey\": reflect.ValueOf(&dsa.ErrInvalidPublicKey).Elem(),\n\t\t\"GenerateKey\":         reflect.ValueOf(dsa.GenerateKey),\n\t\t\"GenerateParameters\":  reflect.ValueOf(dsa.GenerateParameters),\n\t\t\"L1024N160\":           reflect.ValueOf(dsa.L1024N160),\n\t\t\"L2048N224\":           reflect.ValueOf(dsa.L2048N224),\n\t\t\"L2048N256\":           reflect.ValueOf(dsa.L2048N256),\n\t\t\"L3072N256\":           reflect.ValueOf(dsa.L3072N256),\n\t\t\"Sign\":                reflect.ValueOf(dsa.Sign),\n\t\t\"Verify\":              reflect.ValueOf(dsa.Verify),\n\n\t\t// type definitions\n\t\t\"ParameterSizes\": reflect.ValueOf((*dsa.ParameterSizes)(nil)),\n\t\t\"Parameters\":     reflect.ValueOf((*dsa.Parameters)(nil)),\n\t\t\"PrivateKey\":     reflect.ValueOf((*dsa.PrivateKey)(nil)),\n\t\t\"PublicKey\":      reflect.ValueOf((*dsa.PublicKey)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_crypto_ecdh.go",
    "content": "// Code generated by 'yaegi extract crypto/ecdh'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/ecdh\"\n\t\"io\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/ecdh/ecdh\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"P256\":   reflect.ValueOf(ecdh.P256),\n\t\t\"P384\":   reflect.ValueOf(ecdh.P384),\n\t\t\"P521\":   reflect.ValueOf(ecdh.P521),\n\t\t\"X25519\": reflect.ValueOf(ecdh.X25519),\n\n\t\t// type definitions\n\t\t\"Curve\":      reflect.ValueOf((*ecdh.Curve)(nil)),\n\t\t\"PrivateKey\": reflect.ValueOf((*ecdh.PrivateKey)(nil)),\n\t\t\"PublicKey\":  reflect.ValueOf((*ecdh.PublicKey)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Curve\": reflect.ValueOf((*_crypto_ecdh_Curve)(nil)),\n\t}\n}\n\n// _crypto_ecdh_Curve is an interface wrapper for Curve type\ntype _crypto_ecdh_Curve struct {\n\tIValue         interface{}\n\tWGenerateKey   func(rand io.Reader) (*ecdh.PrivateKey, error)\n\tWNewPrivateKey func(key []byte) (*ecdh.PrivateKey, error)\n\tWNewPublicKey  func(key []byte) (*ecdh.PublicKey, error)\n}\n\nfunc (W _crypto_ecdh_Curve) GenerateKey(rand io.Reader) (*ecdh.PrivateKey, error) {\n\treturn W.WGenerateKey(rand)\n}\nfunc (W _crypto_ecdh_Curve) NewPrivateKey(key []byte) (*ecdh.PrivateKey, error) {\n\treturn W.WNewPrivateKey(key)\n}\nfunc (W _crypto_ecdh_Curve) NewPublicKey(key []byte) (*ecdh.PublicKey, error) {\n\treturn W.WNewPublicKey(key)\n}\n"
  },
  {
    "path": "stdlib/go1_22_crypto_ecdsa.go",
    "content": "// Code generated by 'yaegi extract crypto/ecdsa'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/ecdsa\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/ecdsa/ecdsa\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"GenerateKey\": reflect.ValueOf(ecdsa.GenerateKey),\n\t\t\"Sign\":        reflect.ValueOf(ecdsa.Sign),\n\t\t\"SignASN1\":    reflect.ValueOf(ecdsa.SignASN1),\n\t\t\"Verify\":      reflect.ValueOf(ecdsa.Verify),\n\t\t\"VerifyASN1\":  reflect.ValueOf(ecdsa.VerifyASN1),\n\n\t\t// type definitions\n\t\t\"PrivateKey\": reflect.ValueOf((*ecdsa.PrivateKey)(nil)),\n\t\t\"PublicKey\":  reflect.ValueOf((*ecdsa.PublicKey)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_crypto_ed25519.go",
    "content": "// Code generated by 'yaegi extract crypto/ed25519'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/ed25519\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/ed25519/ed25519\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"GenerateKey\":       reflect.ValueOf(ed25519.GenerateKey),\n\t\t\"NewKeyFromSeed\":    reflect.ValueOf(ed25519.NewKeyFromSeed),\n\t\t\"PrivateKeySize\":    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PublicKeySize\":     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SeedSize\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"Sign\":              reflect.ValueOf(ed25519.Sign),\n\t\t\"SignatureSize\":     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Verify\":            reflect.ValueOf(ed25519.Verify),\n\t\t\"VerifyWithOptions\": reflect.ValueOf(ed25519.VerifyWithOptions),\n\n\t\t// type definitions\n\t\t\"Options\":    reflect.ValueOf((*ed25519.Options)(nil)),\n\t\t\"PrivateKey\": reflect.ValueOf((*ed25519.PrivateKey)(nil)),\n\t\t\"PublicKey\":  reflect.ValueOf((*ed25519.PublicKey)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_crypto_elliptic.go",
    "content": "// Code generated by 'yaegi extract crypto/elliptic'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/elliptic\"\n\t\"math/big\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/elliptic/elliptic\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"GenerateKey\":         reflect.ValueOf(elliptic.GenerateKey),\n\t\t\"Marshal\":             reflect.ValueOf(elliptic.Marshal),\n\t\t\"MarshalCompressed\":   reflect.ValueOf(elliptic.MarshalCompressed),\n\t\t\"P224\":                reflect.ValueOf(elliptic.P224),\n\t\t\"P256\":                reflect.ValueOf(elliptic.P256),\n\t\t\"P384\":                reflect.ValueOf(elliptic.P384),\n\t\t\"P521\":                reflect.ValueOf(elliptic.P521),\n\t\t\"Unmarshal\":           reflect.ValueOf(elliptic.Unmarshal),\n\t\t\"UnmarshalCompressed\": reflect.ValueOf(elliptic.UnmarshalCompressed),\n\n\t\t// type definitions\n\t\t\"Curve\":       reflect.ValueOf((*elliptic.Curve)(nil)),\n\t\t\"CurveParams\": reflect.ValueOf((*elliptic.CurveParams)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Curve\": reflect.ValueOf((*_crypto_elliptic_Curve)(nil)),\n\t}\n}\n\n// _crypto_elliptic_Curve is an interface wrapper for Curve type\ntype _crypto_elliptic_Curve struct {\n\tIValue          interface{}\n\tWAdd            func(x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.Int, y *big.Int)\n\tWDouble         func(x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int)\n\tWIsOnCurve      func(x *big.Int, y *big.Int) bool\n\tWParams         func() *elliptic.CurveParams\n\tWScalarBaseMult func(k []byte) (x *big.Int, y *big.Int)\n\tWScalarMult     func(x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *big.Int)\n}\n\nfunc (W _crypto_elliptic_Curve) Add(x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.Int, y *big.Int) {\n\treturn W.WAdd(x1, y1, x2, y2)\n}\nfunc (W _crypto_elliptic_Curve) Double(x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int) {\n\treturn W.WDouble(x1, y1)\n}\nfunc (W _crypto_elliptic_Curve) IsOnCurve(x *big.Int, y *big.Int) bool { return W.WIsOnCurve(x, y) }\nfunc (W _crypto_elliptic_Curve) Params() *elliptic.CurveParams         { return W.WParams() }\nfunc (W _crypto_elliptic_Curve) ScalarBaseMult(k []byte) (x *big.Int, y *big.Int) {\n\treturn W.WScalarBaseMult(k)\n}\nfunc (W _crypto_elliptic_Curve) ScalarMult(x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *big.Int) {\n\treturn W.WScalarMult(x1, y1, k)\n}\n"
  },
  {
    "path": "stdlib/go1_22_crypto_hmac.go",
    "content": "// Code generated by 'yaegi extract crypto/hmac'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/hmac\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/hmac/hmac\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Equal\": reflect.ValueOf(hmac.Equal),\n\t\t\"New\":   reflect.ValueOf(hmac.New),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_crypto_md5.go",
    "content": "// Code generated by 'yaegi extract crypto/md5'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/md5\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/md5/md5\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BlockSize\": reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"New\":       reflect.ValueOf(md5.New),\n\t\t\"Size\":      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"Sum\":       reflect.ValueOf(md5.Sum),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_crypto_rand.go",
    "content": "// Code generated by 'yaegi extract crypto/rand'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/rand\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/rand/rand\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Int\":    reflect.ValueOf(rand.Int),\n\t\t\"Prime\":  reflect.ValueOf(rand.Prime),\n\t\t\"Read\":   reflect.ValueOf(rand.Read),\n\t\t\"Reader\": reflect.ValueOf(&rand.Reader).Elem(),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_crypto_rc4.go",
    "content": "// Code generated by 'yaegi extract crypto/rc4'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/rc4\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/rc4/rc4\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"NewCipher\": reflect.ValueOf(rc4.NewCipher),\n\n\t\t// type definitions\n\t\t\"Cipher\":       reflect.ValueOf((*rc4.Cipher)(nil)),\n\t\t\"KeySizeError\": reflect.ValueOf((*rc4.KeySizeError)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_crypto_rsa.go",
    "content": "// Code generated by 'yaegi extract crypto/rsa'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/rsa\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/rsa/rsa\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"DecryptOAEP\":               reflect.ValueOf(rsa.DecryptOAEP),\n\t\t\"DecryptPKCS1v15\":           reflect.ValueOf(rsa.DecryptPKCS1v15),\n\t\t\"DecryptPKCS1v15SessionKey\": reflect.ValueOf(rsa.DecryptPKCS1v15SessionKey),\n\t\t\"EncryptOAEP\":               reflect.ValueOf(rsa.EncryptOAEP),\n\t\t\"EncryptPKCS1v15\":           reflect.ValueOf(rsa.EncryptPKCS1v15),\n\t\t\"ErrDecryption\":             reflect.ValueOf(&rsa.ErrDecryption).Elem(),\n\t\t\"ErrMessageTooLong\":         reflect.ValueOf(&rsa.ErrMessageTooLong).Elem(),\n\t\t\"ErrVerification\":           reflect.ValueOf(&rsa.ErrVerification).Elem(),\n\t\t\"GenerateKey\":               reflect.ValueOf(rsa.GenerateKey),\n\t\t\"GenerateMultiPrimeKey\":     reflect.ValueOf(rsa.GenerateMultiPrimeKey),\n\t\t\"PSSSaltLengthAuto\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PSSSaltLengthEqualsHash\":   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"SignPKCS1v15\":              reflect.ValueOf(rsa.SignPKCS1v15),\n\t\t\"SignPSS\":                   reflect.ValueOf(rsa.SignPSS),\n\t\t\"VerifyPKCS1v15\":            reflect.ValueOf(rsa.VerifyPKCS1v15),\n\t\t\"VerifyPSS\":                 reflect.ValueOf(rsa.VerifyPSS),\n\n\t\t// type definitions\n\t\t\"CRTValue\":               reflect.ValueOf((*rsa.CRTValue)(nil)),\n\t\t\"OAEPOptions\":            reflect.ValueOf((*rsa.OAEPOptions)(nil)),\n\t\t\"PKCS1v15DecryptOptions\": reflect.ValueOf((*rsa.PKCS1v15DecryptOptions)(nil)),\n\t\t\"PSSOptions\":             reflect.ValueOf((*rsa.PSSOptions)(nil)),\n\t\t\"PrecomputedValues\":      reflect.ValueOf((*rsa.PrecomputedValues)(nil)),\n\t\t\"PrivateKey\":             reflect.ValueOf((*rsa.PrivateKey)(nil)),\n\t\t\"PublicKey\":              reflect.ValueOf((*rsa.PublicKey)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_crypto_sha1.go",
    "content": "// Code generated by 'yaegi extract crypto/sha1'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/sha1\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/sha1/sha1\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BlockSize\": reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"New\":       reflect.ValueOf(sha1.New),\n\t\t\"Size\":      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"Sum\":       reflect.ValueOf(sha1.Sum),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_crypto_sha256.go",
    "content": "// Code generated by 'yaegi extract crypto/sha256'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/sha256\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/sha256/sha256\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BlockSize\": reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"New\":       reflect.ValueOf(sha256.New),\n\t\t\"New224\":    reflect.ValueOf(sha256.New224),\n\t\t\"Size\":      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"Size224\":   reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"Sum224\":    reflect.ValueOf(sha256.Sum224),\n\t\t\"Sum256\":    reflect.ValueOf(sha256.Sum256),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_crypto_sha512.go",
    "content": "// Code generated by 'yaegi extract crypto/sha512'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/sha512\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/sha512/sha512\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BlockSize\":  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"New\":        reflect.ValueOf(sha512.New),\n\t\t\"New384\":     reflect.ValueOf(sha512.New384),\n\t\t\"New512_224\": reflect.ValueOf(sha512.New512_224),\n\t\t\"New512_256\": reflect.ValueOf(sha512.New512_256),\n\t\t\"Size\":       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Size224\":    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"Size256\":    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"Size384\":    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"Sum384\":     reflect.ValueOf(sha512.Sum384),\n\t\t\"Sum512\":     reflect.ValueOf(sha512.Sum512),\n\t\t\"Sum512_224\": reflect.ValueOf(sha512.Sum512_224),\n\t\t\"Sum512_256\": reflect.ValueOf(sha512.Sum512_256),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_crypto_subtle.go",
    "content": "// Code generated by 'yaegi extract crypto/subtle'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/subtle\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/subtle/subtle\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ConstantTimeByteEq\":   reflect.ValueOf(subtle.ConstantTimeByteEq),\n\t\t\"ConstantTimeCompare\":  reflect.ValueOf(subtle.ConstantTimeCompare),\n\t\t\"ConstantTimeCopy\":     reflect.ValueOf(subtle.ConstantTimeCopy),\n\t\t\"ConstantTimeEq\":       reflect.ValueOf(subtle.ConstantTimeEq),\n\t\t\"ConstantTimeLessOrEq\": reflect.ValueOf(subtle.ConstantTimeLessOrEq),\n\t\t\"ConstantTimeSelect\":   reflect.ValueOf(subtle.ConstantTimeSelect),\n\t\t\"XORBytes\":             reflect.ValueOf(subtle.XORBytes),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_crypto_tls.go",
    "content": "// Code generated by 'yaegi extract crypto/tls'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/tls\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/tls/tls\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"CipherSuiteName\":                               reflect.ValueOf(tls.CipherSuiteName),\n\t\t\"CipherSuites\":                                  reflect.ValueOf(tls.CipherSuites),\n\t\t\"Client\":                                        reflect.ValueOf(tls.Client),\n\t\t\"CurveP256\":                                     reflect.ValueOf(tls.CurveP256),\n\t\t\"CurveP384\":                                     reflect.ValueOf(tls.CurveP384),\n\t\t\"CurveP521\":                                     reflect.ValueOf(tls.CurveP521),\n\t\t\"Dial\":                                          reflect.ValueOf(tls.Dial),\n\t\t\"DialWithDialer\":                                reflect.ValueOf(tls.DialWithDialer),\n\t\t\"ECDSAWithP256AndSHA256\":                        reflect.ValueOf(tls.ECDSAWithP256AndSHA256),\n\t\t\"ECDSAWithP384AndSHA384\":                        reflect.ValueOf(tls.ECDSAWithP384AndSHA384),\n\t\t\"ECDSAWithP521AndSHA512\":                        reflect.ValueOf(tls.ECDSAWithP521AndSHA512),\n\t\t\"ECDSAWithSHA1\":                                 reflect.ValueOf(tls.ECDSAWithSHA1),\n\t\t\"Ed25519\":                                       reflect.ValueOf(tls.Ed25519),\n\t\t\"InsecureCipherSuites\":                          reflect.ValueOf(tls.InsecureCipherSuites),\n\t\t\"Listen\":                                        reflect.ValueOf(tls.Listen),\n\t\t\"LoadX509KeyPair\":                               reflect.ValueOf(tls.LoadX509KeyPair),\n\t\t\"NewLRUClientSessionCache\":                      reflect.ValueOf(tls.NewLRUClientSessionCache),\n\t\t\"NewListener\":                                   reflect.ValueOf(tls.NewListener),\n\t\t\"NewResumptionState\":                            reflect.ValueOf(tls.NewResumptionState),\n\t\t\"NoClientCert\":                                  reflect.ValueOf(tls.NoClientCert),\n\t\t\"PKCS1WithSHA1\":                                 reflect.ValueOf(tls.PKCS1WithSHA1),\n\t\t\"PKCS1WithSHA256\":                               reflect.ValueOf(tls.PKCS1WithSHA256),\n\t\t\"PKCS1WithSHA384\":                               reflect.ValueOf(tls.PKCS1WithSHA384),\n\t\t\"PKCS1WithSHA512\":                               reflect.ValueOf(tls.PKCS1WithSHA512),\n\t\t\"PSSWithSHA256\":                                 reflect.ValueOf(tls.PSSWithSHA256),\n\t\t\"PSSWithSHA384\":                                 reflect.ValueOf(tls.PSSWithSHA384),\n\t\t\"PSSWithSHA512\":                                 reflect.ValueOf(tls.PSSWithSHA512),\n\t\t\"ParseSessionState\":                             reflect.ValueOf(tls.ParseSessionState),\n\t\t\"QUICClient\":                                    reflect.ValueOf(tls.QUICClient),\n\t\t\"QUICEncryptionLevelApplication\":                reflect.ValueOf(tls.QUICEncryptionLevelApplication),\n\t\t\"QUICEncryptionLevelEarly\":                      reflect.ValueOf(tls.QUICEncryptionLevelEarly),\n\t\t\"QUICEncryptionLevelHandshake\":                  reflect.ValueOf(tls.QUICEncryptionLevelHandshake),\n\t\t\"QUICEncryptionLevelInitial\":                    reflect.ValueOf(tls.QUICEncryptionLevelInitial),\n\t\t\"QUICHandshakeDone\":                             reflect.ValueOf(tls.QUICHandshakeDone),\n\t\t\"QUICNoEvent\":                                   reflect.ValueOf(tls.QUICNoEvent),\n\t\t\"QUICRejectedEarlyData\":                         reflect.ValueOf(tls.QUICRejectedEarlyData),\n\t\t\"QUICServer\":                                    reflect.ValueOf(tls.QUICServer),\n\t\t\"QUICSetReadSecret\":                             reflect.ValueOf(tls.QUICSetReadSecret),\n\t\t\"QUICSetWriteSecret\":                            reflect.ValueOf(tls.QUICSetWriteSecret),\n\t\t\"QUICTransportParameters\":                       reflect.ValueOf(tls.QUICTransportParameters),\n\t\t\"QUICTransportParametersRequired\":               reflect.ValueOf(tls.QUICTransportParametersRequired),\n\t\t\"QUICWriteData\":                                 reflect.ValueOf(tls.QUICWriteData),\n\t\t\"RenegotiateFreelyAsClient\":                     reflect.ValueOf(tls.RenegotiateFreelyAsClient),\n\t\t\"RenegotiateNever\":                              reflect.ValueOf(tls.RenegotiateNever),\n\t\t\"RenegotiateOnceAsClient\":                       reflect.ValueOf(tls.RenegotiateOnceAsClient),\n\t\t\"RequestClientCert\":                             reflect.ValueOf(tls.RequestClientCert),\n\t\t\"RequireAndVerifyClientCert\":                    reflect.ValueOf(tls.RequireAndVerifyClientCert),\n\t\t\"RequireAnyClientCert\":                          reflect.ValueOf(tls.RequireAnyClientCert),\n\t\t\"Server\":                                        reflect.ValueOf(tls.Server),\n\t\t\"TLS_AES_128_GCM_SHA256\":                        reflect.ValueOf(tls.TLS_AES_128_GCM_SHA256),\n\t\t\"TLS_AES_256_GCM_SHA384\":                        reflect.ValueOf(tls.TLS_AES_256_GCM_SHA384),\n\t\t\"TLS_CHACHA20_POLY1305_SHA256\":                  reflect.ValueOf(tls.TLS_CHACHA20_POLY1305_SHA256),\n\t\t\"TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA\":          reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA),\n\t\t\"TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256\":       reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256),\n\t\t\"TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256\":       reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256),\n\t\t\"TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA\":          reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA),\n\t\t\"TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384\":       reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384),\n\t\t\"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305\":        reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305),\n\t\t\"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256\": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256),\n\t\t\"TLS_ECDHE_ECDSA_WITH_RC4_128_SHA\":              reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_RC4_128_SHA),\n\t\t\"TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA\":           reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA),\n\t\t\"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA\":            reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA),\n\t\t\"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256\":         reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256),\n\t\t\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\":         reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256),\n\t\t\"TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA\":            reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA),\n\t\t\"TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384\":         reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384),\n\t\t\"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305\":          reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305),\n\t\t\"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256\":   reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256),\n\t\t\"TLS_ECDHE_RSA_WITH_RC4_128_SHA\":                reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_RC4_128_SHA),\n\t\t\"TLS_FALLBACK_SCSV\":                             reflect.ValueOf(tls.TLS_FALLBACK_SCSV),\n\t\t\"TLS_RSA_WITH_3DES_EDE_CBC_SHA\":                 reflect.ValueOf(tls.TLS_RSA_WITH_3DES_EDE_CBC_SHA),\n\t\t\"TLS_RSA_WITH_AES_128_CBC_SHA\":                  reflect.ValueOf(tls.TLS_RSA_WITH_AES_128_CBC_SHA),\n\t\t\"TLS_RSA_WITH_AES_128_CBC_SHA256\":               reflect.ValueOf(tls.TLS_RSA_WITH_AES_128_CBC_SHA256),\n\t\t\"TLS_RSA_WITH_AES_128_GCM_SHA256\":               reflect.ValueOf(tls.TLS_RSA_WITH_AES_128_GCM_SHA256),\n\t\t\"TLS_RSA_WITH_AES_256_CBC_SHA\":                  reflect.ValueOf(tls.TLS_RSA_WITH_AES_256_CBC_SHA),\n\t\t\"TLS_RSA_WITH_AES_256_GCM_SHA384\":               reflect.ValueOf(tls.TLS_RSA_WITH_AES_256_GCM_SHA384),\n\t\t\"TLS_RSA_WITH_RC4_128_SHA\":                      reflect.ValueOf(tls.TLS_RSA_WITH_RC4_128_SHA),\n\t\t\"VerifyClientCertIfGiven\":                       reflect.ValueOf(tls.VerifyClientCertIfGiven),\n\t\t\"VersionName\":                                   reflect.ValueOf(tls.VersionName),\n\t\t\"VersionSSL30\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"VersionTLS10\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"VersionTLS11\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"VersionTLS12\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"VersionTLS13\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"X25519\":                                        reflect.ValueOf(tls.X25519),\n\t\t\"X509KeyPair\":                                   reflect.ValueOf(tls.X509KeyPair),\n\n\t\t// type definitions\n\t\t\"AlertError\":                   reflect.ValueOf((*tls.AlertError)(nil)),\n\t\t\"Certificate\":                  reflect.ValueOf((*tls.Certificate)(nil)),\n\t\t\"CertificateRequestInfo\":       reflect.ValueOf((*tls.CertificateRequestInfo)(nil)),\n\t\t\"CertificateVerificationError\": reflect.ValueOf((*tls.CertificateVerificationError)(nil)),\n\t\t\"CipherSuite\":                  reflect.ValueOf((*tls.CipherSuite)(nil)),\n\t\t\"ClientAuthType\":               reflect.ValueOf((*tls.ClientAuthType)(nil)),\n\t\t\"ClientHelloInfo\":              reflect.ValueOf((*tls.ClientHelloInfo)(nil)),\n\t\t\"ClientSessionCache\":           reflect.ValueOf((*tls.ClientSessionCache)(nil)),\n\t\t\"ClientSessionState\":           reflect.ValueOf((*tls.ClientSessionState)(nil)),\n\t\t\"Config\":                       reflect.ValueOf((*tls.Config)(nil)),\n\t\t\"Conn\":                         reflect.ValueOf((*tls.Conn)(nil)),\n\t\t\"ConnectionState\":              reflect.ValueOf((*tls.ConnectionState)(nil)),\n\t\t\"CurveID\":                      reflect.ValueOf((*tls.CurveID)(nil)),\n\t\t\"Dialer\":                       reflect.ValueOf((*tls.Dialer)(nil)),\n\t\t\"QUICConfig\":                   reflect.ValueOf((*tls.QUICConfig)(nil)),\n\t\t\"QUICConn\":                     reflect.ValueOf((*tls.QUICConn)(nil)),\n\t\t\"QUICEncryptionLevel\":          reflect.ValueOf((*tls.QUICEncryptionLevel)(nil)),\n\t\t\"QUICEvent\":                    reflect.ValueOf((*tls.QUICEvent)(nil)),\n\t\t\"QUICEventKind\":                reflect.ValueOf((*tls.QUICEventKind)(nil)),\n\t\t\"QUICSessionTicketOptions\":     reflect.ValueOf((*tls.QUICSessionTicketOptions)(nil)),\n\t\t\"RecordHeaderError\":            reflect.ValueOf((*tls.RecordHeaderError)(nil)),\n\t\t\"RenegotiationSupport\":         reflect.ValueOf((*tls.RenegotiationSupport)(nil)),\n\t\t\"SessionState\":                 reflect.ValueOf((*tls.SessionState)(nil)),\n\t\t\"SignatureScheme\":              reflect.ValueOf((*tls.SignatureScheme)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_ClientSessionCache\": reflect.ValueOf((*_crypto_tls_ClientSessionCache)(nil)),\n\t}\n}\n\n// _crypto_tls_ClientSessionCache is an interface wrapper for ClientSessionCache type\ntype _crypto_tls_ClientSessionCache struct {\n\tIValue interface{}\n\tWGet   func(sessionKey string) (session *tls.ClientSessionState, ok bool)\n\tWPut   func(sessionKey string, cs *tls.ClientSessionState)\n}\n\nfunc (W _crypto_tls_ClientSessionCache) Get(sessionKey string) (session *tls.ClientSessionState, ok bool) {\n\treturn W.WGet(sessionKey)\n}\nfunc (W _crypto_tls_ClientSessionCache) Put(sessionKey string, cs *tls.ClientSessionState) {\n\tW.WPut(sessionKey, cs)\n}\n"
  },
  {
    "path": "stdlib/go1_22_crypto_x509.go",
    "content": "// Code generated by 'yaegi extract crypto/x509'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/x509\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/x509/x509\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"CANotAuthorizedForExtKeyUsage\":             reflect.ValueOf(x509.CANotAuthorizedForExtKeyUsage),\n\t\t\"CANotAuthorizedForThisName\":                reflect.ValueOf(x509.CANotAuthorizedForThisName),\n\t\t\"CreateCertificate\":                         reflect.ValueOf(x509.CreateCertificate),\n\t\t\"CreateCertificateRequest\":                  reflect.ValueOf(x509.CreateCertificateRequest),\n\t\t\"CreateRevocationList\":                      reflect.ValueOf(x509.CreateRevocationList),\n\t\t\"DSA\":                                       reflect.ValueOf(x509.DSA),\n\t\t\"DSAWithSHA1\":                               reflect.ValueOf(x509.DSAWithSHA1),\n\t\t\"DSAWithSHA256\":                             reflect.ValueOf(x509.DSAWithSHA256),\n\t\t\"DecryptPEMBlock\":                           reflect.ValueOf(x509.DecryptPEMBlock),\n\t\t\"ECDSA\":                                     reflect.ValueOf(x509.ECDSA),\n\t\t\"ECDSAWithSHA1\":                             reflect.ValueOf(x509.ECDSAWithSHA1),\n\t\t\"ECDSAWithSHA256\":                           reflect.ValueOf(x509.ECDSAWithSHA256),\n\t\t\"ECDSAWithSHA384\":                           reflect.ValueOf(x509.ECDSAWithSHA384),\n\t\t\"ECDSAWithSHA512\":                           reflect.ValueOf(x509.ECDSAWithSHA512),\n\t\t\"Ed25519\":                                   reflect.ValueOf(x509.Ed25519),\n\t\t\"EncryptPEMBlock\":                           reflect.ValueOf(x509.EncryptPEMBlock),\n\t\t\"ErrUnsupportedAlgorithm\":                   reflect.ValueOf(&x509.ErrUnsupportedAlgorithm).Elem(),\n\t\t\"Expired\":                                   reflect.ValueOf(x509.Expired),\n\t\t\"ExtKeyUsageAny\":                            reflect.ValueOf(x509.ExtKeyUsageAny),\n\t\t\"ExtKeyUsageClientAuth\":                     reflect.ValueOf(x509.ExtKeyUsageClientAuth),\n\t\t\"ExtKeyUsageCodeSigning\":                    reflect.ValueOf(x509.ExtKeyUsageCodeSigning),\n\t\t\"ExtKeyUsageEmailProtection\":                reflect.ValueOf(x509.ExtKeyUsageEmailProtection),\n\t\t\"ExtKeyUsageIPSECEndSystem\":                 reflect.ValueOf(x509.ExtKeyUsageIPSECEndSystem),\n\t\t\"ExtKeyUsageIPSECTunnel\":                    reflect.ValueOf(x509.ExtKeyUsageIPSECTunnel),\n\t\t\"ExtKeyUsageIPSECUser\":                      reflect.ValueOf(x509.ExtKeyUsageIPSECUser),\n\t\t\"ExtKeyUsageMicrosoftCommercialCodeSigning\": reflect.ValueOf(x509.ExtKeyUsageMicrosoftCommercialCodeSigning),\n\t\t\"ExtKeyUsageMicrosoftKernelCodeSigning\":     reflect.ValueOf(x509.ExtKeyUsageMicrosoftKernelCodeSigning),\n\t\t\"ExtKeyUsageMicrosoftServerGatedCrypto\":     reflect.ValueOf(x509.ExtKeyUsageMicrosoftServerGatedCrypto),\n\t\t\"ExtKeyUsageNetscapeServerGatedCrypto\":      reflect.ValueOf(x509.ExtKeyUsageNetscapeServerGatedCrypto),\n\t\t\"ExtKeyUsageOCSPSigning\":                    reflect.ValueOf(x509.ExtKeyUsageOCSPSigning),\n\t\t\"ExtKeyUsageServerAuth\":                     reflect.ValueOf(x509.ExtKeyUsageServerAuth),\n\t\t\"ExtKeyUsageTimeStamping\":                   reflect.ValueOf(x509.ExtKeyUsageTimeStamping),\n\t\t\"IncompatibleUsage\":                         reflect.ValueOf(x509.IncompatibleUsage),\n\t\t\"IncorrectPasswordError\":                    reflect.ValueOf(&x509.IncorrectPasswordError).Elem(),\n\t\t\"IsEncryptedPEMBlock\":                       reflect.ValueOf(x509.IsEncryptedPEMBlock),\n\t\t\"KeyUsageCRLSign\":                           reflect.ValueOf(x509.KeyUsageCRLSign),\n\t\t\"KeyUsageCertSign\":                          reflect.ValueOf(x509.KeyUsageCertSign),\n\t\t\"KeyUsageContentCommitment\":                 reflect.ValueOf(x509.KeyUsageContentCommitment),\n\t\t\"KeyUsageDataEncipherment\":                  reflect.ValueOf(x509.KeyUsageDataEncipherment),\n\t\t\"KeyUsageDecipherOnly\":                      reflect.ValueOf(x509.KeyUsageDecipherOnly),\n\t\t\"KeyUsageDigitalSignature\":                  reflect.ValueOf(x509.KeyUsageDigitalSignature),\n\t\t\"KeyUsageEncipherOnly\":                      reflect.ValueOf(x509.KeyUsageEncipherOnly),\n\t\t\"KeyUsageKeyAgreement\":                      reflect.ValueOf(x509.KeyUsageKeyAgreement),\n\t\t\"KeyUsageKeyEncipherment\":                   reflect.ValueOf(x509.KeyUsageKeyEncipherment),\n\t\t\"MD2WithRSA\":                                reflect.ValueOf(x509.MD2WithRSA),\n\t\t\"MD5WithRSA\":                                reflect.ValueOf(x509.MD5WithRSA),\n\t\t\"MarshalECPrivateKey\":                       reflect.ValueOf(x509.MarshalECPrivateKey),\n\t\t\"MarshalPKCS1PrivateKey\":                    reflect.ValueOf(x509.MarshalPKCS1PrivateKey),\n\t\t\"MarshalPKCS1PublicKey\":                     reflect.ValueOf(x509.MarshalPKCS1PublicKey),\n\t\t\"MarshalPKCS8PrivateKey\":                    reflect.ValueOf(x509.MarshalPKCS8PrivateKey),\n\t\t\"MarshalPKIXPublicKey\":                      reflect.ValueOf(x509.MarshalPKIXPublicKey),\n\t\t\"NameConstraintsWithoutSANs\":                reflect.ValueOf(x509.NameConstraintsWithoutSANs),\n\t\t\"NameMismatch\":                              reflect.ValueOf(x509.NameMismatch),\n\t\t\"NewCertPool\":                               reflect.ValueOf(x509.NewCertPool),\n\t\t\"NotAuthorizedToSign\":                       reflect.ValueOf(x509.NotAuthorizedToSign),\n\t\t\"OIDFromInts\":                               reflect.ValueOf(x509.OIDFromInts),\n\t\t\"PEMCipher3DES\":                             reflect.ValueOf(x509.PEMCipher3DES),\n\t\t\"PEMCipherAES128\":                           reflect.ValueOf(x509.PEMCipherAES128),\n\t\t\"PEMCipherAES192\":                           reflect.ValueOf(x509.PEMCipherAES192),\n\t\t\"PEMCipherAES256\":                           reflect.ValueOf(x509.PEMCipherAES256),\n\t\t\"PEMCipherDES\":                              reflect.ValueOf(x509.PEMCipherDES),\n\t\t\"ParseCRL\":                                  reflect.ValueOf(x509.ParseCRL),\n\t\t\"ParseCertificate\":                          reflect.ValueOf(x509.ParseCertificate),\n\t\t\"ParseCertificateRequest\":                   reflect.ValueOf(x509.ParseCertificateRequest),\n\t\t\"ParseCertificates\":                         reflect.ValueOf(x509.ParseCertificates),\n\t\t\"ParseDERCRL\":                               reflect.ValueOf(x509.ParseDERCRL),\n\t\t\"ParseECPrivateKey\":                         reflect.ValueOf(x509.ParseECPrivateKey),\n\t\t\"ParsePKCS1PrivateKey\":                      reflect.ValueOf(x509.ParsePKCS1PrivateKey),\n\t\t\"ParsePKCS1PublicKey\":                       reflect.ValueOf(x509.ParsePKCS1PublicKey),\n\t\t\"ParsePKCS8PrivateKey\":                      reflect.ValueOf(x509.ParsePKCS8PrivateKey),\n\t\t\"ParsePKIXPublicKey\":                        reflect.ValueOf(x509.ParsePKIXPublicKey),\n\t\t\"ParseRevocationList\":                       reflect.ValueOf(x509.ParseRevocationList),\n\t\t\"PureEd25519\":                               reflect.ValueOf(x509.PureEd25519),\n\t\t\"RSA\":                                       reflect.ValueOf(x509.RSA),\n\t\t\"SHA1WithRSA\":                               reflect.ValueOf(x509.SHA1WithRSA),\n\t\t\"SHA256WithRSA\":                             reflect.ValueOf(x509.SHA256WithRSA),\n\t\t\"SHA256WithRSAPSS\":                          reflect.ValueOf(x509.SHA256WithRSAPSS),\n\t\t\"SHA384WithRSA\":                             reflect.ValueOf(x509.SHA384WithRSA),\n\t\t\"SHA384WithRSAPSS\":                          reflect.ValueOf(x509.SHA384WithRSAPSS),\n\t\t\"SHA512WithRSA\":                             reflect.ValueOf(x509.SHA512WithRSA),\n\t\t\"SHA512WithRSAPSS\":                          reflect.ValueOf(x509.SHA512WithRSAPSS),\n\t\t\"SetFallbackRoots\":                          reflect.ValueOf(x509.SetFallbackRoots),\n\t\t\"SystemCertPool\":                            reflect.ValueOf(x509.SystemCertPool),\n\t\t\"TooManyConstraints\":                        reflect.ValueOf(x509.TooManyConstraints),\n\t\t\"TooManyIntermediates\":                      reflect.ValueOf(x509.TooManyIntermediates),\n\t\t\"UnconstrainedName\":                         reflect.ValueOf(x509.UnconstrainedName),\n\t\t\"UnknownPublicKeyAlgorithm\":                 reflect.ValueOf(x509.UnknownPublicKeyAlgorithm),\n\t\t\"UnknownSignatureAlgorithm\":                 reflect.ValueOf(x509.UnknownSignatureAlgorithm),\n\n\t\t// type definitions\n\t\t\"CertPool\":                   reflect.ValueOf((*x509.CertPool)(nil)),\n\t\t\"Certificate\":                reflect.ValueOf((*x509.Certificate)(nil)),\n\t\t\"CertificateInvalidError\":    reflect.ValueOf((*x509.CertificateInvalidError)(nil)),\n\t\t\"CertificateRequest\":         reflect.ValueOf((*x509.CertificateRequest)(nil)),\n\t\t\"ConstraintViolationError\":   reflect.ValueOf((*x509.ConstraintViolationError)(nil)),\n\t\t\"ExtKeyUsage\":                reflect.ValueOf((*x509.ExtKeyUsage)(nil)),\n\t\t\"HostnameError\":              reflect.ValueOf((*x509.HostnameError)(nil)),\n\t\t\"InsecureAlgorithmError\":     reflect.ValueOf((*x509.InsecureAlgorithmError)(nil)),\n\t\t\"InvalidReason\":              reflect.ValueOf((*x509.InvalidReason)(nil)),\n\t\t\"KeyUsage\":                   reflect.ValueOf((*x509.KeyUsage)(nil)),\n\t\t\"OID\":                        reflect.ValueOf((*x509.OID)(nil)),\n\t\t\"PEMCipher\":                  reflect.ValueOf((*x509.PEMCipher)(nil)),\n\t\t\"PublicKeyAlgorithm\":         reflect.ValueOf((*x509.PublicKeyAlgorithm)(nil)),\n\t\t\"RevocationList\":             reflect.ValueOf((*x509.RevocationList)(nil)),\n\t\t\"RevocationListEntry\":        reflect.ValueOf((*x509.RevocationListEntry)(nil)),\n\t\t\"SignatureAlgorithm\":         reflect.ValueOf((*x509.SignatureAlgorithm)(nil)),\n\t\t\"SystemRootsError\":           reflect.ValueOf((*x509.SystemRootsError)(nil)),\n\t\t\"UnhandledCriticalExtension\": reflect.ValueOf((*x509.UnhandledCriticalExtension)(nil)),\n\t\t\"UnknownAuthorityError\":      reflect.ValueOf((*x509.UnknownAuthorityError)(nil)),\n\t\t\"VerifyOptions\":              reflect.ValueOf((*x509.VerifyOptions)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_crypto_x509_pkix.go",
    "content": "// Code generated by 'yaegi extract crypto/x509/pkix'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"crypto/x509/pkix\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"crypto/x509/pkix/pkix\"] = map[string]reflect.Value{\n\t\t// type definitions\n\t\t\"AlgorithmIdentifier\":          reflect.ValueOf((*pkix.AlgorithmIdentifier)(nil)),\n\t\t\"AttributeTypeAndValue\":        reflect.ValueOf((*pkix.AttributeTypeAndValue)(nil)),\n\t\t\"AttributeTypeAndValueSET\":     reflect.ValueOf((*pkix.AttributeTypeAndValueSET)(nil)),\n\t\t\"CertificateList\":              reflect.ValueOf((*pkix.CertificateList)(nil)),\n\t\t\"Extension\":                    reflect.ValueOf((*pkix.Extension)(nil)),\n\t\t\"Name\":                         reflect.ValueOf((*pkix.Name)(nil)),\n\t\t\"RDNSequence\":                  reflect.ValueOf((*pkix.RDNSequence)(nil)),\n\t\t\"RelativeDistinguishedNameSET\": reflect.ValueOf((*pkix.RelativeDistinguishedNameSET)(nil)),\n\t\t\"RevokedCertificate\":           reflect.ValueOf((*pkix.RevokedCertificate)(nil)),\n\t\t\"TBSCertificateList\":           reflect.ValueOf((*pkix.TBSCertificateList)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_database_sql.go",
    "content": "// Code generated by 'yaegi extract database/sql'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"database/sql\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"database/sql/sql\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Drivers\":              reflect.ValueOf(sql.Drivers),\n\t\t\"ErrConnDone\":          reflect.ValueOf(&sql.ErrConnDone).Elem(),\n\t\t\"ErrNoRows\":            reflect.ValueOf(&sql.ErrNoRows).Elem(),\n\t\t\"ErrTxDone\":            reflect.ValueOf(&sql.ErrTxDone).Elem(),\n\t\t\"LevelDefault\":         reflect.ValueOf(sql.LevelDefault),\n\t\t\"LevelLinearizable\":    reflect.ValueOf(sql.LevelLinearizable),\n\t\t\"LevelReadCommitted\":   reflect.ValueOf(sql.LevelReadCommitted),\n\t\t\"LevelReadUncommitted\": reflect.ValueOf(sql.LevelReadUncommitted),\n\t\t\"LevelRepeatableRead\":  reflect.ValueOf(sql.LevelRepeatableRead),\n\t\t\"LevelSerializable\":    reflect.ValueOf(sql.LevelSerializable),\n\t\t\"LevelSnapshot\":        reflect.ValueOf(sql.LevelSnapshot),\n\t\t\"LevelWriteCommitted\":  reflect.ValueOf(sql.LevelWriteCommitted),\n\t\t\"Named\":                reflect.ValueOf(sql.Named),\n\t\t\"Open\":                 reflect.ValueOf(sql.Open),\n\t\t\"OpenDB\":               reflect.ValueOf(sql.OpenDB),\n\t\t\"Register\":             reflect.ValueOf(sql.Register),\n\n\t\t// type definitions\n\t\t\"ColumnType\":     reflect.ValueOf((*sql.ColumnType)(nil)),\n\t\t\"Conn\":           reflect.ValueOf((*sql.Conn)(nil)),\n\t\t\"DB\":             reflect.ValueOf((*sql.DB)(nil)),\n\t\t\"DBStats\":        reflect.ValueOf((*sql.DBStats)(nil)),\n\t\t\"IsolationLevel\": reflect.ValueOf((*sql.IsolationLevel)(nil)),\n\t\t\"NamedArg\":       reflect.ValueOf((*sql.NamedArg)(nil)),\n\t\t\"NullBool\":       reflect.ValueOf((*sql.NullBool)(nil)),\n\t\t\"NullByte\":       reflect.ValueOf((*sql.NullByte)(nil)),\n\t\t\"NullFloat64\":    reflect.ValueOf((*sql.NullFloat64)(nil)),\n\t\t\"NullInt16\":      reflect.ValueOf((*sql.NullInt16)(nil)),\n\t\t\"NullInt32\":      reflect.ValueOf((*sql.NullInt32)(nil)),\n\t\t\"NullInt64\":      reflect.ValueOf((*sql.NullInt64)(nil)),\n\t\t\"NullString\":     reflect.ValueOf((*sql.NullString)(nil)),\n\t\t\"NullTime\":       reflect.ValueOf((*sql.NullTime)(nil)),\n\t\t\"Out\":            reflect.ValueOf((*sql.Out)(nil)),\n\t\t\"RawBytes\":       reflect.ValueOf((*sql.RawBytes)(nil)),\n\t\t\"Result\":         reflect.ValueOf((*sql.Result)(nil)),\n\t\t\"Row\":            reflect.ValueOf((*sql.Row)(nil)),\n\t\t\"Rows\":           reflect.ValueOf((*sql.Rows)(nil)),\n\t\t\"Scanner\":        reflect.ValueOf((*sql.Scanner)(nil)),\n\t\t\"Stmt\":           reflect.ValueOf((*sql.Stmt)(nil)),\n\t\t\"Tx\":             reflect.ValueOf((*sql.Tx)(nil)),\n\t\t\"TxOptions\":      reflect.ValueOf((*sql.TxOptions)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Result\":  reflect.ValueOf((*_database_sql_Result)(nil)),\n\t\t\"_Scanner\": reflect.ValueOf((*_database_sql_Scanner)(nil)),\n\t}\n}\n\n// _database_sql_Result is an interface wrapper for Result type\ntype _database_sql_Result struct {\n\tIValue        interface{}\n\tWLastInsertId func() (int64, error)\n\tWRowsAffected func() (int64, error)\n}\n\nfunc (W _database_sql_Result) LastInsertId() (int64, error) { return W.WLastInsertId() }\nfunc (W _database_sql_Result) RowsAffected() (int64, error) { return W.WRowsAffected() }\n\n// _database_sql_Scanner is an interface wrapper for Scanner type\ntype _database_sql_Scanner struct {\n\tIValue interface{}\n\tWScan  func(src any) error\n}\n\nfunc (W _database_sql_Scanner) Scan(src any) error { return W.WScan(src) }\n"
  },
  {
    "path": "stdlib/go1_22_database_sql_driver.go",
    "content": "// Code generated by 'yaegi extract database/sql/driver'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"context\"\n\t\"database/sql/driver\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"database/sql/driver/driver\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Bool\":                      reflect.ValueOf(&driver.Bool).Elem(),\n\t\t\"DefaultParameterConverter\": reflect.ValueOf(&driver.DefaultParameterConverter).Elem(),\n\t\t\"ErrBadConn\":                reflect.ValueOf(&driver.ErrBadConn).Elem(),\n\t\t\"ErrRemoveArgument\":         reflect.ValueOf(&driver.ErrRemoveArgument).Elem(),\n\t\t\"ErrSkip\":                   reflect.ValueOf(&driver.ErrSkip).Elem(),\n\t\t\"Int32\":                     reflect.ValueOf(&driver.Int32).Elem(),\n\t\t\"IsScanValue\":               reflect.ValueOf(driver.IsScanValue),\n\t\t\"IsValue\":                   reflect.ValueOf(driver.IsValue),\n\t\t\"ResultNoRows\":              reflect.ValueOf(&driver.ResultNoRows).Elem(),\n\t\t\"String\":                    reflect.ValueOf(&driver.String).Elem(),\n\n\t\t// type definitions\n\t\t\"ColumnConverter\":                reflect.ValueOf((*driver.ColumnConverter)(nil)),\n\t\t\"Conn\":                           reflect.ValueOf((*driver.Conn)(nil)),\n\t\t\"ConnBeginTx\":                    reflect.ValueOf((*driver.ConnBeginTx)(nil)),\n\t\t\"ConnPrepareContext\":             reflect.ValueOf((*driver.ConnPrepareContext)(nil)),\n\t\t\"Connector\":                      reflect.ValueOf((*driver.Connector)(nil)),\n\t\t\"Driver\":                         reflect.ValueOf((*driver.Driver)(nil)),\n\t\t\"DriverContext\":                  reflect.ValueOf((*driver.DriverContext)(nil)),\n\t\t\"Execer\":                         reflect.ValueOf((*driver.Execer)(nil)),\n\t\t\"ExecerContext\":                  reflect.ValueOf((*driver.ExecerContext)(nil)),\n\t\t\"IsolationLevel\":                 reflect.ValueOf((*driver.IsolationLevel)(nil)),\n\t\t\"NamedValue\":                     reflect.ValueOf((*driver.NamedValue)(nil)),\n\t\t\"NamedValueChecker\":              reflect.ValueOf((*driver.NamedValueChecker)(nil)),\n\t\t\"NotNull\":                        reflect.ValueOf((*driver.NotNull)(nil)),\n\t\t\"Null\":                           reflect.ValueOf((*driver.Null)(nil)),\n\t\t\"Pinger\":                         reflect.ValueOf((*driver.Pinger)(nil)),\n\t\t\"Queryer\":                        reflect.ValueOf((*driver.Queryer)(nil)),\n\t\t\"QueryerContext\":                 reflect.ValueOf((*driver.QueryerContext)(nil)),\n\t\t\"Result\":                         reflect.ValueOf((*driver.Result)(nil)),\n\t\t\"Rows\":                           reflect.ValueOf((*driver.Rows)(nil)),\n\t\t\"RowsAffected\":                   reflect.ValueOf((*driver.RowsAffected)(nil)),\n\t\t\"RowsColumnTypeDatabaseTypeName\": reflect.ValueOf((*driver.RowsColumnTypeDatabaseTypeName)(nil)),\n\t\t\"RowsColumnTypeLength\":           reflect.ValueOf((*driver.RowsColumnTypeLength)(nil)),\n\t\t\"RowsColumnTypeNullable\":         reflect.ValueOf((*driver.RowsColumnTypeNullable)(nil)),\n\t\t\"RowsColumnTypePrecisionScale\":   reflect.ValueOf((*driver.RowsColumnTypePrecisionScale)(nil)),\n\t\t\"RowsColumnTypeScanType\":         reflect.ValueOf((*driver.RowsColumnTypeScanType)(nil)),\n\t\t\"RowsNextResultSet\":              reflect.ValueOf((*driver.RowsNextResultSet)(nil)),\n\t\t\"SessionResetter\":                reflect.ValueOf((*driver.SessionResetter)(nil)),\n\t\t\"Stmt\":                           reflect.ValueOf((*driver.Stmt)(nil)),\n\t\t\"StmtExecContext\":                reflect.ValueOf((*driver.StmtExecContext)(nil)),\n\t\t\"StmtQueryContext\":               reflect.ValueOf((*driver.StmtQueryContext)(nil)),\n\t\t\"Tx\":                             reflect.ValueOf((*driver.Tx)(nil)),\n\t\t\"TxOptions\":                      reflect.ValueOf((*driver.TxOptions)(nil)),\n\t\t\"Validator\":                      reflect.ValueOf((*driver.Validator)(nil)),\n\t\t\"Value\":                          reflect.ValueOf((*driver.Value)(nil)),\n\t\t\"ValueConverter\":                 reflect.ValueOf((*driver.ValueConverter)(nil)),\n\t\t\"Valuer\":                         reflect.ValueOf((*driver.Valuer)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_ColumnConverter\":                reflect.ValueOf((*_database_sql_driver_ColumnConverter)(nil)),\n\t\t\"_Conn\":                           reflect.ValueOf((*_database_sql_driver_Conn)(nil)),\n\t\t\"_ConnBeginTx\":                    reflect.ValueOf((*_database_sql_driver_ConnBeginTx)(nil)),\n\t\t\"_ConnPrepareContext\":             reflect.ValueOf((*_database_sql_driver_ConnPrepareContext)(nil)),\n\t\t\"_Connector\":                      reflect.ValueOf((*_database_sql_driver_Connector)(nil)),\n\t\t\"_Driver\":                         reflect.ValueOf((*_database_sql_driver_Driver)(nil)),\n\t\t\"_DriverContext\":                  reflect.ValueOf((*_database_sql_driver_DriverContext)(nil)),\n\t\t\"_Execer\":                         reflect.ValueOf((*_database_sql_driver_Execer)(nil)),\n\t\t\"_ExecerContext\":                  reflect.ValueOf((*_database_sql_driver_ExecerContext)(nil)),\n\t\t\"_NamedValueChecker\":              reflect.ValueOf((*_database_sql_driver_NamedValueChecker)(nil)),\n\t\t\"_Pinger\":                         reflect.ValueOf((*_database_sql_driver_Pinger)(nil)),\n\t\t\"_Queryer\":                        reflect.ValueOf((*_database_sql_driver_Queryer)(nil)),\n\t\t\"_QueryerContext\":                 reflect.ValueOf((*_database_sql_driver_QueryerContext)(nil)),\n\t\t\"_Result\":                         reflect.ValueOf((*_database_sql_driver_Result)(nil)),\n\t\t\"_Rows\":                           reflect.ValueOf((*_database_sql_driver_Rows)(nil)),\n\t\t\"_RowsColumnTypeDatabaseTypeName\": reflect.ValueOf((*_database_sql_driver_RowsColumnTypeDatabaseTypeName)(nil)),\n\t\t\"_RowsColumnTypeLength\":           reflect.ValueOf((*_database_sql_driver_RowsColumnTypeLength)(nil)),\n\t\t\"_RowsColumnTypeNullable\":         reflect.ValueOf((*_database_sql_driver_RowsColumnTypeNullable)(nil)),\n\t\t\"_RowsColumnTypePrecisionScale\":   reflect.ValueOf((*_database_sql_driver_RowsColumnTypePrecisionScale)(nil)),\n\t\t\"_RowsColumnTypeScanType\":         reflect.ValueOf((*_database_sql_driver_RowsColumnTypeScanType)(nil)),\n\t\t\"_RowsNextResultSet\":              reflect.ValueOf((*_database_sql_driver_RowsNextResultSet)(nil)),\n\t\t\"_SessionResetter\":                reflect.ValueOf((*_database_sql_driver_SessionResetter)(nil)),\n\t\t\"_Stmt\":                           reflect.ValueOf((*_database_sql_driver_Stmt)(nil)),\n\t\t\"_StmtExecContext\":                reflect.ValueOf((*_database_sql_driver_StmtExecContext)(nil)),\n\t\t\"_StmtQueryContext\":               reflect.ValueOf((*_database_sql_driver_StmtQueryContext)(nil)),\n\t\t\"_Tx\":                             reflect.ValueOf((*_database_sql_driver_Tx)(nil)),\n\t\t\"_Validator\":                      reflect.ValueOf((*_database_sql_driver_Validator)(nil)),\n\t\t\"_Value\":                          reflect.ValueOf((*_database_sql_driver_Value)(nil)),\n\t\t\"_ValueConverter\":                 reflect.ValueOf((*_database_sql_driver_ValueConverter)(nil)),\n\t\t\"_Valuer\":                         reflect.ValueOf((*_database_sql_driver_Valuer)(nil)),\n\t}\n}\n\n// _database_sql_driver_ColumnConverter is an interface wrapper for ColumnConverter type\ntype _database_sql_driver_ColumnConverter struct {\n\tIValue           interface{}\n\tWColumnConverter func(idx int) driver.ValueConverter\n}\n\nfunc (W _database_sql_driver_ColumnConverter) ColumnConverter(idx int) driver.ValueConverter {\n\treturn W.WColumnConverter(idx)\n}\n\n// _database_sql_driver_Conn is an interface wrapper for Conn type\ntype _database_sql_driver_Conn struct {\n\tIValue   interface{}\n\tWBegin   func() (driver.Tx, error)\n\tWClose   func() error\n\tWPrepare func(query string) (driver.Stmt, error)\n}\n\nfunc (W _database_sql_driver_Conn) Begin() (driver.Tx, error) { return W.WBegin() }\nfunc (W _database_sql_driver_Conn) Close() error              { return W.WClose() }\nfunc (W _database_sql_driver_Conn) Prepare(query string) (driver.Stmt, error) {\n\treturn W.WPrepare(query)\n}\n\n// _database_sql_driver_ConnBeginTx is an interface wrapper for ConnBeginTx type\ntype _database_sql_driver_ConnBeginTx struct {\n\tIValue   interface{}\n\tWBeginTx func(ctx context.Context, opts driver.TxOptions) (driver.Tx, error)\n}\n\nfunc (W _database_sql_driver_ConnBeginTx) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) {\n\treturn W.WBeginTx(ctx, opts)\n}\n\n// _database_sql_driver_ConnPrepareContext is an interface wrapper for ConnPrepareContext type\ntype _database_sql_driver_ConnPrepareContext struct {\n\tIValue          interface{}\n\tWPrepareContext func(ctx context.Context, query string) (driver.Stmt, error)\n}\n\nfunc (W _database_sql_driver_ConnPrepareContext) PrepareContext(ctx context.Context, query string) (driver.Stmt, error) {\n\treturn W.WPrepareContext(ctx, query)\n}\n\n// _database_sql_driver_Connector is an interface wrapper for Connector type\ntype _database_sql_driver_Connector struct {\n\tIValue   interface{}\n\tWConnect func(a0 context.Context) (driver.Conn, error)\n\tWDriver  func() driver.Driver\n}\n\nfunc (W _database_sql_driver_Connector) Connect(a0 context.Context) (driver.Conn, error) {\n\treturn W.WConnect(a0)\n}\nfunc (W _database_sql_driver_Connector) Driver() driver.Driver { return W.WDriver() }\n\n// _database_sql_driver_Driver is an interface wrapper for Driver type\ntype _database_sql_driver_Driver struct {\n\tIValue interface{}\n\tWOpen  func(name string) (driver.Conn, error)\n}\n\nfunc (W _database_sql_driver_Driver) Open(name string) (driver.Conn, error) { return W.WOpen(name) }\n\n// _database_sql_driver_DriverContext is an interface wrapper for DriverContext type\ntype _database_sql_driver_DriverContext struct {\n\tIValue         interface{}\n\tWOpenConnector func(name string) (driver.Connector, error)\n}\n\nfunc (W _database_sql_driver_DriverContext) OpenConnector(name string) (driver.Connector, error) {\n\treturn W.WOpenConnector(name)\n}\n\n// _database_sql_driver_Execer is an interface wrapper for Execer type\ntype _database_sql_driver_Execer struct {\n\tIValue interface{}\n\tWExec  func(query string, args []driver.Value) (driver.Result, error)\n}\n\nfunc (W _database_sql_driver_Execer) Exec(query string, args []driver.Value) (driver.Result, error) {\n\treturn W.WExec(query, args)\n}\n\n// _database_sql_driver_ExecerContext is an interface wrapper for ExecerContext type\ntype _database_sql_driver_ExecerContext struct {\n\tIValue       interface{}\n\tWExecContext func(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error)\n}\n\nfunc (W _database_sql_driver_ExecerContext) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) {\n\treturn W.WExecContext(ctx, query, args)\n}\n\n// _database_sql_driver_NamedValueChecker is an interface wrapper for NamedValueChecker type\ntype _database_sql_driver_NamedValueChecker struct {\n\tIValue           interface{}\n\tWCheckNamedValue func(a0 *driver.NamedValue) error\n}\n\nfunc (W _database_sql_driver_NamedValueChecker) CheckNamedValue(a0 *driver.NamedValue) error {\n\treturn W.WCheckNamedValue(a0)\n}\n\n// _database_sql_driver_Pinger is an interface wrapper for Pinger type\ntype _database_sql_driver_Pinger struct {\n\tIValue interface{}\n\tWPing  func(ctx context.Context) error\n}\n\nfunc (W _database_sql_driver_Pinger) Ping(ctx context.Context) error { return W.WPing(ctx) }\n\n// _database_sql_driver_Queryer is an interface wrapper for Queryer type\ntype _database_sql_driver_Queryer struct {\n\tIValue interface{}\n\tWQuery func(query string, args []driver.Value) (driver.Rows, error)\n}\n\nfunc (W _database_sql_driver_Queryer) Query(query string, args []driver.Value) (driver.Rows, error) {\n\treturn W.WQuery(query, args)\n}\n\n// _database_sql_driver_QueryerContext is an interface wrapper for QueryerContext type\ntype _database_sql_driver_QueryerContext struct {\n\tIValue        interface{}\n\tWQueryContext func(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error)\n}\n\nfunc (W _database_sql_driver_QueryerContext) QueryContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error) {\n\treturn W.WQueryContext(ctx, query, args)\n}\n\n// _database_sql_driver_Result is an interface wrapper for Result type\ntype _database_sql_driver_Result struct {\n\tIValue        interface{}\n\tWLastInsertId func() (int64, error)\n\tWRowsAffected func() (int64, error)\n}\n\nfunc (W _database_sql_driver_Result) LastInsertId() (int64, error) { return W.WLastInsertId() }\nfunc (W _database_sql_driver_Result) RowsAffected() (int64, error) { return W.WRowsAffected() }\n\n// _database_sql_driver_Rows is an interface wrapper for Rows type\ntype _database_sql_driver_Rows struct {\n\tIValue   interface{}\n\tWClose   func() error\n\tWColumns func() []string\n\tWNext    func(dest []driver.Value) error\n}\n\nfunc (W _database_sql_driver_Rows) Close() error                   { return W.WClose() }\nfunc (W _database_sql_driver_Rows) Columns() []string              { return W.WColumns() }\nfunc (W _database_sql_driver_Rows) Next(dest []driver.Value) error { return W.WNext(dest) }\n\n// _database_sql_driver_RowsColumnTypeDatabaseTypeName is an interface wrapper for RowsColumnTypeDatabaseTypeName type\ntype _database_sql_driver_RowsColumnTypeDatabaseTypeName struct {\n\tIValue                      interface{}\n\tWClose                      func() error\n\tWColumnTypeDatabaseTypeName func(index int) string\n\tWColumns                    func() []string\n\tWNext                       func(dest []driver.Value) error\n}\n\nfunc (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) Close() error { return W.WClose() }\nfunc (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) ColumnTypeDatabaseTypeName(index int) string {\n\treturn W.WColumnTypeDatabaseTypeName(index)\n}\nfunc (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) Columns() []string { return W.WColumns() }\nfunc (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) Next(dest []driver.Value) error {\n\treturn W.WNext(dest)\n}\n\n// _database_sql_driver_RowsColumnTypeLength is an interface wrapper for RowsColumnTypeLength type\ntype _database_sql_driver_RowsColumnTypeLength struct {\n\tIValue            interface{}\n\tWClose            func() error\n\tWColumnTypeLength func(index int) (length int64, ok bool)\n\tWColumns          func() []string\n\tWNext             func(dest []driver.Value) error\n}\n\nfunc (W _database_sql_driver_RowsColumnTypeLength) Close() error { return W.WClose() }\nfunc (W _database_sql_driver_RowsColumnTypeLength) ColumnTypeLength(index int) (length int64, ok bool) {\n\treturn W.WColumnTypeLength(index)\n}\nfunc (W _database_sql_driver_RowsColumnTypeLength) Columns() []string { return W.WColumns() }\nfunc (W _database_sql_driver_RowsColumnTypeLength) Next(dest []driver.Value) error {\n\treturn W.WNext(dest)\n}\n\n// _database_sql_driver_RowsColumnTypeNullable is an interface wrapper for RowsColumnTypeNullable type\ntype _database_sql_driver_RowsColumnTypeNullable struct {\n\tIValue              interface{}\n\tWClose              func() error\n\tWColumnTypeNullable func(index int) (nullable bool, ok bool)\n\tWColumns            func() []string\n\tWNext               func(dest []driver.Value) error\n}\n\nfunc (W _database_sql_driver_RowsColumnTypeNullable) Close() error { return W.WClose() }\nfunc (W _database_sql_driver_RowsColumnTypeNullable) ColumnTypeNullable(index int) (nullable bool, ok bool) {\n\treturn W.WColumnTypeNullable(index)\n}\nfunc (W _database_sql_driver_RowsColumnTypeNullable) Columns() []string { return W.WColumns() }\nfunc (W _database_sql_driver_RowsColumnTypeNullable) Next(dest []driver.Value) error {\n\treturn W.WNext(dest)\n}\n\n// _database_sql_driver_RowsColumnTypePrecisionScale is an interface wrapper for RowsColumnTypePrecisionScale type\ntype _database_sql_driver_RowsColumnTypePrecisionScale struct {\n\tIValue                    interface{}\n\tWClose                    func() error\n\tWColumnTypePrecisionScale func(index int) (precision int64, scale int64, ok bool)\n\tWColumns                  func() []string\n\tWNext                     func(dest []driver.Value) error\n}\n\nfunc (W _database_sql_driver_RowsColumnTypePrecisionScale) Close() error { return W.WClose() }\nfunc (W _database_sql_driver_RowsColumnTypePrecisionScale) ColumnTypePrecisionScale(index int) (precision int64, scale int64, ok bool) {\n\treturn W.WColumnTypePrecisionScale(index)\n}\nfunc (W _database_sql_driver_RowsColumnTypePrecisionScale) Columns() []string { return W.WColumns() }\nfunc (W _database_sql_driver_RowsColumnTypePrecisionScale) Next(dest []driver.Value) error {\n\treturn W.WNext(dest)\n}\n\n// _database_sql_driver_RowsColumnTypeScanType is an interface wrapper for RowsColumnTypeScanType type\ntype _database_sql_driver_RowsColumnTypeScanType struct {\n\tIValue              interface{}\n\tWClose              func() error\n\tWColumnTypeScanType func(index int) reflect.Type\n\tWColumns            func() []string\n\tWNext               func(dest []driver.Value) error\n}\n\nfunc (W _database_sql_driver_RowsColumnTypeScanType) Close() error { return W.WClose() }\nfunc (W _database_sql_driver_RowsColumnTypeScanType) ColumnTypeScanType(index int) reflect.Type {\n\treturn W.WColumnTypeScanType(index)\n}\nfunc (W _database_sql_driver_RowsColumnTypeScanType) Columns() []string { return W.WColumns() }\nfunc (W _database_sql_driver_RowsColumnTypeScanType) Next(dest []driver.Value) error {\n\treturn W.WNext(dest)\n}\n\n// _database_sql_driver_RowsNextResultSet is an interface wrapper for RowsNextResultSet type\ntype _database_sql_driver_RowsNextResultSet struct {\n\tIValue            interface{}\n\tWClose            func() error\n\tWColumns          func() []string\n\tWHasNextResultSet func() bool\n\tWNext             func(dest []driver.Value) error\n\tWNextResultSet    func() error\n}\n\nfunc (W _database_sql_driver_RowsNextResultSet) Close() error                   { return W.WClose() }\nfunc (W _database_sql_driver_RowsNextResultSet) Columns() []string              { return W.WColumns() }\nfunc (W _database_sql_driver_RowsNextResultSet) HasNextResultSet() bool         { return W.WHasNextResultSet() }\nfunc (W _database_sql_driver_RowsNextResultSet) Next(dest []driver.Value) error { return W.WNext(dest) }\nfunc (W _database_sql_driver_RowsNextResultSet) NextResultSet() error           { return W.WNextResultSet() }\n\n// _database_sql_driver_SessionResetter is an interface wrapper for SessionResetter type\ntype _database_sql_driver_SessionResetter struct {\n\tIValue        interface{}\n\tWResetSession func(ctx context.Context) error\n}\n\nfunc (W _database_sql_driver_SessionResetter) ResetSession(ctx context.Context) error {\n\treturn W.WResetSession(ctx)\n}\n\n// _database_sql_driver_Stmt is an interface wrapper for Stmt type\ntype _database_sql_driver_Stmt struct {\n\tIValue    interface{}\n\tWClose    func() error\n\tWExec     func(args []driver.Value) (driver.Result, error)\n\tWNumInput func() int\n\tWQuery    func(args []driver.Value) (driver.Rows, error)\n}\n\nfunc (W _database_sql_driver_Stmt) Close() error { return W.WClose() }\nfunc (W _database_sql_driver_Stmt) Exec(args []driver.Value) (driver.Result, error) {\n\treturn W.WExec(args)\n}\nfunc (W _database_sql_driver_Stmt) NumInput() int { return W.WNumInput() }\nfunc (W _database_sql_driver_Stmt) Query(args []driver.Value) (driver.Rows, error) {\n\treturn W.WQuery(args)\n}\n\n// _database_sql_driver_StmtExecContext is an interface wrapper for StmtExecContext type\ntype _database_sql_driver_StmtExecContext struct {\n\tIValue       interface{}\n\tWExecContext func(ctx context.Context, args []driver.NamedValue) (driver.Result, error)\n}\n\nfunc (W _database_sql_driver_StmtExecContext) ExecContext(ctx context.Context, args []driver.NamedValue) (driver.Result, error) {\n\treturn W.WExecContext(ctx, args)\n}\n\n// _database_sql_driver_StmtQueryContext is an interface wrapper for StmtQueryContext type\ntype _database_sql_driver_StmtQueryContext struct {\n\tIValue        interface{}\n\tWQueryContext func(ctx context.Context, args []driver.NamedValue) (driver.Rows, error)\n}\n\nfunc (W _database_sql_driver_StmtQueryContext) QueryContext(ctx context.Context, args []driver.NamedValue) (driver.Rows, error) {\n\treturn W.WQueryContext(ctx, args)\n}\n\n// _database_sql_driver_Tx is an interface wrapper for Tx type\ntype _database_sql_driver_Tx struct {\n\tIValue    interface{}\n\tWCommit   func() error\n\tWRollback func() error\n}\n\nfunc (W _database_sql_driver_Tx) Commit() error   { return W.WCommit() }\nfunc (W _database_sql_driver_Tx) Rollback() error { return W.WRollback() }\n\n// _database_sql_driver_Validator is an interface wrapper for Validator type\ntype _database_sql_driver_Validator struct {\n\tIValue   interface{}\n\tWIsValid func() bool\n}\n\nfunc (W _database_sql_driver_Validator) IsValid() bool { return W.WIsValid() }\n\n// _database_sql_driver_Value is an interface wrapper for Value type\ntype _database_sql_driver_Value struct {\n\tIValue interface{}\n}\n\n// _database_sql_driver_ValueConverter is an interface wrapper for ValueConverter type\ntype _database_sql_driver_ValueConverter struct {\n\tIValue        interface{}\n\tWConvertValue func(v any) (driver.Value, error)\n}\n\nfunc (W _database_sql_driver_ValueConverter) ConvertValue(v any) (driver.Value, error) {\n\treturn W.WConvertValue(v)\n}\n\n// _database_sql_driver_Valuer is an interface wrapper for Valuer type\ntype _database_sql_driver_Valuer struct {\n\tIValue interface{}\n\tWValue func() (driver.Value, error)\n}\n\nfunc (W _database_sql_driver_Valuer) Value() (driver.Value, error) { return W.WValue() }\n"
  },
  {
    "path": "stdlib/go1_22_debug_buildinfo.go",
    "content": "// Code generated by 'yaegi extract debug/buildinfo'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"debug/buildinfo\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"debug/buildinfo/buildinfo\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Read\":     reflect.ValueOf(buildinfo.Read),\n\t\t\"ReadFile\": reflect.ValueOf(buildinfo.ReadFile),\n\n\t\t// type definitions\n\t\t\"BuildInfo\": reflect.ValueOf((*buildinfo.BuildInfo)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_debug_dwarf.go",
    "content": "// Code generated by 'yaegi extract debug/dwarf'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"debug/dwarf\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"debug/dwarf/dwarf\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AttrAbstractOrigin\":        reflect.ValueOf(dwarf.AttrAbstractOrigin),\n\t\t\"AttrAccessibility\":         reflect.ValueOf(dwarf.AttrAccessibility),\n\t\t\"AttrAddrBase\":              reflect.ValueOf(dwarf.AttrAddrBase),\n\t\t\"AttrAddrClass\":             reflect.ValueOf(dwarf.AttrAddrClass),\n\t\t\"AttrAlignment\":             reflect.ValueOf(dwarf.AttrAlignment),\n\t\t\"AttrAllocated\":             reflect.ValueOf(dwarf.AttrAllocated),\n\t\t\"AttrArtificial\":            reflect.ValueOf(dwarf.AttrArtificial),\n\t\t\"AttrAssociated\":            reflect.ValueOf(dwarf.AttrAssociated),\n\t\t\"AttrBaseTypes\":             reflect.ValueOf(dwarf.AttrBaseTypes),\n\t\t\"AttrBinaryScale\":           reflect.ValueOf(dwarf.AttrBinaryScale),\n\t\t\"AttrBitOffset\":             reflect.ValueOf(dwarf.AttrBitOffset),\n\t\t\"AttrBitSize\":               reflect.ValueOf(dwarf.AttrBitSize),\n\t\t\"AttrByteSize\":              reflect.ValueOf(dwarf.AttrByteSize),\n\t\t\"AttrCallAllCalls\":          reflect.ValueOf(dwarf.AttrCallAllCalls),\n\t\t\"AttrCallAllSourceCalls\":    reflect.ValueOf(dwarf.AttrCallAllSourceCalls),\n\t\t\"AttrCallAllTailCalls\":      reflect.ValueOf(dwarf.AttrCallAllTailCalls),\n\t\t\"AttrCallColumn\":            reflect.ValueOf(dwarf.AttrCallColumn),\n\t\t\"AttrCallDataLocation\":      reflect.ValueOf(dwarf.AttrCallDataLocation),\n\t\t\"AttrCallDataValue\":         reflect.ValueOf(dwarf.AttrCallDataValue),\n\t\t\"AttrCallFile\":              reflect.ValueOf(dwarf.AttrCallFile),\n\t\t\"AttrCallLine\":              reflect.ValueOf(dwarf.AttrCallLine),\n\t\t\"AttrCallOrigin\":            reflect.ValueOf(dwarf.AttrCallOrigin),\n\t\t\"AttrCallPC\":                reflect.ValueOf(dwarf.AttrCallPC),\n\t\t\"AttrCallParameter\":         reflect.ValueOf(dwarf.AttrCallParameter),\n\t\t\"AttrCallReturnPC\":          reflect.ValueOf(dwarf.AttrCallReturnPC),\n\t\t\"AttrCallTailCall\":          reflect.ValueOf(dwarf.AttrCallTailCall),\n\t\t\"AttrCallTarget\":            reflect.ValueOf(dwarf.AttrCallTarget),\n\t\t\"AttrCallTargetClobbered\":   reflect.ValueOf(dwarf.AttrCallTargetClobbered),\n\t\t\"AttrCallValue\":             reflect.ValueOf(dwarf.AttrCallValue),\n\t\t\"AttrCalling\":               reflect.ValueOf(dwarf.AttrCalling),\n\t\t\"AttrCommonRef\":             reflect.ValueOf(dwarf.AttrCommonRef),\n\t\t\"AttrCompDir\":               reflect.ValueOf(dwarf.AttrCompDir),\n\t\t\"AttrConstExpr\":             reflect.ValueOf(dwarf.AttrConstExpr),\n\t\t\"AttrConstValue\":            reflect.ValueOf(dwarf.AttrConstValue),\n\t\t\"AttrContainingType\":        reflect.ValueOf(dwarf.AttrContainingType),\n\t\t\"AttrCount\":                 reflect.ValueOf(dwarf.AttrCount),\n\t\t\"AttrDataBitOffset\":         reflect.ValueOf(dwarf.AttrDataBitOffset),\n\t\t\"AttrDataLocation\":          reflect.ValueOf(dwarf.AttrDataLocation),\n\t\t\"AttrDataMemberLoc\":         reflect.ValueOf(dwarf.AttrDataMemberLoc),\n\t\t\"AttrDecimalScale\":          reflect.ValueOf(dwarf.AttrDecimalScale),\n\t\t\"AttrDecimalSign\":           reflect.ValueOf(dwarf.AttrDecimalSign),\n\t\t\"AttrDeclColumn\":            reflect.ValueOf(dwarf.AttrDeclColumn),\n\t\t\"AttrDeclFile\":              reflect.ValueOf(dwarf.AttrDeclFile),\n\t\t\"AttrDeclLine\":              reflect.ValueOf(dwarf.AttrDeclLine),\n\t\t\"AttrDeclaration\":           reflect.ValueOf(dwarf.AttrDeclaration),\n\t\t\"AttrDefaultValue\":          reflect.ValueOf(dwarf.AttrDefaultValue),\n\t\t\"AttrDefaulted\":             reflect.ValueOf(dwarf.AttrDefaulted),\n\t\t\"AttrDeleted\":               reflect.ValueOf(dwarf.AttrDeleted),\n\t\t\"AttrDescription\":           reflect.ValueOf(dwarf.AttrDescription),\n\t\t\"AttrDigitCount\":            reflect.ValueOf(dwarf.AttrDigitCount),\n\t\t\"AttrDiscr\":                 reflect.ValueOf(dwarf.AttrDiscr),\n\t\t\"AttrDiscrList\":             reflect.ValueOf(dwarf.AttrDiscrList),\n\t\t\"AttrDiscrValue\":            reflect.ValueOf(dwarf.AttrDiscrValue),\n\t\t\"AttrDwoName\":               reflect.ValueOf(dwarf.AttrDwoName),\n\t\t\"AttrElemental\":             reflect.ValueOf(dwarf.AttrElemental),\n\t\t\"AttrEncoding\":              reflect.ValueOf(dwarf.AttrEncoding),\n\t\t\"AttrEndianity\":             reflect.ValueOf(dwarf.AttrEndianity),\n\t\t\"AttrEntrypc\":               reflect.ValueOf(dwarf.AttrEntrypc),\n\t\t\"AttrEnumClass\":             reflect.ValueOf(dwarf.AttrEnumClass),\n\t\t\"AttrExplicit\":              reflect.ValueOf(dwarf.AttrExplicit),\n\t\t\"AttrExportSymbols\":         reflect.ValueOf(dwarf.AttrExportSymbols),\n\t\t\"AttrExtension\":             reflect.ValueOf(dwarf.AttrExtension),\n\t\t\"AttrExternal\":              reflect.ValueOf(dwarf.AttrExternal),\n\t\t\"AttrFrameBase\":             reflect.ValueOf(dwarf.AttrFrameBase),\n\t\t\"AttrFriend\":                reflect.ValueOf(dwarf.AttrFriend),\n\t\t\"AttrHighpc\":                reflect.ValueOf(dwarf.AttrHighpc),\n\t\t\"AttrIdentifierCase\":        reflect.ValueOf(dwarf.AttrIdentifierCase),\n\t\t\"AttrImport\":                reflect.ValueOf(dwarf.AttrImport),\n\t\t\"AttrInline\":                reflect.ValueOf(dwarf.AttrInline),\n\t\t\"AttrIsOptional\":            reflect.ValueOf(dwarf.AttrIsOptional),\n\t\t\"AttrLanguage\":              reflect.ValueOf(dwarf.AttrLanguage),\n\t\t\"AttrLinkageName\":           reflect.ValueOf(dwarf.AttrLinkageName),\n\t\t\"AttrLocation\":              reflect.ValueOf(dwarf.AttrLocation),\n\t\t\"AttrLoclistsBase\":          reflect.ValueOf(dwarf.AttrLoclistsBase),\n\t\t\"AttrLowerBound\":            reflect.ValueOf(dwarf.AttrLowerBound),\n\t\t\"AttrLowpc\":                 reflect.ValueOf(dwarf.AttrLowpc),\n\t\t\"AttrMacroInfo\":             reflect.ValueOf(dwarf.AttrMacroInfo),\n\t\t\"AttrMacros\":                reflect.ValueOf(dwarf.AttrMacros),\n\t\t\"AttrMainSubprogram\":        reflect.ValueOf(dwarf.AttrMainSubprogram),\n\t\t\"AttrMutable\":               reflect.ValueOf(dwarf.AttrMutable),\n\t\t\"AttrName\":                  reflect.ValueOf(dwarf.AttrName),\n\t\t\"AttrNamelistItem\":          reflect.ValueOf(dwarf.AttrNamelistItem),\n\t\t\"AttrNoreturn\":              reflect.ValueOf(dwarf.AttrNoreturn),\n\t\t\"AttrObjectPointer\":         reflect.ValueOf(dwarf.AttrObjectPointer),\n\t\t\"AttrOrdering\":              reflect.ValueOf(dwarf.AttrOrdering),\n\t\t\"AttrPictureString\":         reflect.ValueOf(dwarf.AttrPictureString),\n\t\t\"AttrPriority\":              reflect.ValueOf(dwarf.AttrPriority),\n\t\t\"AttrProducer\":              reflect.ValueOf(dwarf.AttrProducer),\n\t\t\"AttrPrototyped\":            reflect.ValueOf(dwarf.AttrPrototyped),\n\t\t\"AttrPure\":                  reflect.ValueOf(dwarf.AttrPure),\n\t\t\"AttrRanges\":                reflect.ValueOf(dwarf.AttrRanges),\n\t\t\"AttrRank\":                  reflect.ValueOf(dwarf.AttrRank),\n\t\t\"AttrRecursive\":             reflect.ValueOf(dwarf.AttrRecursive),\n\t\t\"AttrReference\":             reflect.ValueOf(dwarf.AttrReference),\n\t\t\"AttrReturnAddr\":            reflect.ValueOf(dwarf.AttrReturnAddr),\n\t\t\"AttrRnglistsBase\":          reflect.ValueOf(dwarf.AttrRnglistsBase),\n\t\t\"AttrRvalueReference\":       reflect.ValueOf(dwarf.AttrRvalueReference),\n\t\t\"AttrSegment\":               reflect.ValueOf(dwarf.AttrSegment),\n\t\t\"AttrSibling\":               reflect.ValueOf(dwarf.AttrSibling),\n\t\t\"AttrSignature\":             reflect.ValueOf(dwarf.AttrSignature),\n\t\t\"AttrSmall\":                 reflect.ValueOf(dwarf.AttrSmall),\n\t\t\"AttrSpecification\":         reflect.ValueOf(dwarf.AttrSpecification),\n\t\t\"AttrStartScope\":            reflect.ValueOf(dwarf.AttrStartScope),\n\t\t\"AttrStaticLink\":            reflect.ValueOf(dwarf.AttrStaticLink),\n\t\t\"AttrStmtList\":              reflect.ValueOf(dwarf.AttrStmtList),\n\t\t\"AttrStrOffsetsBase\":        reflect.ValueOf(dwarf.AttrStrOffsetsBase),\n\t\t\"AttrStride\":                reflect.ValueOf(dwarf.AttrStride),\n\t\t\"AttrStrideSize\":            reflect.ValueOf(dwarf.AttrStrideSize),\n\t\t\"AttrStringLength\":          reflect.ValueOf(dwarf.AttrStringLength),\n\t\t\"AttrStringLengthBitSize\":   reflect.ValueOf(dwarf.AttrStringLengthBitSize),\n\t\t\"AttrStringLengthByteSize\":  reflect.ValueOf(dwarf.AttrStringLengthByteSize),\n\t\t\"AttrThreadsScaled\":         reflect.ValueOf(dwarf.AttrThreadsScaled),\n\t\t\"AttrTrampoline\":            reflect.ValueOf(dwarf.AttrTrampoline),\n\t\t\"AttrType\":                  reflect.ValueOf(dwarf.AttrType),\n\t\t\"AttrUpperBound\":            reflect.ValueOf(dwarf.AttrUpperBound),\n\t\t\"AttrUseLocation\":           reflect.ValueOf(dwarf.AttrUseLocation),\n\t\t\"AttrUseUTF8\":               reflect.ValueOf(dwarf.AttrUseUTF8),\n\t\t\"AttrVarParam\":              reflect.ValueOf(dwarf.AttrVarParam),\n\t\t\"AttrVirtuality\":            reflect.ValueOf(dwarf.AttrVirtuality),\n\t\t\"AttrVisibility\":            reflect.ValueOf(dwarf.AttrVisibility),\n\t\t\"AttrVtableElemLoc\":         reflect.ValueOf(dwarf.AttrVtableElemLoc),\n\t\t\"ClassAddrPtr\":              reflect.ValueOf(dwarf.ClassAddrPtr),\n\t\t\"ClassAddress\":              reflect.ValueOf(dwarf.ClassAddress),\n\t\t\"ClassBlock\":                reflect.ValueOf(dwarf.ClassBlock),\n\t\t\"ClassConstant\":             reflect.ValueOf(dwarf.ClassConstant),\n\t\t\"ClassExprLoc\":              reflect.ValueOf(dwarf.ClassExprLoc),\n\t\t\"ClassFlag\":                 reflect.ValueOf(dwarf.ClassFlag),\n\t\t\"ClassLinePtr\":              reflect.ValueOf(dwarf.ClassLinePtr),\n\t\t\"ClassLocList\":              reflect.ValueOf(dwarf.ClassLocList),\n\t\t\"ClassLocListPtr\":           reflect.ValueOf(dwarf.ClassLocListPtr),\n\t\t\"ClassMacPtr\":               reflect.ValueOf(dwarf.ClassMacPtr),\n\t\t\"ClassRangeListPtr\":         reflect.ValueOf(dwarf.ClassRangeListPtr),\n\t\t\"ClassReference\":            reflect.ValueOf(dwarf.ClassReference),\n\t\t\"ClassReferenceAlt\":         reflect.ValueOf(dwarf.ClassReferenceAlt),\n\t\t\"ClassReferenceSig\":         reflect.ValueOf(dwarf.ClassReferenceSig),\n\t\t\"ClassRngList\":              reflect.ValueOf(dwarf.ClassRngList),\n\t\t\"ClassRngListsPtr\":          reflect.ValueOf(dwarf.ClassRngListsPtr),\n\t\t\"ClassStrOffsetsPtr\":        reflect.ValueOf(dwarf.ClassStrOffsetsPtr),\n\t\t\"ClassString\":               reflect.ValueOf(dwarf.ClassString),\n\t\t\"ClassStringAlt\":            reflect.ValueOf(dwarf.ClassStringAlt),\n\t\t\"ClassUnknown\":              reflect.ValueOf(dwarf.ClassUnknown),\n\t\t\"ErrUnknownPC\":              reflect.ValueOf(&dwarf.ErrUnknownPC).Elem(),\n\t\t\"New\":                       reflect.ValueOf(dwarf.New),\n\t\t\"TagAccessDeclaration\":      reflect.ValueOf(dwarf.TagAccessDeclaration),\n\t\t\"TagArrayType\":              reflect.ValueOf(dwarf.TagArrayType),\n\t\t\"TagAtomicType\":             reflect.ValueOf(dwarf.TagAtomicType),\n\t\t\"TagBaseType\":               reflect.ValueOf(dwarf.TagBaseType),\n\t\t\"TagCallSite\":               reflect.ValueOf(dwarf.TagCallSite),\n\t\t\"TagCallSiteParameter\":      reflect.ValueOf(dwarf.TagCallSiteParameter),\n\t\t\"TagCatchDwarfBlock\":        reflect.ValueOf(dwarf.TagCatchDwarfBlock),\n\t\t\"TagClassType\":              reflect.ValueOf(dwarf.TagClassType),\n\t\t\"TagCoarrayType\":            reflect.ValueOf(dwarf.TagCoarrayType),\n\t\t\"TagCommonDwarfBlock\":       reflect.ValueOf(dwarf.TagCommonDwarfBlock),\n\t\t\"TagCommonInclusion\":        reflect.ValueOf(dwarf.TagCommonInclusion),\n\t\t\"TagCompileUnit\":            reflect.ValueOf(dwarf.TagCompileUnit),\n\t\t\"TagCondition\":              reflect.ValueOf(dwarf.TagCondition),\n\t\t\"TagConstType\":              reflect.ValueOf(dwarf.TagConstType),\n\t\t\"TagConstant\":               reflect.ValueOf(dwarf.TagConstant),\n\t\t\"TagDwarfProcedure\":         reflect.ValueOf(dwarf.TagDwarfProcedure),\n\t\t\"TagDynamicType\":            reflect.ValueOf(dwarf.TagDynamicType),\n\t\t\"TagEntryPoint\":             reflect.ValueOf(dwarf.TagEntryPoint),\n\t\t\"TagEnumerationType\":        reflect.ValueOf(dwarf.TagEnumerationType),\n\t\t\"TagEnumerator\":             reflect.ValueOf(dwarf.TagEnumerator),\n\t\t\"TagFileType\":               reflect.ValueOf(dwarf.TagFileType),\n\t\t\"TagFormalParameter\":        reflect.ValueOf(dwarf.TagFormalParameter),\n\t\t\"TagFriend\":                 reflect.ValueOf(dwarf.TagFriend),\n\t\t\"TagGenericSubrange\":        reflect.ValueOf(dwarf.TagGenericSubrange),\n\t\t\"TagImmutableType\":          reflect.ValueOf(dwarf.TagImmutableType),\n\t\t\"TagImportedDeclaration\":    reflect.ValueOf(dwarf.TagImportedDeclaration),\n\t\t\"TagImportedModule\":         reflect.ValueOf(dwarf.TagImportedModule),\n\t\t\"TagImportedUnit\":           reflect.ValueOf(dwarf.TagImportedUnit),\n\t\t\"TagInheritance\":            reflect.ValueOf(dwarf.TagInheritance),\n\t\t\"TagInlinedSubroutine\":      reflect.ValueOf(dwarf.TagInlinedSubroutine),\n\t\t\"TagInterfaceType\":          reflect.ValueOf(dwarf.TagInterfaceType),\n\t\t\"TagLabel\":                  reflect.ValueOf(dwarf.TagLabel),\n\t\t\"TagLexDwarfBlock\":          reflect.ValueOf(dwarf.TagLexDwarfBlock),\n\t\t\"TagMember\":                 reflect.ValueOf(dwarf.TagMember),\n\t\t\"TagModule\":                 reflect.ValueOf(dwarf.TagModule),\n\t\t\"TagMutableType\":            reflect.ValueOf(dwarf.TagMutableType),\n\t\t\"TagNamelist\":               reflect.ValueOf(dwarf.TagNamelist),\n\t\t\"TagNamelistItem\":           reflect.ValueOf(dwarf.TagNamelistItem),\n\t\t\"TagNamespace\":              reflect.ValueOf(dwarf.TagNamespace),\n\t\t\"TagPackedType\":             reflect.ValueOf(dwarf.TagPackedType),\n\t\t\"TagPartialUnit\":            reflect.ValueOf(dwarf.TagPartialUnit),\n\t\t\"TagPointerType\":            reflect.ValueOf(dwarf.TagPointerType),\n\t\t\"TagPtrToMemberType\":        reflect.ValueOf(dwarf.TagPtrToMemberType),\n\t\t\"TagReferenceType\":          reflect.ValueOf(dwarf.TagReferenceType),\n\t\t\"TagRestrictType\":           reflect.ValueOf(dwarf.TagRestrictType),\n\t\t\"TagRvalueReferenceType\":    reflect.ValueOf(dwarf.TagRvalueReferenceType),\n\t\t\"TagSetType\":                reflect.ValueOf(dwarf.TagSetType),\n\t\t\"TagSharedType\":             reflect.ValueOf(dwarf.TagSharedType),\n\t\t\"TagSkeletonUnit\":           reflect.ValueOf(dwarf.TagSkeletonUnit),\n\t\t\"TagStringType\":             reflect.ValueOf(dwarf.TagStringType),\n\t\t\"TagStructType\":             reflect.ValueOf(dwarf.TagStructType),\n\t\t\"TagSubprogram\":             reflect.ValueOf(dwarf.TagSubprogram),\n\t\t\"TagSubrangeType\":           reflect.ValueOf(dwarf.TagSubrangeType),\n\t\t\"TagSubroutineType\":         reflect.ValueOf(dwarf.TagSubroutineType),\n\t\t\"TagTemplateAlias\":          reflect.ValueOf(dwarf.TagTemplateAlias),\n\t\t\"TagTemplateTypeParameter\":  reflect.ValueOf(dwarf.TagTemplateTypeParameter),\n\t\t\"TagTemplateValueParameter\": reflect.ValueOf(dwarf.TagTemplateValueParameter),\n\t\t\"TagThrownType\":             reflect.ValueOf(dwarf.TagThrownType),\n\t\t\"TagTryDwarfBlock\":          reflect.ValueOf(dwarf.TagTryDwarfBlock),\n\t\t\"TagTypeUnit\":               reflect.ValueOf(dwarf.TagTypeUnit),\n\t\t\"TagTypedef\":                reflect.ValueOf(dwarf.TagTypedef),\n\t\t\"TagUnionType\":              reflect.ValueOf(dwarf.TagUnionType),\n\t\t\"TagUnspecifiedParameters\":  reflect.ValueOf(dwarf.TagUnspecifiedParameters),\n\t\t\"TagUnspecifiedType\":        reflect.ValueOf(dwarf.TagUnspecifiedType),\n\t\t\"TagVariable\":               reflect.ValueOf(dwarf.TagVariable),\n\t\t\"TagVariant\":                reflect.ValueOf(dwarf.TagVariant),\n\t\t\"TagVariantPart\":            reflect.ValueOf(dwarf.TagVariantPart),\n\t\t\"TagVolatileType\":           reflect.ValueOf(dwarf.TagVolatileType),\n\t\t\"TagWithStmt\":               reflect.ValueOf(dwarf.TagWithStmt),\n\n\t\t// type definitions\n\t\t\"AddrType\":        reflect.ValueOf((*dwarf.AddrType)(nil)),\n\t\t\"ArrayType\":       reflect.ValueOf((*dwarf.ArrayType)(nil)),\n\t\t\"Attr\":            reflect.ValueOf((*dwarf.Attr)(nil)),\n\t\t\"BasicType\":       reflect.ValueOf((*dwarf.BasicType)(nil)),\n\t\t\"BoolType\":        reflect.ValueOf((*dwarf.BoolType)(nil)),\n\t\t\"CharType\":        reflect.ValueOf((*dwarf.CharType)(nil)),\n\t\t\"Class\":           reflect.ValueOf((*dwarf.Class)(nil)),\n\t\t\"CommonType\":      reflect.ValueOf((*dwarf.CommonType)(nil)),\n\t\t\"ComplexType\":     reflect.ValueOf((*dwarf.ComplexType)(nil)),\n\t\t\"Data\":            reflect.ValueOf((*dwarf.Data)(nil)),\n\t\t\"DecodeError\":     reflect.ValueOf((*dwarf.DecodeError)(nil)),\n\t\t\"DotDotDotType\":   reflect.ValueOf((*dwarf.DotDotDotType)(nil)),\n\t\t\"Entry\":           reflect.ValueOf((*dwarf.Entry)(nil)),\n\t\t\"EnumType\":        reflect.ValueOf((*dwarf.EnumType)(nil)),\n\t\t\"EnumValue\":       reflect.ValueOf((*dwarf.EnumValue)(nil)),\n\t\t\"Field\":           reflect.ValueOf((*dwarf.Field)(nil)),\n\t\t\"FloatType\":       reflect.ValueOf((*dwarf.FloatType)(nil)),\n\t\t\"FuncType\":        reflect.ValueOf((*dwarf.FuncType)(nil)),\n\t\t\"IntType\":         reflect.ValueOf((*dwarf.IntType)(nil)),\n\t\t\"LineEntry\":       reflect.ValueOf((*dwarf.LineEntry)(nil)),\n\t\t\"LineFile\":        reflect.ValueOf((*dwarf.LineFile)(nil)),\n\t\t\"LineReader\":      reflect.ValueOf((*dwarf.LineReader)(nil)),\n\t\t\"LineReaderPos\":   reflect.ValueOf((*dwarf.LineReaderPos)(nil)),\n\t\t\"Offset\":          reflect.ValueOf((*dwarf.Offset)(nil)),\n\t\t\"PtrType\":         reflect.ValueOf((*dwarf.PtrType)(nil)),\n\t\t\"QualType\":        reflect.ValueOf((*dwarf.QualType)(nil)),\n\t\t\"Reader\":          reflect.ValueOf((*dwarf.Reader)(nil)),\n\t\t\"StructField\":     reflect.ValueOf((*dwarf.StructField)(nil)),\n\t\t\"StructType\":      reflect.ValueOf((*dwarf.StructType)(nil)),\n\t\t\"Tag\":             reflect.ValueOf((*dwarf.Tag)(nil)),\n\t\t\"Type\":            reflect.ValueOf((*dwarf.Type)(nil)),\n\t\t\"TypedefType\":     reflect.ValueOf((*dwarf.TypedefType)(nil)),\n\t\t\"UcharType\":       reflect.ValueOf((*dwarf.UcharType)(nil)),\n\t\t\"UintType\":        reflect.ValueOf((*dwarf.UintType)(nil)),\n\t\t\"UnspecifiedType\": reflect.ValueOf((*dwarf.UnspecifiedType)(nil)),\n\t\t\"UnsupportedType\": reflect.ValueOf((*dwarf.UnsupportedType)(nil)),\n\t\t\"VoidType\":        reflect.ValueOf((*dwarf.VoidType)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Type\": reflect.ValueOf((*_debug_dwarf_Type)(nil)),\n\t}\n}\n\n// _debug_dwarf_Type is an interface wrapper for Type type\ntype _debug_dwarf_Type struct {\n\tIValue  interface{}\n\tWCommon func() *dwarf.CommonType\n\tWSize   func() int64\n\tWString func() string\n}\n\nfunc (W _debug_dwarf_Type) Common() *dwarf.CommonType { return W.WCommon() }\nfunc (W _debug_dwarf_Type) Size() int64               { return W.WSize() }\nfunc (W _debug_dwarf_Type) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n"
  },
  {
    "path": "stdlib/go1_22_debug_elf.go",
    "content": "// Code generated by 'yaegi extract debug/elf'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"debug/elf\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"debug/elf/elf\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ARM_MAGIC_TRAMP_NUMBER\":             reflect.ValueOf(constant.MakeFromLiteral(\"1543503875\", token.INT, 0)),\n\t\t\"COMPRESS_HIOS\":                      reflect.ValueOf(elf.COMPRESS_HIOS),\n\t\t\"COMPRESS_HIPROC\":                    reflect.ValueOf(elf.COMPRESS_HIPROC),\n\t\t\"COMPRESS_LOOS\":                      reflect.ValueOf(elf.COMPRESS_LOOS),\n\t\t\"COMPRESS_LOPROC\":                    reflect.ValueOf(elf.COMPRESS_LOPROC),\n\t\t\"COMPRESS_ZLIB\":                      reflect.ValueOf(elf.COMPRESS_ZLIB),\n\t\t\"COMPRESS_ZSTD\":                      reflect.ValueOf(elf.COMPRESS_ZSTD),\n\t\t\"DF_1_CONFALT\":                       reflect.ValueOf(elf.DF_1_CONFALT),\n\t\t\"DF_1_DIRECT\":                        reflect.ValueOf(elf.DF_1_DIRECT),\n\t\t\"DF_1_DISPRELDNE\":                    reflect.ValueOf(elf.DF_1_DISPRELDNE),\n\t\t\"DF_1_DISPRELPND\":                    reflect.ValueOf(elf.DF_1_DISPRELPND),\n\t\t\"DF_1_EDITED\":                        reflect.ValueOf(elf.DF_1_EDITED),\n\t\t\"DF_1_ENDFILTEE\":                     reflect.ValueOf(elf.DF_1_ENDFILTEE),\n\t\t\"DF_1_GLOBAL\":                        reflect.ValueOf(elf.DF_1_GLOBAL),\n\t\t\"DF_1_GLOBAUDIT\":                     reflect.ValueOf(elf.DF_1_GLOBAUDIT),\n\t\t\"DF_1_GROUP\":                         reflect.ValueOf(elf.DF_1_GROUP),\n\t\t\"DF_1_IGNMULDEF\":                     reflect.ValueOf(elf.DF_1_IGNMULDEF),\n\t\t\"DF_1_INITFIRST\":                     reflect.ValueOf(elf.DF_1_INITFIRST),\n\t\t\"DF_1_INTERPOSE\":                     reflect.ValueOf(elf.DF_1_INTERPOSE),\n\t\t\"DF_1_KMOD\":                          reflect.ValueOf(elf.DF_1_KMOD),\n\t\t\"DF_1_LOADFLTR\":                      reflect.ValueOf(elf.DF_1_LOADFLTR),\n\t\t\"DF_1_NOCOMMON\":                      reflect.ValueOf(elf.DF_1_NOCOMMON),\n\t\t\"DF_1_NODEFLIB\":                      reflect.ValueOf(elf.DF_1_NODEFLIB),\n\t\t\"DF_1_NODELETE\":                      reflect.ValueOf(elf.DF_1_NODELETE),\n\t\t\"DF_1_NODIRECT\":                      reflect.ValueOf(elf.DF_1_NODIRECT),\n\t\t\"DF_1_NODUMP\":                        reflect.ValueOf(elf.DF_1_NODUMP),\n\t\t\"DF_1_NOHDR\":                         reflect.ValueOf(elf.DF_1_NOHDR),\n\t\t\"DF_1_NOKSYMS\":                       reflect.ValueOf(elf.DF_1_NOKSYMS),\n\t\t\"DF_1_NOOPEN\":                        reflect.ValueOf(elf.DF_1_NOOPEN),\n\t\t\"DF_1_NORELOC\":                       reflect.ValueOf(elf.DF_1_NORELOC),\n\t\t\"DF_1_NOW\":                           reflect.ValueOf(elf.DF_1_NOW),\n\t\t\"DF_1_ORIGIN\":                        reflect.ValueOf(elf.DF_1_ORIGIN),\n\t\t\"DF_1_PIE\":                           reflect.ValueOf(elf.DF_1_PIE),\n\t\t\"DF_1_SINGLETON\":                     reflect.ValueOf(elf.DF_1_SINGLETON),\n\t\t\"DF_1_STUB\":                          reflect.ValueOf(elf.DF_1_STUB),\n\t\t\"DF_1_SYMINTPOSE\":                    reflect.ValueOf(elf.DF_1_SYMINTPOSE),\n\t\t\"DF_1_TRANS\":                         reflect.ValueOf(elf.DF_1_TRANS),\n\t\t\"DF_1_WEAKFILTER\":                    reflect.ValueOf(elf.DF_1_WEAKFILTER),\n\t\t\"DF_BIND_NOW\":                        reflect.ValueOf(elf.DF_BIND_NOW),\n\t\t\"DF_ORIGIN\":                          reflect.ValueOf(elf.DF_ORIGIN),\n\t\t\"DF_STATIC_TLS\":                      reflect.ValueOf(elf.DF_STATIC_TLS),\n\t\t\"DF_SYMBOLIC\":                        reflect.ValueOf(elf.DF_SYMBOLIC),\n\t\t\"DF_TEXTREL\":                         reflect.ValueOf(elf.DF_TEXTREL),\n\t\t\"DT_ADDRRNGHI\":                       reflect.ValueOf(elf.DT_ADDRRNGHI),\n\t\t\"DT_ADDRRNGLO\":                       reflect.ValueOf(elf.DT_ADDRRNGLO),\n\t\t\"DT_AUDIT\":                           reflect.ValueOf(elf.DT_AUDIT),\n\t\t\"DT_AUXILIARY\":                       reflect.ValueOf(elf.DT_AUXILIARY),\n\t\t\"DT_BIND_NOW\":                        reflect.ValueOf(elf.DT_BIND_NOW),\n\t\t\"DT_CHECKSUM\":                        reflect.ValueOf(elf.DT_CHECKSUM),\n\t\t\"DT_CONFIG\":                          reflect.ValueOf(elf.DT_CONFIG),\n\t\t\"DT_DEBUG\":                           reflect.ValueOf(elf.DT_DEBUG),\n\t\t\"DT_DEPAUDIT\":                        reflect.ValueOf(elf.DT_DEPAUDIT),\n\t\t\"DT_ENCODING\":                        reflect.ValueOf(elf.DT_ENCODING),\n\t\t\"DT_FEATURE\":                         reflect.ValueOf(elf.DT_FEATURE),\n\t\t\"DT_FILTER\":                          reflect.ValueOf(elf.DT_FILTER),\n\t\t\"DT_FINI\":                            reflect.ValueOf(elf.DT_FINI),\n\t\t\"DT_FINI_ARRAY\":                      reflect.ValueOf(elf.DT_FINI_ARRAY),\n\t\t\"DT_FINI_ARRAYSZ\":                    reflect.ValueOf(elf.DT_FINI_ARRAYSZ),\n\t\t\"DT_FLAGS\":                           reflect.ValueOf(elf.DT_FLAGS),\n\t\t\"DT_FLAGS_1\":                         reflect.ValueOf(elf.DT_FLAGS_1),\n\t\t\"DT_GNU_CONFLICT\":                    reflect.ValueOf(elf.DT_GNU_CONFLICT),\n\t\t\"DT_GNU_CONFLICTSZ\":                  reflect.ValueOf(elf.DT_GNU_CONFLICTSZ),\n\t\t\"DT_GNU_HASH\":                        reflect.ValueOf(elf.DT_GNU_HASH),\n\t\t\"DT_GNU_LIBLIST\":                     reflect.ValueOf(elf.DT_GNU_LIBLIST),\n\t\t\"DT_GNU_LIBLISTSZ\":                   reflect.ValueOf(elf.DT_GNU_LIBLISTSZ),\n\t\t\"DT_GNU_PRELINKED\":                   reflect.ValueOf(elf.DT_GNU_PRELINKED),\n\t\t\"DT_HASH\":                            reflect.ValueOf(elf.DT_HASH),\n\t\t\"DT_HIOS\":                            reflect.ValueOf(elf.DT_HIOS),\n\t\t\"DT_HIPROC\":                          reflect.ValueOf(elf.DT_HIPROC),\n\t\t\"DT_INIT\":                            reflect.ValueOf(elf.DT_INIT),\n\t\t\"DT_INIT_ARRAY\":                      reflect.ValueOf(elf.DT_INIT_ARRAY),\n\t\t\"DT_INIT_ARRAYSZ\":                    reflect.ValueOf(elf.DT_INIT_ARRAYSZ),\n\t\t\"DT_JMPREL\":                          reflect.ValueOf(elf.DT_JMPREL),\n\t\t\"DT_LOOS\":                            reflect.ValueOf(elf.DT_LOOS),\n\t\t\"DT_LOPROC\":                          reflect.ValueOf(elf.DT_LOPROC),\n\t\t\"DT_MIPS_AUX_DYNAMIC\":                reflect.ValueOf(elf.DT_MIPS_AUX_DYNAMIC),\n\t\t\"DT_MIPS_BASE_ADDRESS\":               reflect.ValueOf(elf.DT_MIPS_BASE_ADDRESS),\n\t\t\"DT_MIPS_COMPACT_SIZE\":               reflect.ValueOf(elf.DT_MIPS_COMPACT_SIZE),\n\t\t\"DT_MIPS_CONFLICT\":                   reflect.ValueOf(elf.DT_MIPS_CONFLICT),\n\t\t\"DT_MIPS_CONFLICTNO\":                 reflect.ValueOf(elf.DT_MIPS_CONFLICTNO),\n\t\t\"DT_MIPS_CXX_FLAGS\":                  reflect.ValueOf(elf.DT_MIPS_CXX_FLAGS),\n\t\t\"DT_MIPS_DELTA_CLASS\":                reflect.ValueOf(elf.DT_MIPS_DELTA_CLASS),\n\t\t\"DT_MIPS_DELTA_CLASSSYM\":             reflect.ValueOf(elf.DT_MIPS_DELTA_CLASSSYM),\n\t\t\"DT_MIPS_DELTA_CLASSSYM_NO\":          reflect.ValueOf(elf.DT_MIPS_DELTA_CLASSSYM_NO),\n\t\t\"DT_MIPS_DELTA_CLASS_NO\":             reflect.ValueOf(elf.DT_MIPS_DELTA_CLASS_NO),\n\t\t\"DT_MIPS_DELTA_INSTANCE\":             reflect.ValueOf(elf.DT_MIPS_DELTA_INSTANCE),\n\t\t\"DT_MIPS_DELTA_INSTANCE_NO\":          reflect.ValueOf(elf.DT_MIPS_DELTA_INSTANCE_NO),\n\t\t\"DT_MIPS_DELTA_RELOC\":                reflect.ValueOf(elf.DT_MIPS_DELTA_RELOC),\n\t\t\"DT_MIPS_DELTA_RELOC_NO\":             reflect.ValueOf(elf.DT_MIPS_DELTA_RELOC_NO),\n\t\t\"DT_MIPS_DELTA_SYM\":                  reflect.ValueOf(elf.DT_MIPS_DELTA_SYM),\n\t\t\"DT_MIPS_DELTA_SYM_NO\":               reflect.ValueOf(elf.DT_MIPS_DELTA_SYM_NO),\n\t\t\"DT_MIPS_DYNSTR_ALIGN\":               reflect.ValueOf(elf.DT_MIPS_DYNSTR_ALIGN),\n\t\t\"DT_MIPS_FLAGS\":                      reflect.ValueOf(elf.DT_MIPS_FLAGS),\n\t\t\"DT_MIPS_GOTSYM\":                     reflect.ValueOf(elf.DT_MIPS_GOTSYM),\n\t\t\"DT_MIPS_GP_VALUE\":                   reflect.ValueOf(elf.DT_MIPS_GP_VALUE),\n\t\t\"DT_MIPS_HIDDEN_GOTIDX\":              reflect.ValueOf(elf.DT_MIPS_HIDDEN_GOTIDX),\n\t\t\"DT_MIPS_HIPAGENO\":                   reflect.ValueOf(elf.DT_MIPS_HIPAGENO),\n\t\t\"DT_MIPS_ICHECKSUM\":                  reflect.ValueOf(elf.DT_MIPS_ICHECKSUM),\n\t\t\"DT_MIPS_INTERFACE\":                  reflect.ValueOf(elf.DT_MIPS_INTERFACE),\n\t\t\"DT_MIPS_INTERFACE_SIZE\":             reflect.ValueOf(elf.DT_MIPS_INTERFACE_SIZE),\n\t\t\"DT_MIPS_IVERSION\":                   reflect.ValueOf(elf.DT_MIPS_IVERSION),\n\t\t\"DT_MIPS_LIBLIST\":                    reflect.ValueOf(elf.DT_MIPS_LIBLIST),\n\t\t\"DT_MIPS_LIBLISTNO\":                  reflect.ValueOf(elf.DT_MIPS_LIBLISTNO),\n\t\t\"DT_MIPS_LOCALPAGE_GOTIDX\":           reflect.ValueOf(elf.DT_MIPS_LOCALPAGE_GOTIDX),\n\t\t\"DT_MIPS_LOCAL_GOTIDX\":               reflect.ValueOf(elf.DT_MIPS_LOCAL_GOTIDX),\n\t\t\"DT_MIPS_LOCAL_GOTNO\":                reflect.ValueOf(elf.DT_MIPS_LOCAL_GOTNO),\n\t\t\"DT_MIPS_MSYM\":                       reflect.ValueOf(elf.DT_MIPS_MSYM),\n\t\t\"DT_MIPS_OPTIONS\":                    reflect.ValueOf(elf.DT_MIPS_OPTIONS),\n\t\t\"DT_MIPS_PERF_SUFFIX\":                reflect.ValueOf(elf.DT_MIPS_PERF_SUFFIX),\n\t\t\"DT_MIPS_PIXIE_INIT\":                 reflect.ValueOf(elf.DT_MIPS_PIXIE_INIT),\n\t\t\"DT_MIPS_PLTGOT\":                     reflect.ValueOf(elf.DT_MIPS_PLTGOT),\n\t\t\"DT_MIPS_PROTECTED_GOTIDX\":           reflect.ValueOf(elf.DT_MIPS_PROTECTED_GOTIDX),\n\t\t\"DT_MIPS_RLD_MAP\":                    reflect.ValueOf(elf.DT_MIPS_RLD_MAP),\n\t\t\"DT_MIPS_RLD_MAP_REL\":                reflect.ValueOf(elf.DT_MIPS_RLD_MAP_REL),\n\t\t\"DT_MIPS_RLD_TEXT_RESOLVE_ADDR\":      reflect.ValueOf(elf.DT_MIPS_RLD_TEXT_RESOLVE_ADDR),\n\t\t\"DT_MIPS_RLD_VERSION\":                reflect.ValueOf(elf.DT_MIPS_RLD_VERSION),\n\t\t\"DT_MIPS_RWPLT\":                      reflect.ValueOf(elf.DT_MIPS_RWPLT),\n\t\t\"DT_MIPS_SYMBOL_LIB\":                 reflect.ValueOf(elf.DT_MIPS_SYMBOL_LIB),\n\t\t\"DT_MIPS_SYMTABNO\":                   reflect.ValueOf(elf.DT_MIPS_SYMTABNO),\n\t\t\"DT_MIPS_TIME_STAMP\":                 reflect.ValueOf(elf.DT_MIPS_TIME_STAMP),\n\t\t\"DT_MIPS_UNREFEXTNO\":                 reflect.ValueOf(elf.DT_MIPS_UNREFEXTNO),\n\t\t\"DT_MOVEENT\":                         reflect.ValueOf(elf.DT_MOVEENT),\n\t\t\"DT_MOVESZ\":                          reflect.ValueOf(elf.DT_MOVESZ),\n\t\t\"DT_MOVETAB\":                         reflect.ValueOf(elf.DT_MOVETAB),\n\t\t\"DT_NEEDED\":                          reflect.ValueOf(elf.DT_NEEDED),\n\t\t\"DT_NULL\":                            reflect.ValueOf(elf.DT_NULL),\n\t\t\"DT_PLTGOT\":                          reflect.ValueOf(elf.DT_PLTGOT),\n\t\t\"DT_PLTPAD\":                          reflect.ValueOf(elf.DT_PLTPAD),\n\t\t\"DT_PLTPADSZ\":                        reflect.ValueOf(elf.DT_PLTPADSZ),\n\t\t\"DT_PLTREL\":                          reflect.ValueOf(elf.DT_PLTREL),\n\t\t\"DT_PLTRELSZ\":                        reflect.ValueOf(elf.DT_PLTRELSZ),\n\t\t\"DT_POSFLAG_1\":                       reflect.ValueOf(elf.DT_POSFLAG_1),\n\t\t\"DT_PPC64_GLINK\":                     reflect.ValueOf(elf.DT_PPC64_GLINK),\n\t\t\"DT_PPC64_OPD\":                       reflect.ValueOf(elf.DT_PPC64_OPD),\n\t\t\"DT_PPC64_OPDSZ\":                     reflect.ValueOf(elf.DT_PPC64_OPDSZ),\n\t\t\"DT_PPC64_OPT\":                       reflect.ValueOf(elf.DT_PPC64_OPT),\n\t\t\"DT_PPC_GOT\":                         reflect.ValueOf(elf.DT_PPC_GOT),\n\t\t\"DT_PPC_OPT\":                         reflect.ValueOf(elf.DT_PPC_OPT),\n\t\t\"DT_PREINIT_ARRAY\":                   reflect.ValueOf(elf.DT_PREINIT_ARRAY),\n\t\t\"DT_PREINIT_ARRAYSZ\":                 reflect.ValueOf(elf.DT_PREINIT_ARRAYSZ),\n\t\t\"DT_REL\":                             reflect.ValueOf(elf.DT_REL),\n\t\t\"DT_RELA\":                            reflect.ValueOf(elf.DT_RELA),\n\t\t\"DT_RELACOUNT\":                       reflect.ValueOf(elf.DT_RELACOUNT),\n\t\t\"DT_RELAENT\":                         reflect.ValueOf(elf.DT_RELAENT),\n\t\t\"DT_RELASZ\":                          reflect.ValueOf(elf.DT_RELASZ),\n\t\t\"DT_RELCOUNT\":                        reflect.ValueOf(elf.DT_RELCOUNT),\n\t\t\"DT_RELENT\":                          reflect.ValueOf(elf.DT_RELENT),\n\t\t\"DT_RELSZ\":                           reflect.ValueOf(elf.DT_RELSZ),\n\t\t\"DT_RPATH\":                           reflect.ValueOf(elf.DT_RPATH),\n\t\t\"DT_RUNPATH\":                         reflect.ValueOf(elf.DT_RUNPATH),\n\t\t\"DT_SONAME\":                          reflect.ValueOf(elf.DT_SONAME),\n\t\t\"DT_SPARC_REGISTER\":                  reflect.ValueOf(elf.DT_SPARC_REGISTER),\n\t\t\"DT_STRSZ\":                           reflect.ValueOf(elf.DT_STRSZ),\n\t\t\"DT_STRTAB\":                          reflect.ValueOf(elf.DT_STRTAB),\n\t\t\"DT_SYMBOLIC\":                        reflect.ValueOf(elf.DT_SYMBOLIC),\n\t\t\"DT_SYMENT\":                          reflect.ValueOf(elf.DT_SYMENT),\n\t\t\"DT_SYMINENT\":                        reflect.ValueOf(elf.DT_SYMINENT),\n\t\t\"DT_SYMINFO\":                         reflect.ValueOf(elf.DT_SYMINFO),\n\t\t\"DT_SYMINSZ\":                         reflect.ValueOf(elf.DT_SYMINSZ),\n\t\t\"DT_SYMTAB\":                          reflect.ValueOf(elf.DT_SYMTAB),\n\t\t\"DT_SYMTAB_SHNDX\":                    reflect.ValueOf(elf.DT_SYMTAB_SHNDX),\n\t\t\"DT_TEXTREL\":                         reflect.ValueOf(elf.DT_TEXTREL),\n\t\t\"DT_TLSDESC_GOT\":                     reflect.ValueOf(elf.DT_TLSDESC_GOT),\n\t\t\"DT_TLSDESC_PLT\":                     reflect.ValueOf(elf.DT_TLSDESC_PLT),\n\t\t\"DT_USED\":                            reflect.ValueOf(elf.DT_USED),\n\t\t\"DT_VALRNGHI\":                        reflect.ValueOf(elf.DT_VALRNGHI),\n\t\t\"DT_VALRNGLO\":                        reflect.ValueOf(elf.DT_VALRNGLO),\n\t\t\"DT_VERDEF\":                          reflect.ValueOf(elf.DT_VERDEF),\n\t\t\"DT_VERDEFNUM\":                       reflect.ValueOf(elf.DT_VERDEFNUM),\n\t\t\"DT_VERNEED\":                         reflect.ValueOf(elf.DT_VERNEED),\n\t\t\"DT_VERNEEDNUM\":                      reflect.ValueOf(elf.DT_VERNEEDNUM),\n\t\t\"DT_VERSYM\":                          reflect.ValueOf(elf.DT_VERSYM),\n\t\t\"EI_ABIVERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EI_CLASS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EI_DATA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"EI_NIDENT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EI_OSABI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"EI_PAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"EI_VERSION\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ELFCLASS32\":                         reflect.ValueOf(elf.ELFCLASS32),\n\t\t\"ELFCLASS64\":                         reflect.ValueOf(elf.ELFCLASS64),\n\t\t\"ELFCLASSNONE\":                       reflect.ValueOf(elf.ELFCLASSNONE),\n\t\t\"ELFDATA2LSB\":                        reflect.ValueOf(elf.ELFDATA2LSB),\n\t\t\"ELFDATA2MSB\":                        reflect.ValueOf(elf.ELFDATA2MSB),\n\t\t\"ELFDATANONE\":                        reflect.ValueOf(elf.ELFDATANONE),\n\t\t\"ELFMAG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"\\\"\\\\x7fELF\\\"\", token.STRING, 0)),\n\t\t\"ELFOSABI_86OPEN\":                    reflect.ValueOf(elf.ELFOSABI_86OPEN),\n\t\t\"ELFOSABI_AIX\":                       reflect.ValueOf(elf.ELFOSABI_AIX),\n\t\t\"ELFOSABI_ARM\":                       reflect.ValueOf(elf.ELFOSABI_ARM),\n\t\t\"ELFOSABI_AROS\":                      reflect.ValueOf(elf.ELFOSABI_AROS),\n\t\t\"ELFOSABI_CLOUDABI\":                  reflect.ValueOf(elf.ELFOSABI_CLOUDABI),\n\t\t\"ELFOSABI_FENIXOS\":                   reflect.ValueOf(elf.ELFOSABI_FENIXOS),\n\t\t\"ELFOSABI_FREEBSD\":                   reflect.ValueOf(elf.ELFOSABI_FREEBSD),\n\t\t\"ELFOSABI_HPUX\":                      reflect.ValueOf(elf.ELFOSABI_HPUX),\n\t\t\"ELFOSABI_HURD\":                      reflect.ValueOf(elf.ELFOSABI_HURD),\n\t\t\"ELFOSABI_IRIX\":                      reflect.ValueOf(elf.ELFOSABI_IRIX),\n\t\t\"ELFOSABI_LINUX\":                     reflect.ValueOf(elf.ELFOSABI_LINUX),\n\t\t\"ELFOSABI_MODESTO\":                   reflect.ValueOf(elf.ELFOSABI_MODESTO),\n\t\t\"ELFOSABI_NETBSD\":                    reflect.ValueOf(elf.ELFOSABI_NETBSD),\n\t\t\"ELFOSABI_NONE\":                      reflect.ValueOf(elf.ELFOSABI_NONE),\n\t\t\"ELFOSABI_NSK\":                       reflect.ValueOf(elf.ELFOSABI_NSK),\n\t\t\"ELFOSABI_OPENBSD\":                   reflect.ValueOf(elf.ELFOSABI_OPENBSD),\n\t\t\"ELFOSABI_OPENVMS\":                   reflect.ValueOf(elf.ELFOSABI_OPENVMS),\n\t\t\"ELFOSABI_SOLARIS\":                   reflect.ValueOf(elf.ELFOSABI_SOLARIS),\n\t\t\"ELFOSABI_STANDALONE\":                reflect.ValueOf(elf.ELFOSABI_STANDALONE),\n\t\t\"ELFOSABI_TRU64\":                     reflect.ValueOf(elf.ELFOSABI_TRU64),\n\t\t\"EM_386\":                             reflect.ValueOf(elf.EM_386),\n\t\t\"EM_486\":                             reflect.ValueOf(elf.EM_486),\n\t\t\"EM_56800EX\":                         reflect.ValueOf(elf.EM_56800EX),\n\t\t\"EM_68HC05\":                          reflect.ValueOf(elf.EM_68HC05),\n\t\t\"EM_68HC08\":                          reflect.ValueOf(elf.EM_68HC08),\n\t\t\"EM_68HC11\":                          reflect.ValueOf(elf.EM_68HC11),\n\t\t\"EM_68HC12\":                          reflect.ValueOf(elf.EM_68HC12),\n\t\t\"EM_68HC16\":                          reflect.ValueOf(elf.EM_68HC16),\n\t\t\"EM_68K\":                             reflect.ValueOf(elf.EM_68K),\n\t\t\"EM_78KOR\":                           reflect.ValueOf(elf.EM_78KOR),\n\t\t\"EM_8051\":                            reflect.ValueOf(elf.EM_8051),\n\t\t\"EM_860\":                             reflect.ValueOf(elf.EM_860),\n\t\t\"EM_88K\":                             reflect.ValueOf(elf.EM_88K),\n\t\t\"EM_960\":                             reflect.ValueOf(elf.EM_960),\n\t\t\"EM_AARCH64\":                         reflect.ValueOf(elf.EM_AARCH64),\n\t\t\"EM_ALPHA\":                           reflect.ValueOf(elf.EM_ALPHA),\n\t\t\"EM_ALPHA_STD\":                       reflect.ValueOf(elf.EM_ALPHA_STD),\n\t\t\"EM_ALTERA_NIOS2\":                    reflect.ValueOf(elf.EM_ALTERA_NIOS2),\n\t\t\"EM_AMDGPU\":                          reflect.ValueOf(elf.EM_AMDGPU),\n\t\t\"EM_ARC\":                             reflect.ValueOf(elf.EM_ARC),\n\t\t\"EM_ARCA\":                            reflect.ValueOf(elf.EM_ARCA),\n\t\t\"EM_ARC_COMPACT\":                     reflect.ValueOf(elf.EM_ARC_COMPACT),\n\t\t\"EM_ARC_COMPACT2\":                    reflect.ValueOf(elf.EM_ARC_COMPACT2),\n\t\t\"EM_ARM\":                             reflect.ValueOf(elf.EM_ARM),\n\t\t\"EM_AVR\":                             reflect.ValueOf(elf.EM_AVR),\n\t\t\"EM_AVR32\":                           reflect.ValueOf(elf.EM_AVR32),\n\t\t\"EM_BA1\":                             reflect.ValueOf(elf.EM_BA1),\n\t\t\"EM_BA2\":                             reflect.ValueOf(elf.EM_BA2),\n\t\t\"EM_BLACKFIN\":                        reflect.ValueOf(elf.EM_BLACKFIN),\n\t\t\"EM_BPF\":                             reflect.ValueOf(elf.EM_BPF),\n\t\t\"EM_C166\":                            reflect.ValueOf(elf.EM_C166),\n\t\t\"EM_CDP\":                             reflect.ValueOf(elf.EM_CDP),\n\t\t\"EM_CE\":                              reflect.ValueOf(elf.EM_CE),\n\t\t\"EM_CLOUDSHIELD\":                     reflect.ValueOf(elf.EM_CLOUDSHIELD),\n\t\t\"EM_COGE\":                            reflect.ValueOf(elf.EM_COGE),\n\t\t\"EM_COLDFIRE\":                        reflect.ValueOf(elf.EM_COLDFIRE),\n\t\t\"EM_COOL\":                            reflect.ValueOf(elf.EM_COOL),\n\t\t\"EM_COREA_1ST\":                       reflect.ValueOf(elf.EM_COREA_1ST),\n\t\t\"EM_COREA_2ND\":                       reflect.ValueOf(elf.EM_COREA_2ND),\n\t\t\"EM_CR\":                              reflect.ValueOf(elf.EM_CR),\n\t\t\"EM_CR16\":                            reflect.ValueOf(elf.EM_CR16),\n\t\t\"EM_CRAYNV2\":                         reflect.ValueOf(elf.EM_CRAYNV2),\n\t\t\"EM_CRIS\":                            reflect.ValueOf(elf.EM_CRIS),\n\t\t\"EM_CRX\":                             reflect.ValueOf(elf.EM_CRX),\n\t\t\"EM_CSR_KALIMBA\":                     reflect.ValueOf(elf.EM_CSR_KALIMBA),\n\t\t\"EM_CUDA\":                            reflect.ValueOf(elf.EM_CUDA),\n\t\t\"EM_CYPRESS_M8C\":                     reflect.ValueOf(elf.EM_CYPRESS_M8C),\n\t\t\"EM_D10V\":                            reflect.ValueOf(elf.EM_D10V),\n\t\t\"EM_D30V\":                            reflect.ValueOf(elf.EM_D30V),\n\t\t\"EM_DSP24\":                           reflect.ValueOf(elf.EM_DSP24),\n\t\t\"EM_DSPIC30F\":                        reflect.ValueOf(elf.EM_DSPIC30F),\n\t\t\"EM_DXP\":                             reflect.ValueOf(elf.EM_DXP),\n\t\t\"EM_ECOG1\":                           reflect.ValueOf(elf.EM_ECOG1),\n\t\t\"EM_ECOG16\":                          reflect.ValueOf(elf.EM_ECOG16),\n\t\t\"EM_ECOG1X\":                          reflect.ValueOf(elf.EM_ECOG1X),\n\t\t\"EM_ECOG2\":                           reflect.ValueOf(elf.EM_ECOG2),\n\t\t\"EM_ETPU\":                            reflect.ValueOf(elf.EM_ETPU),\n\t\t\"EM_EXCESS\":                          reflect.ValueOf(elf.EM_EXCESS),\n\t\t\"EM_F2MC16\":                          reflect.ValueOf(elf.EM_F2MC16),\n\t\t\"EM_FIREPATH\":                        reflect.ValueOf(elf.EM_FIREPATH),\n\t\t\"EM_FR20\":                            reflect.ValueOf(elf.EM_FR20),\n\t\t\"EM_FR30\":                            reflect.ValueOf(elf.EM_FR30),\n\t\t\"EM_FT32\":                            reflect.ValueOf(elf.EM_FT32),\n\t\t\"EM_FX66\":                            reflect.ValueOf(elf.EM_FX66),\n\t\t\"EM_H8S\":                             reflect.ValueOf(elf.EM_H8S),\n\t\t\"EM_H8_300\":                          reflect.ValueOf(elf.EM_H8_300),\n\t\t\"EM_H8_300H\":                         reflect.ValueOf(elf.EM_H8_300H),\n\t\t\"EM_H8_500\":                          reflect.ValueOf(elf.EM_H8_500),\n\t\t\"EM_HUANY\":                           reflect.ValueOf(elf.EM_HUANY),\n\t\t\"EM_IA_64\":                           reflect.ValueOf(elf.EM_IA_64),\n\t\t\"EM_INTEL205\":                        reflect.ValueOf(elf.EM_INTEL205),\n\t\t\"EM_INTEL206\":                        reflect.ValueOf(elf.EM_INTEL206),\n\t\t\"EM_INTEL207\":                        reflect.ValueOf(elf.EM_INTEL207),\n\t\t\"EM_INTEL208\":                        reflect.ValueOf(elf.EM_INTEL208),\n\t\t\"EM_INTEL209\":                        reflect.ValueOf(elf.EM_INTEL209),\n\t\t\"EM_IP2K\":                            reflect.ValueOf(elf.EM_IP2K),\n\t\t\"EM_JAVELIN\":                         reflect.ValueOf(elf.EM_JAVELIN),\n\t\t\"EM_K10M\":                            reflect.ValueOf(elf.EM_K10M),\n\t\t\"EM_KM32\":                            reflect.ValueOf(elf.EM_KM32),\n\t\t\"EM_KMX16\":                           reflect.ValueOf(elf.EM_KMX16),\n\t\t\"EM_KMX32\":                           reflect.ValueOf(elf.EM_KMX32),\n\t\t\"EM_KMX8\":                            reflect.ValueOf(elf.EM_KMX8),\n\t\t\"EM_KVARC\":                           reflect.ValueOf(elf.EM_KVARC),\n\t\t\"EM_L10M\":                            reflect.ValueOf(elf.EM_L10M),\n\t\t\"EM_LANAI\":                           reflect.ValueOf(elf.EM_LANAI),\n\t\t\"EM_LATTICEMICO32\":                   reflect.ValueOf(elf.EM_LATTICEMICO32),\n\t\t\"EM_LOONGARCH\":                       reflect.ValueOf(elf.EM_LOONGARCH),\n\t\t\"EM_M16C\":                            reflect.ValueOf(elf.EM_M16C),\n\t\t\"EM_M32\":                             reflect.ValueOf(elf.EM_M32),\n\t\t\"EM_M32C\":                            reflect.ValueOf(elf.EM_M32C),\n\t\t\"EM_M32R\":                            reflect.ValueOf(elf.EM_M32R),\n\t\t\"EM_MANIK\":                           reflect.ValueOf(elf.EM_MANIK),\n\t\t\"EM_MAX\":                             reflect.ValueOf(elf.EM_MAX),\n\t\t\"EM_MAXQ30\":                          reflect.ValueOf(elf.EM_MAXQ30),\n\t\t\"EM_MCHP_PIC\":                        reflect.ValueOf(elf.EM_MCHP_PIC),\n\t\t\"EM_MCST_ELBRUS\":                     reflect.ValueOf(elf.EM_MCST_ELBRUS),\n\t\t\"EM_ME16\":                            reflect.ValueOf(elf.EM_ME16),\n\t\t\"EM_METAG\":                           reflect.ValueOf(elf.EM_METAG),\n\t\t\"EM_MICROBLAZE\":                      reflect.ValueOf(elf.EM_MICROBLAZE),\n\t\t\"EM_MIPS\":                            reflect.ValueOf(elf.EM_MIPS),\n\t\t\"EM_MIPS_RS3_LE\":                     reflect.ValueOf(elf.EM_MIPS_RS3_LE),\n\t\t\"EM_MIPS_RS4_BE\":                     reflect.ValueOf(elf.EM_MIPS_RS4_BE),\n\t\t\"EM_MIPS_X\":                          reflect.ValueOf(elf.EM_MIPS_X),\n\t\t\"EM_MMA\":                             reflect.ValueOf(elf.EM_MMA),\n\t\t\"EM_MMDSP_PLUS\":                      reflect.ValueOf(elf.EM_MMDSP_PLUS),\n\t\t\"EM_MMIX\":                            reflect.ValueOf(elf.EM_MMIX),\n\t\t\"EM_MN10200\":                         reflect.ValueOf(elf.EM_MN10200),\n\t\t\"EM_MN10300\":                         reflect.ValueOf(elf.EM_MN10300),\n\t\t\"EM_MOXIE\":                           reflect.ValueOf(elf.EM_MOXIE),\n\t\t\"EM_MSP430\":                          reflect.ValueOf(elf.EM_MSP430),\n\t\t\"EM_NCPU\":                            reflect.ValueOf(elf.EM_NCPU),\n\t\t\"EM_NDR1\":                            reflect.ValueOf(elf.EM_NDR1),\n\t\t\"EM_NDS32\":                           reflect.ValueOf(elf.EM_NDS32),\n\t\t\"EM_NONE\":                            reflect.ValueOf(elf.EM_NONE),\n\t\t\"EM_NORC\":                            reflect.ValueOf(elf.EM_NORC),\n\t\t\"EM_NS32K\":                           reflect.ValueOf(elf.EM_NS32K),\n\t\t\"EM_OPEN8\":                           reflect.ValueOf(elf.EM_OPEN8),\n\t\t\"EM_OPENRISC\":                        reflect.ValueOf(elf.EM_OPENRISC),\n\t\t\"EM_PARISC\":                          reflect.ValueOf(elf.EM_PARISC),\n\t\t\"EM_PCP\":                             reflect.ValueOf(elf.EM_PCP),\n\t\t\"EM_PDP10\":                           reflect.ValueOf(elf.EM_PDP10),\n\t\t\"EM_PDP11\":                           reflect.ValueOf(elf.EM_PDP11),\n\t\t\"EM_PDSP\":                            reflect.ValueOf(elf.EM_PDSP),\n\t\t\"EM_PJ\":                              reflect.ValueOf(elf.EM_PJ),\n\t\t\"EM_PPC\":                             reflect.ValueOf(elf.EM_PPC),\n\t\t\"EM_PPC64\":                           reflect.ValueOf(elf.EM_PPC64),\n\t\t\"EM_PRISM\":                           reflect.ValueOf(elf.EM_PRISM),\n\t\t\"EM_QDSP6\":                           reflect.ValueOf(elf.EM_QDSP6),\n\t\t\"EM_R32C\":                            reflect.ValueOf(elf.EM_R32C),\n\t\t\"EM_RCE\":                             reflect.ValueOf(elf.EM_RCE),\n\t\t\"EM_RH32\":                            reflect.ValueOf(elf.EM_RH32),\n\t\t\"EM_RISCV\":                           reflect.ValueOf(elf.EM_RISCV),\n\t\t\"EM_RL78\":                            reflect.ValueOf(elf.EM_RL78),\n\t\t\"EM_RS08\":                            reflect.ValueOf(elf.EM_RS08),\n\t\t\"EM_RX\":                              reflect.ValueOf(elf.EM_RX),\n\t\t\"EM_S370\":                            reflect.ValueOf(elf.EM_S370),\n\t\t\"EM_S390\":                            reflect.ValueOf(elf.EM_S390),\n\t\t\"EM_SCORE7\":                          reflect.ValueOf(elf.EM_SCORE7),\n\t\t\"EM_SEP\":                             reflect.ValueOf(elf.EM_SEP),\n\t\t\"EM_SE_C17\":                          reflect.ValueOf(elf.EM_SE_C17),\n\t\t\"EM_SE_C33\":                          reflect.ValueOf(elf.EM_SE_C33),\n\t\t\"EM_SH\":                              reflect.ValueOf(elf.EM_SH),\n\t\t\"EM_SHARC\":                           reflect.ValueOf(elf.EM_SHARC),\n\t\t\"EM_SLE9X\":                           reflect.ValueOf(elf.EM_SLE9X),\n\t\t\"EM_SNP1K\":                           reflect.ValueOf(elf.EM_SNP1K),\n\t\t\"EM_SPARC\":                           reflect.ValueOf(elf.EM_SPARC),\n\t\t\"EM_SPARC32PLUS\":                     reflect.ValueOf(elf.EM_SPARC32PLUS),\n\t\t\"EM_SPARCV9\":                         reflect.ValueOf(elf.EM_SPARCV9),\n\t\t\"EM_ST100\":                           reflect.ValueOf(elf.EM_ST100),\n\t\t\"EM_ST19\":                            reflect.ValueOf(elf.EM_ST19),\n\t\t\"EM_ST200\":                           reflect.ValueOf(elf.EM_ST200),\n\t\t\"EM_ST7\":                             reflect.ValueOf(elf.EM_ST7),\n\t\t\"EM_ST9PLUS\":                         reflect.ValueOf(elf.EM_ST9PLUS),\n\t\t\"EM_STARCORE\":                        reflect.ValueOf(elf.EM_STARCORE),\n\t\t\"EM_STM8\":                            reflect.ValueOf(elf.EM_STM8),\n\t\t\"EM_STXP7X\":                          reflect.ValueOf(elf.EM_STXP7X),\n\t\t\"EM_SVX\":                             reflect.ValueOf(elf.EM_SVX),\n\t\t\"EM_TILE64\":                          reflect.ValueOf(elf.EM_TILE64),\n\t\t\"EM_TILEGX\":                          reflect.ValueOf(elf.EM_TILEGX),\n\t\t\"EM_TILEPRO\":                         reflect.ValueOf(elf.EM_TILEPRO),\n\t\t\"EM_TINYJ\":                           reflect.ValueOf(elf.EM_TINYJ),\n\t\t\"EM_TI_ARP32\":                        reflect.ValueOf(elf.EM_TI_ARP32),\n\t\t\"EM_TI_C2000\":                        reflect.ValueOf(elf.EM_TI_C2000),\n\t\t\"EM_TI_C5500\":                        reflect.ValueOf(elf.EM_TI_C5500),\n\t\t\"EM_TI_C6000\":                        reflect.ValueOf(elf.EM_TI_C6000),\n\t\t\"EM_TI_PRU\":                          reflect.ValueOf(elf.EM_TI_PRU),\n\t\t\"EM_TMM_GPP\":                         reflect.ValueOf(elf.EM_TMM_GPP),\n\t\t\"EM_TPC\":                             reflect.ValueOf(elf.EM_TPC),\n\t\t\"EM_TRICORE\":                         reflect.ValueOf(elf.EM_TRICORE),\n\t\t\"EM_TRIMEDIA\":                        reflect.ValueOf(elf.EM_TRIMEDIA),\n\t\t\"EM_TSK3000\":                         reflect.ValueOf(elf.EM_TSK3000),\n\t\t\"EM_UNICORE\":                         reflect.ValueOf(elf.EM_UNICORE),\n\t\t\"EM_V800\":                            reflect.ValueOf(elf.EM_V800),\n\t\t\"EM_V850\":                            reflect.ValueOf(elf.EM_V850),\n\t\t\"EM_VAX\":                             reflect.ValueOf(elf.EM_VAX),\n\t\t\"EM_VIDEOCORE\":                       reflect.ValueOf(elf.EM_VIDEOCORE),\n\t\t\"EM_VIDEOCORE3\":                      reflect.ValueOf(elf.EM_VIDEOCORE3),\n\t\t\"EM_VIDEOCORE5\":                      reflect.ValueOf(elf.EM_VIDEOCORE5),\n\t\t\"EM_VISIUM\":                          reflect.ValueOf(elf.EM_VISIUM),\n\t\t\"EM_VPP500\":                          reflect.ValueOf(elf.EM_VPP500),\n\t\t\"EM_X86_64\":                          reflect.ValueOf(elf.EM_X86_64),\n\t\t\"EM_XCORE\":                           reflect.ValueOf(elf.EM_XCORE),\n\t\t\"EM_XGATE\":                           reflect.ValueOf(elf.EM_XGATE),\n\t\t\"EM_XIMO16\":                          reflect.ValueOf(elf.EM_XIMO16),\n\t\t\"EM_XTENSA\":                          reflect.ValueOf(elf.EM_XTENSA),\n\t\t\"EM_Z80\":                             reflect.ValueOf(elf.EM_Z80),\n\t\t\"EM_ZSP\":                             reflect.ValueOf(elf.EM_ZSP),\n\t\t\"ET_CORE\":                            reflect.ValueOf(elf.ET_CORE),\n\t\t\"ET_DYN\":                             reflect.ValueOf(elf.ET_DYN),\n\t\t\"ET_EXEC\":                            reflect.ValueOf(elf.ET_EXEC),\n\t\t\"ET_HIOS\":                            reflect.ValueOf(elf.ET_HIOS),\n\t\t\"ET_HIPROC\":                          reflect.ValueOf(elf.ET_HIPROC),\n\t\t\"ET_LOOS\":                            reflect.ValueOf(elf.ET_LOOS),\n\t\t\"ET_LOPROC\":                          reflect.ValueOf(elf.ET_LOPROC),\n\t\t\"ET_NONE\":                            reflect.ValueOf(elf.ET_NONE),\n\t\t\"ET_REL\":                             reflect.ValueOf(elf.ET_REL),\n\t\t\"EV_CURRENT\":                         reflect.ValueOf(elf.EV_CURRENT),\n\t\t\"EV_NONE\":                            reflect.ValueOf(elf.EV_NONE),\n\t\t\"ErrNoSymbols\":                       reflect.ValueOf(&elf.ErrNoSymbols).Elem(),\n\t\t\"NT_FPREGSET\":                        reflect.ValueOf(elf.NT_FPREGSET),\n\t\t\"NT_PRPSINFO\":                        reflect.ValueOf(elf.NT_PRPSINFO),\n\t\t\"NT_PRSTATUS\":                        reflect.ValueOf(elf.NT_PRSTATUS),\n\t\t\"NewFile\":                            reflect.ValueOf(elf.NewFile),\n\t\t\"Open\":                               reflect.ValueOf(elf.Open),\n\t\t\"PF_MASKOS\":                          reflect.ValueOf(elf.PF_MASKOS),\n\t\t\"PF_MASKPROC\":                        reflect.ValueOf(elf.PF_MASKPROC),\n\t\t\"PF_R\":                               reflect.ValueOf(elf.PF_R),\n\t\t\"PF_W\":                               reflect.ValueOf(elf.PF_W),\n\t\t\"PF_X\":                               reflect.ValueOf(elf.PF_X),\n\t\t\"PT_AARCH64_ARCHEXT\":                 reflect.ValueOf(elf.PT_AARCH64_ARCHEXT),\n\t\t\"PT_AARCH64_UNWIND\":                  reflect.ValueOf(elf.PT_AARCH64_UNWIND),\n\t\t\"PT_ARM_ARCHEXT\":                     reflect.ValueOf(elf.PT_ARM_ARCHEXT),\n\t\t\"PT_ARM_EXIDX\":                       reflect.ValueOf(elf.PT_ARM_EXIDX),\n\t\t\"PT_DYNAMIC\":                         reflect.ValueOf(elf.PT_DYNAMIC),\n\t\t\"PT_GNU_EH_FRAME\":                    reflect.ValueOf(elf.PT_GNU_EH_FRAME),\n\t\t\"PT_GNU_MBIND_HI\":                    reflect.ValueOf(elf.PT_GNU_MBIND_HI),\n\t\t\"PT_GNU_MBIND_LO\":                    reflect.ValueOf(elf.PT_GNU_MBIND_LO),\n\t\t\"PT_GNU_PROPERTY\":                    reflect.ValueOf(elf.PT_GNU_PROPERTY),\n\t\t\"PT_GNU_RELRO\":                       reflect.ValueOf(elf.PT_GNU_RELRO),\n\t\t\"PT_GNU_STACK\":                       reflect.ValueOf(elf.PT_GNU_STACK),\n\t\t\"PT_HIOS\":                            reflect.ValueOf(elf.PT_HIOS),\n\t\t\"PT_HIPROC\":                          reflect.ValueOf(elf.PT_HIPROC),\n\t\t\"PT_INTERP\":                          reflect.ValueOf(elf.PT_INTERP),\n\t\t\"PT_LOAD\":                            reflect.ValueOf(elf.PT_LOAD),\n\t\t\"PT_LOOS\":                            reflect.ValueOf(elf.PT_LOOS),\n\t\t\"PT_LOPROC\":                          reflect.ValueOf(elf.PT_LOPROC),\n\t\t\"PT_MIPS_ABIFLAGS\":                   reflect.ValueOf(elf.PT_MIPS_ABIFLAGS),\n\t\t\"PT_MIPS_OPTIONS\":                    reflect.ValueOf(elf.PT_MIPS_OPTIONS),\n\t\t\"PT_MIPS_REGINFO\":                    reflect.ValueOf(elf.PT_MIPS_REGINFO),\n\t\t\"PT_MIPS_RTPROC\":                     reflect.ValueOf(elf.PT_MIPS_RTPROC),\n\t\t\"PT_NOTE\":                            reflect.ValueOf(elf.PT_NOTE),\n\t\t\"PT_NULL\":                            reflect.ValueOf(elf.PT_NULL),\n\t\t\"PT_OPENBSD_BOOTDATA\":                reflect.ValueOf(elf.PT_OPENBSD_BOOTDATA),\n\t\t\"PT_OPENBSD_RANDOMIZE\":               reflect.ValueOf(elf.PT_OPENBSD_RANDOMIZE),\n\t\t\"PT_OPENBSD_WXNEEDED\":                reflect.ValueOf(elf.PT_OPENBSD_WXNEEDED),\n\t\t\"PT_PAX_FLAGS\":                       reflect.ValueOf(elf.PT_PAX_FLAGS),\n\t\t\"PT_PHDR\":                            reflect.ValueOf(elf.PT_PHDR),\n\t\t\"PT_S390_PGSTE\":                      reflect.ValueOf(elf.PT_S390_PGSTE),\n\t\t\"PT_SHLIB\":                           reflect.ValueOf(elf.PT_SHLIB),\n\t\t\"PT_SUNWSTACK\":                       reflect.ValueOf(elf.PT_SUNWSTACK),\n\t\t\"PT_SUNW_EH_FRAME\":                   reflect.ValueOf(elf.PT_SUNW_EH_FRAME),\n\t\t\"PT_TLS\":                             reflect.ValueOf(elf.PT_TLS),\n\t\t\"R_386_16\":                           reflect.ValueOf(elf.R_386_16),\n\t\t\"R_386_32\":                           reflect.ValueOf(elf.R_386_32),\n\t\t\"R_386_32PLT\":                        reflect.ValueOf(elf.R_386_32PLT),\n\t\t\"R_386_8\":                            reflect.ValueOf(elf.R_386_8),\n\t\t\"R_386_COPY\":                         reflect.ValueOf(elf.R_386_COPY),\n\t\t\"R_386_GLOB_DAT\":                     reflect.ValueOf(elf.R_386_GLOB_DAT),\n\t\t\"R_386_GOT32\":                        reflect.ValueOf(elf.R_386_GOT32),\n\t\t\"R_386_GOT32X\":                       reflect.ValueOf(elf.R_386_GOT32X),\n\t\t\"R_386_GOTOFF\":                       reflect.ValueOf(elf.R_386_GOTOFF),\n\t\t\"R_386_GOTPC\":                        reflect.ValueOf(elf.R_386_GOTPC),\n\t\t\"R_386_IRELATIVE\":                    reflect.ValueOf(elf.R_386_IRELATIVE),\n\t\t\"R_386_JMP_SLOT\":                     reflect.ValueOf(elf.R_386_JMP_SLOT),\n\t\t\"R_386_NONE\":                         reflect.ValueOf(elf.R_386_NONE),\n\t\t\"R_386_PC16\":                         reflect.ValueOf(elf.R_386_PC16),\n\t\t\"R_386_PC32\":                         reflect.ValueOf(elf.R_386_PC32),\n\t\t\"R_386_PC8\":                          reflect.ValueOf(elf.R_386_PC8),\n\t\t\"R_386_PLT32\":                        reflect.ValueOf(elf.R_386_PLT32),\n\t\t\"R_386_RELATIVE\":                     reflect.ValueOf(elf.R_386_RELATIVE),\n\t\t\"R_386_SIZE32\":                       reflect.ValueOf(elf.R_386_SIZE32),\n\t\t\"R_386_TLS_DESC\":                     reflect.ValueOf(elf.R_386_TLS_DESC),\n\t\t\"R_386_TLS_DESC_CALL\":                reflect.ValueOf(elf.R_386_TLS_DESC_CALL),\n\t\t\"R_386_TLS_DTPMOD32\":                 reflect.ValueOf(elf.R_386_TLS_DTPMOD32),\n\t\t\"R_386_TLS_DTPOFF32\":                 reflect.ValueOf(elf.R_386_TLS_DTPOFF32),\n\t\t\"R_386_TLS_GD\":                       reflect.ValueOf(elf.R_386_TLS_GD),\n\t\t\"R_386_TLS_GD_32\":                    reflect.ValueOf(elf.R_386_TLS_GD_32),\n\t\t\"R_386_TLS_GD_CALL\":                  reflect.ValueOf(elf.R_386_TLS_GD_CALL),\n\t\t\"R_386_TLS_GD_POP\":                   reflect.ValueOf(elf.R_386_TLS_GD_POP),\n\t\t\"R_386_TLS_GD_PUSH\":                  reflect.ValueOf(elf.R_386_TLS_GD_PUSH),\n\t\t\"R_386_TLS_GOTDESC\":                  reflect.ValueOf(elf.R_386_TLS_GOTDESC),\n\t\t\"R_386_TLS_GOTIE\":                    reflect.ValueOf(elf.R_386_TLS_GOTIE),\n\t\t\"R_386_TLS_IE\":                       reflect.ValueOf(elf.R_386_TLS_IE),\n\t\t\"R_386_TLS_IE_32\":                    reflect.ValueOf(elf.R_386_TLS_IE_32),\n\t\t\"R_386_TLS_LDM\":                      reflect.ValueOf(elf.R_386_TLS_LDM),\n\t\t\"R_386_TLS_LDM_32\":                   reflect.ValueOf(elf.R_386_TLS_LDM_32),\n\t\t\"R_386_TLS_LDM_CALL\":                 reflect.ValueOf(elf.R_386_TLS_LDM_CALL),\n\t\t\"R_386_TLS_LDM_POP\":                  reflect.ValueOf(elf.R_386_TLS_LDM_POP),\n\t\t\"R_386_TLS_LDM_PUSH\":                 reflect.ValueOf(elf.R_386_TLS_LDM_PUSH),\n\t\t\"R_386_TLS_LDO_32\":                   reflect.ValueOf(elf.R_386_TLS_LDO_32),\n\t\t\"R_386_TLS_LE\":                       reflect.ValueOf(elf.R_386_TLS_LE),\n\t\t\"R_386_TLS_LE_32\":                    reflect.ValueOf(elf.R_386_TLS_LE_32),\n\t\t\"R_386_TLS_TPOFF\":                    reflect.ValueOf(elf.R_386_TLS_TPOFF),\n\t\t\"R_386_TLS_TPOFF32\":                  reflect.ValueOf(elf.R_386_TLS_TPOFF32),\n\t\t\"R_390_12\":                           reflect.ValueOf(elf.R_390_12),\n\t\t\"R_390_16\":                           reflect.ValueOf(elf.R_390_16),\n\t\t\"R_390_20\":                           reflect.ValueOf(elf.R_390_20),\n\t\t\"R_390_32\":                           reflect.ValueOf(elf.R_390_32),\n\t\t\"R_390_64\":                           reflect.ValueOf(elf.R_390_64),\n\t\t\"R_390_8\":                            reflect.ValueOf(elf.R_390_8),\n\t\t\"R_390_COPY\":                         reflect.ValueOf(elf.R_390_COPY),\n\t\t\"R_390_GLOB_DAT\":                     reflect.ValueOf(elf.R_390_GLOB_DAT),\n\t\t\"R_390_GOT12\":                        reflect.ValueOf(elf.R_390_GOT12),\n\t\t\"R_390_GOT16\":                        reflect.ValueOf(elf.R_390_GOT16),\n\t\t\"R_390_GOT20\":                        reflect.ValueOf(elf.R_390_GOT20),\n\t\t\"R_390_GOT32\":                        reflect.ValueOf(elf.R_390_GOT32),\n\t\t\"R_390_GOT64\":                        reflect.ValueOf(elf.R_390_GOT64),\n\t\t\"R_390_GOTENT\":                       reflect.ValueOf(elf.R_390_GOTENT),\n\t\t\"R_390_GOTOFF\":                       reflect.ValueOf(elf.R_390_GOTOFF),\n\t\t\"R_390_GOTOFF16\":                     reflect.ValueOf(elf.R_390_GOTOFF16),\n\t\t\"R_390_GOTOFF64\":                     reflect.ValueOf(elf.R_390_GOTOFF64),\n\t\t\"R_390_GOTPC\":                        reflect.ValueOf(elf.R_390_GOTPC),\n\t\t\"R_390_GOTPCDBL\":                     reflect.ValueOf(elf.R_390_GOTPCDBL),\n\t\t\"R_390_GOTPLT12\":                     reflect.ValueOf(elf.R_390_GOTPLT12),\n\t\t\"R_390_GOTPLT16\":                     reflect.ValueOf(elf.R_390_GOTPLT16),\n\t\t\"R_390_GOTPLT20\":                     reflect.ValueOf(elf.R_390_GOTPLT20),\n\t\t\"R_390_GOTPLT32\":                     reflect.ValueOf(elf.R_390_GOTPLT32),\n\t\t\"R_390_GOTPLT64\":                     reflect.ValueOf(elf.R_390_GOTPLT64),\n\t\t\"R_390_GOTPLTENT\":                    reflect.ValueOf(elf.R_390_GOTPLTENT),\n\t\t\"R_390_GOTPLTOFF16\":                  reflect.ValueOf(elf.R_390_GOTPLTOFF16),\n\t\t\"R_390_GOTPLTOFF32\":                  reflect.ValueOf(elf.R_390_GOTPLTOFF32),\n\t\t\"R_390_GOTPLTOFF64\":                  reflect.ValueOf(elf.R_390_GOTPLTOFF64),\n\t\t\"R_390_JMP_SLOT\":                     reflect.ValueOf(elf.R_390_JMP_SLOT),\n\t\t\"R_390_NONE\":                         reflect.ValueOf(elf.R_390_NONE),\n\t\t\"R_390_PC16\":                         reflect.ValueOf(elf.R_390_PC16),\n\t\t\"R_390_PC16DBL\":                      reflect.ValueOf(elf.R_390_PC16DBL),\n\t\t\"R_390_PC32\":                         reflect.ValueOf(elf.R_390_PC32),\n\t\t\"R_390_PC32DBL\":                      reflect.ValueOf(elf.R_390_PC32DBL),\n\t\t\"R_390_PC64\":                         reflect.ValueOf(elf.R_390_PC64),\n\t\t\"R_390_PLT16DBL\":                     reflect.ValueOf(elf.R_390_PLT16DBL),\n\t\t\"R_390_PLT32\":                        reflect.ValueOf(elf.R_390_PLT32),\n\t\t\"R_390_PLT32DBL\":                     reflect.ValueOf(elf.R_390_PLT32DBL),\n\t\t\"R_390_PLT64\":                        reflect.ValueOf(elf.R_390_PLT64),\n\t\t\"R_390_RELATIVE\":                     reflect.ValueOf(elf.R_390_RELATIVE),\n\t\t\"R_390_TLS_DTPMOD\":                   reflect.ValueOf(elf.R_390_TLS_DTPMOD),\n\t\t\"R_390_TLS_DTPOFF\":                   reflect.ValueOf(elf.R_390_TLS_DTPOFF),\n\t\t\"R_390_TLS_GD32\":                     reflect.ValueOf(elf.R_390_TLS_GD32),\n\t\t\"R_390_TLS_GD64\":                     reflect.ValueOf(elf.R_390_TLS_GD64),\n\t\t\"R_390_TLS_GDCALL\":                   reflect.ValueOf(elf.R_390_TLS_GDCALL),\n\t\t\"R_390_TLS_GOTIE12\":                  reflect.ValueOf(elf.R_390_TLS_GOTIE12),\n\t\t\"R_390_TLS_GOTIE20\":                  reflect.ValueOf(elf.R_390_TLS_GOTIE20),\n\t\t\"R_390_TLS_GOTIE32\":                  reflect.ValueOf(elf.R_390_TLS_GOTIE32),\n\t\t\"R_390_TLS_GOTIE64\":                  reflect.ValueOf(elf.R_390_TLS_GOTIE64),\n\t\t\"R_390_TLS_IE32\":                     reflect.ValueOf(elf.R_390_TLS_IE32),\n\t\t\"R_390_TLS_IE64\":                     reflect.ValueOf(elf.R_390_TLS_IE64),\n\t\t\"R_390_TLS_IEENT\":                    reflect.ValueOf(elf.R_390_TLS_IEENT),\n\t\t\"R_390_TLS_LDCALL\":                   reflect.ValueOf(elf.R_390_TLS_LDCALL),\n\t\t\"R_390_TLS_LDM32\":                    reflect.ValueOf(elf.R_390_TLS_LDM32),\n\t\t\"R_390_TLS_LDM64\":                    reflect.ValueOf(elf.R_390_TLS_LDM64),\n\t\t\"R_390_TLS_LDO32\":                    reflect.ValueOf(elf.R_390_TLS_LDO32),\n\t\t\"R_390_TLS_LDO64\":                    reflect.ValueOf(elf.R_390_TLS_LDO64),\n\t\t\"R_390_TLS_LE32\":                     reflect.ValueOf(elf.R_390_TLS_LE32),\n\t\t\"R_390_TLS_LE64\":                     reflect.ValueOf(elf.R_390_TLS_LE64),\n\t\t\"R_390_TLS_LOAD\":                     reflect.ValueOf(elf.R_390_TLS_LOAD),\n\t\t\"R_390_TLS_TPOFF\":                    reflect.ValueOf(elf.R_390_TLS_TPOFF),\n\t\t\"R_AARCH64_ABS16\":                    reflect.ValueOf(elf.R_AARCH64_ABS16),\n\t\t\"R_AARCH64_ABS32\":                    reflect.ValueOf(elf.R_AARCH64_ABS32),\n\t\t\"R_AARCH64_ABS64\":                    reflect.ValueOf(elf.R_AARCH64_ABS64),\n\t\t\"R_AARCH64_ADD_ABS_LO12_NC\":          reflect.ValueOf(elf.R_AARCH64_ADD_ABS_LO12_NC),\n\t\t\"R_AARCH64_ADR_GOT_PAGE\":             reflect.ValueOf(elf.R_AARCH64_ADR_GOT_PAGE),\n\t\t\"R_AARCH64_ADR_PREL_LO21\":            reflect.ValueOf(elf.R_AARCH64_ADR_PREL_LO21),\n\t\t\"R_AARCH64_ADR_PREL_PG_HI21\":         reflect.ValueOf(elf.R_AARCH64_ADR_PREL_PG_HI21),\n\t\t\"R_AARCH64_ADR_PREL_PG_HI21_NC\":      reflect.ValueOf(elf.R_AARCH64_ADR_PREL_PG_HI21_NC),\n\t\t\"R_AARCH64_CALL26\":                   reflect.ValueOf(elf.R_AARCH64_CALL26),\n\t\t\"R_AARCH64_CONDBR19\":                 reflect.ValueOf(elf.R_AARCH64_CONDBR19),\n\t\t\"R_AARCH64_COPY\":                     reflect.ValueOf(elf.R_AARCH64_COPY),\n\t\t\"R_AARCH64_GLOB_DAT\":                 reflect.ValueOf(elf.R_AARCH64_GLOB_DAT),\n\t\t\"R_AARCH64_GOT_LD_PREL19\":            reflect.ValueOf(elf.R_AARCH64_GOT_LD_PREL19),\n\t\t\"R_AARCH64_IRELATIVE\":                reflect.ValueOf(elf.R_AARCH64_IRELATIVE),\n\t\t\"R_AARCH64_JUMP26\":                   reflect.ValueOf(elf.R_AARCH64_JUMP26),\n\t\t\"R_AARCH64_JUMP_SLOT\":                reflect.ValueOf(elf.R_AARCH64_JUMP_SLOT),\n\t\t\"R_AARCH64_LD64_GOTOFF_LO15\":         reflect.ValueOf(elf.R_AARCH64_LD64_GOTOFF_LO15),\n\t\t\"R_AARCH64_LD64_GOTPAGE_LO15\":        reflect.ValueOf(elf.R_AARCH64_LD64_GOTPAGE_LO15),\n\t\t\"R_AARCH64_LD64_GOT_LO12_NC\":         reflect.ValueOf(elf.R_AARCH64_LD64_GOT_LO12_NC),\n\t\t\"R_AARCH64_LDST128_ABS_LO12_NC\":      reflect.ValueOf(elf.R_AARCH64_LDST128_ABS_LO12_NC),\n\t\t\"R_AARCH64_LDST16_ABS_LO12_NC\":       reflect.ValueOf(elf.R_AARCH64_LDST16_ABS_LO12_NC),\n\t\t\"R_AARCH64_LDST32_ABS_LO12_NC\":       reflect.ValueOf(elf.R_AARCH64_LDST32_ABS_LO12_NC),\n\t\t\"R_AARCH64_LDST64_ABS_LO12_NC\":       reflect.ValueOf(elf.R_AARCH64_LDST64_ABS_LO12_NC),\n\t\t\"R_AARCH64_LDST8_ABS_LO12_NC\":        reflect.ValueOf(elf.R_AARCH64_LDST8_ABS_LO12_NC),\n\t\t\"R_AARCH64_LD_PREL_LO19\":             reflect.ValueOf(elf.R_AARCH64_LD_PREL_LO19),\n\t\t\"R_AARCH64_MOVW_SABS_G0\":             reflect.ValueOf(elf.R_AARCH64_MOVW_SABS_G0),\n\t\t\"R_AARCH64_MOVW_SABS_G1\":             reflect.ValueOf(elf.R_AARCH64_MOVW_SABS_G1),\n\t\t\"R_AARCH64_MOVW_SABS_G2\":             reflect.ValueOf(elf.R_AARCH64_MOVW_SABS_G2),\n\t\t\"R_AARCH64_MOVW_UABS_G0\":             reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G0),\n\t\t\"R_AARCH64_MOVW_UABS_G0_NC\":          reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G0_NC),\n\t\t\"R_AARCH64_MOVW_UABS_G1\":             reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G1),\n\t\t\"R_AARCH64_MOVW_UABS_G1_NC\":          reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G1_NC),\n\t\t\"R_AARCH64_MOVW_UABS_G2\":             reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G2),\n\t\t\"R_AARCH64_MOVW_UABS_G2_NC\":          reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G2_NC),\n\t\t\"R_AARCH64_MOVW_UABS_G3\":             reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G3),\n\t\t\"R_AARCH64_NONE\":                     reflect.ValueOf(elf.R_AARCH64_NONE),\n\t\t\"R_AARCH64_NULL\":                     reflect.ValueOf(elf.R_AARCH64_NULL),\n\t\t\"R_AARCH64_P32_ABS16\":                reflect.ValueOf(elf.R_AARCH64_P32_ABS16),\n\t\t\"R_AARCH64_P32_ABS32\":                reflect.ValueOf(elf.R_AARCH64_P32_ABS32),\n\t\t\"R_AARCH64_P32_ADD_ABS_LO12_NC\":      reflect.ValueOf(elf.R_AARCH64_P32_ADD_ABS_LO12_NC),\n\t\t\"R_AARCH64_P32_ADR_GOT_PAGE\":         reflect.ValueOf(elf.R_AARCH64_P32_ADR_GOT_PAGE),\n\t\t\"R_AARCH64_P32_ADR_PREL_LO21\":        reflect.ValueOf(elf.R_AARCH64_P32_ADR_PREL_LO21),\n\t\t\"R_AARCH64_P32_ADR_PREL_PG_HI21\":     reflect.ValueOf(elf.R_AARCH64_P32_ADR_PREL_PG_HI21),\n\t\t\"R_AARCH64_P32_CALL26\":               reflect.ValueOf(elf.R_AARCH64_P32_CALL26),\n\t\t\"R_AARCH64_P32_CONDBR19\":             reflect.ValueOf(elf.R_AARCH64_P32_CONDBR19),\n\t\t\"R_AARCH64_P32_COPY\":                 reflect.ValueOf(elf.R_AARCH64_P32_COPY),\n\t\t\"R_AARCH64_P32_GLOB_DAT\":             reflect.ValueOf(elf.R_AARCH64_P32_GLOB_DAT),\n\t\t\"R_AARCH64_P32_GOT_LD_PREL19\":        reflect.ValueOf(elf.R_AARCH64_P32_GOT_LD_PREL19),\n\t\t\"R_AARCH64_P32_IRELATIVE\":            reflect.ValueOf(elf.R_AARCH64_P32_IRELATIVE),\n\t\t\"R_AARCH64_P32_JUMP26\":               reflect.ValueOf(elf.R_AARCH64_P32_JUMP26),\n\t\t\"R_AARCH64_P32_JUMP_SLOT\":            reflect.ValueOf(elf.R_AARCH64_P32_JUMP_SLOT),\n\t\t\"R_AARCH64_P32_LD32_GOT_LO12_NC\":     reflect.ValueOf(elf.R_AARCH64_P32_LD32_GOT_LO12_NC),\n\t\t\"R_AARCH64_P32_LDST128_ABS_LO12_NC\":  reflect.ValueOf(elf.R_AARCH64_P32_LDST128_ABS_LO12_NC),\n\t\t\"R_AARCH64_P32_LDST16_ABS_LO12_NC\":   reflect.ValueOf(elf.R_AARCH64_P32_LDST16_ABS_LO12_NC),\n\t\t\"R_AARCH64_P32_LDST32_ABS_LO12_NC\":   reflect.ValueOf(elf.R_AARCH64_P32_LDST32_ABS_LO12_NC),\n\t\t\"R_AARCH64_P32_LDST64_ABS_LO12_NC\":   reflect.ValueOf(elf.R_AARCH64_P32_LDST64_ABS_LO12_NC),\n\t\t\"R_AARCH64_P32_LDST8_ABS_LO12_NC\":    reflect.ValueOf(elf.R_AARCH64_P32_LDST8_ABS_LO12_NC),\n\t\t\"R_AARCH64_P32_LD_PREL_LO19\":         reflect.ValueOf(elf.R_AARCH64_P32_LD_PREL_LO19),\n\t\t\"R_AARCH64_P32_MOVW_SABS_G0\":         reflect.ValueOf(elf.R_AARCH64_P32_MOVW_SABS_G0),\n\t\t\"R_AARCH64_P32_MOVW_UABS_G0\":         reflect.ValueOf(elf.R_AARCH64_P32_MOVW_UABS_G0),\n\t\t\"R_AARCH64_P32_MOVW_UABS_G0_NC\":      reflect.ValueOf(elf.R_AARCH64_P32_MOVW_UABS_G0_NC),\n\t\t\"R_AARCH64_P32_MOVW_UABS_G1\":         reflect.ValueOf(elf.R_AARCH64_P32_MOVW_UABS_G1),\n\t\t\"R_AARCH64_P32_PREL16\":               reflect.ValueOf(elf.R_AARCH64_P32_PREL16),\n\t\t\"R_AARCH64_P32_PREL32\":               reflect.ValueOf(elf.R_AARCH64_P32_PREL32),\n\t\t\"R_AARCH64_P32_RELATIVE\":             reflect.ValueOf(elf.R_AARCH64_P32_RELATIVE),\n\t\t\"R_AARCH64_P32_TLSDESC\":              reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC),\n\t\t\"R_AARCH64_P32_TLSDESC_ADD_LO12_NC\":  reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_ADD_LO12_NC),\n\t\t\"R_AARCH64_P32_TLSDESC_ADR_PAGE21\":   reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_ADR_PAGE21),\n\t\t\"R_AARCH64_P32_TLSDESC_ADR_PREL21\":   reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_ADR_PREL21),\n\t\t\"R_AARCH64_P32_TLSDESC_CALL\":         reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_CALL),\n\t\t\"R_AARCH64_P32_TLSDESC_LD32_LO12_NC\": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_LD32_LO12_NC),\n\t\t\"R_AARCH64_P32_TLSDESC_LD_PREL19\":    reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_LD_PREL19),\n\t\t\"R_AARCH64_P32_TLSGD_ADD_LO12_NC\":    reflect.ValueOf(elf.R_AARCH64_P32_TLSGD_ADD_LO12_NC),\n\t\t\"R_AARCH64_P32_TLSGD_ADR_PAGE21\":     reflect.ValueOf(elf.R_AARCH64_P32_TLSGD_ADR_PAGE21),\n\t\t\"R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21\":   reflect.ValueOf(elf.R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21),\n\t\t\"R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC\": reflect.ValueOf(elf.R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC),\n\t\t\"R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19\":    reflect.ValueOf(elf.R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19),\n\t\t\"R_AARCH64_P32_TLSLE_ADD_TPREL_HI12\":        reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_ADD_TPREL_HI12),\n\t\t\"R_AARCH64_P32_TLSLE_ADD_TPREL_LO12\":        reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_ADD_TPREL_LO12),\n\t\t\"R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC\":     reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC),\n\t\t\"R_AARCH64_P32_TLSLE_MOVW_TPREL_G0\":         reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_MOVW_TPREL_G0),\n\t\t\"R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC\":      reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC),\n\t\t\"R_AARCH64_P32_TLSLE_MOVW_TPREL_G1\":         reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_MOVW_TPREL_G1),\n\t\t\"R_AARCH64_P32_TLS_DTPMOD\":                  reflect.ValueOf(elf.R_AARCH64_P32_TLS_DTPMOD),\n\t\t\"R_AARCH64_P32_TLS_DTPREL\":                  reflect.ValueOf(elf.R_AARCH64_P32_TLS_DTPREL),\n\t\t\"R_AARCH64_P32_TLS_TPREL\":                   reflect.ValueOf(elf.R_AARCH64_P32_TLS_TPREL),\n\t\t\"R_AARCH64_P32_TSTBR14\":                     reflect.ValueOf(elf.R_AARCH64_P32_TSTBR14),\n\t\t\"R_AARCH64_PREL16\":                          reflect.ValueOf(elf.R_AARCH64_PREL16),\n\t\t\"R_AARCH64_PREL32\":                          reflect.ValueOf(elf.R_AARCH64_PREL32),\n\t\t\"R_AARCH64_PREL64\":                          reflect.ValueOf(elf.R_AARCH64_PREL64),\n\t\t\"R_AARCH64_RELATIVE\":                        reflect.ValueOf(elf.R_AARCH64_RELATIVE),\n\t\t\"R_AARCH64_TLSDESC\":                         reflect.ValueOf(elf.R_AARCH64_TLSDESC),\n\t\t\"R_AARCH64_TLSDESC_ADD\":                     reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADD),\n\t\t\"R_AARCH64_TLSDESC_ADD_LO12_NC\":             reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADD_LO12_NC),\n\t\t\"R_AARCH64_TLSDESC_ADR_PAGE21\":              reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADR_PAGE21),\n\t\t\"R_AARCH64_TLSDESC_ADR_PREL21\":              reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADR_PREL21),\n\t\t\"R_AARCH64_TLSDESC_CALL\":                    reflect.ValueOf(elf.R_AARCH64_TLSDESC_CALL),\n\t\t\"R_AARCH64_TLSDESC_LD64_LO12_NC\":            reflect.ValueOf(elf.R_AARCH64_TLSDESC_LD64_LO12_NC),\n\t\t\"R_AARCH64_TLSDESC_LDR\":                     reflect.ValueOf(elf.R_AARCH64_TLSDESC_LDR),\n\t\t\"R_AARCH64_TLSDESC_LD_PREL19\":               reflect.ValueOf(elf.R_AARCH64_TLSDESC_LD_PREL19),\n\t\t\"R_AARCH64_TLSDESC_OFF_G0_NC\":               reflect.ValueOf(elf.R_AARCH64_TLSDESC_OFF_G0_NC),\n\t\t\"R_AARCH64_TLSDESC_OFF_G1\":                  reflect.ValueOf(elf.R_AARCH64_TLSDESC_OFF_G1),\n\t\t\"R_AARCH64_TLSGD_ADD_LO12_NC\":               reflect.ValueOf(elf.R_AARCH64_TLSGD_ADD_LO12_NC),\n\t\t\"R_AARCH64_TLSGD_ADR_PAGE21\":                reflect.ValueOf(elf.R_AARCH64_TLSGD_ADR_PAGE21),\n\t\t\"R_AARCH64_TLSGD_ADR_PREL21\":                reflect.ValueOf(elf.R_AARCH64_TLSGD_ADR_PREL21),\n\t\t\"R_AARCH64_TLSGD_MOVW_G0_NC\":                reflect.ValueOf(elf.R_AARCH64_TLSGD_MOVW_G0_NC),\n\t\t\"R_AARCH64_TLSGD_MOVW_G1\":                   reflect.ValueOf(elf.R_AARCH64_TLSGD_MOVW_G1),\n\t\t\"R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21\":       reflect.ValueOf(elf.R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21),\n\t\t\"R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC\":     reflect.ValueOf(elf.R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC),\n\t\t\"R_AARCH64_TLSIE_LD_GOTTPREL_PREL19\":        reflect.ValueOf(elf.R_AARCH64_TLSIE_LD_GOTTPREL_PREL19),\n\t\t\"R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC\":       reflect.ValueOf(elf.R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC),\n\t\t\"R_AARCH64_TLSIE_MOVW_GOTTPREL_G1\":          reflect.ValueOf(elf.R_AARCH64_TLSIE_MOVW_GOTTPREL_G1),\n\t\t\"R_AARCH64_TLSLD_ADR_PAGE21\":                reflect.ValueOf(elf.R_AARCH64_TLSLD_ADR_PAGE21),\n\t\t\"R_AARCH64_TLSLD_ADR_PREL21\":                reflect.ValueOf(elf.R_AARCH64_TLSLD_ADR_PREL21),\n\t\t\"R_AARCH64_TLSLD_LDST128_DTPREL_LO12\":       reflect.ValueOf(elf.R_AARCH64_TLSLD_LDST128_DTPREL_LO12),\n\t\t\"R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC\":    reflect.ValueOf(elf.R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC),\n\t\t\"R_AARCH64_TLSLE_ADD_TPREL_HI12\":            reflect.ValueOf(elf.R_AARCH64_TLSLE_ADD_TPREL_HI12),\n\t\t\"R_AARCH64_TLSLE_ADD_TPREL_LO12\":            reflect.ValueOf(elf.R_AARCH64_TLSLE_ADD_TPREL_LO12),\n\t\t\"R_AARCH64_TLSLE_ADD_TPREL_LO12_NC\":         reflect.ValueOf(elf.R_AARCH64_TLSLE_ADD_TPREL_LO12_NC),\n\t\t\"R_AARCH64_TLSLE_LDST128_TPREL_LO12\":        reflect.ValueOf(elf.R_AARCH64_TLSLE_LDST128_TPREL_LO12),\n\t\t\"R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC\":     reflect.ValueOf(elf.R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC),\n\t\t\"R_AARCH64_TLSLE_MOVW_TPREL_G0\":             reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G0),\n\t\t\"R_AARCH64_TLSLE_MOVW_TPREL_G0_NC\":          reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G0_NC),\n\t\t\"R_AARCH64_TLSLE_MOVW_TPREL_G1\":             reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G1),\n\t\t\"R_AARCH64_TLSLE_MOVW_TPREL_G1_NC\":          reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G1_NC),\n\t\t\"R_AARCH64_TLSLE_MOVW_TPREL_G2\":             reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G2),\n\t\t\"R_AARCH64_TLS_DTPMOD64\":                    reflect.ValueOf(elf.R_AARCH64_TLS_DTPMOD64),\n\t\t\"R_AARCH64_TLS_DTPREL64\":                    reflect.ValueOf(elf.R_AARCH64_TLS_DTPREL64),\n\t\t\"R_AARCH64_TLS_TPREL64\":                     reflect.ValueOf(elf.R_AARCH64_TLS_TPREL64),\n\t\t\"R_AARCH64_TSTBR14\":                         reflect.ValueOf(elf.R_AARCH64_TSTBR14),\n\t\t\"R_ALPHA_BRADDR\":                            reflect.ValueOf(elf.R_ALPHA_BRADDR),\n\t\t\"R_ALPHA_COPY\":                              reflect.ValueOf(elf.R_ALPHA_COPY),\n\t\t\"R_ALPHA_GLOB_DAT\":                          reflect.ValueOf(elf.R_ALPHA_GLOB_DAT),\n\t\t\"R_ALPHA_GPDISP\":                            reflect.ValueOf(elf.R_ALPHA_GPDISP),\n\t\t\"R_ALPHA_GPREL32\":                           reflect.ValueOf(elf.R_ALPHA_GPREL32),\n\t\t\"R_ALPHA_GPRELHIGH\":                         reflect.ValueOf(elf.R_ALPHA_GPRELHIGH),\n\t\t\"R_ALPHA_GPRELLOW\":                          reflect.ValueOf(elf.R_ALPHA_GPRELLOW),\n\t\t\"R_ALPHA_GPVALUE\":                           reflect.ValueOf(elf.R_ALPHA_GPVALUE),\n\t\t\"R_ALPHA_HINT\":                              reflect.ValueOf(elf.R_ALPHA_HINT),\n\t\t\"R_ALPHA_IMMED_BR_HI32\":                     reflect.ValueOf(elf.R_ALPHA_IMMED_BR_HI32),\n\t\t\"R_ALPHA_IMMED_GP_16\":                       reflect.ValueOf(elf.R_ALPHA_IMMED_GP_16),\n\t\t\"R_ALPHA_IMMED_GP_HI32\":                     reflect.ValueOf(elf.R_ALPHA_IMMED_GP_HI32),\n\t\t\"R_ALPHA_IMMED_LO32\":                        reflect.ValueOf(elf.R_ALPHA_IMMED_LO32),\n\t\t\"R_ALPHA_IMMED_SCN_HI32\":                    reflect.ValueOf(elf.R_ALPHA_IMMED_SCN_HI32),\n\t\t\"R_ALPHA_JMP_SLOT\":                          reflect.ValueOf(elf.R_ALPHA_JMP_SLOT),\n\t\t\"R_ALPHA_LITERAL\":                           reflect.ValueOf(elf.R_ALPHA_LITERAL),\n\t\t\"R_ALPHA_LITUSE\":                            reflect.ValueOf(elf.R_ALPHA_LITUSE),\n\t\t\"R_ALPHA_NONE\":                              reflect.ValueOf(elf.R_ALPHA_NONE),\n\t\t\"R_ALPHA_OP_PRSHIFT\":                        reflect.ValueOf(elf.R_ALPHA_OP_PRSHIFT),\n\t\t\"R_ALPHA_OP_PSUB\":                           reflect.ValueOf(elf.R_ALPHA_OP_PSUB),\n\t\t\"R_ALPHA_OP_PUSH\":                           reflect.ValueOf(elf.R_ALPHA_OP_PUSH),\n\t\t\"R_ALPHA_OP_STORE\":                          reflect.ValueOf(elf.R_ALPHA_OP_STORE),\n\t\t\"R_ALPHA_REFLONG\":                           reflect.ValueOf(elf.R_ALPHA_REFLONG),\n\t\t\"R_ALPHA_REFQUAD\":                           reflect.ValueOf(elf.R_ALPHA_REFQUAD),\n\t\t\"R_ALPHA_RELATIVE\":                          reflect.ValueOf(elf.R_ALPHA_RELATIVE),\n\t\t\"R_ALPHA_SREL16\":                            reflect.ValueOf(elf.R_ALPHA_SREL16),\n\t\t\"R_ALPHA_SREL32\":                            reflect.ValueOf(elf.R_ALPHA_SREL32),\n\t\t\"R_ALPHA_SREL64\":                            reflect.ValueOf(elf.R_ALPHA_SREL64),\n\t\t\"R_ARM_ABS12\":                               reflect.ValueOf(elf.R_ARM_ABS12),\n\t\t\"R_ARM_ABS16\":                               reflect.ValueOf(elf.R_ARM_ABS16),\n\t\t\"R_ARM_ABS32\":                               reflect.ValueOf(elf.R_ARM_ABS32),\n\t\t\"R_ARM_ABS32_NOI\":                           reflect.ValueOf(elf.R_ARM_ABS32_NOI),\n\t\t\"R_ARM_ABS8\":                                reflect.ValueOf(elf.R_ARM_ABS8),\n\t\t\"R_ARM_ALU_PCREL_15_8\":                      reflect.ValueOf(elf.R_ARM_ALU_PCREL_15_8),\n\t\t\"R_ARM_ALU_PCREL_23_15\":                     reflect.ValueOf(elf.R_ARM_ALU_PCREL_23_15),\n\t\t\"R_ARM_ALU_PCREL_7_0\":                       reflect.ValueOf(elf.R_ARM_ALU_PCREL_7_0),\n\t\t\"R_ARM_ALU_PC_G0\":                           reflect.ValueOf(elf.R_ARM_ALU_PC_G0),\n\t\t\"R_ARM_ALU_PC_G0_NC\":                        reflect.ValueOf(elf.R_ARM_ALU_PC_G0_NC),\n\t\t\"R_ARM_ALU_PC_G1\":                           reflect.ValueOf(elf.R_ARM_ALU_PC_G1),\n\t\t\"R_ARM_ALU_PC_G1_NC\":                        reflect.ValueOf(elf.R_ARM_ALU_PC_G1_NC),\n\t\t\"R_ARM_ALU_PC_G2\":                           reflect.ValueOf(elf.R_ARM_ALU_PC_G2),\n\t\t\"R_ARM_ALU_SBREL_19_12_NC\":                  reflect.ValueOf(elf.R_ARM_ALU_SBREL_19_12_NC),\n\t\t\"R_ARM_ALU_SBREL_27_20_CK\":                  reflect.ValueOf(elf.R_ARM_ALU_SBREL_27_20_CK),\n\t\t\"R_ARM_ALU_SB_G0\":                           reflect.ValueOf(elf.R_ARM_ALU_SB_G0),\n\t\t\"R_ARM_ALU_SB_G0_NC\":                        reflect.ValueOf(elf.R_ARM_ALU_SB_G0_NC),\n\t\t\"R_ARM_ALU_SB_G1\":                           reflect.ValueOf(elf.R_ARM_ALU_SB_G1),\n\t\t\"R_ARM_ALU_SB_G1_NC\":                        reflect.ValueOf(elf.R_ARM_ALU_SB_G1_NC),\n\t\t\"R_ARM_ALU_SB_G2\":                           reflect.ValueOf(elf.R_ARM_ALU_SB_G2),\n\t\t\"R_ARM_AMP_VCALL9\":                          reflect.ValueOf(elf.R_ARM_AMP_VCALL9),\n\t\t\"R_ARM_BASE_ABS\":                            reflect.ValueOf(elf.R_ARM_BASE_ABS),\n\t\t\"R_ARM_CALL\":                                reflect.ValueOf(elf.R_ARM_CALL),\n\t\t\"R_ARM_COPY\":                                reflect.ValueOf(elf.R_ARM_COPY),\n\t\t\"R_ARM_GLOB_DAT\":                            reflect.ValueOf(elf.R_ARM_GLOB_DAT),\n\t\t\"R_ARM_GNU_VTENTRY\":                         reflect.ValueOf(elf.R_ARM_GNU_VTENTRY),\n\t\t\"R_ARM_GNU_VTINHERIT\":                       reflect.ValueOf(elf.R_ARM_GNU_VTINHERIT),\n\t\t\"R_ARM_GOT32\":                               reflect.ValueOf(elf.R_ARM_GOT32),\n\t\t\"R_ARM_GOTOFF\":                              reflect.ValueOf(elf.R_ARM_GOTOFF),\n\t\t\"R_ARM_GOTOFF12\":                            reflect.ValueOf(elf.R_ARM_GOTOFF12),\n\t\t\"R_ARM_GOTPC\":                               reflect.ValueOf(elf.R_ARM_GOTPC),\n\t\t\"R_ARM_GOTRELAX\":                            reflect.ValueOf(elf.R_ARM_GOTRELAX),\n\t\t\"R_ARM_GOT_ABS\":                             reflect.ValueOf(elf.R_ARM_GOT_ABS),\n\t\t\"R_ARM_GOT_BREL12\":                          reflect.ValueOf(elf.R_ARM_GOT_BREL12),\n\t\t\"R_ARM_GOT_PREL\":                            reflect.ValueOf(elf.R_ARM_GOT_PREL),\n\t\t\"R_ARM_IRELATIVE\":                           reflect.ValueOf(elf.R_ARM_IRELATIVE),\n\t\t\"R_ARM_JUMP24\":                              reflect.ValueOf(elf.R_ARM_JUMP24),\n\t\t\"R_ARM_JUMP_SLOT\":                           reflect.ValueOf(elf.R_ARM_JUMP_SLOT),\n\t\t\"R_ARM_LDC_PC_G0\":                           reflect.ValueOf(elf.R_ARM_LDC_PC_G0),\n\t\t\"R_ARM_LDC_PC_G1\":                           reflect.ValueOf(elf.R_ARM_LDC_PC_G1),\n\t\t\"R_ARM_LDC_PC_G2\":                           reflect.ValueOf(elf.R_ARM_LDC_PC_G2),\n\t\t\"R_ARM_LDC_SB_G0\":                           reflect.ValueOf(elf.R_ARM_LDC_SB_G0),\n\t\t\"R_ARM_LDC_SB_G1\":                           reflect.ValueOf(elf.R_ARM_LDC_SB_G1),\n\t\t\"R_ARM_LDC_SB_G2\":                           reflect.ValueOf(elf.R_ARM_LDC_SB_G2),\n\t\t\"R_ARM_LDRS_PC_G0\":                          reflect.ValueOf(elf.R_ARM_LDRS_PC_G0),\n\t\t\"R_ARM_LDRS_PC_G1\":                          reflect.ValueOf(elf.R_ARM_LDRS_PC_G1),\n\t\t\"R_ARM_LDRS_PC_G2\":                          reflect.ValueOf(elf.R_ARM_LDRS_PC_G2),\n\t\t\"R_ARM_LDRS_SB_G0\":                          reflect.ValueOf(elf.R_ARM_LDRS_SB_G0),\n\t\t\"R_ARM_LDRS_SB_G1\":                          reflect.ValueOf(elf.R_ARM_LDRS_SB_G1),\n\t\t\"R_ARM_LDRS_SB_G2\":                          reflect.ValueOf(elf.R_ARM_LDRS_SB_G2),\n\t\t\"R_ARM_LDR_PC_G1\":                           reflect.ValueOf(elf.R_ARM_LDR_PC_G1),\n\t\t\"R_ARM_LDR_PC_G2\":                           reflect.ValueOf(elf.R_ARM_LDR_PC_G2),\n\t\t\"R_ARM_LDR_SBREL_11_10_NC\":                  reflect.ValueOf(elf.R_ARM_LDR_SBREL_11_10_NC),\n\t\t\"R_ARM_LDR_SB_G0\":                           reflect.ValueOf(elf.R_ARM_LDR_SB_G0),\n\t\t\"R_ARM_LDR_SB_G1\":                           reflect.ValueOf(elf.R_ARM_LDR_SB_G1),\n\t\t\"R_ARM_LDR_SB_G2\":                           reflect.ValueOf(elf.R_ARM_LDR_SB_G2),\n\t\t\"R_ARM_ME_TOO\":                              reflect.ValueOf(elf.R_ARM_ME_TOO),\n\t\t\"R_ARM_MOVT_ABS\":                            reflect.ValueOf(elf.R_ARM_MOVT_ABS),\n\t\t\"R_ARM_MOVT_BREL\":                           reflect.ValueOf(elf.R_ARM_MOVT_BREL),\n\t\t\"R_ARM_MOVT_PREL\":                           reflect.ValueOf(elf.R_ARM_MOVT_PREL),\n\t\t\"R_ARM_MOVW_ABS_NC\":                         reflect.ValueOf(elf.R_ARM_MOVW_ABS_NC),\n\t\t\"R_ARM_MOVW_BREL\":                           reflect.ValueOf(elf.R_ARM_MOVW_BREL),\n\t\t\"R_ARM_MOVW_BREL_NC\":                        reflect.ValueOf(elf.R_ARM_MOVW_BREL_NC),\n\t\t\"R_ARM_MOVW_PREL_NC\":                        reflect.ValueOf(elf.R_ARM_MOVW_PREL_NC),\n\t\t\"R_ARM_NONE\":                                reflect.ValueOf(elf.R_ARM_NONE),\n\t\t\"R_ARM_PC13\":                                reflect.ValueOf(elf.R_ARM_PC13),\n\t\t\"R_ARM_PC24\":                                reflect.ValueOf(elf.R_ARM_PC24),\n\t\t\"R_ARM_PLT32\":                               reflect.ValueOf(elf.R_ARM_PLT32),\n\t\t\"R_ARM_PLT32_ABS\":                           reflect.ValueOf(elf.R_ARM_PLT32_ABS),\n\t\t\"R_ARM_PREL31\":                              reflect.ValueOf(elf.R_ARM_PREL31),\n\t\t\"R_ARM_PRIVATE_0\":                           reflect.ValueOf(elf.R_ARM_PRIVATE_0),\n\t\t\"R_ARM_PRIVATE_1\":                           reflect.ValueOf(elf.R_ARM_PRIVATE_1),\n\t\t\"R_ARM_PRIVATE_10\":                          reflect.ValueOf(elf.R_ARM_PRIVATE_10),\n\t\t\"R_ARM_PRIVATE_11\":                          reflect.ValueOf(elf.R_ARM_PRIVATE_11),\n\t\t\"R_ARM_PRIVATE_12\":                          reflect.ValueOf(elf.R_ARM_PRIVATE_12),\n\t\t\"R_ARM_PRIVATE_13\":                          reflect.ValueOf(elf.R_ARM_PRIVATE_13),\n\t\t\"R_ARM_PRIVATE_14\":                          reflect.ValueOf(elf.R_ARM_PRIVATE_14),\n\t\t\"R_ARM_PRIVATE_15\":                          reflect.ValueOf(elf.R_ARM_PRIVATE_15),\n\t\t\"R_ARM_PRIVATE_2\":                           reflect.ValueOf(elf.R_ARM_PRIVATE_2),\n\t\t\"R_ARM_PRIVATE_3\":                           reflect.ValueOf(elf.R_ARM_PRIVATE_3),\n\t\t\"R_ARM_PRIVATE_4\":                           reflect.ValueOf(elf.R_ARM_PRIVATE_4),\n\t\t\"R_ARM_PRIVATE_5\":                           reflect.ValueOf(elf.R_ARM_PRIVATE_5),\n\t\t\"R_ARM_PRIVATE_6\":                           reflect.ValueOf(elf.R_ARM_PRIVATE_6),\n\t\t\"R_ARM_PRIVATE_7\":                           reflect.ValueOf(elf.R_ARM_PRIVATE_7),\n\t\t\"R_ARM_PRIVATE_8\":                           reflect.ValueOf(elf.R_ARM_PRIVATE_8),\n\t\t\"R_ARM_PRIVATE_9\":                           reflect.ValueOf(elf.R_ARM_PRIVATE_9),\n\t\t\"R_ARM_RABS32\":                              reflect.ValueOf(elf.R_ARM_RABS32),\n\t\t\"R_ARM_RBASE\":                               reflect.ValueOf(elf.R_ARM_RBASE),\n\t\t\"R_ARM_REL32\":                               reflect.ValueOf(elf.R_ARM_REL32),\n\t\t\"R_ARM_REL32_NOI\":                           reflect.ValueOf(elf.R_ARM_REL32_NOI),\n\t\t\"R_ARM_RELATIVE\":                            reflect.ValueOf(elf.R_ARM_RELATIVE),\n\t\t\"R_ARM_RPC24\":                               reflect.ValueOf(elf.R_ARM_RPC24),\n\t\t\"R_ARM_RREL32\":                              reflect.ValueOf(elf.R_ARM_RREL32),\n\t\t\"R_ARM_RSBREL32\":                            reflect.ValueOf(elf.R_ARM_RSBREL32),\n\t\t\"R_ARM_RXPC25\":                              reflect.ValueOf(elf.R_ARM_RXPC25),\n\t\t\"R_ARM_SBREL31\":                             reflect.ValueOf(elf.R_ARM_SBREL31),\n\t\t\"R_ARM_SBREL32\":                             reflect.ValueOf(elf.R_ARM_SBREL32),\n\t\t\"R_ARM_SWI24\":                               reflect.ValueOf(elf.R_ARM_SWI24),\n\t\t\"R_ARM_TARGET1\":                             reflect.ValueOf(elf.R_ARM_TARGET1),\n\t\t\"R_ARM_TARGET2\":                             reflect.ValueOf(elf.R_ARM_TARGET2),\n\t\t\"R_ARM_THM_ABS5\":                            reflect.ValueOf(elf.R_ARM_THM_ABS5),\n\t\t\"R_ARM_THM_ALU_ABS_G0_NC\":                   reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G0_NC),\n\t\t\"R_ARM_THM_ALU_ABS_G1_NC\":                   reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G1_NC),\n\t\t\"R_ARM_THM_ALU_ABS_G2_NC\":                   reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G2_NC),\n\t\t\"R_ARM_THM_ALU_ABS_G3\":                      reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G3),\n\t\t\"R_ARM_THM_ALU_PREL_11_0\":                   reflect.ValueOf(elf.R_ARM_THM_ALU_PREL_11_0),\n\t\t\"R_ARM_THM_GOT_BREL12\":                      reflect.ValueOf(elf.R_ARM_THM_GOT_BREL12),\n\t\t\"R_ARM_THM_JUMP11\":                          reflect.ValueOf(elf.R_ARM_THM_JUMP11),\n\t\t\"R_ARM_THM_JUMP19\":                          reflect.ValueOf(elf.R_ARM_THM_JUMP19),\n\t\t\"R_ARM_THM_JUMP24\":                          reflect.ValueOf(elf.R_ARM_THM_JUMP24),\n\t\t\"R_ARM_THM_JUMP6\":                           reflect.ValueOf(elf.R_ARM_THM_JUMP6),\n\t\t\"R_ARM_THM_JUMP8\":                           reflect.ValueOf(elf.R_ARM_THM_JUMP8),\n\t\t\"R_ARM_THM_MOVT_ABS\":                        reflect.ValueOf(elf.R_ARM_THM_MOVT_ABS),\n\t\t\"R_ARM_THM_MOVT_BREL\":                       reflect.ValueOf(elf.R_ARM_THM_MOVT_BREL),\n\t\t\"R_ARM_THM_MOVT_PREL\":                       reflect.ValueOf(elf.R_ARM_THM_MOVT_PREL),\n\t\t\"R_ARM_THM_MOVW_ABS_NC\":                     reflect.ValueOf(elf.R_ARM_THM_MOVW_ABS_NC),\n\t\t\"R_ARM_THM_MOVW_BREL\":                       reflect.ValueOf(elf.R_ARM_THM_MOVW_BREL),\n\t\t\"R_ARM_THM_MOVW_BREL_NC\":                    reflect.ValueOf(elf.R_ARM_THM_MOVW_BREL_NC),\n\t\t\"R_ARM_THM_MOVW_PREL_NC\":                    reflect.ValueOf(elf.R_ARM_THM_MOVW_PREL_NC),\n\t\t\"R_ARM_THM_PC12\":                            reflect.ValueOf(elf.R_ARM_THM_PC12),\n\t\t\"R_ARM_THM_PC22\":                            reflect.ValueOf(elf.R_ARM_THM_PC22),\n\t\t\"R_ARM_THM_PC8\":                             reflect.ValueOf(elf.R_ARM_THM_PC8),\n\t\t\"R_ARM_THM_RPC22\":                           reflect.ValueOf(elf.R_ARM_THM_RPC22),\n\t\t\"R_ARM_THM_SWI8\":                            reflect.ValueOf(elf.R_ARM_THM_SWI8),\n\t\t\"R_ARM_THM_TLS_CALL\":                        reflect.ValueOf(elf.R_ARM_THM_TLS_CALL),\n\t\t\"R_ARM_THM_TLS_DESCSEQ16\":                   reflect.ValueOf(elf.R_ARM_THM_TLS_DESCSEQ16),\n\t\t\"R_ARM_THM_TLS_DESCSEQ32\":                   reflect.ValueOf(elf.R_ARM_THM_TLS_DESCSEQ32),\n\t\t\"R_ARM_THM_XPC22\":                           reflect.ValueOf(elf.R_ARM_THM_XPC22),\n\t\t\"R_ARM_TLS_CALL\":                            reflect.ValueOf(elf.R_ARM_TLS_CALL),\n\t\t\"R_ARM_TLS_DESCSEQ\":                         reflect.ValueOf(elf.R_ARM_TLS_DESCSEQ),\n\t\t\"R_ARM_TLS_DTPMOD32\":                        reflect.ValueOf(elf.R_ARM_TLS_DTPMOD32),\n\t\t\"R_ARM_TLS_DTPOFF32\":                        reflect.ValueOf(elf.R_ARM_TLS_DTPOFF32),\n\t\t\"R_ARM_TLS_GD32\":                            reflect.ValueOf(elf.R_ARM_TLS_GD32),\n\t\t\"R_ARM_TLS_GOTDESC\":                         reflect.ValueOf(elf.R_ARM_TLS_GOTDESC),\n\t\t\"R_ARM_TLS_IE12GP\":                          reflect.ValueOf(elf.R_ARM_TLS_IE12GP),\n\t\t\"R_ARM_TLS_IE32\":                            reflect.ValueOf(elf.R_ARM_TLS_IE32),\n\t\t\"R_ARM_TLS_LDM32\":                           reflect.ValueOf(elf.R_ARM_TLS_LDM32),\n\t\t\"R_ARM_TLS_LDO12\":                           reflect.ValueOf(elf.R_ARM_TLS_LDO12),\n\t\t\"R_ARM_TLS_LDO32\":                           reflect.ValueOf(elf.R_ARM_TLS_LDO32),\n\t\t\"R_ARM_TLS_LE12\":                            reflect.ValueOf(elf.R_ARM_TLS_LE12),\n\t\t\"R_ARM_TLS_LE32\":                            reflect.ValueOf(elf.R_ARM_TLS_LE32),\n\t\t\"R_ARM_TLS_TPOFF32\":                         reflect.ValueOf(elf.R_ARM_TLS_TPOFF32),\n\t\t\"R_ARM_V4BX\":                                reflect.ValueOf(elf.R_ARM_V4BX),\n\t\t\"R_ARM_XPC25\":                               reflect.ValueOf(elf.R_ARM_XPC25),\n\t\t\"R_INFO\":                                    reflect.ValueOf(elf.R_INFO),\n\t\t\"R_INFO32\":                                  reflect.ValueOf(elf.R_INFO32),\n\t\t\"R_LARCH_32\":                                reflect.ValueOf(elf.R_LARCH_32),\n\t\t\"R_LARCH_32_PCREL\":                          reflect.ValueOf(elf.R_LARCH_32_PCREL),\n\t\t\"R_LARCH_64\":                                reflect.ValueOf(elf.R_LARCH_64),\n\t\t\"R_LARCH_64_PCREL\":                          reflect.ValueOf(elf.R_LARCH_64_PCREL),\n\t\t\"R_LARCH_ABS64_HI12\":                        reflect.ValueOf(elf.R_LARCH_ABS64_HI12),\n\t\t\"R_LARCH_ABS64_LO20\":                        reflect.ValueOf(elf.R_LARCH_ABS64_LO20),\n\t\t\"R_LARCH_ABS_HI20\":                          reflect.ValueOf(elf.R_LARCH_ABS_HI20),\n\t\t\"R_LARCH_ABS_LO12\":                          reflect.ValueOf(elf.R_LARCH_ABS_LO12),\n\t\t\"R_LARCH_ADD16\":                             reflect.ValueOf(elf.R_LARCH_ADD16),\n\t\t\"R_LARCH_ADD24\":                             reflect.ValueOf(elf.R_LARCH_ADD24),\n\t\t\"R_LARCH_ADD32\":                             reflect.ValueOf(elf.R_LARCH_ADD32),\n\t\t\"R_LARCH_ADD6\":                              reflect.ValueOf(elf.R_LARCH_ADD6),\n\t\t\"R_LARCH_ADD64\":                             reflect.ValueOf(elf.R_LARCH_ADD64),\n\t\t\"R_LARCH_ADD8\":                              reflect.ValueOf(elf.R_LARCH_ADD8),\n\t\t\"R_LARCH_ADD_ULEB128\":                       reflect.ValueOf(elf.R_LARCH_ADD_ULEB128),\n\t\t\"R_LARCH_ALIGN\":                             reflect.ValueOf(elf.R_LARCH_ALIGN),\n\t\t\"R_LARCH_B16\":                               reflect.ValueOf(elf.R_LARCH_B16),\n\t\t\"R_LARCH_B21\":                               reflect.ValueOf(elf.R_LARCH_B21),\n\t\t\"R_LARCH_B26\":                               reflect.ValueOf(elf.R_LARCH_B26),\n\t\t\"R_LARCH_CFA\":                               reflect.ValueOf(elf.R_LARCH_CFA),\n\t\t\"R_LARCH_COPY\":                              reflect.ValueOf(elf.R_LARCH_COPY),\n\t\t\"R_LARCH_DELETE\":                            reflect.ValueOf(elf.R_LARCH_DELETE),\n\t\t\"R_LARCH_GNU_VTENTRY\":                       reflect.ValueOf(elf.R_LARCH_GNU_VTENTRY),\n\t\t\"R_LARCH_GNU_VTINHERIT\":                     reflect.ValueOf(elf.R_LARCH_GNU_VTINHERIT),\n\t\t\"R_LARCH_GOT64_HI12\":                        reflect.ValueOf(elf.R_LARCH_GOT64_HI12),\n\t\t\"R_LARCH_GOT64_LO20\":                        reflect.ValueOf(elf.R_LARCH_GOT64_LO20),\n\t\t\"R_LARCH_GOT64_PC_HI12\":                     reflect.ValueOf(elf.R_LARCH_GOT64_PC_HI12),\n\t\t\"R_LARCH_GOT64_PC_LO20\":                     reflect.ValueOf(elf.R_LARCH_GOT64_PC_LO20),\n\t\t\"R_LARCH_GOT_HI20\":                          reflect.ValueOf(elf.R_LARCH_GOT_HI20),\n\t\t\"R_LARCH_GOT_LO12\":                          reflect.ValueOf(elf.R_LARCH_GOT_LO12),\n\t\t\"R_LARCH_GOT_PC_HI20\":                       reflect.ValueOf(elf.R_LARCH_GOT_PC_HI20),\n\t\t\"R_LARCH_GOT_PC_LO12\":                       reflect.ValueOf(elf.R_LARCH_GOT_PC_LO12),\n\t\t\"R_LARCH_IRELATIVE\":                         reflect.ValueOf(elf.R_LARCH_IRELATIVE),\n\t\t\"R_LARCH_JUMP_SLOT\":                         reflect.ValueOf(elf.R_LARCH_JUMP_SLOT),\n\t\t\"R_LARCH_MARK_LA\":                           reflect.ValueOf(elf.R_LARCH_MARK_LA),\n\t\t\"R_LARCH_MARK_PCREL\":                        reflect.ValueOf(elf.R_LARCH_MARK_PCREL),\n\t\t\"R_LARCH_NONE\":                              reflect.ValueOf(elf.R_LARCH_NONE),\n\t\t\"R_LARCH_PCALA64_HI12\":                      reflect.ValueOf(elf.R_LARCH_PCALA64_HI12),\n\t\t\"R_LARCH_PCALA64_LO20\":                      reflect.ValueOf(elf.R_LARCH_PCALA64_LO20),\n\t\t\"R_LARCH_PCALA_HI20\":                        reflect.ValueOf(elf.R_LARCH_PCALA_HI20),\n\t\t\"R_LARCH_PCALA_LO12\":                        reflect.ValueOf(elf.R_LARCH_PCALA_LO12),\n\t\t\"R_LARCH_PCREL20_S2\":                        reflect.ValueOf(elf.R_LARCH_PCREL20_S2),\n\t\t\"R_LARCH_RELATIVE\":                          reflect.ValueOf(elf.R_LARCH_RELATIVE),\n\t\t\"R_LARCH_RELAX\":                             reflect.ValueOf(elf.R_LARCH_RELAX),\n\t\t\"R_LARCH_SOP_ADD\":                           reflect.ValueOf(elf.R_LARCH_SOP_ADD),\n\t\t\"R_LARCH_SOP_AND\":                           reflect.ValueOf(elf.R_LARCH_SOP_AND),\n\t\t\"R_LARCH_SOP_ASSERT\":                        reflect.ValueOf(elf.R_LARCH_SOP_ASSERT),\n\t\t\"R_LARCH_SOP_IF_ELSE\":                       reflect.ValueOf(elf.R_LARCH_SOP_IF_ELSE),\n\t\t\"R_LARCH_SOP_NOT\":                           reflect.ValueOf(elf.R_LARCH_SOP_NOT),\n\t\t\"R_LARCH_SOP_POP_32_S_0_10_10_16_S2\":        reflect.ValueOf(elf.R_LARCH_SOP_POP_32_S_0_10_10_16_S2),\n\t\t\"R_LARCH_SOP_POP_32_S_0_5_10_16_S2\":         reflect.ValueOf(elf.R_LARCH_SOP_POP_32_S_0_5_10_16_S2),\n\t\t\"R_LARCH_SOP_POP_32_S_10_12\":                reflect.ValueOf(elf.R_LARCH_SOP_POP_32_S_10_12),\n\t\t\"R_LARCH_SOP_POP_32_S_10_16\":                reflect.ValueOf(elf.R_LARCH_SOP_POP_32_S_10_16),\n\t\t\"R_LARCH_SOP_POP_32_S_10_16_S2\":             reflect.ValueOf(elf.R_LARCH_SOP_POP_32_S_10_16_S2),\n\t\t\"R_LARCH_SOP_POP_32_S_10_5\":                 reflect.ValueOf(elf.R_LARCH_SOP_POP_32_S_10_5),\n\t\t\"R_LARCH_SOP_POP_32_S_5_20\":                 reflect.ValueOf(elf.R_LARCH_SOP_POP_32_S_5_20),\n\t\t\"R_LARCH_SOP_POP_32_U\":                      reflect.ValueOf(elf.R_LARCH_SOP_POP_32_U),\n\t\t\"R_LARCH_SOP_POP_32_U_10_12\":                reflect.ValueOf(elf.R_LARCH_SOP_POP_32_U_10_12),\n\t\t\"R_LARCH_SOP_PUSH_ABSOLUTE\":                 reflect.ValueOf(elf.R_LARCH_SOP_PUSH_ABSOLUTE),\n\t\t\"R_LARCH_SOP_PUSH_DUP\":                      reflect.ValueOf(elf.R_LARCH_SOP_PUSH_DUP),\n\t\t\"R_LARCH_SOP_PUSH_GPREL\":                    reflect.ValueOf(elf.R_LARCH_SOP_PUSH_GPREL),\n\t\t\"R_LARCH_SOP_PUSH_PCREL\":                    reflect.ValueOf(elf.R_LARCH_SOP_PUSH_PCREL),\n\t\t\"R_LARCH_SOP_PUSH_PLT_PCREL\":                reflect.ValueOf(elf.R_LARCH_SOP_PUSH_PLT_PCREL),\n\t\t\"R_LARCH_SOP_PUSH_TLS_GD\":                   reflect.ValueOf(elf.R_LARCH_SOP_PUSH_TLS_GD),\n\t\t\"R_LARCH_SOP_PUSH_TLS_GOT\":                  reflect.ValueOf(elf.R_LARCH_SOP_PUSH_TLS_GOT),\n\t\t\"R_LARCH_SOP_PUSH_TLS_TPREL\":                reflect.ValueOf(elf.R_LARCH_SOP_PUSH_TLS_TPREL),\n\t\t\"R_LARCH_SOP_SL\":                            reflect.ValueOf(elf.R_LARCH_SOP_SL),\n\t\t\"R_LARCH_SOP_SR\":                            reflect.ValueOf(elf.R_LARCH_SOP_SR),\n\t\t\"R_LARCH_SOP_SUB\":                           reflect.ValueOf(elf.R_LARCH_SOP_SUB),\n\t\t\"R_LARCH_SUB16\":                             reflect.ValueOf(elf.R_LARCH_SUB16),\n\t\t\"R_LARCH_SUB24\":                             reflect.ValueOf(elf.R_LARCH_SUB24),\n\t\t\"R_LARCH_SUB32\":                             reflect.ValueOf(elf.R_LARCH_SUB32),\n\t\t\"R_LARCH_SUB6\":                              reflect.ValueOf(elf.R_LARCH_SUB6),\n\t\t\"R_LARCH_SUB64\":                             reflect.ValueOf(elf.R_LARCH_SUB64),\n\t\t\"R_LARCH_SUB8\":                              reflect.ValueOf(elf.R_LARCH_SUB8),\n\t\t\"R_LARCH_SUB_ULEB128\":                       reflect.ValueOf(elf.R_LARCH_SUB_ULEB128),\n\t\t\"R_LARCH_TLS_DTPMOD32\":                      reflect.ValueOf(elf.R_LARCH_TLS_DTPMOD32),\n\t\t\"R_LARCH_TLS_DTPMOD64\":                      reflect.ValueOf(elf.R_LARCH_TLS_DTPMOD64),\n\t\t\"R_LARCH_TLS_DTPREL32\":                      reflect.ValueOf(elf.R_LARCH_TLS_DTPREL32),\n\t\t\"R_LARCH_TLS_DTPREL64\":                      reflect.ValueOf(elf.R_LARCH_TLS_DTPREL64),\n\t\t\"R_LARCH_TLS_GD_HI20\":                       reflect.ValueOf(elf.R_LARCH_TLS_GD_HI20),\n\t\t\"R_LARCH_TLS_GD_PC_HI20\":                    reflect.ValueOf(elf.R_LARCH_TLS_GD_PC_HI20),\n\t\t\"R_LARCH_TLS_IE64_HI12\":                     reflect.ValueOf(elf.R_LARCH_TLS_IE64_HI12),\n\t\t\"R_LARCH_TLS_IE64_LO20\":                     reflect.ValueOf(elf.R_LARCH_TLS_IE64_LO20),\n\t\t\"R_LARCH_TLS_IE64_PC_HI12\":                  reflect.ValueOf(elf.R_LARCH_TLS_IE64_PC_HI12),\n\t\t\"R_LARCH_TLS_IE64_PC_LO20\":                  reflect.ValueOf(elf.R_LARCH_TLS_IE64_PC_LO20),\n\t\t\"R_LARCH_TLS_IE_HI20\":                       reflect.ValueOf(elf.R_LARCH_TLS_IE_HI20),\n\t\t\"R_LARCH_TLS_IE_LO12\":                       reflect.ValueOf(elf.R_LARCH_TLS_IE_LO12),\n\t\t\"R_LARCH_TLS_IE_PC_HI20\":                    reflect.ValueOf(elf.R_LARCH_TLS_IE_PC_HI20),\n\t\t\"R_LARCH_TLS_IE_PC_LO12\":                    reflect.ValueOf(elf.R_LARCH_TLS_IE_PC_LO12),\n\t\t\"R_LARCH_TLS_LD_HI20\":                       reflect.ValueOf(elf.R_LARCH_TLS_LD_HI20),\n\t\t\"R_LARCH_TLS_LD_PC_HI20\":                    reflect.ValueOf(elf.R_LARCH_TLS_LD_PC_HI20),\n\t\t\"R_LARCH_TLS_LE64_HI12\":                     reflect.ValueOf(elf.R_LARCH_TLS_LE64_HI12),\n\t\t\"R_LARCH_TLS_LE64_LO20\":                     reflect.ValueOf(elf.R_LARCH_TLS_LE64_LO20),\n\t\t\"R_LARCH_TLS_LE_HI20\":                       reflect.ValueOf(elf.R_LARCH_TLS_LE_HI20),\n\t\t\"R_LARCH_TLS_LE_LO12\":                       reflect.ValueOf(elf.R_LARCH_TLS_LE_LO12),\n\t\t\"R_LARCH_TLS_TPREL32\":                       reflect.ValueOf(elf.R_LARCH_TLS_TPREL32),\n\t\t\"R_LARCH_TLS_TPREL64\":                       reflect.ValueOf(elf.R_LARCH_TLS_TPREL64),\n\t\t\"R_MIPS_16\":                                 reflect.ValueOf(elf.R_MIPS_16),\n\t\t\"R_MIPS_26\":                                 reflect.ValueOf(elf.R_MIPS_26),\n\t\t\"R_MIPS_32\":                                 reflect.ValueOf(elf.R_MIPS_32),\n\t\t\"R_MIPS_64\":                                 reflect.ValueOf(elf.R_MIPS_64),\n\t\t\"R_MIPS_ADD_IMMEDIATE\":                      reflect.ValueOf(elf.R_MIPS_ADD_IMMEDIATE),\n\t\t\"R_MIPS_CALL16\":                             reflect.ValueOf(elf.R_MIPS_CALL16),\n\t\t\"R_MIPS_CALL_HI16\":                          reflect.ValueOf(elf.R_MIPS_CALL_HI16),\n\t\t\"R_MIPS_CALL_LO16\":                          reflect.ValueOf(elf.R_MIPS_CALL_LO16),\n\t\t\"R_MIPS_DELETE\":                             reflect.ValueOf(elf.R_MIPS_DELETE),\n\t\t\"R_MIPS_GOT16\":                              reflect.ValueOf(elf.R_MIPS_GOT16),\n\t\t\"R_MIPS_GOT_DISP\":                           reflect.ValueOf(elf.R_MIPS_GOT_DISP),\n\t\t\"R_MIPS_GOT_HI16\":                           reflect.ValueOf(elf.R_MIPS_GOT_HI16),\n\t\t\"R_MIPS_GOT_LO16\":                           reflect.ValueOf(elf.R_MIPS_GOT_LO16),\n\t\t\"R_MIPS_GOT_OFST\":                           reflect.ValueOf(elf.R_MIPS_GOT_OFST),\n\t\t\"R_MIPS_GOT_PAGE\":                           reflect.ValueOf(elf.R_MIPS_GOT_PAGE),\n\t\t\"R_MIPS_GPREL16\":                            reflect.ValueOf(elf.R_MIPS_GPREL16),\n\t\t\"R_MIPS_GPREL32\":                            reflect.ValueOf(elf.R_MIPS_GPREL32),\n\t\t\"R_MIPS_HI16\":                               reflect.ValueOf(elf.R_MIPS_HI16),\n\t\t\"R_MIPS_HIGHER\":                             reflect.ValueOf(elf.R_MIPS_HIGHER),\n\t\t\"R_MIPS_HIGHEST\":                            reflect.ValueOf(elf.R_MIPS_HIGHEST),\n\t\t\"R_MIPS_INSERT_A\":                           reflect.ValueOf(elf.R_MIPS_INSERT_A),\n\t\t\"R_MIPS_INSERT_B\":                           reflect.ValueOf(elf.R_MIPS_INSERT_B),\n\t\t\"R_MIPS_JALR\":                               reflect.ValueOf(elf.R_MIPS_JALR),\n\t\t\"R_MIPS_LITERAL\":                            reflect.ValueOf(elf.R_MIPS_LITERAL),\n\t\t\"R_MIPS_LO16\":                               reflect.ValueOf(elf.R_MIPS_LO16),\n\t\t\"R_MIPS_NONE\":                               reflect.ValueOf(elf.R_MIPS_NONE),\n\t\t\"R_MIPS_PC16\":                               reflect.ValueOf(elf.R_MIPS_PC16),\n\t\t\"R_MIPS_PC32\":                               reflect.ValueOf(elf.R_MIPS_PC32),\n\t\t\"R_MIPS_PJUMP\":                              reflect.ValueOf(elf.R_MIPS_PJUMP),\n\t\t\"R_MIPS_REL16\":                              reflect.ValueOf(elf.R_MIPS_REL16),\n\t\t\"R_MIPS_REL32\":                              reflect.ValueOf(elf.R_MIPS_REL32),\n\t\t\"R_MIPS_RELGOT\":                             reflect.ValueOf(elf.R_MIPS_RELGOT),\n\t\t\"R_MIPS_SCN_DISP\":                           reflect.ValueOf(elf.R_MIPS_SCN_DISP),\n\t\t\"R_MIPS_SHIFT5\":                             reflect.ValueOf(elf.R_MIPS_SHIFT5),\n\t\t\"R_MIPS_SHIFT6\":                             reflect.ValueOf(elf.R_MIPS_SHIFT6),\n\t\t\"R_MIPS_SUB\":                                reflect.ValueOf(elf.R_MIPS_SUB),\n\t\t\"R_MIPS_TLS_DTPMOD32\":                       reflect.ValueOf(elf.R_MIPS_TLS_DTPMOD32),\n\t\t\"R_MIPS_TLS_DTPMOD64\":                       reflect.ValueOf(elf.R_MIPS_TLS_DTPMOD64),\n\t\t\"R_MIPS_TLS_DTPREL32\":                       reflect.ValueOf(elf.R_MIPS_TLS_DTPREL32),\n\t\t\"R_MIPS_TLS_DTPREL64\":                       reflect.ValueOf(elf.R_MIPS_TLS_DTPREL64),\n\t\t\"R_MIPS_TLS_DTPREL_HI16\":                    reflect.ValueOf(elf.R_MIPS_TLS_DTPREL_HI16),\n\t\t\"R_MIPS_TLS_DTPREL_LO16\":                    reflect.ValueOf(elf.R_MIPS_TLS_DTPREL_LO16),\n\t\t\"R_MIPS_TLS_GD\":                             reflect.ValueOf(elf.R_MIPS_TLS_GD),\n\t\t\"R_MIPS_TLS_GOTTPREL\":                       reflect.ValueOf(elf.R_MIPS_TLS_GOTTPREL),\n\t\t\"R_MIPS_TLS_LDM\":                            reflect.ValueOf(elf.R_MIPS_TLS_LDM),\n\t\t\"R_MIPS_TLS_TPREL32\":                        reflect.ValueOf(elf.R_MIPS_TLS_TPREL32),\n\t\t\"R_MIPS_TLS_TPREL64\":                        reflect.ValueOf(elf.R_MIPS_TLS_TPREL64),\n\t\t\"R_MIPS_TLS_TPREL_HI16\":                     reflect.ValueOf(elf.R_MIPS_TLS_TPREL_HI16),\n\t\t\"R_MIPS_TLS_TPREL_LO16\":                     reflect.ValueOf(elf.R_MIPS_TLS_TPREL_LO16),\n\t\t\"R_PPC64_ADDR14\":                            reflect.ValueOf(elf.R_PPC64_ADDR14),\n\t\t\"R_PPC64_ADDR14_BRNTAKEN\":                   reflect.ValueOf(elf.R_PPC64_ADDR14_BRNTAKEN),\n\t\t\"R_PPC64_ADDR14_BRTAKEN\":                    reflect.ValueOf(elf.R_PPC64_ADDR14_BRTAKEN),\n\t\t\"R_PPC64_ADDR16\":                            reflect.ValueOf(elf.R_PPC64_ADDR16),\n\t\t\"R_PPC64_ADDR16_DS\":                         reflect.ValueOf(elf.R_PPC64_ADDR16_DS),\n\t\t\"R_PPC64_ADDR16_HA\":                         reflect.ValueOf(elf.R_PPC64_ADDR16_HA),\n\t\t\"R_PPC64_ADDR16_HI\":                         reflect.ValueOf(elf.R_PPC64_ADDR16_HI),\n\t\t\"R_PPC64_ADDR16_HIGH\":                       reflect.ValueOf(elf.R_PPC64_ADDR16_HIGH),\n\t\t\"R_PPC64_ADDR16_HIGHA\":                      reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHA),\n\t\t\"R_PPC64_ADDR16_HIGHER\":                     reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHER),\n\t\t\"R_PPC64_ADDR16_HIGHER34\":                   reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHER34),\n\t\t\"R_PPC64_ADDR16_HIGHERA\":                    reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHERA),\n\t\t\"R_PPC64_ADDR16_HIGHERA34\":                  reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHERA34),\n\t\t\"R_PPC64_ADDR16_HIGHEST\":                    reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHEST),\n\t\t\"R_PPC64_ADDR16_HIGHEST34\":                  reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHEST34),\n\t\t\"R_PPC64_ADDR16_HIGHESTA\":                   reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHESTA),\n\t\t\"R_PPC64_ADDR16_HIGHESTA34\":                 reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHESTA34),\n\t\t\"R_PPC64_ADDR16_LO\":                         reflect.ValueOf(elf.R_PPC64_ADDR16_LO),\n\t\t\"R_PPC64_ADDR16_LO_DS\":                      reflect.ValueOf(elf.R_PPC64_ADDR16_LO_DS),\n\t\t\"R_PPC64_ADDR24\":                            reflect.ValueOf(elf.R_PPC64_ADDR24),\n\t\t\"R_PPC64_ADDR32\":                            reflect.ValueOf(elf.R_PPC64_ADDR32),\n\t\t\"R_PPC64_ADDR64\":                            reflect.ValueOf(elf.R_PPC64_ADDR64),\n\t\t\"R_PPC64_ADDR64_LOCAL\":                      reflect.ValueOf(elf.R_PPC64_ADDR64_LOCAL),\n\t\t\"R_PPC64_COPY\":                              reflect.ValueOf(elf.R_PPC64_COPY),\n\t\t\"R_PPC64_D28\":                               reflect.ValueOf(elf.R_PPC64_D28),\n\t\t\"R_PPC64_D34\":                               reflect.ValueOf(elf.R_PPC64_D34),\n\t\t\"R_PPC64_D34_HA30\":                          reflect.ValueOf(elf.R_PPC64_D34_HA30),\n\t\t\"R_PPC64_D34_HI30\":                          reflect.ValueOf(elf.R_PPC64_D34_HI30),\n\t\t\"R_PPC64_D34_LO\":                            reflect.ValueOf(elf.R_PPC64_D34_LO),\n\t\t\"R_PPC64_DTPMOD64\":                          reflect.ValueOf(elf.R_PPC64_DTPMOD64),\n\t\t\"R_PPC64_DTPREL16\":                          reflect.ValueOf(elf.R_PPC64_DTPREL16),\n\t\t\"R_PPC64_DTPREL16_DS\":                       reflect.ValueOf(elf.R_PPC64_DTPREL16_DS),\n\t\t\"R_PPC64_DTPREL16_HA\":                       reflect.ValueOf(elf.R_PPC64_DTPREL16_HA),\n\t\t\"R_PPC64_DTPREL16_HI\":                       reflect.ValueOf(elf.R_PPC64_DTPREL16_HI),\n\t\t\"R_PPC64_DTPREL16_HIGH\":                     reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGH),\n\t\t\"R_PPC64_DTPREL16_HIGHA\":                    reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHA),\n\t\t\"R_PPC64_DTPREL16_HIGHER\":                   reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHER),\n\t\t\"R_PPC64_DTPREL16_HIGHERA\":                  reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHERA),\n\t\t\"R_PPC64_DTPREL16_HIGHEST\":                  reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHEST),\n\t\t\"R_PPC64_DTPREL16_HIGHESTA\":                 reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHESTA),\n\t\t\"R_PPC64_DTPREL16_LO\":                       reflect.ValueOf(elf.R_PPC64_DTPREL16_LO),\n\t\t\"R_PPC64_DTPREL16_LO_DS\":                    reflect.ValueOf(elf.R_PPC64_DTPREL16_LO_DS),\n\t\t\"R_PPC64_DTPREL34\":                          reflect.ValueOf(elf.R_PPC64_DTPREL34),\n\t\t\"R_PPC64_DTPREL64\":                          reflect.ValueOf(elf.R_PPC64_DTPREL64),\n\t\t\"R_PPC64_ENTRY\":                             reflect.ValueOf(elf.R_PPC64_ENTRY),\n\t\t\"R_PPC64_GLOB_DAT\":                          reflect.ValueOf(elf.R_PPC64_GLOB_DAT),\n\t\t\"R_PPC64_GNU_VTENTRY\":                       reflect.ValueOf(elf.R_PPC64_GNU_VTENTRY),\n\t\t\"R_PPC64_GNU_VTINHERIT\":                     reflect.ValueOf(elf.R_PPC64_GNU_VTINHERIT),\n\t\t\"R_PPC64_GOT16\":                             reflect.ValueOf(elf.R_PPC64_GOT16),\n\t\t\"R_PPC64_GOT16_DS\":                          reflect.ValueOf(elf.R_PPC64_GOT16_DS),\n\t\t\"R_PPC64_GOT16_HA\":                          reflect.ValueOf(elf.R_PPC64_GOT16_HA),\n\t\t\"R_PPC64_GOT16_HI\":                          reflect.ValueOf(elf.R_PPC64_GOT16_HI),\n\t\t\"R_PPC64_GOT16_LO\":                          reflect.ValueOf(elf.R_PPC64_GOT16_LO),\n\t\t\"R_PPC64_GOT16_LO_DS\":                       reflect.ValueOf(elf.R_PPC64_GOT16_LO_DS),\n\t\t\"R_PPC64_GOT_DTPREL16_DS\":                   reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_DS),\n\t\t\"R_PPC64_GOT_DTPREL16_HA\":                   reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_HA),\n\t\t\"R_PPC64_GOT_DTPREL16_HI\":                   reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_HI),\n\t\t\"R_PPC64_GOT_DTPREL16_LO_DS\":                reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_LO_DS),\n\t\t\"R_PPC64_GOT_DTPREL_PCREL34\":                reflect.ValueOf(elf.R_PPC64_GOT_DTPREL_PCREL34),\n\t\t\"R_PPC64_GOT_PCREL34\":                       reflect.ValueOf(elf.R_PPC64_GOT_PCREL34),\n\t\t\"R_PPC64_GOT_TLSGD16\":                       reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16),\n\t\t\"R_PPC64_GOT_TLSGD16_HA\":                    reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16_HA),\n\t\t\"R_PPC64_GOT_TLSGD16_HI\":                    reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16_HI),\n\t\t\"R_PPC64_GOT_TLSGD16_LO\":                    reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16_LO),\n\t\t\"R_PPC64_GOT_TLSGD_PCREL34\":                 reflect.ValueOf(elf.R_PPC64_GOT_TLSGD_PCREL34),\n\t\t\"R_PPC64_GOT_TLSLD16\":                       reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16),\n\t\t\"R_PPC64_GOT_TLSLD16_HA\":                    reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16_HA),\n\t\t\"R_PPC64_GOT_TLSLD16_HI\":                    reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16_HI),\n\t\t\"R_PPC64_GOT_TLSLD16_LO\":                    reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16_LO),\n\t\t\"R_PPC64_GOT_TLSLD_PCREL34\":                 reflect.ValueOf(elf.R_PPC64_GOT_TLSLD_PCREL34),\n\t\t\"R_PPC64_GOT_TPREL16_DS\":                    reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_DS),\n\t\t\"R_PPC64_GOT_TPREL16_HA\":                    reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_HA),\n\t\t\"R_PPC64_GOT_TPREL16_HI\":                    reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_HI),\n\t\t\"R_PPC64_GOT_TPREL16_LO_DS\":                 reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_LO_DS),\n\t\t\"R_PPC64_GOT_TPREL_PCREL34\":                 reflect.ValueOf(elf.R_PPC64_GOT_TPREL_PCREL34),\n\t\t\"R_PPC64_IRELATIVE\":                         reflect.ValueOf(elf.R_PPC64_IRELATIVE),\n\t\t\"R_PPC64_JMP_IREL\":                          reflect.ValueOf(elf.R_PPC64_JMP_IREL),\n\t\t\"R_PPC64_JMP_SLOT\":                          reflect.ValueOf(elf.R_PPC64_JMP_SLOT),\n\t\t\"R_PPC64_NONE\":                              reflect.ValueOf(elf.R_PPC64_NONE),\n\t\t\"R_PPC64_PCREL28\":                           reflect.ValueOf(elf.R_PPC64_PCREL28),\n\t\t\"R_PPC64_PCREL34\":                           reflect.ValueOf(elf.R_PPC64_PCREL34),\n\t\t\"R_PPC64_PCREL_OPT\":                         reflect.ValueOf(elf.R_PPC64_PCREL_OPT),\n\t\t\"R_PPC64_PLT16_HA\":                          reflect.ValueOf(elf.R_PPC64_PLT16_HA),\n\t\t\"R_PPC64_PLT16_HI\":                          reflect.ValueOf(elf.R_PPC64_PLT16_HI),\n\t\t\"R_PPC64_PLT16_LO\":                          reflect.ValueOf(elf.R_PPC64_PLT16_LO),\n\t\t\"R_PPC64_PLT16_LO_DS\":                       reflect.ValueOf(elf.R_PPC64_PLT16_LO_DS),\n\t\t\"R_PPC64_PLT32\":                             reflect.ValueOf(elf.R_PPC64_PLT32),\n\t\t\"R_PPC64_PLT64\":                             reflect.ValueOf(elf.R_PPC64_PLT64),\n\t\t\"R_PPC64_PLTCALL\":                           reflect.ValueOf(elf.R_PPC64_PLTCALL),\n\t\t\"R_PPC64_PLTCALL_NOTOC\":                     reflect.ValueOf(elf.R_PPC64_PLTCALL_NOTOC),\n\t\t\"R_PPC64_PLTGOT16\":                          reflect.ValueOf(elf.R_PPC64_PLTGOT16),\n\t\t\"R_PPC64_PLTGOT16_DS\":                       reflect.ValueOf(elf.R_PPC64_PLTGOT16_DS),\n\t\t\"R_PPC64_PLTGOT16_HA\":                       reflect.ValueOf(elf.R_PPC64_PLTGOT16_HA),\n\t\t\"R_PPC64_PLTGOT16_HI\":                       reflect.ValueOf(elf.R_PPC64_PLTGOT16_HI),\n\t\t\"R_PPC64_PLTGOT16_LO\":                       reflect.ValueOf(elf.R_PPC64_PLTGOT16_LO),\n\t\t\"R_PPC64_PLTGOT_LO_DS\":                      reflect.ValueOf(elf.R_PPC64_PLTGOT_LO_DS),\n\t\t\"R_PPC64_PLTREL32\":                          reflect.ValueOf(elf.R_PPC64_PLTREL32),\n\t\t\"R_PPC64_PLTREL64\":                          reflect.ValueOf(elf.R_PPC64_PLTREL64),\n\t\t\"R_PPC64_PLTSEQ\":                            reflect.ValueOf(elf.R_PPC64_PLTSEQ),\n\t\t\"R_PPC64_PLTSEQ_NOTOC\":                      reflect.ValueOf(elf.R_PPC64_PLTSEQ_NOTOC),\n\t\t\"R_PPC64_PLT_PCREL34\":                       reflect.ValueOf(elf.R_PPC64_PLT_PCREL34),\n\t\t\"R_PPC64_PLT_PCREL34_NOTOC\":                 reflect.ValueOf(elf.R_PPC64_PLT_PCREL34_NOTOC),\n\t\t\"R_PPC64_REL14\":                             reflect.ValueOf(elf.R_PPC64_REL14),\n\t\t\"R_PPC64_REL14_BRNTAKEN\":                    reflect.ValueOf(elf.R_PPC64_REL14_BRNTAKEN),\n\t\t\"R_PPC64_REL14_BRTAKEN\":                     reflect.ValueOf(elf.R_PPC64_REL14_BRTAKEN),\n\t\t\"R_PPC64_REL16\":                             reflect.ValueOf(elf.R_PPC64_REL16),\n\t\t\"R_PPC64_REL16DX_HA\":                        reflect.ValueOf(elf.R_PPC64_REL16DX_HA),\n\t\t\"R_PPC64_REL16_HA\":                          reflect.ValueOf(elf.R_PPC64_REL16_HA),\n\t\t\"R_PPC64_REL16_HI\":                          reflect.ValueOf(elf.R_PPC64_REL16_HI),\n\t\t\"R_PPC64_REL16_HIGH\":                        reflect.ValueOf(elf.R_PPC64_REL16_HIGH),\n\t\t\"R_PPC64_REL16_HIGHA\":                       reflect.ValueOf(elf.R_PPC64_REL16_HIGHA),\n\t\t\"R_PPC64_REL16_HIGHER\":                      reflect.ValueOf(elf.R_PPC64_REL16_HIGHER),\n\t\t\"R_PPC64_REL16_HIGHER34\":                    reflect.ValueOf(elf.R_PPC64_REL16_HIGHER34),\n\t\t\"R_PPC64_REL16_HIGHERA\":                     reflect.ValueOf(elf.R_PPC64_REL16_HIGHERA),\n\t\t\"R_PPC64_REL16_HIGHERA34\":                   reflect.ValueOf(elf.R_PPC64_REL16_HIGHERA34),\n\t\t\"R_PPC64_REL16_HIGHEST\":                     reflect.ValueOf(elf.R_PPC64_REL16_HIGHEST),\n\t\t\"R_PPC64_REL16_HIGHEST34\":                   reflect.ValueOf(elf.R_PPC64_REL16_HIGHEST34),\n\t\t\"R_PPC64_REL16_HIGHESTA\":                    reflect.ValueOf(elf.R_PPC64_REL16_HIGHESTA),\n\t\t\"R_PPC64_REL16_HIGHESTA34\":                  reflect.ValueOf(elf.R_PPC64_REL16_HIGHESTA34),\n\t\t\"R_PPC64_REL16_LO\":                          reflect.ValueOf(elf.R_PPC64_REL16_LO),\n\t\t\"R_PPC64_REL24\":                             reflect.ValueOf(elf.R_PPC64_REL24),\n\t\t\"R_PPC64_REL24_NOTOC\":                       reflect.ValueOf(elf.R_PPC64_REL24_NOTOC),\n\t\t\"R_PPC64_REL24_P9NOTOC\":                     reflect.ValueOf(elf.R_PPC64_REL24_P9NOTOC),\n\t\t\"R_PPC64_REL30\":                             reflect.ValueOf(elf.R_PPC64_REL30),\n\t\t\"R_PPC64_REL32\":                             reflect.ValueOf(elf.R_PPC64_REL32),\n\t\t\"R_PPC64_REL64\":                             reflect.ValueOf(elf.R_PPC64_REL64),\n\t\t\"R_PPC64_RELATIVE\":                          reflect.ValueOf(elf.R_PPC64_RELATIVE),\n\t\t\"R_PPC64_SECTOFF\":                           reflect.ValueOf(elf.R_PPC64_SECTOFF),\n\t\t\"R_PPC64_SECTOFF_DS\":                        reflect.ValueOf(elf.R_PPC64_SECTOFF_DS),\n\t\t\"R_PPC64_SECTOFF_HA\":                        reflect.ValueOf(elf.R_PPC64_SECTOFF_HA),\n\t\t\"R_PPC64_SECTOFF_HI\":                        reflect.ValueOf(elf.R_PPC64_SECTOFF_HI),\n\t\t\"R_PPC64_SECTOFF_LO\":                        reflect.ValueOf(elf.R_PPC64_SECTOFF_LO),\n\t\t\"R_PPC64_SECTOFF_LO_DS\":                     reflect.ValueOf(elf.R_PPC64_SECTOFF_LO_DS),\n\t\t\"R_PPC64_TLS\":                               reflect.ValueOf(elf.R_PPC64_TLS),\n\t\t\"R_PPC64_TLSGD\":                             reflect.ValueOf(elf.R_PPC64_TLSGD),\n\t\t\"R_PPC64_TLSLD\":                             reflect.ValueOf(elf.R_PPC64_TLSLD),\n\t\t\"R_PPC64_TOC\":                               reflect.ValueOf(elf.R_PPC64_TOC),\n\t\t\"R_PPC64_TOC16\":                             reflect.ValueOf(elf.R_PPC64_TOC16),\n\t\t\"R_PPC64_TOC16_DS\":                          reflect.ValueOf(elf.R_PPC64_TOC16_DS),\n\t\t\"R_PPC64_TOC16_HA\":                          reflect.ValueOf(elf.R_PPC64_TOC16_HA),\n\t\t\"R_PPC64_TOC16_HI\":                          reflect.ValueOf(elf.R_PPC64_TOC16_HI),\n\t\t\"R_PPC64_TOC16_LO\":                          reflect.ValueOf(elf.R_PPC64_TOC16_LO),\n\t\t\"R_PPC64_TOC16_LO_DS\":                       reflect.ValueOf(elf.R_PPC64_TOC16_LO_DS),\n\t\t\"R_PPC64_TOCSAVE\":                           reflect.ValueOf(elf.R_PPC64_TOCSAVE),\n\t\t\"R_PPC64_TPREL16\":                           reflect.ValueOf(elf.R_PPC64_TPREL16),\n\t\t\"R_PPC64_TPREL16_DS\":                        reflect.ValueOf(elf.R_PPC64_TPREL16_DS),\n\t\t\"R_PPC64_TPREL16_HA\":                        reflect.ValueOf(elf.R_PPC64_TPREL16_HA),\n\t\t\"R_PPC64_TPREL16_HI\":                        reflect.ValueOf(elf.R_PPC64_TPREL16_HI),\n\t\t\"R_PPC64_TPREL16_HIGH\":                      reflect.ValueOf(elf.R_PPC64_TPREL16_HIGH),\n\t\t\"R_PPC64_TPREL16_HIGHA\":                     reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHA),\n\t\t\"R_PPC64_TPREL16_HIGHER\":                    reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHER),\n\t\t\"R_PPC64_TPREL16_HIGHERA\":                   reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHERA),\n\t\t\"R_PPC64_TPREL16_HIGHEST\":                   reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHEST),\n\t\t\"R_PPC64_TPREL16_HIGHESTA\":                  reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHESTA),\n\t\t\"R_PPC64_TPREL16_LO\":                        reflect.ValueOf(elf.R_PPC64_TPREL16_LO),\n\t\t\"R_PPC64_TPREL16_LO_DS\":                     reflect.ValueOf(elf.R_PPC64_TPREL16_LO_DS),\n\t\t\"R_PPC64_TPREL34\":                           reflect.ValueOf(elf.R_PPC64_TPREL34),\n\t\t\"R_PPC64_TPREL64\":                           reflect.ValueOf(elf.R_PPC64_TPREL64),\n\t\t\"R_PPC64_UADDR16\":                           reflect.ValueOf(elf.R_PPC64_UADDR16),\n\t\t\"R_PPC64_UADDR32\":                           reflect.ValueOf(elf.R_PPC64_UADDR32),\n\t\t\"R_PPC64_UADDR64\":                           reflect.ValueOf(elf.R_PPC64_UADDR64),\n\t\t\"R_PPC_ADDR14\":                              reflect.ValueOf(elf.R_PPC_ADDR14),\n\t\t\"R_PPC_ADDR14_BRNTAKEN\":                     reflect.ValueOf(elf.R_PPC_ADDR14_BRNTAKEN),\n\t\t\"R_PPC_ADDR14_BRTAKEN\":                      reflect.ValueOf(elf.R_PPC_ADDR14_BRTAKEN),\n\t\t\"R_PPC_ADDR16\":                              reflect.ValueOf(elf.R_PPC_ADDR16),\n\t\t\"R_PPC_ADDR16_HA\":                           reflect.ValueOf(elf.R_PPC_ADDR16_HA),\n\t\t\"R_PPC_ADDR16_HI\":                           reflect.ValueOf(elf.R_PPC_ADDR16_HI),\n\t\t\"R_PPC_ADDR16_LO\":                           reflect.ValueOf(elf.R_PPC_ADDR16_LO),\n\t\t\"R_PPC_ADDR24\":                              reflect.ValueOf(elf.R_PPC_ADDR24),\n\t\t\"R_PPC_ADDR32\":                              reflect.ValueOf(elf.R_PPC_ADDR32),\n\t\t\"R_PPC_COPY\":                                reflect.ValueOf(elf.R_PPC_COPY),\n\t\t\"R_PPC_DTPMOD32\":                            reflect.ValueOf(elf.R_PPC_DTPMOD32),\n\t\t\"R_PPC_DTPREL16\":                            reflect.ValueOf(elf.R_PPC_DTPREL16),\n\t\t\"R_PPC_DTPREL16_HA\":                         reflect.ValueOf(elf.R_PPC_DTPREL16_HA),\n\t\t\"R_PPC_DTPREL16_HI\":                         reflect.ValueOf(elf.R_PPC_DTPREL16_HI),\n\t\t\"R_PPC_DTPREL16_LO\":                         reflect.ValueOf(elf.R_PPC_DTPREL16_LO),\n\t\t\"R_PPC_DTPREL32\":                            reflect.ValueOf(elf.R_PPC_DTPREL32),\n\t\t\"R_PPC_EMB_BIT_FLD\":                         reflect.ValueOf(elf.R_PPC_EMB_BIT_FLD),\n\t\t\"R_PPC_EMB_MRKREF\":                          reflect.ValueOf(elf.R_PPC_EMB_MRKREF),\n\t\t\"R_PPC_EMB_NADDR16\":                         reflect.ValueOf(elf.R_PPC_EMB_NADDR16),\n\t\t\"R_PPC_EMB_NADDR16_HA\":                      reflect.ValueOf(elf.R_PPC_EMB_NADDR16_HA),\n\t\t\"R_PPC_EMB_NADDR16_HI\":                      reflect.ValueOf(elf.R_PPC_EMB_NADDR16_HI),\n\t\t\"R_PPC_EMB_NADDR16_LO\":                      reflect.ValueOf(elf.R_PPC_EMB_NADDR16_LO),\n\t\t\"R_PPC_EMB_NADDR32\":                         reflect.ValueOf(elf.R_PPC_EMB_NADDR32),\n\t\t\"R_PPC_EMB_RELSDA\":                          reflect.ValueOf(elf.R_PPC_EMB_RELSDA),\n\t\t\"R_PPC_EMB_RELSEC16\":                        reflect.ValueOf(elf.R_PPC_EMB_RELSEC16),\n\t\t\"R_PPC_EMB_RELST_HA\":                        reflect.ValueOf(elf.R_PPC_EMB_RELST_HA),\n\t\t\"R_PPC_EMB_RELST_HI\":                        reflect.ValueOf(elf.R_PPC_EMB_RELST_HI),\n\t\t\"R_PPC_EMB_RELST_LO\":                        reflect.ValueOf(elf.R_PPC_EMB_RELST_LO),\n\t\t\"R_PPC_EMB_SDA21\":                           reflect.ValueOf(elf.R_PPC_EMB_SDA21),\n\t\t\"R_PPC_EMB_SDA2I16\":                         reflect.ValueOf(elf.R_PPC_EMB_SDA2I16),\n\t\t\"R_PPC_EMB_SDA2REL\":                         reflect.ValueOf(elf.R_PPC_EMB_SDA2REL),\n\t\t\"R_PPC_EMB_SDAI16\":                          reflect.ValueOf(elf.R_PPC_EMB_SDAI16),\n\t\t\"R_PPC_GLOB_DAT\":                            reflect.ValueOf(elf.R_PPC_GLOB_DAT),\n\t\t\"R_PPC_GOT16\":                               reflect.ValueOf(elf.R_PPC_GOT16),\n\t\t\"R_PPC_GOT16_HA\":                            reflect.ValueOf(elf.R_PPC_GOT16_HA),\n\t\t\"R_PPC_GOT16_HI\":                            reflect.ValueOf(elf.R_PPC_GOT16_HI),\n\t\t\"R_PPC_GOT16_LO\":                            reflect.ValueOf(elf.R_PPC_GOT16_LO),\n\t\t\"R_PPC_GOT_TLSGD16\":                         reflect.ValueOf(elf.R_PPC_GOT_TLSGD16),\n\t\t\"R_PPC_GOT_TLSGD16_HA\":                      reflect.ValueOf(elf.R_PPC_GOT_TLSGD16_HA),\n\t\t\"R_PPC_GOT_TLSGD16_HI\":                      reflect.ValueOf(elf.R_PPC_GOT_TLSGD16_HI),\n\t\t\"R_PPC_GOT_TLSGD16_LO\":                      reflect.ValueOf(elf.R_PPC_GOT_TLSGD16_LO),\n\t\t\"R_PPC_GOT_TLSLD16\":                         reflect.ValueOf(elf.R_PPC_GOT_TLSLD16),\n\t\t\"R_PPC_GOT_TLSLD16_HA\":                      reflect.ValueOf(elf.R_PPC_GOT_TLSLD16_HA),\n\t\t\"R_PPC_GOT_TLSLD16_HI\":                      reflect.ValueOf(elf.R_PPC_GOT_TLSLD16_HI),\n\t\t\"R_PPC_GOT_TLSLD16_LO\":                      reflect.ValueOf(elf.R_PPC_GOT_TLSLD16_LO),\n\t\t\"R_PPC_GOT_TPREL16\":                         reflect.ValueOf(elf.R_PPC_GOT_TPREL16),\n\t\t\"R_PPC_GOT_TPREL16_HA\":                      reflect.ValueOf(elf.R_PPC_GOT_TPREL16_HA),\n\t\t\"R_PPC_GOT_TPREL16_HI\":                      reflect.ValueOf(elf.R_PPC_GOT_TPREL16_HI),\n\t\t\"R_PPC_GOT_TPREL16_LO\":                      reflect.ValueOf(elf.R_PPC_GOT_TPREL16_LO),\n\t\t\"R_PPC_JMP_SLOT\":                            reflect.ValueOf(elf.R_PPC_JMP_SLOT),\n\t\t\"R_PPC_LOCAL24PC\":                           reflect.ValueOf(elf.R_PPC_LOCAL24PC),\n\t\t\"R_PPC_NONE\":                                reflect.ValueOf(elf.R_PPC_NONE),\n\t\t\"R_PPC_PLT16_HA\":                            reflect.ValueOf(elf.R_PPC_PLT16_HA),\n\t\t\"R_PPC_PLT16_HI\":                            reflect.ValueOf(elf.R_PPC_PLT16_HI),\n\t\t\"R_PPC_PLT16_LO\":                            reflect.ValueOf(elf.R_PPC_PLT16_LO),\n\t\t\"R_PPC_PLT32\":                               reflect.ValueOf(elf.R_PPC_PLT32),\n\t\t\"R_PPC_PLTREL24\":                            reflect.ValueOf(elf.R_PPC_PLTREL24),\n\t\t\"R_PPC_PLTREL32\":                            reflect.ValueOf(elf.R_PPC_PLTREL32),\n\t\t\"R_PPC_REL14\":                               reflect.ValueOf(elf.R_PPC_REL14),\n\t\t\"R_PPC_REL14_BRNTAKEN\":                      reflect.ValueOf(elf.R_PPC_REL14_BRNTAKEN),\n\t\t\"R_PPC_REL14_BRTAKEN\":                       reflect.ValueOf(elf.R_PPC_REL14_BRTAKEN),\n\t\t\"R_PPC_REL24\":                               reflect.ValueOf(elf.R_PPC_REL24),\n\t\t\"R_PPC_REL32\":                               reflect.ValueOf(elf.R_PPC_REL32),\n\t\t\"R_PPC_RELATIVE\":                            reflect.ValueOf(elf.R_PPC_RELATIVE),\n\t\t\"R_PPC_SDAREL16\":                            reflect.ValueOf(elf.R_PPC_SDAREL16),\n\t\t\"R_PPC_SECTOFF\":                             reflect.ValueOf(elf.R_PPC_SECTOFF),\n\t\t\"R_PPC_SECTOFF_HA\":                          reflect.ValueOf(elf.R_PPC_SECTOFF_HA),\n\t\t\"R_PPC_SECTOFF_HI\":                          reflect.ValueOf(elf.R_PPC_SECTOFF_HI),\n\t\t\"R_PPC_SECTOFF_LO\":                          reflect.ValueOf(elf.R_PPC_SECTOFF_LO),\n\t\t\"R_PPC_TLS\":                                 reflect.ValueOf(elf.R_PPC_TLS),\n\t\t\"R_PPC_TPREL16\":                             reflect.ValueOf(elf.R_PPC_TPREL16),\n\t\t\"R_PPC_TPREL16_HA\":                          reflect.ValueOf(elf.R_PPC_TPREL16_HA),\n\t\t\"R_PPC_TPREL16_HI\":                          reflect.ValueOf(elf.R_PPC_TPREL16_HI),\n\t\t\"R_PPC_TPREL16_LO\":                          reflect.ValueOf(elf.R_PPC_TPREL16_LO),\n\t\t\"R_PPC_TPREL32\":                             reflect.ValueOf(elf.R_PPC_TPREL32),\n\t\t\"R_PPC_UADDR16\":                             reflect.ValueOf(elf.R_PPC_UADDR16),\n\t\t\"R_PPC_UADDR32\":                             reflect.ValueOf(elf.R_PPC_UADDR32),\n\t\t\"R_RISCV_32\":                                reflect.ValueOf(elf.R_RISCV_32),\n\t\t\"R_RISCV_32_PCREL\":                          reflect.ValueOf(elf.R_RISCV_32_PCREL),\n\t\t\"R_RISCV_64\":                                reflect.ValueOf(elf.R_RISCV_64),\n\t\t\"R_RISCV_ADD16\":                             reflect.ValueOf(elf.R_RISCV_ADD16),\n\t\t\"R_RISCV_ADD32\":                             reflect.ValueOf(elf.R_RISCV_ADD32),\n\t\t\"R_RISCV_ADD64\":                             reflect.ValueOf(elf.R_RISCV_ADD64),\n\t\t\"R_RISCV_ADD8\":                              reflect.ValueOf(elf.R_RISCV_ADD8),\n\t\t\"R_RISCV_ALIGN\":                             reflect.ValueOf(elf.R_RISCV_ALIGN),\n\t\t\"R_RISCV_BRANCH\":                            reflect.ValueOf(elf.R_RISCV_BRANCH),\n\t\t\"R_RISCV_CALL\":                              reflect.ValueOf(elf.R_RISCV_CALL),\n\t\t\"R_RISCV_CALL_PLT\":                          reflect.ValueOf(elf.R_RISCV_CALL_PLT),\n\t\t\"R_RISCV_COPY\":                              reflect.ValueOf(elf.R_RISCV_COPY),\n\t\t\"R_RISCV_GNU_VTENTRY\":                       reflect.ValueOf(elf.R_RISCV_GNU_VTENTRY),\n\t\t\"R_RISCV_GNU_VTINHERIT\":                     reflect.ValueOf(elf.R_RISCV_GNU_VTINHERIT),\n\t\t\"R_RISCV_GOT_HI20\":                          reflect.ValueOf(elf.R_RISCV_GOT_HI20),\n\t\t\"R_RISCV_GPREL_I\":                           reflect.ValueOf(elf.R_RISCV_GPREL_I),\n\t\t\"R_RISCV_GPREL_S\":                           reflect.ValueOf(elf.R_RISCV_GPREL_S),\n\t\t\"R_RISCV_HI20\":                              reflect.ValueOf(elf.R_RISCV_HI20),\n\t\t\"R_RISCV_JAL\":                               reflect.ValueOf(elf.R_RISCV_JAL),\n\t\t\"R_RISCV_JUMP_SLOT\":                         reflect.ValueOf(elf.R_RISCV_JUMP_SLOT),\n\t\t\"R_RISCV_LO12_I\":                            reflect.ValueOf(elf.R_RISCV_LO12_I),\n\t\t\"R_RISCV_LO12_S\":                            reflect.ValueOf(elf.R_RISCV_LO12_S),\n\t\t\"R_RISCV_NONE\":                              reflect.ValueOf(elf.R_RISCV_NONE),\n\t\t\"R_RISCV_PCREL_HI20\":                        reflect.ValueOf(elf.R_RISCV_PCREL_HI20),\n\t\t\"R_RISCV_PCREL_LO12_I\":                      reflect.ValueOf(elf.R_RISCV_PCREL_LO12_I),\n\t\t\"R_RISCV_PCREL_LO12_S\":                      reflect.ValueOf(elf.R_RISCV_PCREL_LO12_S),\n\t\t\"R_RISCV_RELATIVE\":                          reflect.ValueOf(elf.R_RISCV_RELATIVE),\n\t\t\"R_RISCV_RELAX\":                             reflect.ValueOf(elf.R_RISCV_RELAX),\n\t\t\"R_RISCV_RVC_BRANCH\":                        reflect.ValueOf(elf.R_RISCV_RVC_BRANCH),\n\t\t\"R_RISCV_RVC_JUMP\":                          reflect.ValueOf(elf.R_RISCV_RVC_JUMP),\n\t\t\"R_RISCV_RVC_LUI\":                           reflect.ValueOf(elf.R_RISCV_RVC_LUI),\n\t\t\"R_RISCV_SET16\":                             reflect.ValueOf(elf.R_RISCV_SET16),\n\t\t\"R_RISCV_SET32\":                             reflect.ValueOf(elf.R_RISCV_SET32),\n\t\t\"R_RISCV_SET6\":                              reflect.ValueOf(elf.R_RISCV_SET6),\n\t\t\"R_RISCV_SET8\":                              reflect.ValueOf(elf.R_RISCV_SET8),\n\t\t\"R_RISCV_SUB16\":                             reflect.ValueOf(elf.R_RISCV_SUB16),\n\t\t\"R_RISCV_SUB32\":                             reflect.ValueOf(elf.R_RISCV_SUB32),\n\t\t\"R_RISCV_SUB6\":                              reflect.ValueOf(elf.R_RISCV_SUB6),\n\t\t\"R_RISCV_SUB64\":                             reflect.ValueOf(elf.R_RISCV_SUB64),\n\t\t\"R_RISCV_SUB8\":                              reflect.ValueOf(elf.R_RISCV_SUB8),\n\t\t\"R_RISCV_TLS_DTPMOD32\":                      reflect.ValueOf(elf.R_RISCV_TLS_DTPMOD32),\n\t\t\"R_RISCV_TLS_DTPMOD64\":                      reflect.ValueOf(elf.R_RISCV_TLS_DTPMOD64),\n\t\t\"R_RISCV_TLS_DTPREL32\":                      reflect.ValueOf(elf.R_RISCV_TLS_DTPREL32),\n\t\t\"R_RISCV_TLS_DTPREL64\":                      reflect.ValueOf(elf.R_RISCV_TLS_DTPREL64),\n\t\t\"R_RISCV_TLS_GD_HI20\":                       reflect.ValueOf(elf.R_RISCV_TLS_GD_HI20),\n\t\t\"R_RISCV_TLS_GOT_HI20\":                      reflect.ValueOf(elf.R_RISCV_TLS_GOT_HI20),\n\t\t\"R_RISCV_TLS_TPREL32\":                       reflect.ValueOf(elf.R_RISCV_TLS_TPREL32),\n\t\t\"R_RISCV_TLS_TPREL64\":                       reflect.ValueOf(elf.R_RISCV_TLS_TPREL64),\n\t\t\"R_RISCV_TPREL_ADD\":                         reflect.ValueOf(elf.R_RISCV_TPREL_ADD),\n\t\t\"R_RISCV_TPREL_HI20\":                        reflect.ValueOf(elf.R_RISCV_TPREL_HI20),\n\t\t\"R_RISCV_TPREL_I\":                           reflect.ValueOf(elf.R_RISCV_TPREL_I),\n\t\t\"R_RISCV_TPREL_LO12_I\":                      reflect.ValueOf(elf.R_RISCV_TPREL_LO12_I),\n\t\t\"R_RISCV_TPREL_LO12_S\":                      reflect.ValueOf(elf.R_RISCV_TPREL_LO12_S),\n\t\t\"R_RISCV_TPREL_S\":                           reflect.ValueOf(elf.R_RISCV_TPREL_S),\n\t\t\"R_SPARC_10\":                                reflect.ValueOf(elf.R_SPARC_10),\n\t\t\"R_SPARC_11\":                                reflect.ValueOf(elf.R_SPARC_11),\n\t\t\"R_SPARC_13\":                                reflect.ValueOf(elf.R_SPARC_13),\n\t\t\"R_SPARC_16\":                                reflect.ValueOf(elf.R_SPARC_16),\n\t\t\"R_SPARC_22\":                                reflect.ValueOf(elf.R_SPARC_22),\n\t\t\"R_SPARC_32\":                                reflect.ValueOf(elf.R_SPARC_32),\n\t\t\"R_SPARC_5\":                                 reflect.ValueOf(elf.R_SPARC_5),\n\t\t\"R_SPARC_6\":                                 reflect.ValueOf(elf.R_SPARC_6),\n\t\t\"R_SPARC_64\":                                reflect.ValueOf(elf.R_SPARC_64),\n\t\t\"R_SPARC_7\":                                 reflect.ValueOf(elf.R_SPARC_7),\n\t\t\"R_SPARC_8\":                                 reflect.ValueOf(elf.R_SPARC_8),\n\t\t\"R_SPARC_COPY\":                              reflect.ValueOf(elf.R_SPARC_COPY),\n\t\t\"R_SPARC_DISP16\":                            reflect.ValueOf(elf.R_SPARC_DISP16),\n\t\t\"R_SPARC_DISP32\":                            reflect.ValueOf(elf.R_SPARC_DISP32),\n\t\t\"R_SPARC_DISP64\":                            reflect.ValueOf(elf.R_SPARC_DISP64),\n\t\t\"R_SPARC_DISP8\":                             reflect.ValueOf(elf.R_SPARC_DISP8),\n\t\t\"R_SPARC_GLOB_DAT\":                          reflect.ValueOf(elf.R_SPARC_GLOB_DAT),\n\t\t\"R_SPARC_GLOB_JMP\":                          reflect.ValueOf(elf.R_SPARC_GLOB_JMP),\n\t\t\"R_SPARC_GOT10\":                             reflect.ValueOf(elf.R_SPARC_GOT10),\n\t\t\"R_SPARC_GOT13\":                             reflect.ValueOf(elf.R_SPARC_GOT13),\n\t\t\"R_SPARC_GOT22\":                             reflect.ValueOf(elf.R_SPARC_GOT22),\n\t\t\"R_SPARC_H44\":                               reflect.ValueOf(elf.R_SPARC_H44),\n\t\t\"R_SPARC_HH22\":                              reflect.ValueOf(elf.R_SPARC_HH22),\n\t\t\"R_SPARC_HI22\":                              reflect.ValueOf(elf.R_SPARC_HI22),\n\t\t\"R_SPARC_HIPLT22\":                           reflect.ValueOf(elf.R_SPARC_HIPLT22),\n\t\t\"R_SPARC_HIX22\":                             reflect.ValueOf(elf.R_SPARC_HIX22),\n\t\t\"R_SPARC_HM10\":                              reflect.ValueOf(elf.R_SPARC_HM10),\n\t\t\"R_SPARC_JMP_SLOT\":                          reflect.ValueOf(elf.R_SPARC_JMP_SLOT),\n\t\t\"R_SPARC_L44\":                               reflect.ValueOf(elf.R_SPARC_L44),\n\t\t\"R_SPARC_LM22\":                              reflect.ValueOf(elf.R_SPARC_LM22),\n\t\t\"R_SPARC_LO10\":                              reflect.ValueOf(elf.R_SPARC_LO10),\n\t\t\"R_SPARC_LOPLT10\":                           reflect.ValueOf(elf.R_SPARC_LOPLT10),\n\t\t\"R_SPARC_LOX10\":                             reflect.ValueOf(elf.R_SPARC_LOX10),\n\t\t\"R_SPARC_M44\":                               reflect.ValueOf(elf.R_SPARC_M44),\n\t\t\"R_SPARC_NONE\":                              reflect.ValueOf(elf.R_SPARC_NONE),\n\t\t\"R_SPARC_OLO10\":                             reflect.ValueOf(elf.R_SPARC_OLO10),\n\t\t\"R_SPARC_PC10\":                              reflect.ValueOf(elf.R_SPARC_PC10),\n\t\t\"R_SPARC_PC22\":                              reflect.ValueOf(elf.R_SPARC_PC22),\n\t\t\"R_SPARC_PCPLT10\":                           reflect.ValueOf(elf.R_SPARC_PCPLT10),\n\t\t\"R_SPARC_PCPLT22\":                           reflect.ValueOf(elf.R_SPARC_PCPLT22),\n\t\t\"R_SPARC_PCPLT32\":                           reflect.ValueOf(elf.R_SPARC_PCPLT32),\n\t\t\"R_SPARC_PC_HH22\":                           reflect.ValueOf(elf.R_SPARC_PC_HH22),\n\t\t\"R_SPARC_PC_HM10\":                           reflect.ValueOf(elf.R_SPARC_PC_HM10),\n\t\t\"R_SPARC_PC_LM22\":                           reflect.ValueOf(elf.R_SPARC_PC_LM22),\n\t\t\"R_SPARC_PLT32\":                             reflect.ValueOf(elf.R_SPARC_PLT32),\n\t\t\"R_SPARC_PLT64\":                             reflect.ValueOf(elf.R_SPARC_PLT64),\n\t\t\"R_SPARC_REGISTER\":                          reflect.ValueOf(elf.R_SPARC_REGISTER),\n\t\t\"R_SPARC_RELATIVE\":                          reflect.ValueOf(elf.R_SPARC_RELATIVE),\n\t\t\"R_SPARC_UA16\":                              reflect.ValueOf(elf.R_SPARC_UA16),\n\t\t\"R_SPARC_UA32\":                              reflect.ValueOf(elf.R_SPARC_UA32),\n\t\t\"R_SPARC_UA64\":                              reflect.ValueOf(elf.R_SPARC_UA64),\n\t\t\"R_SPARC_WDISP16\":                           reflect.ValueOf(elf.R_SPARC_WDISP16),\n\t\t\"R_SPARC_WDISP19\":                           reflect.ValueOf(elf.R_SPARC_WDISP19),\n\t\t\"R_SPARC_WDISP22\":                           reflect.ValueOf(elf.R_SPARC_WDISP22),\n\t\t\"R_SPARC_WDISP30\":                           reflect.ValueOf(elf.R_SPARC_WDISP30),\n\t\t\"R_SPARC_WPLT30\":                            reflect.ValueOf(elf.R_SPARC_WPLT30),\n\t\t\"R_SYM32\":                                   reflect.ValueOf(elf.R_SYM32),\n\t\t\"R_SYM64\":                                   reflect.ValueOf(elf.R_SYM64),\n\t\t\"R_TYPE32\":                                  reflect.ValueOf(elf.R_TYPE32),\n\t\t\"R_TYPE64\":                                  reflect.ValueOf(elf.R_TYPE64),\n\t\t\"R_X86_64_16\":                               reflect.ValueOf(elf.R_X86_64_16),\n\t\t\"R_X86_64_32\":                               reflect.ValueOf(elf.R_X86_64_32),\n\t\t\"R_X86_64_32S\":                              reflect.ValueOf(elf.R_X86_64_32S),\n\t\t\"R_X86_64_64\":                               reflect.ValueOf(elf.R_X86_64_64),\n\t\t\"R_X86_64_8\":                                reflect.ValueOf(elf.R_X86_64_8),\n\t\t\"R_X86_64_COPY\":                             reflect.ValueOf(elf.R_X86_64_COPY),\n\t\t\"R_X86_64_DTPMOD64\":                         reflect.ValueOf(elf.R_X86_64_DTPMOD64),\n\t\t\"R_X86_64_DTPOFF32\":                         reflect.ValueOf(elf.R_X86_64_DTPOFF32),\n\t\t\"R_X86_64_DTPOFF64\":                         reflect.ValueOf(elf.R_X86_64_DTPOFF64),\n\t\t\"R_X86_64_GLOB_DAT\":                         reflect.ValueOf(elf.R_X86_64_GLOB_DAT),\n\t\t\"R_X86_64_GOT32\":                            reflect.ValueOf(elf.R_X86_64_GOT32),\n\t\t\"R_X86_64_GOT64\":                            reflect.ValueOf(elf.R_X86_64_GOT64),\n\t\t\"R_X86_64_GOTOFF64\":                         reflect.ValueOf(elf.R_X86_64_GOTOFF64),\n\t\t\"R_X86_64_GOTPC32\":                          reflect.ValueOf(elf.R_X86_64_GOTPC32),\n\t\t\"R_X86_64_GOTPC32_TLSDESC\":                  reflect.ValueOf(elf.R_X86_64_GOTPC32_TLSDESC),\n\t\t\"R_X86_64_GOTPC64\":                          reflect.ValueOf(elf.R_X86_64_GOTPC64),\n\t\t\"R_X86_64_GOTPCREL\":                         reflect.ValueOf(elf.R_X86_64_GOTPCREL),\n\t\t\"R_X86_64_GOTPCREL64\":                       reflect.ValueOf(elf.R_X86_64_GOTPCREL64),\n\t\t\"R_X86_64_GOTPCRELX\":                        reflect.ValueOf(elf.R_X86_64_GOTPCRELX),\n\t\t\"R_X86_64_GOTPLT64\":                         reflect.ValueOf(elf.R_X86_64_GOTPLT64),\n\t\t\"R_X86_64_GOTTPOFF\":                         reflect.ValueOf(elf.R_X86_64_GOTTPOFF),\n\t\t\"R_X86_64_IRELATIVE\":                        reflect.ValueOf(elf.R_X86_64_IRELATIVE),\n\t\t\"R_X86_64_JMP_SLOT\":                         reflect.ValueOf(elf.R_X86_64_JMP_SLOT),\n\t\t\"R_X86_64_NONE\":                             reflect.ValueOf(elf.R_X86_64_NONE),\n\t\t\"R_X86_64_PC16\":                             reflect.ValueOf(elf.R_X86_64_PC16),\n\t\t\"R_X86_64_PC32\":                             reflect.ValueOf(elf.R_X86_64_PC32),\n\t\t\"R_X86_64_PC32_BND\":                         reflect.ValueOf(elf.R_X86_64_PC32_BND),\n\t\t\"R_X86_64_PC64\":                             reflect.ValueOf(elf.R_X86_64_PC64),\n\t\t\"R_X86_64_PC8\":                              reflect.ValueOf(elf.R_X86_64_PC8),\n\t\t\"R_X86_64_PLT32\":                            reflect.ValueOf(elf.R_X86_64_PLT32),\n\t\t\"R_X86_64_PLT32_BND\":                        reflect.ValueOf(elf.R_X86_64_PLT32_BND),\n\t\t\"R_X86_64_PLTOFF64\":                         reflect.ValueOf(elf.R_X86_64_PLTOFF64),\n\t\t\"R_X86_64_RELATIVE\":                         reflect.ValueOf(elf.R_X86_64_RELATIVE),\n\t\t\"R_X86_64_RELATIVE64\":                       reflect.ValueOf(elf.R_X86_64_RELATIVE64),\n\t\t\"R_X86_64_REX_GOTPCRELX\":                    reflect.ValueOf(elf.R_X86_64_REX_GOTPCRELX),\n\t\t\"R_X86_64_SIZE32\":                           reflect.ValueOf(elf.R_X86_64_SIZE32),\n\t\t\"R_X86_64_SIZE64\":                           reflect.ValueOf(elf.R_X86_64_SIZE64),\n\t\t\"R_X86_64_TLSDESC\":                          reflect.ValueOf(elf.R_X86_64_TLSDESC),\n\t\t\"R_X86_64_TLSDESC_CALL\":                     reflect.ValueOf(elf.R_X86_64_TLSDESC_CALL),\n\t\t\"R_X86_64_TLSGD\":                            reflect.ValueOf(elf.R_X86_64_TLSGD),\n\t\t\"R_X86_64_TLSLD\":                            reflect.ValueOf(elf.R_X86_64_TLSLD),\n\t\t\"R_X86_64_TPOFF32\":                          reflect.ValueOf(elf.R_X86_64_TPOFF32),\n\t\t\"R_X86_64_TPOFF64\":                          reflect.ValueOf(elf.R_X86_64_TPOFF64),\n\t\t\"SHF_ALLOC\":                                 reflect.ValueOf(elf.SHF_ALLOC),\n\t\t\"SHF_COMPRESSED\":                            reflect.ValueOf(elf.SHF_COMPRESSED),\n\t\t\"SHF_EXECINSTR\":                             reflect.ValueOf(elf.SHF_EXECINSTR),\n\t\t\"SHF_GROUP\":                                 reflect.ValueOf(elf.SHF_GROUP),\n\t\t\"SHF_INFO_LINK\":                             reflect.ValueOf(elf.SHF_INFO_LINK),\n\t\t\"SHF_LINK_ORDER\":                            reflect.ValueOf(elf.SHF_LINK_ORDER),\n\t\t\"SHF_MASKOS\":                                reflect.ValueOf(elf.SHF_MASKOS),\n\t\t\"SHF_MASKPROC\":                              reflect.ValueOf(elf.SHF_MASKPROC),\n\t\t\"SHF_MERGE\":                                 reflect.ValueOf(elf.SHF_MERGE),\n\t\t\"SHF_OS_NONCONFORMING\":                      reflect.ValueOf(elf.SHF_OS_NONCONFORMING),\n\t\t\"SHF_STRINGS\":                               reflect.ValueOf(elf.SHF_STRINGS),\n\t\t\"SHF_TLS\":                                   reflect.ValueOf(elf.SHF_TLS),\n\t\t\"SHF_WRITE\":                                 reflect.ValueOf(elf.SHF_WRITE),\n\t\t\"SHN_ABS\":                                   reflect.ValueOf(elf.SHN_ABS),\n\t\t\"SHN_COMMON\":                                reflect.ValueOf(elf.SHN_COMMON),\n\t\t\"SHN_HIOS\":                                  reflect.ValueOf(elf.SHN_HIOS),\n\t\t\"SHN_HIPROC\":                                reflect.ValueOf(elf.SHN_HIPROC),\n\t\t\"SHN_HIRESERVE\":                             reflect.ValueOf(elf.SHN_HIRESERVE),\n\t\t\"SHN_LOOS\":                                  reflect.ValueOf(elf.SHN_LOOS),\n\t\t\"SHN_LOPROC\":                                reflect.ValueOf(elf.SHN_LOPROC),\n\t\t\"SHN_LORESERVE\":                             reflect.ValueOf(elf.SHN_LORESERVE),\n\t\t\"SHN_UNDEF\":                                 reflect.ValueOf(elf.SHN_UNDEF),\n\t\t\"SHN_XINDEX\":                                reflect.ValueOf(elf.SHN_XINDEX),\n\t\t\"SHT_DYNAMIC\":                               reflect.ValueOf(elf.SHT_DYNAMIC),\n\t\t\"SHT_DYNSYM\":                                reflect.ValueOf(elf.SHT_DYNSYM),\n\t\t\"SHT_FINI_ARRAY\":                            reflect.ValueOf(elf.SHT_FINI_ARRAY),\n\t\t\"SHT_GNU_ATTRIBUTES\":                        reflect.ValueOf(elf.SHT_GNU_ATTRIBUTES),\n\t\t\"SHT_GNU_HASH\":                              reflect.ValueOf(elf.SHT_GNU_HASH),\n\t\t\"SHT_GNU_LIBLIST\":                           reflect.ValueOf(elf.SHT_GNU_LIBLIST),\n\t\t\"SHT_GNU_VERDEF\":                            reflect.ValueOf(elf.SHT_GNU_VERDEF),\n\t\t\"SHT_GNU_VERNEED\":                           reflect.ValueOf(elf.SHT_GNU_VERNEED),\n\t\t\"SHT_GNU_VERSYM\":                            reflect.ValueOf(elf.SHT_GNU_VERSYM),\n\t\t\"SHT_GROUP\":                                 reflect.ValueOf(elf.SHT_GROUP),\n\t\t\"SHT_HASH\":                                  reflect.ValueOf(elf.SHT_HASH),\n\t\t\"SHT_HIOS\":                                  reflect.ValueOf(elf.SHT_HIOS),\n\t\t\"SHT_HIPROC\":                                reflect.ValueOf(elf.SHT_HIPROC),\n\t\t\"SHT_HIUSER\":                                reflect.ValueOf(elf.SHT_HIUSER),\n\t\t\"SHT_INIT_ARRAY\":                            reflect.ValueOf(elf.SHT_INIT_ARRAY),\n\t\t\"SHT_LOOS\":                                  reflect.ValueOf(elf.SHT_LOOS),\n\t\t\"SHT_LOPROC\":                                reflect.ValueOf(elf.SHT_LOPROC),\n\t\t\"SHT_LOUSER\":                                reflect.ValueOf(elf.SHT_LOUSER),\n\t\t\"SHT_MIPS_ABIFLAGS\":                         reflect.ValueOf(elf.SHT_MIPS_ABIFLAGS),\n\t\t\"SHT_NOBITS\":                                reflect.ValueOf(elf.SHT_NOBITS),\n\t\t\"SHT_NOTE\":                                  reflect.ValueOf(elf.SHT_NOTE),\n\t\t\"SHT_NULL\":                                  reflect.ValueOf(elf.SHT_NULL),\n\t\t\"SHT_PREINIT_ARRAY\":                         reflect.ValueOf(elf.SHT_PREINIT_ARRAY),\n\t\t\"SHT_PROGBITS\":                              reflect.ValueOf(elf.SHT_PROGBITS),\n\t\t\"SHT_REL\":                                   reflect.ValueOf(elf.SHT_REL),\n\t\t\"SHT_RELA\":                                  reflect.ValueOf(elf.SHT_RELA),\n\t\t\"SHT_SHLIB\":                                 reflect.ValueOf(elf.SHT_SHLIB),\n\t\t\"SHT_STRTAB\":                                reflect.ValueOf(elf.SHT_STRTAB),\n\t\t\"SHT_SYMTAB\":                                reflect.ValueOf(elf.SHT_SYMTAB),\n\t\t\"SHT_SYMTAB_SHNDX\":                          reflect.ValueOf(elf.SHT_SYMTAB_SHNDX),\n\t\t\"STB_GLOBAL\":                                reflect.ValueOf(elf.STB_GLOBAL),\n\t\t\"STB_HIOS\":                                  reflect.ValueOf(elf.STB_HIOS),\n\t\t\"STB_HIPROC\":                                reflect.ValueOf(elf.STB_HIPROC),\n\t\t\"STB_LOCAL\":                                 reflect.ValueOf(elf.STB_LOCAL),\n\t\t\"STB_LOOS\":                                  reflect.ValueOf(elf.STB_LOOS),\n\t\t\"STB_LOPROC\":                                reflect.ValueOf(elf.STB_LOPROC),\n\t\t\"STB_WEAK\":                                  reflect.ValueOf(elf.STB_WEAK),\n\t\t\"STT_COMMON\":                                reflect.ValueOf(elf.STT_COMMON),\n\t\t\"STT_FILE\":                                  reflect.ValueOf(elf.STT_FILE),\n\t\t\"STT_FUNC\":                                  reflect.ValueOf(elf.STT_FUNC),\n\t\t\"STT_HIOS\":                                  reflect.ValueOf(elf.STT_HIOS),\n\t\t\"STT_HIPROC\":                                reflect.ValueOf(elf.STT_HIPROC),\n\t\t\"STT_LOOS\":                                  reflect.ValueOf(elf.STT_LOOS),\n\t\t\"STT_LOPROC\":                                reflect.ValueOf(elf.STT_LOPROC),\n\t\t\"STT_NOTYPE\":                                reflect.ValueOf(elf.STT_NOTYPE),\n\t\t\"STT_OBJECT\":                                reflect.ValueOf(elf.STT_OBJECT),\n\t\t\"STT_SECTION\":                               reflect.ValueOf(elf.STT_SECTION),\n\t\t\"STT_TLS\":                                   reflect.ValueOf(elf.STT_TLS),\n\t\t\"STV_DEFAULT\":                               reflect.ValueOf(elf.STV_DEFAULT),\n\t\t\"STV_HIDDEN\":                                reflect.ValueOf(elf.STV_HIDDEN),\n\t\t\"STV_INTERNAL\":                              reflect.ValueOf(elf.STV_INTERNAL),\n\t\t\"STV_PROTECTED\":                             reflect.ValueOf(elf.STV_PROTECTED),\n\t\t\"ST_BIND\":                                   reflect.ValueOf(elf.ST_BIND),\n\t\t\"ST_INFO\":                                   reflect.ValueOf(elf.ST_INFO),\n\t\t\"ST_TYPE\":                                   reflect.ValueOf(elf.ST_TYPE),\n\t\t\"ST_VISIBILITY\":                             reflect.ValueOf(elf.ST_VISIBILITY),\n\t\t\"Sym32Size\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"Sym64Size\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Chdr32\":          reflect.ValueOf((*elf.Chdr32)(nil)),\n\t\t\"Chdr64\":          reflect.ValueOf((*elf.Chdr64)(nil)),\n\t\t\"Class\":           reflect.ValueOf((*elf.Class)(nil)),\n\t\t\"CompressionType\": reflect.ValueOf((*elf.CompressionType)(nil)),\n\t\t\"Data\":            reflect.ValueOf((*elf.Data)(nil)),\n\t\t\"Dyn32\":           reflect.ValueOf((*elf.Dyn32)(nil)),\n\t\t\"Dyn64\":           reflect.ValueOf((*elf.Dyn64)(nil)),\n\t\t\"DynFlag\":         reflect.ValueOf((*elf.DynFlag)(nil)),\n\t\t\"DynFlag1\":        reflect.ValueOf((*elf.DynFlag1)(nil)),\n\t\t\"DynTag\":          reflect.ValueOf((*elf.DynTag)(nil)),\n\t\t\"File\":            reflect.ValueOf((*elf.File)(nil)),\n\t\t\"FileHeader\":      reflect.ValueOf((*elf.FileHeader)(nil)),\n\t\t\"FormatError\":     reflect.ValueOf((*elf.FormatError)(nil)),\n\t\t\"Header32\":        reflect.ValueOf((*elf.Header32)(nil)),\n\t\t\"Header64\":        reflect.ValueOf((*elf.Header64)(nil)),\n\t\t\"ImportedSymbol\":  reflect.ValueOf((*elf.ImportedSymbol)(nil)),\n\t\t\"Machine\":         reflect.ValueOf((*elf.Machine)(nil)),\n\t\t\"NType\":           reflect.ValueOf((*elf.NType)(nil)),\n\t\t\"OSABI\":           reflect.ValueOf((*elf.OSABI)(nil)),\n\t\t\"Prog\":            reflect.ValueOf((*elf.Prog)(nil)),\n\t\t\"Prog32\":          reflect.ValueOf((*elf.Prog32)(nil)),\n\t\t\"Prog64\":          reflect.ValueOf((*elf.Prog64)(nil)),\n\t\t\"ProgFlag\":        reflect.ValueOf((*elf.ProgFlag)(nil)),\n\t\t\"ProgHeader\":      reflect.ValueOf((*elf.ProgHeader)(nil)),\n\t\t\"ProgType\":        reflect.ValueOf((*elf.ProgType)(nil)),\n\t\t\"R_386\":           reflect.ValueOf((*elf.R_386)(nil)),\n\t\t\"R_390\":           reflect.ValueOf((*elf.R_390)(nil)),\n\t\t\"R_AARCH64\":       reflect.ValueOf((*elf.R_AARCH64)(nil)),\n\t\t\"R_ALPHA\":         reflect.ValueOf((*elf.R_ALPHA)(nil)),\n\t\t\"R_ARM\":           reflect.ValueOf((*elf.R_ARM)(nil)),\n\t\t\"R_LARCH\":         reflect.ValueOf((*elf.R_LARCH)(nil)),\n\t\t\"R_MIPS\":          reflect.ValueOf((*elf.R_MIPS)(nil)),\n\t\t\"R_PPC\":           reflect.ValueOf((*elf.R_PPC)(nil)),\n\t\t\"R_PPC64\":         reflect.ValueOf((*elf.R_PPC64)(nil)),\n\t\t\"R_RISCV\":         reflect.ValueOf((*elf.R_RISCV)(nil)),\n\t\t\"R_SPARC\":         reflect.ValueOf((*elf.R_SPARC)(nil)),\n\t\t\"R_X86_64\":        reflect.ValueOf((*elf.R_X86_64)(nil)),\n\t\t\"Rel32\":           reflect.ValueOf((*elf.Rel32)(nil)),\n\t\t\"Rel64\":           reflect.ValueOf((*elf.Rel64)(nil)),\n\t\t\"Rela32\":          reflect.ValueOf((*elf.Rela32)(nil)),\n\t\t\"Rela64\":          reflect.ValueOf((*elf.Rela64)(nil)),\n\t\t\"Section\":         reflect.ValueOf((*elf.Section)(nil)),\n\t\t\"Section32\":       reflect.ValueOf((*elf.Section32)(nil)),\n\t\t\"Section64\":       reflect.ValueOf((*elf.Section64)(nil)),\n\t\t\"SectionFlag\":     reflect.ValueOf((*elf.SectionFlag)(nil)),\n\t\t\"SectionHeader\":   reflect.ValueOf((*elf.SectionHeader)(nil)),\n\t\t\"SectionIndex\":    reflect.ValueOf((*elf.SectionIndex)(nil)),\n\t\t\"SectionType\":     reflect.ValueOf((*elf.SectionType)(nil)),\n\t\t\"Sym32\":           reflect.ValueOf((*elf.Sym32)(nil)),\n\t\t\"Sym64\":           reflect.ValueOf((*elf.Sym64)(nil)),\n\t\t\"SymBind\":         reflect.ValueOf((*elf.SymBind)(nil)),\n\t\t\"SymType\":         reflect.ValueOf((*elf.SymType)(nil)),\n\t\t\"SymVis\":          reflect.ValueOf((*elf.SymVis)(nil)),\n\t\t\"Symbol\":          reflect.ValueOf((*elf.Symbol)(nil)),\n\t\t\"Type\":            reflect.ValueOf((*elf.Type)(nil)),\n\t\t\"Version\":         reflect.ValueOf((*elf.Version)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_debug_gosym.go",
    "content": "// Code generated by 'yaegi extract debug/gosym'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"debug/gosym\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"debug/gosym/gosym\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"NewLineTable\": reflect.ValueOf(gosym.NewLineTable),\n\t\t\"NewTable\":     reflect.ValueOf(gosym.NewTable),\n\n\t\t// type definitions\n\t\t\"DecodingError\":    reflect.ValueOf((*gosym.DecodingError)(nil)),\n\t\t\"Func\":             reflect.ValueOf((*gosym.Func)(nil)),\n\t\t\"LineTable\":        reflect.ValueOf((*gosym.LineTable)(nil)),\n\t\t\"Obj\":              reflect.ValueOf((*gosym.Obj)(nil)),\n\t\t\"Sym\":              reflect.ValueOf((*gosym.Sym)(nil)),\n\t\t\"Table\":            reflect.ValueOf((*gosym.Table)(nil)),\n\t\t\"UnknownFileError\": reflect.ValueOf((*gosym.UnknownFileError)(nil)),\n\t\t\"UnknownLineError\": reflect.ValueOf((*gosym.UnknownLineError)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_debug_macho.go",
    "content": "// Code generated by 'yaegi extract debug/macho'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"debug/macho\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"debug/macho/macho\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ARM64_RELOC_ADDEND\":              reflect.ValueOf(macho.ARM64_RELOC_ADDEND),\n\t\t\"ARM64_RELOC_BRANCH26\":            reflect.ValueOf(macho.ARM64_RELOC_BRANCH26),\n\t\t\"ARM64_RELOC_GOT_LOAD_PAGE21\":     reflect.ValueOf(macho.ARM64_RELOC_GOT_LOAD_PAGE21),\n\t\t\"ARM64_RELOC_GOT_LOAD_PAGEOFF12\":  reflect.ValueOf(macho.ARM64_RELOC_GOT_LOAD_PAGEOFF12),\n\t\t\"ARM64_RELOC_PAGE21\":              reflect.ValueOf(macho.ARM64_RELOC_PAGE21),\n\t\t\"ARM64_RELOC_PAGEOFF12\":           reflect.ValueOf(macho.ARM64_RELOC_PAGEOFF12),\n\t\t\"ARM64_RELOC_POINTER_TO_GOT\":      reflect.ValueOf(macho.ARM64_RELOC_POINTER_TO_GOT),\n\t\t\"ARM64_RELOC_SUBTRACTOR\":          reflect.ValueOf(macho.ARM64_RELOC_SUBTRACTOR),\n\t\t\"ARM64_RELOC_TLVP_LOAD_PAGE21\":    reflect.ValueOf(macho.ARM64_RELOC_TLVP_LOAD_PAGE21),\n\t\t\"ARM64_RELOC_TLVP_LOAD_PAGEOFF12\": reflect.ValueOf(macho.ARM64_RELOC_TLVP_LOAD_PAGEOFF12),\n\t\t\"ARM64_RELOC_UNSIGNED\":            reflect.ValueOf(macho.ARM64_RELOC_UNSIGNED),\n\t\t\"ARM_RELOC_BR24\":                  reflect.ValueOf(macho.ARM_RELOC_BR24),\n\t\t\"ARM_RELOC_HALF\":                  reflect.ValueOf(macho.ARM_RELOC_HALF),\n\t\t\"ARM_RELOC_HALF_SECTDIFF\":         reflect.ValueOf(macho.ARM_RELOC_HALF_SECTDIFF),\n\t\t\"ARM_RELOC_LOCAL_SECTDIFF\":        reflect.ValueOf(macho.ARM_RELOC_LOCAL_SECTDIFF),\n\t\t\"ARM_RELOC_PAIR\":                  reflect.ValueOf(macho.ARM_RELOC_PAIR),\n\t\t\"ARM_RELOC_PB_LA_PTR\":             reflect.ValueOf(macho.ARM_RELOC_PB_LA_PTR),\n\t\t\"ARM_RELOC_SECTDIFF\":              reflect.ValueOf(macho.ARM_RELOC_SECTDIFF),\n\t\t\"ARM_RELOC_VANILLA\":               reflect.ValueOf(macho.ARM_RELOC_VANILLA),\n\t\t\"ARM_THUMB_32BIT_BRANCH\":          reflect.ValueOf(macho.ARM_THUMB_32BIT_BRANCH),\n\t\t\"ARM_THUMB_RELOC_BR22\":            reflect.ValueOf(macho.ARM_THUMB_RELOC_BR22),\n\t\t\"Cpu386\":                          reflect.ValueOf(macho.Cpu386),\n\t\t\"CpuAmd64\":                        reflect.ValueOf(macho.CpuAmd64),\n\t\t\"CpuArm\":                          reflect.ValueOf(macho.CpuArm),\n\t\t\"CpuArm64\":                        reflect.ValueOf(macho.CpuArm64),\n\t\t\"CpuPpc\":                          reflect.ValueOf(macho.CpuPpc),\n\t\t\"CpuPpc64\":                        reflect.ValueOf(macho.CpuPpc64),\n\t\t\"ErrNotFat\":                       reflect.ValueOf(&macho.ErrNotFat).Elem(),\n\t\t\"FlagAllModsBound\":                reflect.ValueOf(macho.FlagAllModsBound),\n\t\t\"FlagAllowStackExecution\":         reflect.ValueOf(macho.FlagAllowStackExecution),\n\t\t\"FlagAppExtensionSafe\":            reflect.ValueOf(macho.FlagAppExtensionSafe),\n\t\t\"FlagBindAtLoad\":                  reflect.ValueOf(macho.FlagBindAtLoad),\n\t\t\"FlagBindsToWeak\":                 reflect.ValueOf(macho.FlagBindsToWeak),\n\t\t\"FlagCanonical\":                   reflect.ValueOf(macho.FlagCanonical),\n\t\t\"FlagDeadStrippableDylib\":         reflect.ValueOf(macho.FlagDeadStrippableDylib),\n\t\t\"FlagDyldLink\":                    reflect.ValueOf(macho.FlagDyldLink),\n\t\t\"FlagForceFlat\":                   reflect.ValueOf(macho.FlagForceFlat),\n\t\t\"FlagHasTLVDescriptors\":           reflect.ValueOf(macho.FlagHasTLVDescriptors),\n\t\t\"FlagIncrLink\":                    reflect.ValueOf(macho.FlagIncrLink),\n\t\t\"FlagLazyInit\":                    reflect.ValueOf(macho.FlagLazyInit),\n\t\t\"FlagNoFixPrebinding\":             reflect.ValueOf(macho.FlagNoFixPrebinding),\n\t\t\"FlagNoHeapExecution\":             reflect.ValueOf(macho.FlagNoHeapExecution),\n\t\t\"FlagNoMultiDefs\":                 reflect.ValueOf(macho.FlagNoMultiDefs),\n\t\t\"FlagNoReexportedDylibs\":          reflect.ValueOf(macho.FlagNoReexportedDylibs),\n\t\t\"FlagNoUndefs\":                    reflect.ValueOf(macho.FlagNoUndefs),\n\t\t\"FlagPIE\":                         reflect.ValueOf(macho.FlagPIE),\n\t\t\"FlagPrebindable\":                 reflect.ValueOf(macho.FlagPrebindable),\n\t\t\"FlagPrebound\":                    reflect.ValueOf(macho.FlagPrebound),\n\t\t\"FlagRootSafe\":                    reflect.ValueOf(macho.FlagRootSafe),\n\t\t\"FlagSetuidSafe\":                  reflect.ValueOf(macho.FlagSetuidSafe),\n\t\t\"FlagSplitSegs\":                   reflect.ValueOf(macho.FlagSplitSegs),\n\t\t\"FlagSubsectionsViaSymbols\":       reflect.ValueOf(macho.FlagSubsectionsViaSymbols),\n\t\t\"FlagTwoLevel\":                    reflect.ValueOf(macho.FlagTwoLevel),\n\t\t\"FlagWeakDefines\":                 reflect.ValueOf(macho.FlagWeakDefines),\n\t\t\"GENERIC_RELOC_LOCAL_SECTDIFF\":    reflect.ValueOf(macho.GENERIC_RELOC_LOCAL_SECTDIFF),\n\t\t\"GENERIC_RELOC_PAIR\":              reflect.ValueOf(macho.GENERIC_RELOC_PAIR),\n\t\t\"GENERIC_RELOC_PB_LA_PTR\":         reflect.ValueOf(macho.GENERIC_RELOC_PB_LA_PTR),\n\t\t\"GENERIC_RELOC_SECTDIFF\":          reflect.ValueOf(macho.GENERIC_RELOC_SECTDIFF),\n\t\t\"GENERIC_RELOC_TLV\":               reflect.ValueOf(macho.GENERIC_RELOC_TLV),\n\t\t\"GENERIC_RELOC_VANILLA\":           reflect.ValueOf(macho.GENERIC_RELOC_VANILLA),\n\t\t\"LoadCmdDylib\":                    reflect.ValueOf(macho.LoadCmdDylib),\n\t\t\"LoadCmdDylinker\":                 reflect.ValueOf(macho.LoadCmdDylinker),\n\t\t\"LoadCmdDysymtab\":                 reflect.ValueOf(macho.LoadCmdDysymtab),\n\t\t\"LoadCmdRpath\":                    reflect.ValueOf(macho.LoadCmdRpath),\n\t\t\"LoadCmdSegment\":                  reflect.ValueOf(macho.LoadCmdSegment),\n\t\t\"LoadCmdSegment64\":                reflect.ValueOf(macho.LoadCmdSegment64),\n\t\t\"LoadCmdSymtab\":                   reflect.ValueOf(macho.LoadCmdSymtab),\n\t\t\"LoadCmdThread\":                   reflect.ValueOf(macho.LoadCmdThread),\n\t\t\"LoadCmdUnixThread\":               reflect.ValueOf(macho.LoadCmdUnixThread),\n\t\t\"Magic32\":                         reflect.ValueOf(macho.Magic32),\n\t\t\"Magic64\":                         reflect.ValueOf(macho.Magic64),\n\t\t\"MagicFat\":                        reflect.ValueOf(macho.MagicFat),\n\t\t\"NewFatFile\":                      reflect.ValueOf(macho.NewFatFile),\n\t\t\"NewFile\":                         reflect.ValueOf(macho.NewFile),\n\t\t\"Open\":                            reflect.ValueOf(macho.Open),\n\t\t\"OpenFat\":                         reflect.ValueOf(macho.OpenFat),\n\t\t\"TypeBundle\":                      reflect.ValueOf(macho.TypeBundle),\n\t\t\"TypeDylib\":                       reflect.ValueOf(macho.TypeDylib),\n\t\t\"TypeExec\":                        reflect.ValueOf(macho.TypeExec),\n\t\t\"TypeObj\":                         reflect.ValueOf(macho.TypeObj),\n\t\t\"X86_64_RELOC_BRANCH\":             reflect.ValueOf(macho.X86_64_RELOC_BRANCH),\n\t\t\"X86_64_RELOC_GOT\":                reflect.ValueOf(macho.X86_64_RELOC_GOT),\n\t\t\"X86_64_RELOC_GOT_LOAD\":           reflect.ValueOf(macho.X86_64_RELOC_GOT_LOAD),\n\t\t\"X86_64_RELOC_SIGNED\":             reflect.ValueOf(macho.X86_64_RELOC_SIGNED),\n\t\t\"X86_64_RELOC_SIGNED_1\":           reflect.ValueOf(macho.X86_64_RELOC_SIGNED_1),\n\t\t\"X86_64_RELOC_SIGNED_2\":           reflect.ValueOf(macho.X86_64_RELOC_SIGNED_2),\n\t\t\"X86_64_RELOC_SIGNED_4\":           reflect.ValueOf(macho.X86_64_RELOC_SIGNED_4),\n\t\t\"X86_64_RELOC_SUBTRACTOR\":         reflect.ValueOf(macho.X86_64_RELOC_SUBTRACTOR),\n\t\t\"X86_64_RELOC_TLV\":                reflect.ValueOf(macho.X86_64_RELOC_TLV),\n\t\t\"X86_64_RELOC_UNSIGNED\":           reflect.ValueOf(macho.X86_64_RELOC_UNSIGNED),\n\n\t\t// type definitions\n\t\t\"Cpu\":              reflect.ValueOf((*macho.Cpu)(nil)),\n\t\t\"Dylib\":            reflect.ValueOf((*macho.Dylib)(nil)),\n\t\t\"DylibCmd\":         reflect.ValueOf((*macho.DylibCmd)(nil)),\n\t\t\"Dysymtab\":         reflect.ValueOf((*macho.Dysymtab)(nil)),\n\t\t\"DysymtabCmd\":      reflect.ValueOf((*macho.DysymtabCmd)(nil)),\n\t\t\"FatArch\":          reflect.ValueOf((*macho.FatArch)(nil)),\n\t\t\"FatArchHeader\":    reflect.ValueOf((*macho.FatArchHeader)(nil)),\n\t\t\"FatFile\":          reflect.ValueOf((*macho.FatFile)(nil)),\n\t\t\"File\":             reflect.ValueOf((*macho.File)(nil)),\n\t\t\"FileHeader\":       reflect.ValueOf((*macho.FileHeader)(nil)),\n\t\t\"FormatError\":      reflect.ValueOf((*macho.FormatError)(nil)),\n\t\t\"Load\":             reflect.ValueOf((*macho.Load)(nil)),\n\t\t\"LoadBytes\":        reflect.ValueOf((*macho.LoadBytes)(nil)),\n\t\t\"LoadCmd\":          reflect.ValueOf((*macho.LoadCmd)(nil)),\n\t\t\"Nlist32\":          reflect.ValueOf((*macho.Nlist32)(nil)),\n\t\t\"Nlist64\":          reflect.ValueOf((*macho.Nlist64)(nil)),\n\t\t\"Regs386\":          reflect.ValueOf((*macho.Regs386)(nil)),\n\t\t\"RegsAMD64\":        reflect.ValueOf((*macho.RegsAMD64)(nil)),\n\t\t\"Reloc\":            reflect.ValueOf((*macho.Reloc)(nil)),\n\t\t\"RelocTypeARM\":     reflect.ValueOf((*macho.RelocTypeARM)(nil)),\n\t\t\"RelocTypeARM64\":   reflect.ValueOf((*macho.RelocTypeARM64)(nil)),\n\t\t\"RelocTypeGeneric\": reflect.ValueOf((*macho.RelocTypeGeneric)(nil)),\n\t\t\"RelocTypeX86_64\":  reflect.ValueOf((*macho.RelocTypeX86_64)(nil)),\n\t\t\"Rpath\":            reflect.ValueOf((*macho.Rpath)(nil)),\n\t\t\"RpathCmd\":         reflect.ValueOf((*macho.RpathCmd)(nil)),\n\t\t\"Section\":          reflect.ValueOf((*macho.Section)(nil)),\n\t\t\"Section32\":        reflect.ValueOf((*macho.Section32)(nil)),\n\t\t\"Section64\":        reflect.ValueOf((*macho.Section64)(nil)),\n\t\t\"SectionHeader\":    reflect.ValueOf((*macho.SectionHeader)(nil)),\n\t\t\"Segment\":          reflect.ValueOf((*macho.Segment)(nil)),\n\t\t\"Segment32\":        reflect.ValueOf((*macho.Segment32)(nil)),\n\t\t\"Segment64\":        reflect.ValueOf((*macho.Segment64)(nil)),\n\t\t\"SegmentHeader\":    reflect.ValueOf((*macho.SegmentHeader)(nil)),\n\t\t\"Symbol\":           reflect.ValueOf((*macho.Symbol)(nil)),\n\t\t\"Symtab\":           reflect.ValueOf((*macho.Symtab)(nil)),\n\t\t\"SymtabCmd\":        reflect.ValueOf((*macho.SymtabCmd)(nil)),\n\t\t\"Thread\":           reflect.ValueOf((*macho.Thread)(nil)),\n\t\t\"Type\":             reflect.ValueOf((*macho.Type)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Load\": reflect.ValueOf((*_debug_macho_Load)(nil)),\n\t}\n}\n\n// _debug_macho_Load is an interface wrapper for Load type\ntype _debug_macho_Load struct {\n\tIValue interface{}\n\tWRaw   func() []byte\n}\n\nfunc (W _debug_macho_Load) Raw() []byte { return W.WRaw() }\n"
  },
  {
    "path": "stdlib/go1_22_debug_pe.go",
    "content": "// Code generated by 'yaegi extract debug/pe'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"debug/pe\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"debug/pe/pe\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"COFFSymbolSize\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IMAGE_COMDAT_SELECT_ANY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IMAGE_COMDAT_SELECT_ASSOCIATIVE\":                reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IMAGE_COMDAT_SELECT_EXACT_MATCH\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAGE_COMDAT_SELECT_LARGEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IMAGE_COMDAT_SELECT_NODUPLICATES\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IMAGE_COMDAT_SELECT_SAME_SIZE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_ARCHITECTURE\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_BASERELOC\":                reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT\":             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR\":           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_DEBUG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT\":             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_EXCEPTION\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_EXPORT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_GLOBALPTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_IAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_IMPORT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_RESOURCE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_SECURITY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAGE_DIRECTORY_ENTRY_TLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_APPCONTAINER\":          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE\":          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY\":       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_GUARD_CF\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_NO_BIND\":               reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_NO_ISOLATION\":          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_NO_SEH\":                reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_NX_COMPAT\":             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE\": reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IMAGE_DLLCHARACTERISTICS_WDM_DRIVER\":            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IMAGE_FILE_32BIT_MACHINE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IMAGE_FILE_AGGRESIVE_WS_TRIM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IMAGE_FILE_BYTES_REVERSED_HI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IMAGE_FILE_BYTES_REVERSED_LO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IMAGE_FILE_DEBUG_STRIPPED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IMAGE_FILE_DLL\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IMAGE_FILE_EXECUTABLE_IMAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IMAGE_FILE_LARGE_ADDRESS_AWARE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IMAGE_FILE_LINE_NUMS_STRIPPED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAGE_FILE_LOCAL_SYMS_STRIPPED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_AM33\":                        reflect.ValueOf(constant.MakeFromLiteral(\"467\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_AMD64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34404\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_ARM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_ARM64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43620\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_ARMNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"452\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_EBC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3772\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_I386\":                        reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_IA64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_LOONGARCH32\":                 reflect.ValueOf(constant.MakeFromLiteral(\"25138\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_LOONGARCH64\":                 reflect.ValueOf(constant.MakeFromLiteral(\"25188\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_M32R\":                        reflect.ValueOf(constant.MakeFromLiteral(\"36929\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_MIPS16\":                      reflect.ValueOf(constant.MakeFromLiteral(\"614\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_MIPSFPU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"870\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_MIPSFPU16\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1126\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_POWERPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"496\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_POWERPCFP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"497\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_R4000\":                       reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_RISCV128\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20776\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_RISCV32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20530\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_RISCV64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20580\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_SH3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"418\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_SH3DSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"419\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_SH4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_SH5\":                         reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_THUMB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_UNKNOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IMAGE_FILE_MACHINE_WCEMIPSV2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"IMAGE_FILE_NET_RUN_FROM_SWAP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IMAGE_FILE_RELOCS_STRIPPED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP\":             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IMAGE_FILE_SYSTEM\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IMAGE_FILE_UP_SYSTEM_ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IMAGE_SCN_CNT_CODE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IMAGE_SCN_CNT_INITIALIZED_DATA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IMAGE_SCN_CNT_UNINITIALIZED_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IMAGE_SCN_LNK_COMDAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IMAGE_SCN_MEM_DISCARDABLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IMAGE_SCN_MEM_EXECUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IMAGE_SCN_MEM_READ\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IMAGE_SCN_MEM_WRITE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_EFI_APPLICATION\":                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER\":        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_EFI_ROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER\":             reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_NATIVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_NATIVE_WINDOWS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_OS2_CUI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_POSIX_CUI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_WINDOWS_CE_GUI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_WINDOWS_CUI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_WINDOWS_GUI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IMAGE_SUBSYSTEM_XBOX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NewFile\":                                        reflect.ValueOf(pe.NewFile),\n\t\t\"Open\":                                           reflect.ValueOf(pe.Open),\n\n\t\t// type definitions\n\t\t\"COFFSymbol\":           reflect.ValueOf((*pe.COFFSymbol)(nil)),\n\t\t\"COFFSymbolAuxFormat5\": reflect.ValueOf((*pe.COFFSymbolAuxFormat5)(nil)),\n\t\t\"DataDirectory\":        reflect.ValueOf((*pe.DataDirectory)(nil)),\n\t\t\"File\":                 reflect.ValueOf((*pe.File)(nil)),\n\t\t\"FileHeader\":           reflect.ValueOf((*pe.FileHeader)(nil)),\n\t\t\"FormatError\":          reflect.ValueOf((*pe.FormatError)(nil)),\n\t\t\"ImportDirectory\":      reflect.ValueOf((*pe.ImportDirectory)(nil)),\n\t\t\"OptionalHeader32\":     reflect.ValueOf((*pe.OptionalHeader32)(nil)),\n\t\t\"OptionalHeader64\":     reflect.ValueOf((*pe.OptionalHeader64)(nil)),\n\t\t\"Reloc\":                reflect.ValueOf((*pe.Reloc)(nil)),\n\t\t\"Section\":              reflect.ValueOf((*pe.Section)(nil)),\n\t\t\"SectionHeader\":        reflect.ValueOf((*pe.SectionHeader)(nil)),\n\t\t\"SectionHeader32\":      reflect.ValueOf((*pe.SectionHeader32)(nil)),\n\t\t\"StringTable\":          reflect.ValueOf((*pe.StringTable)(nil)),\n\t\t\"Symbol\":               reflect.ValueOf((*pe.Symbol)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_debug_plan9obj.go",
    "content": "// Code generated by 'yaegi extract debug/plan9obj'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"debug/plan9obj\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"debug/plan9obj/plan9obj\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ErrNoSymbols\": reflect.ValueOf(&plan9obj.ErrNoSymbols).Elem(),\n\t\t\"Magic386\":     reflect.ValueOf(constant.MakeFromLiteral(\"491\", token.INT, 0)),\n\t\t\"Magic64\":      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MagicAMD64\":   reflect.ValueOf(constant.MakeFromLiteral(\"35479\", token.INT, 0)),\n\t\t\"MagicARM\":     reflect.ValueOf(constant.MakeFromLiteral(\"1607\", token.INT, 0)),\n\t\t\"NewFile\":      reflect.ValueOf(plan9obj.NewFile),\n\t\t\"Open\":         reflect.ValueOf(plan9obj.Open),\n\n\t\t// type definitions\n\t\t\"File\":          reflect.ValueOf((*plan9obj.File)(nil)),\n\t\t\"FileHeader\":    reflect.ValueOf((*plan9obj.FileHeader)(nil)),\n\t\t\"Section\":       reflect.ValueOf((*plan9obj.Section)(nil)),\n\t\t\"SectionHeader\": reflect.ValueOf((*plan9obj.SectionHeader)(nil)),\n\t\t\"Sym\":           reflect.ValueOf((*plan9obj.Sym)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_encoding.go",
    "content": "// Code generated by 'yaegi extract encoding'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/encoding\"] = map[string]reflect.Value{\n\t\t// type definitions\n\t\t\"BinaryMarshaler\":   reflect.ValueOf((*encoding.BinaryMarshaler)(nil)),\n\t\t\"BinaryUnmarshaler\": reflect.ValueOf((*encoding.BinaryUnmarshaler)(nil)),\n\t\t\"TextMarshaler\":     reflect.ValueOf((*encoding.TextMarshaler)(nil)),\n\t\t\"TextUnmarshaler\":   reflect.ValueOf((*encoding.TextUnmarshaler)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_BinaryMarshaler\":   reflect.ValueOf((*_encoding_BinaryMarshaler)(nil)),\n\t\t\"_BinaryUnmarshaler\": reflect.ValueOf((*_encoding_BinaryUnmarshaler)(nil)),\n\t\t\"_TextMarshaler\":     reflect.ValueOf((*_encoding_TextMarshaler)(nil)),\n\t\t\"_TextUnmarshaler\":   reflect.ValueOf((*_encoding_TextUnmarshaler)(nil)),\n\t}\n}\n\n// _encoding_BinaryMarshaler is an interface wrapper for BinaryMarshaler type\ntype _encoding_BinaryMarshaler struct {\n\tIValue         interface{}\n\tWMarshalBinary func() (data []byte, err error)\n}\n\nfunc (W _encoding_BinaryMarshaler) MarshalBinary() (data []byte, err error) {\n\treturn W.WMarshalBinary()\n}\n\n// _encoding_BinaryUnmarshaler is an interface wrapper for BinaryUnmarshaler type\ntype _encoding_BinaryUnmarshaler struct {\n\tIValue           interface{}\n\tWUnmarshalBinary func(data []byte) error\n}\n\nfunc (W _encoding_BinaryUnmarshaler) UnmarshalBinary(data []byte) error {\n\treturn W.WUnmarshalBinary(data)\n}\n\n// _encoding_TextMarshaler is an interface wrapper for TextMarshaler type\ntype _encoding_TextMarshaler struct {\n\tIValue       interface{}\n\tWMarshalText func() (text []byte, err error)\n}\n\nfunc (W _encoding_TextMarshaler) MarshalText() (text []byte, err error) { return W.WMarshalText() }\n\n// _encoding_TextUnmarshaler is an interface wrapper for TextUnmarshaler type\ntype _encoding_TextUnmarshaler struct {\n\tIValue         interface{}\n\tWUnmarshalText func(text []byte) error\n}\n\nfunc (W _encoding_TextUnmarshaler) UnmarshalText(text []byte) error { return W.WUnmarshalText(text) }\n"
  },
  {
    "path": "stdlib/go1_22_encoding_ascii85.go",
    "content": "// Code generated by 'yaegi extract encoding/ascii85'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/ascii85\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/ascii85/ascii85\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Decode\":        reflect.ValueOf(ascii85.Decode),\n\t\t\"Encode\":        reflect.ValueOf(ascii85.Encode),\n\t\t\"MaxEncodedLen\": reflect.ValueOf(ascii85.MaxEncodedLen),\n\t\t\"NewDecoder\":    reflect.ValueOf(ascii85.NewDecoder),\n\t\t\"NewEncoder\":    reflect.ValueOf(ascii85.NewEncoder),\n\n\t\t// type definitions\n\t\t\"CorruptInputError\": reflect.ValueOf((*ascii85.CorruptInputError)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_encoding_asn1.go",
    "content": "// Code generated by 'yaegi extract encoding/asn1'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/asn1\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/asn1/asn1\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ClassApplication\":     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ClassContextSpecific\": reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ClassPrivate\":         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ClassUniversal\":       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Marshal\":              reflect.ValueOf(asn1.Marshal),\n\t\t\"MarshalWithParams\":    reflect.ValueOf(asn1.MarshalWithParams),\n\t\t\"NullBytes\":            reflect.ValueOf(&asn1.NullBytes).Elem(),\n\t\t\"NullRawValue\":         reflect.ValueOf(&asn1.NullRawValue).Elem(),\n\t\t\"TagBMPString\":         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"TagBitString\":         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TagBoolean\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TagEnum\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TagGeneralString\":     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"TagGeneralizedTime\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TagIA5String\":         reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TagInteger\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TagNull\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TagNumericString\":     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TagOID\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TagOctetString\":       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TagPrintableString\":   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TagSequence\":          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TagSet\":               reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TagT61String\":         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TagUTCTime\":           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TagUTF8String\":        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"Unmarshal\":            reflect.ValueOf(asn1.Unmarshal),\n\t\t\"UnmarshalWithParams\":  reflect.ValueOf(asn1.UnmarshalWithParams),\n\n\t\t// type definitions\n\t\t\"BitString\":        reflect.ValueOf((*asn1.BitString)(nil)),\n\t\t\"Enumerated\":       reflect.ValueOf((*asn1.Enumerated)(nil)),\n\t\t\"Flag\":             reflect.ValueOf((*asn1.Flag)(nil)),\n\t\t\"ObjectIdentifier\": reflect.ValueOf((*asn1.ObjectIdentifier)(nil)),\n\t\t\"RawContent\":       reflect.ValueOf((*asn1.RawContent)(nil)),\n\t\t\"RawValue\":         reflect.ValueOf((*asn1.RawValue)(nil)),\n\t\t\"StructuralError\":  reflect.ValueOf((*asn1.StructuralError)(nil)),\n\t\t\"SyntaxError\":      reflect.ValueOf((*asn1.SyntaxError)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_encoding_base32.go",
    "content": "// Code generated by 'yaegi extract encoding/base32'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/base32\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/base32/base32\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"HexEncoding\": reflect.ValueOf(&base32.HexEncoding).Elem(),\n\t\t\"NewDecoder\":  reflect.ValueOf(base32.NewDecoder),\n\t\t\"NewEncoder\":  reflect.ValueOf(base32.NewEncoder),\n\t\t\"NewEncoding\": reflect.ValueOf(base32.NewEncoding),\n\t\t\"NoPadding\":   reflect.ValueOf(base32.NoPadding),\n\t\t\"StdEncoding\": reflect.ValueOf(&base32.StdEncoding).Elem(),\n\t\t\"StdPadding\":  reflect.ValueOf(base32.StdPadding),\n\n\t\t// type definitions\n\t\t\"CorruptInputError\": reflect.ValueOf((*base32.CorruptInputError)(nil)),\n\t\t\"Encoding\":          reflect.ValueOf((*base32.Encoding)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_encoding_base64.go",
    "content": "// Code generated by 'yaegi extract encoding/base64'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/base64\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/base64/base64\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"NewDecoder\":     reflect.ValueOf(base64.NewDecoder),\n\t\t\"NewEncoder\":     reflect.ValueOf(base64.NewEncoder),\n\t\t\"NewEncoding\":    reflect.ValueOf(base64.NewEncoding),\n\t\t\"NoPadding\":      reflect.ValueOf(base64.NoPadding),\n\t\t\"RawStdEncoding\": reflect.ValueOf(&base64.RawStdEncoding).Elem(),\n\t\t\"RawURLEncoding\": reflect.ValueOf(&base64.RawURLEncoding).Elem(),\n\t\t\"StdEncoding\":    reflect.ValueOf(&base64.StdEncoding).Elem(),\n\t\t\"StdPadding\":     reflect.ValueOf(base64.StdPadding),\n\t\t\"URLEncoding\":    reflect.ValueOf(&base64.URLEncoding).Elem(),\n\n\t\t// type definitions\n\t\t\"CorruptInputError\": reflect.ValueOf((*base64.CorruptInputError)(nil)),\n\t\t\"Encoding\":          reflect.ValueOf((*base64.Encoding)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_encoding_binary.go",
    "content": "// Code generated by 'yaegi extract encoding/binary'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/binary\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/binary/binary\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AppendUvarint\":  reflect.ValueOf(binary.AppendUvarint),\n\t\t\"AppendVarint\":   reflect.ValueOf(binary.AppendVarint),\n\t\t\"BigEndian\":      reflect.ValueOf(&binary.BigEndian).Elem(),\n\t\t\"LittleEndian\":   reflect.ValueOf(&binary.LittleEndian).Elem(),\n\t\t\"MaxVarintLen16\": reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MaxVarintLen32\": reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MaxVarintLen64\": reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NativeEndian\":   reflect.ValueOf(&binary.NativeEndian).Elem(),\n\t\t\"PutUvarint\":     reflect.ValueOf(binary.PutUvarint),\n\t\t\"PutVarint\":      reflect.ValueOf(binary.PutVarint),\n\t\t\"Read\":           reflect.ValueOf(binary.Read),\n\t\t\"ReadUvarint\":    reflect.ValueOf(binary.ReadUvarint),\n\t\t\"ReadVarint\":     reflect.ValueOf(binary.ReadVarint),\n\t\t\"Size\":           reflect.ValueOf(binary.Size),\n\t\t\"Uvarint\":        reflect.ValueOf(binary.Uvarint),\n\t\t\"Varint\":         reflect.ValueOf(binary.Varint),\n\t\t\"Write\":          reflect.ValueOf(binary.Write),\n\n\t\t// type definitions\n\t\t\"AppendByteOrder\": reflect.ValueOf((*binary.AppendByteOrder)(nil)),\n\t\t\"ByteOrder\":       reflect.ValueOf((*binary.ByteOrder)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_AppendByteOrder\": reflect.ValueOf((*_encoding_binary_AppendByteOrder)(nil)),\n\t\t\"_ByteOrder\":       reflect.ValueOf((*_encoding_binary_ByteOrder)(nil)),\n\t}\n}\n\n// _encoding_binary_AppendByteOrder is an interface wrapper for AppendByteOrder type\ntype _encoding_binary_AppendByteOrder struct {\n\tIValue        interface{}\n\tWAppendUint16 func(a0 []byte, a1 uint16) []byte\n\tWAppendUint32 func(a0 []byte, a1 uint32) []byte\n\tWAppendUint64 func(a0 []byte, a1 uint64) []byte\n\tWString       func() string\n}\n\nfunc (W _encoding_binary_AppendByteOrder) AppendUint16(a0 []byte, a1 uint16) []byte {\n\treturn W.WAppendUint16(a0, a1)\n}\nfunc (W _encoding_binary_AppendByteOrder) AppendUint32(a0 []byte, a1 uint32) []byte {\n\treturn W.WAppendUint32(a0, a1)\n}\nfunc (W _encoding_binary_AppendByteOrder) AppendUint64(a0 []byte, a1 uint64) []byte {\n\treturn W.WAppendUint64(a0, a1)\n}\nfunc (W _encoding_binary_AppendByteOrder) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n\n// _encoding_binary_ByteOrder is an interface wrapper for ByteOrder type\ntype _encoding_binary_ByteOrder struct {\n\tIValue     interface{}\n\tWPutUint16 func(a0 []byte, a1 uint16)\n\tWPutUint32 func(a0 []byte, a1 uint32)\n\tWPutUint64 func(a0 []byte, a1 uint64)\n\tWString    func() string\n\tWUint16    func(a0 []byte) uint16\n\tWUint32    func(a0 []byte) uint32\n\tWUint64    func(a0 []byte) uint64\n}\n\nfunc (W _encoding_binary_ByteOrder) PutUint16(a0 []byte, a1 uint16) { W.WPutUint16(a0, a1) }\nfunc (W _encoding_binary_ByteOrder) PutUint32(a0 []byte, a1 uint32) { W.WPutUint32(a0, a1) }\nfunc (W _encoding_binary_ByteOrder) PutUint64(a0 []byte, a1 uint64) { W.WPutUint64(a0, a1) }\nfunc (W _encoding_binary_ByteOrder) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\nfunc (W _encoding_binary_ByteOrder) Uint16(a0 []byte) uint16 { return W.WUint16(a0) }\nfunc (W _encoding_binary_ByteOrder) Uint32(a0 []byte) uint32 { return W.WUint32(a0) }\nfunc (W _encoding_binary_ByteOrder) Uint64(a0 []byte) uint64 { return W.WUint64(a0) }\n"
  },
  {
    "path": "stdlib/go1_22_encoding_csv.go",
    "content": "// Code generated by 'yaegi extract encoding/csv'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/csv\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/csv/csv\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ErrBareQuote\":     reflect.ValueOf(&csv.ErrBareQuote).Elem(),\n\t\t\"ErrFieldCount\":    reflect.ValueOf(&csv.ErrFieldCount).Elem(),\n\t\t\"ErrQuote\":         reflect.ValueOf(&csv.ErrQuote).Elem(),\n\t\t\"ErrTrailingComma\": reflect.ValueOf(&csv.ErrTrailingComma).Elem(),\n\t\t\"NewReader\":        reflect.ValueOf(csv.NewReader),\n\t\t\"NewWriter\":        reflect.ValueOf(csv.NewWriter),\n\n\t\t// type definitions\n\t\t\"ParseError\": reflect.ValueOf((*csv.ParseError)(nil)),\n\t\t\"Reader\":     reflect.ValueOf((*csv.Reader)(nil)),\n\t\t\"Writer\":     reflect.ValueOf((*csv.Writer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_encoding_gob.go",
    "content": "// Code generated by 'yaegi extract encoding/gob'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/gob\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/gob/gob\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"NewDecoder\":   reflect.ValueOf(gob.NewDecoder),\n\t\t\"NewEncoder\":   reflect.ValueOf(gob.NewEncoder),\n\t\t\"Register\":     reflect.ValueOf(gob.Register),\n\t\t\"RegisterName\": reflect.ValueOf(gob.RegisterName),\n\n\t\t// type definitions\n\t\t\"CommonType\": reflect.ValueOf((*gob.CommonType)(nil)),\n\t\t\"Decoder\":    reflect.ValueOf((*gob.Decoder)(nil)),\n\t\t\"Encoder\":    reflect.ValueOf((*gob.Encoder)(nil)),\n\t\t\"GobDecoder\": reflect.ValueOf((*gob.GobDecoder)(nil)),\n\t\t\"GobEncoder\": reflect.ValueOf((*gob.GobEncoder)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_GobDecoder\": reflect.ValueOf((*_encoding_gob_GobDecoder)(nil)),\n\t\t\"_GobEncoder\": reflect.ValueOf((*_encoding_gob_GobEncoder)(nil)),\n\t}\n}\n\n// _encoding_gob_GobDecoder is an interface wrapper for GobDecoder type\ntype _encoding_gob_GobDecoder struct {\n\tIValue     interface{}\n\tWGobDecode func(a0 []byte) error\n}\n\nfunc (W _encoding_gob_GobDecoder) GobDecode(a0 []byte) error { return W.WGobDecode(a0) }\n\n// _encoding_gob_GobEncoder is an interface wrapper for GobEncoder type\ntype _encoding_gob_GobEncoder struct {\n\tIValue     interface{}\n\tWGobEncode func() ([]byte, error)\n}\n\nfunc (W _encoding_gob_GobEncoder) GobEncode() ([]byte, error) { return W.WGobEncode() }\n"
  },
  {
    "path": "stdlib/go1_22_encoding_hex.go",
    "content": "// Code generated by 'yaegi extract encoding/hex'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/hex\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/hex/hex\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AppendDecode\":   reflect.ValueOf(hex.AppendDecode),\n\t\t\"AppendEncode\":   reflect.ValueOf(hex.AppendEncode),\n\t\t\"Decode\":         reflect.ValueOf(hex.Decode),\n\t\t\"DecodeString\":   reflect.ValueOf(hex.DecodeString),\n\t\t\"DecodedLen\":     reflect.ValueOf(hex.DecodedLen),\n\t\t\"Dump\":           reflect.ValueOf(hex.Dump),\n\t\t\"Dumper\":         reflect.ValueOf(hex.Dumper),\n\t\t\"Encode\":         reflect.ValueOf(hex.Encode),\n\t\t\"EncodeToString\": reflect.ValueOf(hex.EncodeToString),\n\t\t\"EncodedLen\":     reflect.ValueOf(hex.EncodedLen),\n\t\t\"ErrLength\":      reflect.ValueOf(&hex.ErrLength).Elem(),\n\t\t\"NewDecoder\":     reflect.ValueOf(hex.NewDecoder),\n\t\t\"NewEncoder\":     reflect.ValueOf(hex.NewEncoder),\n\n\t\t// type definitions\n\t\t\"InvalidByteError\": reflect.ValueOf((*hex.InvalidByteError)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_encoding_json.go",
    "content": "// Code generated by 'yaegi extract encoding/json'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/json\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/json/json\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Compact\":       reflect.ValueOf(json.Compact),\n\t\t\"HTMLEscape\":    reflect.ValueOf(json.HTMLEscape),\n\t\t\"Indent\":        reflect.ValueOf(json.Indent),\n\t\t\"Marshal\":       reflect.ValueOf(json.Marshal),\n\t\t\"MarshalIndent\": reflect.ValueOf(json.MarshalIndent),\n\t\t\"NewDecoder\":    reflect.ValueOf(json.NewDecoder),\n\t\t\"NewEncoder\":    reflect.ValueOf(json.NewEncoder),\n\t\t\"Unmarshal\":     reflect.ValueOf(json.Unmarshal),\n\t\t\"Valid\":         reflect.ValueOf(json.Valid),\n\n\t\t// type definitions\n\t\t\"Decoder\":               reflect.ValueOf((*json.Decoder)(nil)),\n\t\t\"Delim\":                 reflect.ValueOf((*json.Delim)(nil)),\n\t\t\"Encoder\":               reflect.ValueOf((*json.Encoder)(nil)),\n\t\t\"InvalidUTF8Error\":      reflect.ValueOf((*json.InvalidUTF8Error)(nil)),\n\t\t\"InvalidUnmarshalError\": reflect.ValueOf((*json.InvalidUnmarshalError)(nil)),\n\t\t\"Marshaler\":             reflect.ValueOf((*json.Marshaler)(nil)),\n\t\t\"MarshalerError\":        reflect.ValueOf((*json.MarshalerError)(nil)),\n\t\t\"Number\":                reflect.ValueOf((*json.Number)(nil)),\n\t\t\"RawMessage\":            reflect.ValueOf((*json.RawMessage)(nil)),\n\t\t\"SyntaxError\":           reflect.ValueOf((*json.SyntaxError)(nil)),\n\t\t\"Token\":                 reflect.ValueOf((*json.Token)(nil)),\n\t\t\"UnmarshalFieldError\":   reflect.ValueOf((*json.UnmarshalFieldError)(nil)),\n\t\t\"UnmarshalTypeError\":    reflect.ValueOf((*json.UnmarshalTypeError)(nil)),\n\t\t\"Unmarshaler\":           reflect.ValueOf((*json.Unmarshaler)(nil)),\n\t\t\"UnsupportedTypeError\":  reflect.ValueOf((*json.UnsupportedTypeError)(nil)),\n\t\t\"UnsupportedValueError\": reflect.ValueOf((*json.UnsupportedValueError)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Marshaler\":   reflect.ValueOf((*_encoding_json_Marshaler)(nil)),\n\t\t\"_Token\":       reflect.ValueOf((*_encoding_json_Token)(nil)),\n\t\t\"_Unmarshaler\": reflect.ValueOf((*_encoding_json_Unmarshaler)(nil)),\n\t}\n}\n\n// _encoding_json_Marshaler is an interface wrapper for Marshaler type\ntype _encoding_json_Marshaler struct {\n\tIValue       interface{}\n\tWMarshalJSON func() ([]byte, error)\n}\n\nfunc (W _encoding_json_Marshaler) MarshalJSON() ([]byte, error) { return W.WMarshalJSON() }\n\n// _encoding_json_Token is an interface wrapper for Token type\ntype _encoding_json_Token struct {\n\tIValue interface{}\n}\n\n// _encoding_json_Unmarshaler is an interface wrapper for Unmarshaler type\ntype _encoding_json_Unmarshaler struct {\n\tIValue         interface{}\n\tWUnmarshalJSON func(a0 []byte) error\n}\n\nfunc (W _encoding_json_Unmarshaler) UnmarshalJSON(a0 []byte) error { return W.WUnmarshalJSON(a0) }\n"
  },
  {
    "path": "stdlib/go1_22_encoding_pem.go",
    "content": "// Code generated by 'yaegi extract encoding/pem'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/pem\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/pem/pem\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Decode\":         reflect.ValueOf(pem.Decode),\n\t\t\"Encode\":         reflect.ValueOf(pem.Encode),\n\t\t\"EncodeToMemory\": reflect.ValueOf(pem.EncodeToMemory),\n\n\t\t// type definitions\n\t\t\"Block\": reflect.ValueOf((*pem.Block)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_encoding_xml.go",
    "content": "// Code generated by 'yaegi extract encoding/xml'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"encoding/xml\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"encoding/xml/xml\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"CopyToken\":       reflect.ValueOf(xml.CopyToken),\n\t\t\"Escape\":          reflect.ValueOf(xml.Escape),\n\t\t\"EscapeText\":      reflect.ValueOf(xml.EscapeText),\n\t\t\"HTMLAutoClose\":   reflect.ValueOf(&xml.HTMLAutoClose).Elem(),\n\t\t\"HTMLEntity\":      reflect.ValueOf(&xml.HTMLEntity).Elem(),\n\t\t\"Header\":          reflect.ValueOf(constant.MakeFromLiteral(\"\\\"<?xml version=\\\\\\\"1.0\\\\\\\" encoding=\\\\\\\"UTF-8\\\\\\\"?>\\\\n\\\"\", token.STRING, 0)),\n\t\t\"Marshal\":         reflect.ValueOf(xml.Marshal),\n\t\t\"MarshalIndent\":   reflect.ValueOf(xml.MarshalIndent),\n\t\t\"NewDecoder\":      reflect.ValueOf(xml.NewDecoder),\n\t\t\"NewEncoder\":      reflect.ValueOf(xml.NewEncoder),\n\t\t\"NewTokenDecoder\": reflect.ValueOf(xml.NewTokenDecoder),\n\t\t\"Unmarshal\":       reflect.ValueOf(xml.Unmarshal),\n\n\t\t// type definitions\n\t\t\"Attr\":                 reflect.ValueOf((*xml.Attr)(nil)),\n\t\t\"CharData\":             reflect.ValueOf((*xml.CharData)(nil)),\n\t\t\"Comment\":              reflect.ValueOf((*xml.Comment)(nil)),\n\t\t\"Decoder\":              reflect.ValueOf((*xml.Decoder)(nil)),\n\t\t\"Directive\":            reflect.ValueOf((*xml.Directive)(nil)),\n\t\t\"Encoder\":              reflect.ValueOf((*xml.Encoder)(nil)),\n\t\t\"EndElement\":           reflect.ValueOf((*xml.EndElement)(nil)),\n\t\t\"Marshaler\":            reflect.ValueOf((*xml.Marshaler)(nil)),\n\t\t\"MarshalerAttr\":        reflect.ValueOf((*xml.MarshalerAttr)(nil)),\n\t\t\"Name\":                 reflect.ValueOf((*xml.Name)(nil)),\n\t\t\"ProcInst\":             reflect.ValueOf((*xml.ProcInst)(nil)),\n\t\t\"StartElement\":         reflect.ValueOf((*xml.StartElement)(nil)),\n\t\t\"SyntaxError\":          reflect.ValueOf((*xml.SyntaxError)(nil)),\n\t\t\"TagPathError\":         reflect.ValueOf((*xml.TagPathError)(nil)),\n\t\t\"Token\":                reflect.ValueOf((*xml.Token)(nil)),\n\t\t\"TokenReader\":          reflect.ValueOf((*xml.TokenReader)(nil)),\n\t\t\"UnmarshalError\":       reflect.ValueOf((*xml.UnmarshalError)(nil)),\n\t\t\"Unmarshaler\":          reflect.ValueOf((*xml.Unmarshaler)(nil)),\n\t\t\"UnmarshalerAttr\":      reflect.ValueOf((*xml.UnmarshalerAttr)(nil)),\n\t\t\"UnsupportedTypeError\": reflect.ValueOf((*xml.UnsupportedTypeError)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Marshaler\":       reflect.ValueOf((*_encoding_xml_Marshaler)(nil)),\n\t\t\"_MarshalerAttr\":   reflect.ValueOf((*_encoding_xml_MarshalerAttr)(nil)),\n\t\t\"_Token\":           reflect.ValueOf((*_encoding_xml_Token)(nil)),\n\t\t\"_TokenReader\":     reflect.ValueOf((*_encoding_xml_TokenReader)(nil)),\n\t\t\"_Unmarshaler\":     reflect.ValueOf((*_encoding_xml_Unmarshaler)(nil)),\n\t\t\"_UnmarshalerAttr\": reflect.ValueOf((*_encoding_xml_UnmarshalerAttr)(nil)),\n\t}\n}\n\n// _encoding_xml_Marshaler is an interface wrapper for Marshaler type\ntype _encoding_xml_Marshaler struct {\n\tIValue      interface{}\n\tWMarshalXML func(e *xml.Encoder, start xml.StartElement) error\n}\n\nfunc (W _encoding_xml_Marshaler) MarshalXML(e *xml.Encoder, start xml.StartElement) error {\n\treturn W.WMarshalXML(e, start)\n}\n\n// _encoding_xml_MarshalerAttr is an interface wrapper for MarshalerAttr type\ntype _encoding_xml_MarshalerAttr struct {\n\tIValue          interface{}\n\tWMarshalXMLAttr func(name xml.Name) (xml.Attr, error)\n}\n\nfunc (W _encoding_xml_MarshalerAttr) MarshalXMLAttr(name xml.Name) (xml.Attr, error) {\n\treturn W.WMarshalXMLAttr(name)\n}\n\n// _encoding_xml_Token is an interface wrapper for Token type\ntype _encoding_xml_Token struct {\n\tIValue interface{}\n}\n\n// _encoding_xml_TokenReader is an interface wrapper for TokenReader type\ntype _encoding_xml_TokenReader struct {\n\tIValue interface{}\n\tWToken func() (xml.Token, error)\n}\n\nfunc (W _encoding_xml_TokenReader) Token() (xml.Token, error) { return W.WToken() }\n\n// _encoding_xml_Unmarshaler is an interface wrapper for Unmarshaler type\ntype _encoding_xml_Unmarshaler struct {\n\tIValue        interface{}\n\tWUnmarshalXML func(d *xml.Decoder, start xml.StartElement) error\n}\n\nfunc (W _encoding_xml_Unmarshaler) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {\n\treturn W.WUnmarshalXML(d, start)\n}\n\n// _encoding_xml_UnmarshalerAttr is an interface wrapper for UnmarshalerAttr type\ntype _encoding_xml_UnmarshalerAttr struct {\n\tIValue            interface{}\n\tWUnmarshalXMLAttr func(attr xml.Attr) error\n}\n\nfunc (W _encoding_xml_UnmarshalerAttr) UnmarshalXMLAttr(attr xml.Attr) error {\n\treturn W.WUnmarshalXMLAttr(attr)\n}\n"
  },
  {
    "path": "stdlib/go1_22_errors.go",
    "content": "// Code generated by 'yaegi extract errors'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"errors\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"errors/errors\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"As\":             reflect.ValueOf(errors.As),\n\t\t\"ErrUnsupported\": reflect.ValueOf(&errors.ErrUnsupported).Elem(),\n\t\t\"Is\":             reflect.ValueOf(errors.Is),\n\t\t\"Join\":           reflect.ValueOf(errors.Join),\n\t\t\"New\":            reflect.ValueOf(errors.New),\n\t\t\"Unwrap\":         reflect.ValueOf(errors.Unwrap),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_expvar.go",
    "content": "// Code generated by 'yaegi extract expvar'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"expvar\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"expvar/expvar\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Do\":        reflect.ValueOf(expvar.Do),\n\t\t\"Get\":       reflect.ValueOf(expvar.Get),\n\t\t\"Handler\":   reflect.ValueOf(expvar.Handler),\n\t\t\"NewFloat\":  reflect.ValueOf(expvar.NewFloat),\n\t\t\"NewInt\":    reflect.ValueOf(expvar.NewInt),\n\t\t\"NewMap\":    reflect.ValueOf(expvar.NewMap),\n\t\t\"NewString\": reflect.ValueOf(expvar.NewString),\n\t\t\"Publish\":   reflect.ValueOf(expvar.Publish),\n\n\t\t// type definitions\n\t\t\"Float\":    reflect.ValueOf((*expvar.Float)(nil)),\n\t\t\"Func\":     reflect.ValueOf((*expvar.Func)(nil)),\n\t\t\"Int\":      reflect.ValueOf((*expvar.Int)(nil)),\n\t\t\"KeyValue\": reflect.ValueOf((*expvar.KeyValue)(nil)),\n\t\t\"Map\":      reflect.ValueOf((*expvar.Map)(nil)),\n\t\t\"String\":   reflect.ValueOf((*expvar.String)(nil)),\n\t\t\"Var\":      reflect.ValueOf((*expvar.Var)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Var\": reflect.ValueOf((*_expvar_Var)(nil)),\n\t}\n}\n\n// _expvar_Var is an interface wrapper for Var type\ntype _expvar_Var struct {\n\tIValue  interface{}\n\tWString func() string\n}\n\nfunc (W _expvar_Var) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n"
  },
  {
    "path": "stdlib/go1_22_flag.go",
    "content": "// Code generated by 'yaegi extract flag'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"flag\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"flag/flag\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Arg\":             reflect.ValueOf(flag.Arg),\n\t\t\"Args\":            reflect.ValueOf(flag.Args),\n\t\t\"Bool\":            reflect.ValueOf(flag.Bool),\n\t\t\"BoolFunc\":        reflect.ValueOf(flag.BoolFunc),\n\t\t\"BoolVar\":         reflect.ValueOf(flag.BoolVar),\n\t\t\"CommandLine\":     reflect.ValueOf(&flag.CommandLine).Elem(),\n\t\t\"ContinueOnError\": reflect.ValueOf(flag.ContinueOnError),\n\t\t\"Duration\":        reflect.ValueOf(flag.Duration),\n\t\t\"DurationVar\":     reflect.ValueOf(flag.DurationVar),\n\t\t\"ErrHelp\":         reflect.ValueOf(&flag.ErrHelp).Elem(),\n\t\t\"ExitOnError\":     reflect.ValueOf(flag.ExitOnError),\n\t\t\"Float64\":         reflect.ValueOf(flag.Float64),\n\t\t\"Float64Var\":      reflect.ValueOf(flag.Float64Var),\n\t\t\"Func\":            reflect.ValueOf(flag.Func),\n\t\t\"Int\":             reflect.ValueOf(flag.Int),\n\t\t\"Int64\":           reflect.ValueOf(flag.Int64),\n\t\t\"Int64Var\":        reflect.ValueOf(flag.Int64Var),\n\t\t\"IntVar\":          reflect.ValueOf(flag.IntVar),\n\t\t\"Lookup\":          reflect.ValueOf(flag.Lookup),\n\t\t\"NArg\":            reflect.ValueOf(flag.NArg),\n\t\t\"NFlag\":           reflect.ValueOf(flag.NFlag),\n\t\t\"NewFlagSet\":      reflect.ValueOf(flag.NewFlagSet),\n\t\t\"PanicOnError\":    reflect.ValueOf(flag.PanicOnError),\n\t\t\"Parse\":           reflect.ValueOf(flag.Parse),\n\t\t\"Parsed\":          reflect.ValueOf(flag.Parsed),\n\t\t\"PrintDefaults\":   reflect.ValueOf(flag.PrintDefaults),\n\t\t\"Set\":             reflect.ValueOf(flag.Set),\n\t\t\"String\":          reflect.ValueOf(flag.String),\n\t\t\"StringVar\":       reflect.ValueOf(flag.StringVar),\n\t\t\"TextVar\":         reflect.ValueOf(flag.TextVar),\n\t\t\"Uint\":            reflect.ValueOf(flag.Uint),\n\t\t\"Uint64\":          reflect.ValueOf(flag.Uint64),\n\t\t\"Uint64Var\":       reflect.ValueOf(flag.Uint64Var),\n\t\t\"UintVar\":         reflect.ValueOf(flag.UintVar),\n\t\t\"UnquoteUsage\":    reflect.ValueOf(flag.UnquoteUsage),\n\t\t\"Usage\":           reflect.ValueOf(&flag.Usage).Elem(),\n\t\t\"Var\":             reflect.ValueOf(flag.Var),\n\t\t\"Visit\":           reflect.ValueOf(flag.Visit),\n\t\t\"VisitAll\":        reflect.ValueOf(flag.VisitAll),\n\n\t\t// type definitions\n\t\t\"ErrorHandling\": reflect.ValueOf((*flag.ErrorHandling)(nil)),\n\t\t\"Flag\":          reflect.ValueOf((*flag.Flag)(nil)),\n\t\t\"FlagSet\":       reflect.ValueOf((*flag.FlagSet)(nil)),\n\t\t\"Getter\":        reflect.ValueOf((*flag.Getter)(nil)),\n\t\t\"Value\":         reflect.ValueOf((*flag.Value)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Getter\": reflect.ValueOf((*_flag_Getter)(nil)),\n\t\t\"_Value\":  reflect.ValueOf((*_flag_Value)(nil)),\n\t}\n}\n\n// _flag_Getter is an interface wrapper for Getter type\ntype _flag_Getter struct {\n\tIValue  interface{}\n\tWGet    func() any\n\tWSet    func(a0 string) error\n\tWString func() string\n}\n\nfunc (W _flag_Getter) Get() any            { return W.WGet() }\nfunc (W _flag_Getter) Set(a0 string) error { return W.WSet(a0) }\nfunc (W _flag_Getter) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n\n// _flag_Value is an interface wrapper for Value type\ntype _flag_Value struct {\n\tIValue  interface{}\n\tWSet    func(a0 string) error\n\tWString func() string\n}\n\nfunc (W _flag_Value) Set(a0 string) error { return W.WSet(a0) }\nfunc (W _flag_Value) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n"
  },
  {
    "path": "stdlib/go1_22_fmt.go",
    "content": "// Code generated by 'yaegi extract fmt'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"fmt\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"fmt/fmt\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Append\":       reflect.ValueOf(fmt.Append),\n\t\t\"Appendf\":      reflect.ValueOf(fmt.Appendf),\n\t\t\"Appendln\":     reflect.ValueOf(fmt.Appendln),\n\t\t\"Errorf\":       reflect.ValueOf(fmt.Errorf),\n\t\t\"FormatString\": reflect.ValueOf(fmt.FormatString),\n\t\t\"Fprint\":       reflect.ValueOf(fmt.Fprint),\n\t\t\"Fprintf\":      reflect.ValueOf(fmt.Fprintf),\n\t\t\"Fprintln\":     reflect.ValueOf(fmt.Fprintln),\n\t\t\"Fscan\":        reflect.ValueOf(fmt.Fscan),\n\t\t\"Fscanf\":       reflect.ValueOf(fmt.Fscanf),\n\t\t\"Fscanln\":      reflect.ValueOf(fmt.Fscanln),\n\t\t\"Print\":        reflect.ValueOf(fmt.Print),\n\t\t\"Printf\":       reflect.ValueOf(fmt.Printf),\n\t\t\"Println\":      reflect.ValueOf(fmt.Println),\n\t\t\"Scan\":         reflect.ValueOf(fmt.Scan),\n\t\t\"Scanf\":        reflect.ValueOf(fmt.Scanf),\n\t\t\"Scanln\":       reflect.ValueOf(fmt.Scanln),\n\t\t\"Sprint\":       reflect.ValueOf(fmt.Sprint),\n\t\t\"Sprintf\":      reflect.ValueOf(fmt.Sprintf),\n\t\t\"Sprintln\":     reflect.ValueOf(fmt.Sprintln),\n\t\t\"Sscan\":        reflect.ValueOf(fmt.Sscan),\n\t\t\"Sscanf\":       reflect.ValueOf(fmt.Sscanf),\n\t\t\"Sscanln\":      reflect.ValueOf(fmt.Sscanln),\n\n\t\t// type definitions\n\t\t\"Formatter\":  reflect.ValueOf((*fmt.Formatter)(nil)),\n\t\t\"GoStringer\": reflect.ValueOf((*fmt.GoStringer)(nil)),\n\t\t\"ScanState\":  reflect.ValueOf((*fmt.ScanState)(nil)),\n\t\t\"Scanner\":    reflect.ValueOf((*fmt.Scanner)(nil)),\n\t\t\"State\":      reflect.ValueOf((*fmt.State)(nil)),\n\t\t\"Stringer\":   reflect.ValueOf((*fmt.Stringer)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Formatter\":  reflect.ValueOf((*_fmt_Formatter)(nil)),\n\t\t\"_GoStringer\": reflect.ValueOf((*_fmt_GoStringer)(nil)),\n\t\t\"_ScanState\":  reflect.ValueOf((*_fmt_ScanState)(nil)),\n\t\t\"_Scanner\":    reflect.ValueOf((*_fmt_Scanner)(nil)),\n\t\t\"_State\":      reflect.ValueOf((*_fmt_State)(nil)),\n\t\t\"_Stringer\":   reflect.ValueOf((*_fmt_Stringer)(nil)),\n\t}\n}\n\n// _fmt_Formatter is an interface wrapper for Formatter type\ntype _fmt_Formatter struct {\n\tIValue  interface{}\n\tWFormat func(f fmt.State, verb rune)\n}\n\nfunc (W _fmt_Formatter) Format(f fmt.State, verb rune) { W.WFormat(f, verb) }\n\n// _fmt_GoStringer is an interface wrapper for GoStringer type\ntype _fmt_GoStringer struct {\n\tIValue    interface{}\n\tWGoString func() string\n}\n\nfunc (W _fmt_GoStringer) GoString() string { return W.WGoString() }\n\n// _fmt_ScanState is an interface wrapper for ScanState type\ntype _fmt_ScanState struct {\n\tIValue      interface{}\n\tWRead       func(buf []byte) (n int, err error)\n\tWReadRune   func() (r rune, size int, err error)\n\tWSkipSpace  func()\n\tWToken      func(skipSpace bool, f func(rune) bool) (token []byte, err error)\n\tWUnreadRune func() error\n\tWWidth      func() (wid int, ok bool)\n}\n\nfunc (W _fmt_ScanState) Read(buf []byte) (n int, err error)      { return W.WRead(buf) }\nfunc (W _fmt_ScanState) ReadRune() (r rune, size int, err error) { return W.WReadRune() }\nfunc (W _fmt_ScanState) SkipSpace()                              { W.WSkipSpace() }\nfunc (W _fmt_ScanState) Token(skipSpace bool, f func(rune) bool) (token []byte, err error) {\n\treturn W.WToken(skipSpace, f)\n}\nfunc (W _fmt_ScanState) UnreadRune() error         { return W.WUnreadRune() }\nfunc (W _fmt_ScanState) Width() (wid int, ok bool) { return W.WWidth() }\n\n// _fmt_Scanner is an interface wrapper for Scanner type\ntype _fmt_Scanner struct {\n\tIValue interface{}\n\tWScan  func(state fmt.ScanState, verb rune) error\n}\n\nfunc (W _fmt_Scanner) Scan(state fmt.ScanState, verb rune) error { return W.WScan(state, verb) }\n\n// _fmt_State is an interface wrapper for State type\ntype _fmt_State struct {\n\tIValue     interface{}\n\tWFlag      func(c int) bool\n\tWPrecision func() (prec int, ok bool)\n\tWWidth     func() (wid int, ok bool)\n\tWWrite     func(b []byte) (n int, err error)\n}\n\nfunc (W _fmt_State) Flag(c int) bool                   { return W.WFlag(c) }\nfunc (W _fmt_State) Precision() (prec int, ok bool)    { return W.WPrecision() }\nfunc (W _fmt_State) Width() (wid int, ok bool)         { return W.WWidth() }\nfunc (W _fmt_State) Write(b []byte) (n int, err error) { return W.WWrite(b) }\n\n// _fmt_Stringer is an interface wrapper for Stringer type\ntype _fmt_Stringer struct {\n\tIValue  interface{}\n\tWString func() string\n}\n\nfunc (W _fmt_Stringer) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n"
  },
  {
    "path": "stdlib/go1_22_go_ast.go",
    "content": "// Code generated by 'yaegi extract go/ast'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/ast\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/ast/ast\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Bad\":                        reflect.ValueOf(ast.Bad),\n\t\t\"Con\":                        reflect.ValueOf(ast.Con),\n\t\t\"FileExports\":                reflect.ValueOf(ast.FileExports),\n\t\t\"FilterDecl\":                 reflect.ValueOf(ast.FilterDecl),\n\t\t\"FilterFile\":                 reflect.ValueOf(ast.FilterFile),\n\t\t\"FilterFuncDuplicates\":       reflect.ValueOf(ast.FilterFuncDuplicates),\n\t\t\"FilterImportDuplicates\":     reflect.ValueOf(ast.FilterImportDuplicates),\n\t\t\"FilterPackage\":              reflect.ValueOf(ast.FilterPackage),\n\t\t\"FilterUnassociatedComments\": reflect.ValueOf(ast.FilterUnassociatedComments),\n\t\t\"Fprint\":                     reflect.ValueOf(ast.Fprint),\n\t\t\"Fun\":                        reflect.ValueOf(ast.Fun),\n\t\t\"Inspect\":                    reflect.ValueOf(ast.Inspect),\n\t\t\"IsExported\":                 reflect.ValueOf(ast.IsExported),\n\t\t\"IsGenerated\":                reflect.ValueOf(ast.IsGenerated),\n\t\t\"Lbl\":                        reflect.ValueOf(ast.Lbl),\n\t\t\"MergePackageFiles\":          reflect.ValueOf(ast.MergePackageFiles),\n\t\t\"NewCommentMap\":              reflect.ValueOf(ast.NewCommentMap),\n\t\t\"NewIdent\":                   reflect.ValueOf(ast.NewIdent),\n\t\t\"NewObj\":                     reflect.ValueOf(ast.NewObj),\n\t\t\"NewPackage\":                 reflect.ValueOf(ast.NewPackage),\n\t\t\"NewScope\":                   reflect.ValueOf(ast.NewScope),\n\t\t\"NotNilFilter\":               reflect.ValueOf(ast.NotNilFilter),\n\t\t\"PackageExports\":             reflect.ValueOf(ast.PackageExports),\n\t\t\"Pkg\":                        reflect.ValueOf(ast.Pkg),\n\t\t\"Print\":                      reflect.ValueOf(ast.Print),\n\t\t\"RECV\":                       reflect.ValueOf(ast.RECV),\n\t\t\"SEND\":                       reflect.ValueOf(ast.SEND),\n\t\t\"SortImports\":                reflect.ValueOf(ast.SortImports),\n\t\t\"Typ\":                        reflect.ValueOf(ast.Typ),\n\t\t\"Unparen\":                    reflect.ValueOf(ast.Unparen),\n\t\t\"Var\":                        reflect.ValueOf(ast.Var),\n\t\t\"Walk\":                       reflect.ValueOf(ast.Walk),\n\n\t\t// type definitions\n\t\t\"ArrayType\":      reflect.ValueOf((*ast.ArrayType)(nil)),\n\t\t\"AssignStmt\":     reflect.ValueOf((*ast.AssignStmt)(nil)),\n\t\t\"BadDecl\":        reflect.ValueOf((*ast.BadDecl)(nil)),\n\t\t\"BadExpr\":        reflect.ValueOf((*ast.BadExpr)(nil)),\n\t\t\"BadStmt\":        reflect.ValueOf((*ast.BadStmt)(nil)),\n\t\t\"BasicLit\":       reflect.ValueOf((*ast.BasicLit)(nil)),\n\t\t\"BinaryExpr\":     reflect.ValueOf((*ast.BinaryExpr)(nil)),\n\t\t\"BlockStmt\":      reflect.ValueOf((*ast.BlockStmt)(nil)),\n\t\t\"BranchStmt\":     reflect.ValueOf((*ast.BranchStmt)(nil)),\n\t\t\"CallExpr\":       reflect.ValueOf((*ast.CallExpr)(nil)),\n\t\t\"CaseClause\":     reflect.ValueOf((*ast.CaseClause)(nil)),\n\t\t\"ChanDir\":        reflect.ValueOf((*ast.ChanDir)(nil)),\n\t\t\"ChanType\":       reflect.ValueOf((*ast.ChanType)(nil)),\n\t\t\"CommClause\":     reflect.ValueOf((*ast.CommClause)(nil)),\n\t\t\"Comment\":        reflect.ValueOf((*ast.Comment)(nil)),\n\t\t\"CommentGroup\":   reflect.ValueOf((*ast.CommentGroup)(nil)),\n\t\t\"CommentMap\":     reflect.ValueOf((*ast.CommentMap)(nil)),\n\t\t\"CompositeLit\":   reflect.ValueOf((*ast.CompositeLit)(nil)),\n\t\t\"Decl\":           reflect.ValueOf((*ast.Decl)(nil)),\n\t\t\"DeclStmt\":       reflect.ValueOf((*ast.DeclStmt)(nil)),\n\t\t\"DeferStmt\":      reflect.ValueOf((*ast.DeferStmt)(nil)),\n\t\t\"Ellipsis\":       reflect.ValueOf((*ast.Ellipsis)(nil)),\n\t\t\"EmptyStmt\":      reflect.ValueOf((*ast.EmptyStmt)(nil)),\n\t\t\"Expr\":           reflect.ValueOf((*ast.Expr)(nil)),\n\t\t\"ExprStmt\":       reflect.ValueOf((*ast.ExprStmt)(nil)),\n\t\t\"Field\":          reflect.ValueOf((*ast.Field)(nil)),\n\t\t\"FieldFilter\":    reflect.ValueOf((*ast.FieldFilter)(nil)),\n\t\t\"FieldList\":      reflect.ValueOf((*ast.FieldList)(nil)),\n\t\t\"File\":           reflect.ValueOf((*ast.File)(nil)),\n\t\t\"Filter\":         reflect.ValueOf((*ast.Filter)(nil)),\n\t\t\"ForStmt\":        reflect.ValueOf((*ast.ForStmt)(nil)),\n\t\t\"FuncDecl\":       reflect.ValueOf((*ast.FuncDecl)(nil)),\n\t\t\"FuncLit\":        reflect.ValueOf((*ast.FuncLit)(nil)),\n\t\t\"FuncType\":       reflect.ValueOf((*ast.FuncType)(nil)),\n\t\t\"GenDecl\":        reflect.ValueOf((*ast.GenDecl)(nil)),\n\t\t\"GoStmt\":         reflect.ValueOf((*ast.GoStmt)(nil)),\n\t\t\"Ident\":          reflect.ValueOf((*ast.Ident)(nil)),\n\t\t\"IfStmt\":         reflect.ValueOf((*ast.IfStmt)(nil)),\n\t\t\"ImportSpec\":     reflect.ValueOf((*ast.ImportSpec)(nil)),\n\t\t\"Importer\":       reflect.ValueOf((*ast.Importer)(nil)),\n\t\t\"IncDecStmt\":     reflect.ValueOf((*ast.IncDecStmt)(nil)),\n\t\t\"IndexExpr\":      reflect.ValueOf((*ast.IndexExpr)(nil)),\n\t\t\"IndexListExpr\":  reflect.ValueOf((*ast.IndexListExpr)(nil)),\n\t\t\"InterfaceType\":  reflect.ValueOf((*ast.InterfaceType)(nil)),\n\t\t\"KeyValueExpr\":   reflect.ValueOf((*ast.KeyValueExpr)(nil)),\n\t\t\"LabeledStmt\":    reflect.ValueOf((*ast.LabeledStmt)(nil)),\n\t\t\"MapType\":        reflect.ValueOf((*ast.MapType)(nil)),\n\t\t\"MergeMode\":      reflect.ValueOf((*ast.MergeMode)(nil)),\n\t\t\"Node\":           reflect.ValueOf((*ast.Node)(nil)),\n\t\t\"ObjKind\":        reflect.ValueOf((*ast.ObjKind)(nil)),\n\t\t\"Object\":         reflect.ValueOf((*ast.Object)(nil)),\n\t\t\"Package\":        reflect.ValueOf((*ast.Package)(nil)),\n\t\t\"ParenExpr\":      reflect.ValueOf((*ast.ParenExpr)(nil)),\n\t\t\"RangeStmt\":      reflect.ValueOf((*ast.RangeStmt)(nil)),\n\t\t\"ReturnStmt\":     reflect.ValueOf((*ast.ReturnStmt)(nil)),\n\t\t\"Scope\":          reflect.ValueOf((*ast.Scope)(nil)),\n\t\t\"SelectStmt\":     reflect.ValueOf((*ast.SelectStmt)(nil)),\n\t\t\"SelectorExpr\":   reflect.ValueOf((*ast.SelectorExpr)(nil)),\n\t\t\"SendStmt\":       reflect.ValueOf((*ast.SendStmt)(nil)),\n\t\t\"SliceExpr\":      reflect.ValueOf((*ast.SliceExpr)(nil)),\n\t\t\"Spec\":           reflect.ValueOf((*ast.Spec)(nil)),\n\t\t\"StarExpr\":       reflect.ValueOf((*ast.StarExpr)(nil)),\n\t\t\"Stmt\":           reflect.ValueOf((*ast.Stmt)(nil)),\n\t\t\"StructType\":     reflect.ValueOf((*ast.StructType)(nil)),\n\t\t\"SwitchStmt\":     reflect.ValueOf((*ast.SwitchStmt)(nil)),\n\t\t\"TypeAssertExpr\": reflect.ValueOf((*ast.TypeAssertExpr)(nil)),\n\t\t\"TypeSpec\":       reflect.ValueOf((*ast.TypeSpec)(nil)),\n\t\t\"TypeSwitchStmt\": reflect.ValueOf((*ast.TypeSwitchStmt)(nil)),\n\t\t\"UnaryExpr\":      reflect.ValueOf((*ast.UnaryExpr)(nil)),\n\t\t\"ValueSpec\":      reflect.ValueOf((*ast.ValueSpec)(nil)),\n\t\t\"Visitor\":        reflect.ValueOf((*ast.Visitor)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Decl\":    reflect.ValueOf((*_go_ast_Decl)(nil)),\n\t\t\"_Expr\":    reflect.ValueOf((*_go_ast_Expr)(nil)),\n\t\t\"_Node\":    reflect.ValueOf((*_go_ast_Node)(nil)),\n\t\t\"_Spec\":    reflect.ValueOf((*_go_ast_Spec)(nil)),\n\t\t\"_Stmt\":    reflect.ValueOf((*_go_ast_Stmt)(nil)),\n\t\t\"_Visitor\": reflect.ValueOf((*_go_ast_Visitor)(nil)),\n\t}\n}\n\n// _go_ast_Decl is an interface wrapper for Decl type\ntype _go_ast_Decl struct {\n\tIValue interface{}\n\tWEnd   func() token.Pos\n\tWPos   func() token.Pos\n}\n\nfunc (W _go_ast_Decl) End() token.Pos { return W.WEnd() }\nfunc (W _go_ast_Decl) Pos() token.Pos { return W.WPos() }\n\n// _go_ast_Expr is an interface wrapper for Expr type\ntype _go_ast_Expr struct {\n\tIValue interface{}\n\tWEnd   func() token.Pos\n\tWPos   func() token.Pos\n}\n\nfunc (W _go_ast_Expr) End() token.Pos { return W.WEnd() }\nfunc (W _go_ast_Expr) Pos() token.Pos { return W.WPos() }\n\n// _go_ast_Node is an interface wrapper for Node type\ntype _go_ast_Node struct {\n\tIValue interface{}\n\tWEnd   func() token.Pos\n\tWPos   func() token.Pos\n}\n\nfunc (W _go_ast_Node) End() token.Pos { return W.WEnd() }\nfunc (W _go_ast_Node) Pos() token.Pos { return W.WPos() }\n\n// _go_ast_Spec is an interface wrapper for Spec type\ntype _go_ast_Spec struct {\n\tIValue interface{}\n\tWEnd   func() token.Pos\n\tWPos   func() token.Pos\n}\n\nfunc (W _go_ast_Spec) End() token.Pos { return W.WEnd() }\nfunc (W _go_ast_Spec) Pos() token.Pos { return W.WPos() }\n\n// _go_ast_Stmt is an interface wrapper for Stmt type\ntype _go_ast_Stmt struct {\n\tIValue interface{}\n\tWEnd   func() token.Pos\n\tWPos   func() token.Pos\n}\n\nfunc (W _go_ast_Stmt) End() token.Pos { return W.WEnd() }\nfunc (W _go_ast_Stmt) Pos() token.Pos { return W.WPos() }\n\n// _go_ast_Visitor is an interface wrapper for Visitor type\ntype _go_ast_Visitor struct {\n\tIValue interface{}\n\tWVisit func(node ast.Node) (w ast.Visitor)\n}\n\nfunc (W _go_ast_Visitor) Visit(node ast.Node) (w ast.Visitor) { return W.WVisit(node) }\n"
  },
  {
    "path": "stdlib/go1_22_go_build.go",
    "content": "// Code generated by 'yaegi extract go/build'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/build\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/build/build\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllowBinary\":   reflect.ValueOf(build.AllowBinary),\n\t\t\"ArchChar\":      reflect.ValueOf(build.ArchChar),\n\t\t\"Default\":       reflect.ValueOf(&build.Default).Elem(),\n\t\t\"FindOnly\":      reflect.ValueOf(build.FindOnly),\n\t\t\"IgnoreVendor\":  reflect.ValueOf(build.IgnoreVendor),\n\t\t\"Import\":        reflect.ValueOf(build.Import),\n\t\t\"ImportComment\": reflect.ValueOf(build.ImportComment),\n\t\t\"ImportDir\":     reflect.ValueOf(build.ImportDir),\n\t\t\"IsLocalImport\": reflect.ValueOf(build.IsLocalImport),\n\t\t\"ToolDir\":       reflect.ValueOf(&build.ToolDir).Elem(),\n\n\t\t// type definitions\n\t\t\"Context\":              reflect.ValueOf((*build.Context)(nil)),\n\t\t\"Directive\":            reflect.ValueOf((*build.Directive)(nil)),\n\t\t\"ImportMode\":           reflect.ValueOf((*build.ImportMode)(nil)),\n\t\t\"MultiplePackageError\": reflect.ValueOf((*build.MultiplePackageError)(nil)),\n\t\t\"NoGoError\":            reflect.ValueOf((*build.NoGoError)(nil)),\n\t\t\"Package\":              reflect.ValueOf((*build.Package)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_go_build_constraint.go",
    "content": "// Code generated by 'yaegi extract go/build/constraint'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/build/constraint\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/build/constraint/constraint\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"GoVersion\":      reflect.ValueOf(constraint.GoVersion),\n\t\t\"IsGoBuild\":      reflect.ValueOf(constraint.IsGoBuild),\n\t\t\"IsPlusBuild\":    reflect.ValueOf(constraint.IsPlusBuild),\n\t\t\"Parse\":          reflect.ValueOf(constraint.Parse),\n\t\t\"PlusBuildLines\": reflect.ValueOf(constraint.PlusBuildLines),\n\n\t\t// type definitions\n\t\t\"AndExpr\":     reflect.ValueOf((*constraint.AndExpr)(nil)),\n\t\t\"Expr\":        reflect.ValueOf((*constraint.Expr)(nil)),\n\t\t\"NotExpr\":     reflect.ValueOf((*constraint.NotExpr)(nil)),\n\t\t\"OrExpr\":      reflect.ValueOf((*constraint.OrExpr)(nil)),\n\t\t\"SyntaxError\": reflect.ValueOf((*constraint.SyntaxError)(nil)),\n\t\t\"TagExpr\":     reflect.ValueOf((*constraint.TagExpr)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Expr\": reflect.ValueOf((*_go_build_constraint_Expr)(nil)),\n\t}\n}\n\n// _go_build_constraint_Expr is an interface wrapper for Expr type\ntype _go_build_constraint_Expr struct {\n\tIValue  interface{}\n\tWEval   func(ok func(tag string) bool) bool\n\tWString func() string\n}\n\nfunc (W _go_build_constraint_Expr) Eval(ok func(tag string) bool) bool { return W.WEval(ok) }\nfunc (W _go_build_constraint_Expr) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n"
  },
  {
    "path": "stdlib/go1_22_go_constant.go",
    "content": "// Code generated by 'yaegi extract go/constant'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/constant/constant\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BinaryOp\":        reflect.ValueOf(constant.BinaryOp),\n\t\t\"BitLen\":          reflect.ValueOf(constant.BitLen),\n\t\t\"Bool\":            reflect.ValueOf(constant.Bool),\n\t\t\"BoolVal\":         reflect.ValueOf(constant.BoolVal),\n\t\t\"Bytes\":           reflect.ValueOf(constant.Bytes),\n\t\t\"Compare\":         reflect.ValueOf(constant.Compare),\n\t\t\"Complex\":         reflect.ValueOf(constant.Complex),\n\t\t\"Denom\":           reflect.ValueOf(constant.Denom),\n\t\t\"Float\":           reflect.ValueOf(constant.Float),\n\t\t\"Float32Val\":      reflect.ValueOf(constant.Float32Val),\n\t\t\"Float64Val\":      reflect.ValueOf(constant.Float64Val),\n\t\t\"Imag\":            reflect.ValueOf(constant.Imag),\n\t\t\"Int\":             reflect.ValueOf(constant.Int),\n\t\t\"Int64Val\":        reflect.ValueOf(constant.Int64Val),\n\t\t\"Make\":            reflect.ValueOf(constant.Make),\n\t\t\"MakeBool\":        reflect.ValueOf(constant.MakeBool),\n\t\t\"MakeFloat64\":     reflect.ValueOf(constant.MakeFloat64),\n\t\t\"MakeFromBytes\":   reflect.ValueOf(constant.MakeFromBytes),\n\t\t\"MakeFromLiteral\": reflect.ValueOf(constant.MakeFromLiteral),\n\t\t\"MakeImag\":        reflect.ValueOf(constant.MakeImag),\n\t\t\"MakeInt64\":       reflect.ValueOf(constant.MakeInt64),\n\t\t\"MakeString\":      reflect.ValueOf(constant.MakeString),\n\t\t\"MakeUint64\":      reflect.ValueOf(constant.MakeUint64),\n\t\t\"MakeUnknown\":     reflect.ValueOf(constant.MakeUnknown),\n\t\t\"Num\":             reflect.ValueOf(constant.Num),\n\t\t\"Real\":            reflect.ValueOf(constant.Real),\n\t\t\"Shift\":           reflect.ValueOf(constant.Shift),\n\t\t\"Sign\":            reflect.ValueOf(constant.Sign),\n\t\t\"String\":          reflect.ValueOf(constant.String),\n\t\t\"StringVal\":       reflect.ValueOf(constant.StringVal),\n\t\t\"ToComplex\":       reflect.ValueOf(constant.ToComplex),\n\t\t\"ToFloat\":         reflect.ValueOf(constant.ToFloat),\n\t\t\"ToInt\":           reflect.ValueOf(constant.ToInt),\n\t\t\"Uint64Val\":       reflect.ValueOf(constant.Uint64Val),\n\t\t\"UnaryOp\":         reflect.ValueOf(constant.UnaryOp),\n\t\t\"Unknown\":         reflect.ValueOf(constant.Unknown),\n\t\t\"Val\":             reflect.ValueOf(constant.Val),\n\n\t\t// type definitions\n\t\t\"Kind\":  reflect.ValueOf((*constant.Kind)(nil)),\n\t\t\"Value\": reflect.ValueOf((*constant.Value)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Value\": reflect.ValueOf((*_go_constant_Value)(nil)),\n\t}\n}\n\n// _go_constant_Value is an interface wrapper for Value type\ntype _go_constant_Value struct {\n\tIValue       interface{}\n\tWExactString func() string\n\tWKind        func() constant.Kind\n\tWString      func() string\n}\n\nfunc (W _go_constant_Value) ExactString() string { return W.WExactString() }\nfunc (W _go_constant_Value) Kind() constant.Kind { return W.WKind() }\nfunc (W _go_constant_Value) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n"
  },
  {
    "path": "stdlib/go1_22_go_doc.go",
    "content": "// Code generated by 'yaegi extract go/doc'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/doc\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/doc/doc\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllDecls\":        reflect.ValueOf(doc.AllDecls),\n\t\t\"AllMethods\":      reflect.ValueOf(doc.AllMethods),\n\t\t\"Examples\":        reflect.ValueOf(doc.Examples),\n\t\t\"IllegalPrefixes\": reflect.ValueOf(&doc.IllegalPrefixes).Elem(),\n\t\t\"IsPredeclared\":   reflect.ValueOf(doc.IsPredeclared),\n\t\t\"New\":             reflect.ValueOf(doc.New),\n\t\t\"NewFromFiles\":    reflect.ValueOf(doc.NewFromFiles),\n\t\t\"PreserveAST\":     reflect.ValueOf(doc.PreserveAST),\n\t\t\"Synopsis\":        reflect.ValueOf(doc.Synopsis),\n\t\t\"ToHTML\":          reflect.ValueOf(doc.ToHTML),\n\t\t\"ToText\":          reflect.ValueOf(doc.ToText),\n\n\t\t// type definitions\n\t\t\"Example\": reflect.ValueOf((*doc.Example)(nil)),\n\t\t\"Filter\":  reflect.ValueOf((*doc.Filter)(nil)),\n\t\t\"Func\":    reflect.ValueOf((*doc.Func)(nil)),\n\t\t\"Mode\":    reflect.ValueOf((*doc.Mode)(nil)),\n\t\t\"Note\":    reflect.ValueOf((*doc.Note)(nil)),\n\t\t\"Package\": reflect.ValueOf((*doc.Package)(nil)),\n\t\t\"Type\":    reflect.ValueOf((*doc.Type)(nil)),\n\t\t\"Value\":   reflect.ValueOf((*doc.Value)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_go_doc_comment.go",
    "content": "// Code generated by 'yaegi extract go/doc/comment'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/doc/comment\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/doc/comment/comment\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"DefaultLookupPackage\": reflect.ValueOf(comment.DefaultLookupPackage),\n\n\t\t// type definitions\n\t\t\"Block\":     reflect.ValueOf((*comment.Block)(nil)),\n\t\t\"Code\":      reflect.ValueOf((*comment.Code)(nil)),\n\t\t\"Doc\":       reflect.ValueOf((*comment.Doc)(nil)),\n\t\t\"DocLink\":   reflect.ValueOf((*comment.DocLink)(nil)),\n\t\t\"Heading\":   reflect.ValueOf((*comment.Heading)(nil)),\n\t\t\"Italic\":    reflect.ValueOf((*comment.Italic)(nil)),\n\t\t\"Link\":      reflect.ValueOf((*comment.Link)(nil)),\n\t\t\"LinkDef\":   reflect.ValueOf((*comment.LinkDef)(nil)),\n\t\t\"List\":      reflect.ValueOf((*comment.List)(nil)),\n\t\t\"ListItem\":  reflect.ValueOf((*comment.ListItem)(nil)),\n\t\t\"Paragraph\": reflect.ValueOf((*comment.Paragraph)(nil)),\n\t\t\"Parser\":    reflect.ValueOf((*comment.Parser)(nil)),\n\t\t\"Plain\":     reflect.ValueOf((*comment.Plain)(nil)),\n\t\t\"Printer\":   reflect.ValueOf((*comment.Printer)(nil)),\n\t\t\"Text\":      reflect.ValueOf((*comment.Text)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Block\": reflect.ValueOf((*_go_doc_comment_Block)(nil)),\n\t\t\"_Text\":  reflect.ValueOf((*_go_doc_comment_Text)(nil)),\n\t}\n}\n\n// _go_doc_comment_Block is an interface wrapper for Block type\ntype _go_doc_comment_Block struct {\n\tIValue interface{}\n}\n\n// _go_doc_comment_Text is an interface wrapper for Text type\ntype _go_doc_comment_Text struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/go1_22_go_format.go",
    "content": "// Code generated by 'yaegi extract go/format'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/format\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/format/format\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Node\":   reflect.ValueOf(format.Node),\n\t\t\"Source\": reflect.ValueOf(format.Source),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_go_importer.go",
    "content": "// Code generated by 'yaegi extract go/importer'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/importer\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/importer/importer\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Default\":     reflect.ValueOf(importer.Default),\n\t\t\"For\":         reflect.ValueOf(importer.For),\n\t\t\"ForCompiler\": reflect.ValueOf(importer.ForCompiler),\n\n\t\t// type definitions\n\t\t\"Lookup\": reflect.ValueOf((*importer.Lookup)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_go_parser.go",
    "content": "// Code generated by 'yaegi extract go/parser'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/parser\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/parser/parser\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllErrors\":            reflect.ValueOf(parser.AllErrors),\n\t\t\"DeclarationErrors\":    reflect.ValueOf(parser.DeclarationErrors),\n\t\t\"ImportsOnly\":          reflect.ValueOf(parser.ImportsOnly),\n\t\t\"PackageClauseOnly\":    reflect.ValueOf(parser.PackageClauseOnly),\n\t\t\"ParseComments\":        reflect.ValueOf(parser.ParseComments),\n\t\t\"ParseDir\":             reflect.ValueOf(parser.ParseDir),\n\t\t\"ParseExpr\":            reflect.ValueOf(parser.ParseExpr),\n\t\t\"ParseExprFrom\":        reflect.ValueOf(parser.ParseExprFrom),\n\t\t\"ParseFile\":            reflect.ValueOf(parser.ParseFile),\n\t\t\"SkipObjectResolution\": reflect.ValueOf(parser.SkipObjectResolution),\n\t\t\"SpuriousErrors\":       reflect.ValueOf(parser.SpuriousErrors),\n\t\t\"Trace\":                reflect.ValueOf(parser.Trace),\n\n\t\t// type definitions\n\t\t\"Mode\": reflect.ValueOf((*parser.Mode)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_go_printer.go",
    "content": "// Code generated by 'yaegi extract go/printer'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/printer\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/printer/printer\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Fprint\":    reflect.ValueOf(printer.Fprint),\n\t\t\"RawFormat\": reflect.ValueOf(printer.RawFormat),\n\t\t\"SourcePos\": reflect.ValueOf(printer.SourcePos),\n\t\t\"TabIndent\": reflect.ValueOf(printer.TabIndent),\n\t\t\"UseSpaces\": reflect.ValueOf(printer.UseSpaces),\n\n\t\t// type definitions\n\t\t\"CommentedNode\": reflect.ValueOf((*printer.CommentedNode)(nil)),\n\t\t\"Config\":        reflect.ValueOf((*printer.Config)(nil)),\n\t\t\"Mode\":          reflect.ValueOf((*printer.Mode)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_go_scanner.go",
    "content": "// Code generated by 'yaegi extract go/scanner'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/scanner\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/scanner/scanner\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"PrintError\":   reflect.ValueOf(scanner.PrintError),\n\t\t\"ScanComments\": reflect.ValueOf(scanner.ScanComments),\n\n\t\t// type definitions\n\t\t\"Error\":        reflect.ValueOf((*scanner.Error)(nil)),\n\t\t\"ErrorHandler\": reflect.ValueOf((*scanner.ErrorHandler)(nil)),\n\t\t\"ErrorList\":    reflect.ValueOf((*scanner.ErrorList)(nil)),\n\t\t\"Mode\":         reflect.ValueOf((*scanner.Mode)(nil)),\n\t\t\"Scanner\":      reflect.ValueOf((*scanner.Scanner)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_go_token.go",
    "content": "// Code generated by 'yaegi extract go/token'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/token/token\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ADD\":            reflect.ValueOf(token.ADD),\n\t\t\"ADD_ASSIGN\":     reflect.ValueOf(token.ADD_ASSIGN),\n\t\t\"AND\":            reflect.ValueOf(token.AND),\n\t\t\"AND_ASSIGN\":     reflect.ValueOf(token.AND_ASSIGN),\n\t\t\"AND_NOT\":        reflect.ValueOf(token.AND_NOT),\n\t\t\"AND_NOT_ASSIGN\": reflect.ValueOf(token.AND_NOT_ASSIGN),\n\t\t\"ARROW\":          reflect.ValueOf(token.ARROW),\n\t\t\"ASSIGN\":         reflect.ValueOf(token.ASSIGN),\n\t\t\"BREAK\":          reflect.ValueOf(token.BREAK),\n\t\t\"CASE\":           reflect.ValueOf(token.CASE),\n\t\t\"CHAN\":           reflect.ValueOf(token.CHAN),\n\t\t\"CHAR\":           reflect.ValueOf(token.CHAR),\n\t\t\"COLON\":          reflect.ValueOf(token.COLON),\n\t\t\"COMMA\":          reflect.ValueOf(token.COMMA),\n\t\t\"COMMENT\":        reflect.ValueOf(token.COMMENT),\n\t\t\"CONST\":          reflect.ValueOf(token.CONST),\n\t\t\"CONTINUE\":       reflect.ValueOf(token.CONTINUE),\n\t\t\"DEC\":            reflect.ValueOf(token.DEC),\n\t\t\"DEFAULT\":        reflect.ValueOf(token.DEFAULT),\n\t\t\"DEFER\":          reflect.ValueOf(token.DEFER),\n\t\t\"DEFINE\":         reflect.ValueOf(token.DEFINE),\n\t\t\"ELLIPSIS\":       reflect.ValueOf(token.ELLIPSIS),\n\t\t\"ELSE\":           reflect.ValueOf(token.ELSE),\n\t\t\"EOF\":            reflect.ValueOf(token.EOF),\n\t\t\"EQL\":            reflect.ValueOf(token.EQL),\n\t\t\"FALLTHROUGH\":    reflect.ValueOf(token.FALLTHROUGH),\n\t\t\"FLOAT\":          reflect.ValueOf(token.FLOAT),\n\t\t\"FOR\":            reflect.ValueOf(token.FOR),\n\t\t\"FUNC\":           reflect.ValueOf(token.FUNC),\n\t\t\"GEQ\":            reflect.ValueOf(token.GEQ),\n\t\t\"GO\":             reflect.ValueOf(token.GO),\n\t\t\"GOTO\":           reflect.ValueOf(token.GOTO),\n\t\t\"GTR\":            reflect.ValueOf(token.GTR),\n\t\t\"HighestPrec\":    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IDENT\":          reflect.ValueOf(token.IDENT),\n\t\t\"IF\":             reflect.ValueOf(token.IF),\n\t\t\"ILLEGAL\":        reflect.ValueOf(token.ILLEGAL),\n\t\t\"IMAG\":           reflect.ValueOf(token.IMAG),\n\t\t\"IMPORT\":         reflect.ValueOf(token.IMPORT),\n\t\t\"INC\":            reflect.ValueOf(token.INC),\n\t\t\"INT\":            reflect.ValueOf(token.INT),\n\t\t\"INTERFACE\":      reflect.ValueOf(token.INTERFACE),\n\t\t\"IsExported\":     reflect.ValueOf(token.IsExported),\n\t\t\"IsIdentifier\":   reflect.ValueOf(token.IsIdentifier),\n\t\t\"IsKeyword\":      reflect.ValueOf(token.IsKeyword),\n\t\t\"LAND\":           reflect.ValueOf(token.LAND),\n\t\t\"LBRACE\":         reflect.ValueOf(token.LBRACE),\n\t\t\"LBRACK\":         reflect.ValueOf(token.LBRACK),\n\t\t\"LEQ\":            reflect.ValueOf(token.LEQ),\n\t\t\"LOR\":            reflect.ValueOf(token.LOR),\n\t\t\"LPAREN\":         reflect.ValueOf(token.LPAREN),\n\t\t\"LSS\":            reflect.ValueOf(token.LSS),\n\t\t\"Lookup\":         reflect.ValueOf(token.Lookup),\n\t\t\"LowestPrec\":     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP\":            reflect.ValueOf(token.MAP),\n\t\t\"MUL\":            reflect.ValueOf(token.MUL),\n\t\t\"MUL_ASSIGN\":     reflect.ValueOf(token.MUL_ASSIGN),\n\t\t\"NEQ\":            reflect.ValueOf(token.NEQ),\n\t\t\"NOT\":            reflect.ValueOf(token.NOT),\n\t\t\"NewFileSet\":     reflect.ValueOf(token.NewFileSet),\n\t\t\"NoPos\":          reflect.ValueOf(token.NoPos),\n\t\t\"OR\":             reflect.ValueOf(token.OR),\n\t\t\"OR_ASSIGN\":      reflect.ValueOf(token.OR_ASSIGN),\n\t\t\"PACKAGE\":        reflect.ValueOf(token.PACKAGE),\n\t\t\"PERIOD\":         reflect.ValueOf(token.PERIOD),\n\t\t\"QUO\":            reflect.ValueOf(token.QUO),\n\t\t\"QUO_ASSIGN\":     reflect.ValueOf(token.QUO_ASSIGN),\n\t\t\"RANGE\":          reflect.ValueOf(token.RANGE),\n\t\t\"RBRACE\":         reflect.ValueOf(token.RBRACE),\n\t\t\"RBRACK\":         reflect.ValueOf(token.RBRACK),\n\t\t\"REM\":            reflect.ValueOf(token.REM),\n\t\t\"REM_ASSIGN\":     reflect.ValueOf(token.REM_ASSIGN),\n\t\t\"RETURN\":         reflect.ValueOf(token.RETURN),\n\t\t\"RPAREN\":         reflect.ValueOf(token.RPAREN),\n\t\t\"SELECT\":         reflect.ValueOf(token.SELECT),\n\t\t\"SEMICOLON\":      reflect.ValueOf(token.SEMICOLON),\n\t\t\"SHL\":            reflect.ValueOf(token.SHL),\n\t\t\"SHL_ASSIGN\":     reflect.ValueOf(token.SHL_ASSIGN),\n\t\t\"SHR\":            reflect.ValueOf(token.SHR),\n\t\t\"SHR_ASSIGN\":     reflect.ValueOf(token.SHR_ASSIGN),\n\t\t\"STRING\":         reflect.ValueOf(token.STRING),\n\t\t\"STRUCT\":         reflect.ValueOf(token.STRUCT),\n\t\t\"SUB\":            reflect.ValueOf(token.SUB),\n\t\t\"SUB_ASSIGN\":     reflect.ValueOf(token.SUB_ASSIGN),\n\t\t\"SWITCH\":         reflect.ValueOf(token.SWITCH),\n\t\t\"TILDE\":          reflect.ValueOf(token.TILDE),\n\t\t\"TYPE\":           reflect.ValueOf(token.TYPE),\n\t\t\"UnaryPrec\":      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VAR\":            reflect.ValueOf(token.VAR),\n\t\t\"XOR\":            reflect.ValueOf(token.XOR),\n\t\t\"XOR_ASSIGN\":     reflect.ValueOf(token.XOR_ASSIGN),\n\n\t\t// type definitions\n\t\t\"File\":     reflect.ValueOf((*token.File)(nil)),\n\t\t\"FileSet\":  reflect.ValueOf((*token.FileSet)(nil)),\n\t\t\"Pos\":      reflect.ValueOf((*token.Pos)(nil)),\n\t\t\"Position\": reflect.ValueOf((*token.Position)(nil)),\n\t\t\"Token\":    reflect.ValueOf((*token.Token)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_go_types.go",
    "content": "// Code generated by 'yaegi extract go/types'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/token\"\n\t\"go/types\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/types/types\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AssertableTo\":            reflect.ValueOf(types.AssertableTo),\n\t\t\"AssignableTo\":            reflect.ValueOf(types.AssignableTo),\n\t\t\"Bool\":                    reflect.ValueOf(types.Bool),\n\t\t\"Byte\":                    reflect.ValueOf(types.Byte),\n\t\t\"CheckExpr\":               reflect.ValueOf(types.CheckExpr),\n\t\t\"Comparable\":              reflect.ValueOf(types.Comparable),\n\t\t\"Complex128\":              reflect.ValueOf(types.Complex128),\n\t\t\"Complex64\":               reflect.ValueOf(types.Complex64),\n\t\t\"ConvertibleTo\":           reflect.ValueOf(types.ConvertibleTo),\n\t\t\"DefPredeclaredTestFuncs\": reflect.ValueOf(types.DefPredeclaredTestFuncs),\n\t\t\"Default\":                 reflect.ValueOf(types.Default),\n\t\t\"Eval\":                    reflect.ValueOf(types.Eval),\n\t\t\"ExprString\":              reflect.ValueOf(types.ExprString),\n\t\t\"FieldVal\":                reflect.ValueOf(types.FieldVal),\n\t\t\"Float32\":                 reflect.ValueOf(types.Float32),\n\t\t\"Float64\":                 reflect.ValueOf(types.Float64),\n\t\t\"Id\":                      reflect.ValueOf(types.Id),\n\t\t\"Identical\":               reflect.ValueOf(types.Identical),\n\t\t\"IdenticalIgnoreTags\":     reflect.ValueOf(types.IdenticalIgnoreTags),\n\t\t\"Implements\":              reflect.ValueOf(types.Implements),\n\t\t\"Instantiate\":             reflect.ValueOf(types.Instantiate),\n\t\t\"Int\":                     reflect.ValueOf(types.Int),\n\t\t\"Int16\":                   reflect.ValueOf(types.Int16),\n\t\t\"Int32\":                   reflect.ValueOf(types.Int32),\n\t\t\"Int64\":                   reflect.ValueOf(types.Int64),\n\t\t\"Int8\":                    reflect.ValueOf(types.Int8),\n\t\t\"Invalid\":                 reflect.ValueOf(types.Invalid),\n\t\t\"IsBoolean\":               reflect.ValueOf(types.IsBoolean),\n\t\t\"IsComplex\":               reflect.ValueOf(types.IsComplex),\n\t\t\"IsConstType\":             reflect.ValueOf(types.IsConstType),\n\t\t\"IsFloat\":                 reflect.ValueOf(types.IsFloat),\n\t\t\"IsInteger\":               reflect.ValueOf(types.IsInteger),\n\t\t\"IsInterface\":             reflect.ValueOf(types.IsInterface),\n\t\t\"IsNumeric\":               reflect.ValueOf(types.IsNumeric),\n\t\t\"IsOrdered\":               reflect.ValueOf(types.IsOrdered),\n\t\t\"IsString\":                reflect.ValueOf(types.IsString),\n\t\t\"IsUnsigned\":              reflect.ValueOf(types.IsUnsigned),\n\t\t\"IsUntyped\":               reflect.ValueOf(types.IsUntyped),\n\t\t\"LookupFieldOrMethod\":     reflect.ValueOf(types.LookupFieldOrMethod),\n\t\t\"MethodExpr\":              reflect.ValueOf(types.MethodExpr),\n\t\t\"MethodVal\":               reflect.ValueOf(types.MethodVal),\n\t\t\"MissingMethod\":           reflect.ValueOf(types.MissingMethod),\n\t\t\"NewAlias\":                reflect.ValueOf(types.NewAlias),\n\t\t\"NewArray\":                reflect.ValueOf(types.NewArray),\n\t\t\"NewChan\":                 reflect.ValueOf(types.NewChan),\n\t\t\"NewChecker\":              reflect.ValueOf(types.NewChecker),\n\t\t\"NewConst\":                reflect.ValueOf(types.NewConst),\n\t\t\"NewContext\":              reflect.ValueOf(types.NewContext),\n\t\t\"NewField\":                reflect.ValueOf(types.NewField),\n\t\t\"NewFunc\":                 reflect.ValueOf(types.NewFunc),\n\t\t\"NewInterface\":            reflect.ValueOf(types.NewInterface),\n\t\t\"NewInterfaceType\":        reflect.ValueOf(types.NewInterfaceType),\n\t\t\"NewLabel\":                reflect.ValueOf(types.NewLabel),\n\t\t\"NewMap\":                  reflect.ValueOf(types.NewMap),\n\t\t\"NewMethodSet\":            reflect.ValueOf(types.NewMethodSet),\n\t\t\"NewNamed\":                reflect.ValueOf(types.NewNamed),\n\t\t\"NewPackage\":              reflect.ValueOf(types.NewPackage),\n\t\t\"NewParam\":                reflect.ValueOf(types.NewParam),\n\t\t\"NewPkgName\":              reflect.ValueOf(types.NewPkgName),\n\t\t\"NewPointer\":              reflect.ValueOf(types.NewPointer),\n\t\t\"NewScope\":                reflect.ValueOf(types.NewScope),\n\t\t\"NewSignature\":            reflect.ValueOf(types.NewSignature),\n\t\t\"NewSignatureType\":        reflect.ValueOf(types.NewSignatureType),\n\t\t\"NewSlice\":                reflect.ValueOf(types.NewSlice),\n\t\t\"NewStruct\":               reflect.ValueOf(types.NewStruct),\n\t\t\"NewTerm\":                 reflect.ValueOf(types.NewTerm),\n\t\t\"NewTuple\":                reflect.ValueOf(types.NewTuple),\n\t\t\"NewTypeName\":             reflect.ValueOf(types.NewTypeName),\n\t\t\"NewTypeParam\":            reflect.ValueOf(types.NewTypeParam),\n\t\t\"NewUnion\":                reflect.ValueOf(types.NewUnion),\n\t\t\"NewVar\":                  reflect.ValueOf(types.NewVar),\n\t\t\"ObjectString\":            reflect.ValueOf(types.ObjectString),\n\t\t\"RecvOnly\":                reflect.ValueOf(types.RecvOnly),\n\t\t\"RelativeTo\":              reflect.ValueOf(types.RelativeTo),\n\t\t\"Rune\":                    reflect.ValueOf(types.Rune),\n\t\t\"Satisfies\":               reflect.ValueOf(types.Satisfies),\n\t\t\"SelectionString\":         reflect.ValueOf(types.SelectionString),\n\t\t\"SendOnly\":                reflect.ValueOf(types.SendOnly),\n\t\t\"SendRecv\":                reflect.ValueOf(types.SendRecv),\n\t\t\"SizesFor\":                reflect.ValueOf(types.SizesFor),\n\t\t\"String\":                  reflect.ValueOf(types.String),\n\t\t\"Typ\":                     reflect.ValueOf(&types.Typ).Elem(),\n\t\t\"TypeString\":              reflect.ValueOf(types.TypeString),\n\t\t\"Uint\":                    reflect.ValueOf(types.Uint),\n\t\t\"Uint16\":                  reflect.ValueOf(types.Uint16),\n\t\t\"Uint32\":                  reflect.ValueOf(types.Uint32),\n\t\t\"Uint64\":                  reflect.ValueOf(types.Uint64),\n\t\t\"Uint8\":                   reflect.ValueOf(types.Uint8),\n\t\t\"Uintptr\":                 reflect.ValueOf(types.Uintptr),\n\t\t\"Unalias\":                 reflect.ValueOf(types.Unalias),\n\t\t\"Universe\":                reflect.ValueOf(&types.Universe).Elem(),\n\t\t\"Unsafe\":                  reflect.ValueOf(&types.Unsafe).Elem(),\n\t\t\"UnsafePointer\":           reflect.ValueOf(types.UnsafePointer),\n\t\t\"UntypedBool\":             reflect.ValueOf(types.UntypedBool),\n\t\t\"UntypedComplex\":          reflect.ValueOf(types.UntypedComplex),\n\t\t\"UntypedFloat\":            reflect.ValueOf(types.UntypedFloat),\n\t\t\"UntypedInt\":              reflect.ValueOf(types.UntypedInt),\n\t\t\"UntypedNil\":              reflect.ValueOf(types.UntypedNil),\n\t\t\"UntypedRune\":             reflect.ValueOf(types.UntypedRune),\n\t\t\"UntypedString\":           reflect.ValueOf(types.UntypedString),\n\t\t\"WriteExpr\":               reflect.ValueOf(types.WriteExpr),\n\t\t\"WriteSignature\":          reflect.ValueOf(types.WriteSignature),\n\t\t\"WriteType\":               reflect.ValueOf(types.WriteType),\n\n\t\t// type definitions\n\t\t\"Alias\":         reflect.ValueOf((*types.Alias)(nil)),\n\t\t\"ArgumentError\": reflect.ValueOf((*types.ArgumentError)(nil)),\n\t\t\"Array\":         reflect.ValueOf((*types.Array)(nil)),\n\t\t\"Basic\":         reflect.ValueOf((*types.Basic)(nil)),\n\t\t\"BasicInfo\":     reflect.ValueOf((*types.BasicInfo)(nil)),\n\t\t\"BasicKind\":     reflect.ValueOf((*types.BasicKind)(nil)),\n\t\t\"Builtin\":       reflect.ValueOf((*types.Builtin)(nil)),\n\t\t\"Chan\":          reflect.ValueOf((*types.Chan)(nil)),\n\t\t\"ChanDir\":       reflect.ValueOf((*types.ChanDir)(nil)),\n\t\t\"Checker\":       reflect.ValueOf((*types.Checker)(nil)),\n\t\t\"Config\":        reflect.ValueOf((*types.Config)(nil)),\n\t\t\"Const\":         reflect.ValueOf((*types.Const)(nil)),\n\t\t\"Context\":       reflect.ValueOf((*types.Context)(nil)),\n\t\t\"Error\":         reflect.ValueOf((*types.Error)(nil)),\n\t\t\"Func\":          reflect.ValueOf((*types.Func)(nil)),\n\t\t\"ImportMode\":    reflect.ValueOf((*types.ImportMode)(nil)),\n\t\t\"Importer\":      reflect.ValueOf((*types.Importer)(nil)),\n\t\t\"ImporterFrom\":  reflect.ValueOf((*types.ImporterFrom)(nil)),\n\t\t\"Info\":          reflect.ValueOf((*types.Info)(nil)),\n\t\t\"Initializer\":   reflect.ValueOf((*types.Initializer)(nil)),\n\t\t\"Instance\":      reflect.ValueOf((*types.Instance)(nil)),\n\t\t\"Interface\":     reflect.ValueOf((*types.Interface)(nil)),\n\t\t\"Label\":         reflect.ValueOf((*types.Label)(nil)),\n\t\t\"Map\":           reflect.ValueOf((*types.Map)(nil)),\n\t\t\"MethodSet\":     reflect.ValueOf((*types.MethodSet)(nil)),\n\t\t\"Named\":         reflect.ValueOf((*types.Named)(nil)),\n\t\t\"Nil\":           reflect.ValueOf((*types.Nil)(nil)),\n\t\t\"Object\":        reflect.ValueOf((*types.Object)(nil)),\n\t\t\"Package\":       reflect.ValueOf((*types.Package)(nil)),\n\t\t\"PkgName\":       reflect.ValueOf((*types.PkgName)(nil)),\n\t\t\"Pointer\":       reflect.ValueOf((*types.Pointer)(nil)),\n\t\t\"Qualifier\":     reflect.ValueOf((*types.Qualifier)(nil)),\n\t\t\"Scope\":         reflect.ValueOf((*types.Scope)(nil)),\n\t\t\"Selection\":     reflect.ValueOf((*types.Selection)(nil)),\n\t\t\"SelectionKind\": reflect.ValueOf((*types.SelectionKind)(nil)),\n\t\t\"Signature\":     reflect.ValueOf((*types.Signature)(nil)),\n\t\t\"Sizes\":         reflect.ValueOf((*types.Sizes)(nil)),\n\t\t\"Slice\":         reflect.ValueOf((*types.Slice)(nil)),\n\t\t\"StdSizes\":      reflect.ValueOf((*types.StdSizes)(nil)),\n\t\t\"Struct\":        reflect.ValueOf((*types.Struct)(nil)),\n\t\t\"Term\":          reflect.ValueOf((*types.Term)(nil)),\n\t\t\"Tuple\":         reflect.ValueOf((*types.Tuple)(nil)),\n\t\t\"Type\":          reflect.ValueOf((*types.Type)(nil)),\n\t\t\"TypeAndValue\":  reflect.ValueOf((*types.TypeAndValue)(nil)),\n\t\t\"TypeList\":      reflect.ValueOf((*types.TypeList)(nil)),\n\t\t\"TypeName\":      reflect.ValueOf((*types.TypeName)(nil)),\n\t\t\"TypeParam\":     reflect.ValueOf((*types.TypeParam)(nil)),\n\t\t\"TypeParamList\": reflect.ValueOf((*types.TypeParamList)(nil)),\n\t\t\"Union\":         reflect.ValueOf((*types.Union)(nil)),\n\t\t\"Var\":           reflect.ValueOf((*types.Var)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Importer\":     reflect.ValueOf((*_go_types_Importer)(nil)),\n\t\t\"_ImporterFrom\": reflect.ValueOf((*_go_types_ImporterFrom)(nil)),\n\t\t\"_Object\":       reflect.ValueOf((*_go_types_Object)(nil)),\n\t\t\"_Sizes\":        reflect.ValueOf((*_go_types_Sizes)(nil)),\n\t\t\"_Type\":         reflect.ValueOf((*_go_types_Type)(nil)),\n\t}\n}\n\n// _go_types_Importer is an interface wrapper for Importer type\ntype _go_types_Importer struct {\n\tIValue  interface{}\n\tWImport func(path string) (*types.Package, error)\n}\n\nfunc (W _go_types_Importer) Import(path string) (*types.Package, error) { return W.WImport(path) }\n\n// _go_types_ImporterFrom is an interface wrapper for ImporterFrom type\ntype _go_types_ImporterFrom struct {\n\tIValue      interface{}\n\tWImport     func(path string) (*types.Package, error)\n\tWImportFrom func(path string, dir string, mode types.ImportMode) (*types.Package, error)\n}\n\nfunc (W _go_types_ImporterFrom) Import(path string) (*types.Package, error) { return W.WImport(path) }\nfunc (W _go_types_ImporterFrom) ImportFrom(path string, dir string, mode types.ImportMode) (*types.Package, error) {\n\treturn W.WImportFrom(path, dir, mode)\n}\n\n// _go_types_Object is an interface wrapper for Object type\ntype _go_types_Object struct {\n\tIValue    interface{}\n\tWExported func() bool\n\tWId       func() string\n\tWName     func() string\n\tWParent   func() *types.Scope\n\tWPkg      func() *types.Package\n\tWPos      func() token.Pos\n\tWString   func() string\n\tWType     func() types.Type\n}\n\nfunc (W _go_types_Object) Exported() bool       { return W.WExported() }\nfunc (W _go_types_Object) Id() string           { return W.WId() }\nfunc (W _go_types_Object) Name() string         { return W.WName() }\nfunc (W _go_types_Object) Parent() *types.Scope { return W.WParent() }\nfunc (W _go_types_Object) Pkg() *types.Package  { return W.WPkg() }\nfunc (W _go_types_Object) Pos() token.Pos       { return W.WPos() }\nfunc (W _go_types_Object) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\nfunc (W _go_types_Object) Type() types.Type { return W.WType() }\n\n// _go_types_Sizes is an interface wrapper for Sizes type\ntype _go_types_Sizes struct {\n\tIValue     interface{}\n\tWAlignof   func(T types.Type) int64\n\tWOffsetsof func(fields []*types.Var) []int64\n\tWSizeof    func(T types.Type) int64\n}\n\nfunc (W _go_types_Sizes) Alignof(T types.Type) int64            { return W.WAlignof(T) }\nfunc (W _go_types_Sizes) Offsetsof(fields []*types.Var) []int64 { return W.WOffsetsof(fields) }\nfunc (W _go_types_Sizes) Sizeof(T types.Type) int64             { return W.WSizeof(T) }\n\n// _go_types_Type is an interface wrapper for Type type\ntype _go_types_Type struct {\n\tIValue      interface{}\n\tWString     func() string\n\tWUnderlying func() types.Type\n}\n\nfunc (W _go_types_Type) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\nfunc (W _go_types_Type) Underlying() types.Type { return W.WUnderlying() }\n"
  },
  {
    "path": "stdlib/go1_22_go_version.go",
    "content": "// Code generated by 'yaegi extract go/version'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/version\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"go/version/version\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Compare\": reflect.ValueOf(version.Compare),\n\t\t\"IsValid\": reflect.ValueOf(version.IsValid),\n\t\t\"Lang\":    reflect.ValueOf(version.Lang),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_hash.go",
    "content": "// Code generated by 'yaegi extract hash'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"hash\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"hash/hash\"] = map[string]reflect.Value{\n\t\t// type definitions\n\t\t\"Hash\":   reflect.ValueOf((*hash.Hash)(nil)),\n\t\t\"Hash32\": reflect.ValueOf((*hash.Hash32)(nil)),\n\t\t\"Hash64\": reflect.ValueOf((*hash.Hash64)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Hash\":   reflect.ValueOf((*_hash_Hash)(nil)),\n\t\t\"_Hash32\": reflect.ValueOf((*_hash_Hash32)(nil)),\n\t\t\"_Hash64\": reflect.ValueOf((*_hash_Hash64)(nil)),\n\t}\n}\n\n// _hash_Hash is an interface wrapper for Hash type\ntype _hash_Hash struct {\n\tIValue     interface{}\n\tWBlockSize func() int\n\tWReset     func()\n\tWSize      func() int\n\tWSum       func(b []byte) []byte\n\tWWrite     func(p []byte) (n int, err error)\n}\n\nfunc (W _hash_Hash) BlockSize() int                    { return W.WBlockSize() }\nfunc (W _hash_Hash) Reset()                            { W.WReset() }\nfunc (W _hash_Hash) Size() int                         { return W.WSize() }\nfunc (W _hash_Hash) Sum(b []byte) []byte               { return W.WSum(b) }\nfunc (W _hash_Hash) Write(p []byte) (n int, err error) { return W.WWrite(p) }\n\n// _hash_Hash32 is an interface wrapper for Hash32 type\ntype _hash_Hash32 struct {\n\tIValue     interface{}\n\tWBlockSize func() int\n\tWReset     func()\n\tWSize      func() int\n\tWSum       func(b []byte) []byte\n\tWSum32     func() uint32\n\tWWrite     func(p []byte) (n int, err error)\n}\n\nfunc (W _hash_Hash32) BlockSize() int                    { return W.WBlockSize() }\nfunc (W _hash_Hash32) Reset()                            { W.WReset() }\nfunc (W _hash_Hash32) Size() int                         { return W.WSize() }\nfunc (W _hash_Hash32) Sum(b []byte) []byte               { return W.WSum(b) }\nfunc (W _hash_Hash32) Sum32() uint32                     { return W.WSum32() }\nfunc (W _hash_Hash32) Write(p []byte) (n int, err error) { return W.WWrite(p) }\n\n// _hash_Hash64 is an interface wrapper for Hash64 type\ntype _hash_Hash64 struct {\n\tIValue     interface{}\n\tWBlockSize func() int\n\tWReset     func()\n\tWSize      func() int\n\tWSum       func(b []byte) []byte\n\tWSum64     func() uint64\n\tWWrite     func(p []byte) (n int, err error)\n}\n\nfunc (W _hash_Hash64) BlockSize() int                    { return W.WBlockSize() }\nfunc (W _hash_Hash64) Reset()                            { W.WReset() }\nfunc (W _hash_Hash64) Size() int                         { return W.WSize() }\nfunc (W _hash_Hash64) Sum(b []byte) []byte               { return W.WSum(b) }\nfunc (W _hash_Hash64) Sum64() uint64                     { return W.WSum64() }\nfunc (W _hash_Hash64) Write(p []byte) (n int, err error) { return W.WWrite(p) }\n"
  },
  {
    "path": "stdlib/go1_22_hash_adler32.go",
    "content": "// Code generated by 'yaegi extract hash/adler32'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"hash/adler32\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"hash/adler32/adler32\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Checksum\": reflect.ValueOf(adler32.Checksum),\n\t\t\"New\":      reflect.ValueOf(adler32.New),\n\t\t\"Size\":     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_hash_crc32.go",
    "content": "// Code generated by 'yaegi extract hash/crc32'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"hash/crc32\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"hash/crc32/crc32\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Castagnoli\":   reflect.ValueOf(constant.MakeFromLiteral(\"2197175160\", token.INT, 0)),\n\t\t\"Checksum\":     reflect.ValueOf(crc32.Checksum),\n\t\t\"ChecksumIEEE\": reflect.ValueOf(crc32.ChecksumIEEE),\n\t\t\"IEEE\":         reflect.ValueOf(constant.MakeFromLiteral(\"3988292384\", token.INT, 0)),\n\t\t\"IEEETable\":    reflect.ValueOf(&crc32.IEEETable).Elem(),\n\t\t\"Koopman\":      reflect.ValueOf(constant.MakeFromLiteral(\"3945912366\", token.INT, 0)),\n\t\t\"MakeTable\":    reflect.ValueOf(crc32.MakeTable),\n\t\t\"New\":          reflect.ValueOf(crc32.New),\n\t\t\"NewIEEE\":      reflect.ValueOf(crc32.NewIEEE),\n\t\t\"Size\":         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Update\":       reflect.ValueOf(crc32.Update),\n\n\t\t// type definitions\n\t\t\"Table\": reflect.ValueOf((*crc32.Table)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_hash_crc64.go",
    "content": "// Code generated by 'yaegi extract hash/crc64'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"hash/crc64\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"hash/crc64/crc64\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Checksum\":  reflect.ValueOf(crc64.Checksum),\n\t\t\"ECMA\":      reflect.ValueOf(constant.MakeFromLiteral(\"14514072000185962306\", token.INT, 0)),\n\t\t\"ISO\":       reflect.ValueOf(constant.MakeFromLiteral(\"15564440312192434176\", token.INT, 0)),\n\t\t\"MakeTable\": reflect.ValueOf(crc64.MakeTable),\n\t\t\"New\":       reflect.ValueOf(crc64.New),\n\t\t\"Size\":      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Update\":    reflect.ValueOf(crc64.Update),\n\n\t\t// type definitions\n\t\t\"Table\": reflect.ValueOf((*crc64.Table)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_hash_fnv.go",
    "content": "// Code generated by 'yaegi extract hash/fnv'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"hash/fnv\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"hash/fnv/fnv\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"New128\":  reflect.ValueOf(fnv.New128),\n\t\t\"New128a\": reflect.ValueOf(fnv.New128a),\n\t\t\"New32\":   reflect.ValueOf(fnv.New32),\n\t\t\"New32a\":  reflect.ValueOf(fnv.New32a),\n\t\t\"New64\":   reflect.ValueOf(fnv.New64),\n\t\t\"New64a\":  reflect.ValueOf(fnv.New64a),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_hash_maphash.go",
    "content": "// Code generated by 'yaegi extract hash/maphash'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"hash/maphash\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"hash/maphash/maphash\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Bytes\":    reflect.ValueOf(maphash.Bytes),\n\t\t\"MakeSeed\": reflect.ValueOf(maphash.MakeSeed),\n\t\t\"String\":   reflect.ValueOf(maphash.String),\n\n\t\t// type definitions\n\t\t\"Hash\": reflect.ValueOf((*maphash.Hash)(nil)),\n\t\t\"Seed\": reflect.ValueOf((*maphash.Seed)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_html.go",
    "content": "// Code generated by 'yaegi extract html'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"html\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"html/html\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"EscapeString\":   reflect.ValueOf(html.EscapeString),\n\t\t\"UnescapeString\": reflect.ValueOf(html.UnescapeString),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_html_template.go",
    "content": "// Code generated by 'yaegi extract html/template'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"html/template\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"html/template/template\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ErrAmbigContext\":      reflect.ValueOf(template.ErrAmbigContext),\n\t\t\"ErrBadHTML\":           reflect.ValueOf(template.ErrBadHTML),\n\t\t\"ErrBranchEnd\":         reflect.ValueOf(template.ErrBranchEnd),\n\t\t\"ErrEndContext\":        reflect.ValueOf(template.ErrEndContext),\n\t\t\"ErrJSTemplate\":        reflect.ValueOf(template.ErrJSTemplate),\n\t\t\"ErrNoSuchTemplate\":    reflect.ValueOf(template.ErrNoSuchTemplate),\n\t\t\"ErrOutputContext\":     reflect.ValueOf(template.ErrOutputContext),\n\t\t\"ErrPartialCharset\":    reflect.ValueOf(template.ErrPartialCharset),\n\t\t\"ErrPartialEscape\":     reflect.ValueOf(template.ErrPartialEscape),\n\t\t\"ErrPredefinedEscaper\": reflect.ValueOf(template.ErrPredefinedEscaper),\n\t\t\"ErrRangeLoopReentry\":  reflect.ValueOf(template.ErrRangeLoopReentry),\n\t\t\"ErrSlashAmbig\":        reflect.ValueOf(template.ErrSlashAmbig),\n\t\t\"HTMLEscape\":           reflect.ValueOf(template.HTMLEscape),\n\t\t\"HTMLEscapeString\":     reflect.ValueOf(template.HTMLEscapeString),\n\t\t\"HTMLEscaper\":          reflect.ValueOf(template.HTMLEscaper),\n\t\t\"IsTrue\":               reflect.ValueOf(template.IsTrue),\n\t\t\"JSEscape\":             reflect.ValueOf(template.JSEscape),\n\t\t\"JSEscapeString\":       reflect.ValueOf(template.JSEscapeString),\n\t\t\"JSEscaper\":            reflect.ValueOf(template.JSEscaper),\n\t\t\"Must\":                 reflect.ValueOf(template.Must),\n\t\t\"New\":                  reflect.ValueOf(template.New),\n\t\t\"OK\":                   reflect.ValueOf(template.OK),\n\t\t\"ParseFS\":              reflect.ValueOf(template.ParseFS),\n\t\t\"ParseFiles\":           reflect.ValueOf(template.ParseFiles),\n\t\t\"ParseGlob\":            reflect.ValueOf(template.ParseGlob),\n\t\t\"URLQueryEscaper\":      reflect.ValueOf(template.URLQueryEscaper),\n\n\t\t// type definitions\n\t\t\"CSS\":       reflect.ValueOf((*template.CSS)(nil)),\n\t\t\"Error\":     reflect.ValueOf((*template.Error)(nil)),\n\t\t\"ErrorCode\": reflect.ValueOf((*template.ErrorCode)(nil)),\n\t\t\"FuncMap\":   reflect.ValueOf((*template.FuncMap)(nil)),\n\t\t\"HTML\":      reflect.ValueOf((*template.HTML)(nil)),\n\t\t\"HTMLAttr\":  reflect.ValueOf((*template.HTMLAttr)(nil)),\n\t\t\"JS\":        reflect.ValueOf((*template.JS)(nil)),\n\t\t\"JSStr\":     reflect.ValueOf((*template.JSStr)(nil)),\n\t\t\"Srcset\":    reflect.ValueOf((*template.Srcset)(nil)),\n\t\t\"Template\":  reflect.ValueOf((*template.Template)(nil)),\n\t\t\"URL\":       reflect.ValueOf((*template.URL)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_image.go",
    "content": "// Code generated by 'yaegi extract image'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"image\"\n\t\"image/color\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"image/image\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Black\":                  reflect.ValueOf(&image.Black).Elem(),\n\t\t\"Decode\":                 reflect.ValueOf(image.Decode),\n\t\t\"DecodeConfig\":           reflect.ValueOf(image.DecodeConfig),\n\t\t\"ErrFormat\":              reflect.ValueOf(&image.ErrFormat).Elem(),\n\t\t\"NewAlpha\":               reflect.ValueOf(image.NewAlpha),\n\t\t\"NewAlpha16\":             reflect.ValueOf(image.NewAlpha16),\n\t\t\"NewCMYK\":                reflect.ValueOf(image.NewCMYK),\n\t\t\"NewGray\":                reflect.ValueOf(image.NewGray),\n\t\t\"NewGray16\":              reflect.ValueOf(image.NewGray16),\n\t\t\"NewNRGBA\":               reflect.ValueOf(image.NewNRGBA),\n\t\t\"NewNRGBA64\":             reflect.ValueOf(image.NewNRGBA64),\n\t\t\"NewNYCbCrA\":             reflect.ValueOf(image.NewNYCbCrA),\n\t\t\"NewPaletted\":            reflect.ValueOf(image.NewPaletted),\n\t\t\"NewRGBA\":                reflect.ValueOf(image.NewRGBA),\n\t\t\"NewRGBA64\":              reflect.ValueOf(image.NewRGBA64),\n\t\t\"NewUniform\":             reflect.ValueOf(image.NewUniform),\n\t\t\"NewYCbCr\":               reflect.ValueOf(image.NewYCbCr),\n\t\t\"Opaque\":                 reflect.ValueOf(&image.Opaque).Elem(),\n\t\t\"Pt\":                     reflect.ValueOf(image.Pt),\n\t\t\"Rect\":                   reflect.ValueOf(image.Rect),\n\t\t\"RegisterFormat\":         reflect.ValueOf(image.RegisterFormat),\n\t\t\"Transparent\":            reflect.ValueOf(&image.Transparent).Elem(),\n\t\t\"White\":                  reflect.ValueOf(&image.White).Elem(),\n\t\t\"YCbCrSubsampleRatio410\": reflect.ValueOf(image.YCbCrSubsampleRatio410),\n\t\t\"YCbCrSubsampleRatio411\": reflect.ValueOf(image.YCbCrSubsampleRatio411),\n\t\t\"YCbCrSubsampleRatio420\": reflect.ValueOf(image.YCbCrSubsampleRatio420),\n\t\t\"YCbCrSubsampleRatio422\": reflect.ValueOf(image.YCbCrSubsampleRatio422),\n\t\t\"YCbCrSubsampleRatio440\": reflect.ValueOf(image.YCbCrSubsampleRatio440),\n\t\t\"YCbCrSubsampleRatio444\": reflect.ValueOf(image.YCbCrSubsampleRatio444),\n\t\t\"ZP\":                     reflect.ValueOf(&image.ZP).Elem(),\n\t\t\"ZR\":                     reflect.ValueOf(&image.ZR).Elem(),\n\n\t\t// type definitions\n\t\t\"Alpha\":               reflect.ValueOf((*image.Alpha)(nil)),\n\t\t\"Alpha16\":             reflect.ValueOf((*image.Alpha16)(nil)),\n\t\t\"CMYK\":                reflect.ValueOf((*image.CMYK)(nil)),\n\t\t\"Config\":              reflect.ValueOf((*image.Config)(nil)),\n\t\t\"Gray\":                reflect.ValueOf((*image.Gray)(nil)),\n\t\t\"Gray16\":              reflect.ValueOf((*image.Gray16)(nil)),\n\t\t\"Image\":               reflect.ValueOf((*image.Image)(nil)),\n\t\t\"NRGBA\":               reflect.ValueOf((*image.NRGBA)(nil)),\n\t\t\"NRGBA64\":             reflect.ValueOf((*image.NRGBA64)(nil)),\n\t\t\"NYCbCrA\":             reflect.ValueOf((*image.NYCbCrA)(nil)),\n\t\t\"Paletted\":            reflect.ValueOf((*image.Paletted)(nil)),\n\t\t\"PalettedImage\":       reflect.ValueOf((*image.PalettedImage)(nil)),\n\t\t\"Point\":               reflect.ValueOf((*image.Point)(nil)),\n\t\t\"RGBA\":                reflect.ValueOf((*image.RGBA)(nil)),\n\t\t\"RGBA64\":              reflect.ValueOf((*image.RGBA64)(nil)),\n\t\t\"RGBA64Image\":         reflect.ValueOf((*image.RGBA64Image)(nil)),\n\t\t\"Rectangle\":           reflect.ValueOf((*image.Rectangle)(nil)),\n\t\t\"Uniform\":             reflect.ValueOf((*image.Uniform)(nil)),\n\t\t\"YCbCr\":               reflect.ValueOf((*image.YCbCr)(nil)),\n\t\t\"YCbCrSubsampleRatio\": reflect.ValueOf((*image.YCbCrSubsampleRatio)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Image\":         reflect.ValueOf((*_image_Image)(nil)),\n\t\t\"_PalettedImage\": reflect.ValueOf((*_image_PalettedImage)(nil)),\n\t\t\"_RGBA64Image\":   reflect.ValueOf((*_image_RGBA64Image)(nil)),\n\t}\n}\n\n// _image_Image is an interface wrapper for Image type\ntype _image_Image struct {\n\tIValue      interface{}\n\tWAt         func(x int, y int) color.Color\n\tWBounds     func() image.Rectangle\n\tWColorModel func() color.Model\n}\n\nfunc (W _image_Image) At(x int, y int) color.Color { return W.WAt(x, y) }\nfunc (W _image_Image) Bounds() image.Rectangle     { return W.WBounds() }\nfunc (W _image_Image) ColorModel() color.Model     { return W.WColorModel() }\n\n// _image_PalettedImage is an interface wrapper for PalettedImage type\ntype _image_PalettedImage struct {\n\tIValue        interface{}\n\tWAt           func(x int, y int) color.Color\n\tWBounds       func() image.Rectangle\n\tWColorIndexAt func(x int, y int) uint8\n\tWColorModel   func() color.Model\n}\n\nfunc (W _image_PalettedImage) At(x int, y int) color.Color     { return W.WAt(x, y) }\nfunc (W _image_PalettedImage) Bounds() image.Rectangle         { return W.WBounds() }\nfunc (W _image_PalettedImage) ColorIndexAt(x int, y int) uint8 { return W.WColorIndexAt(x, y) }\nfunc (W _image_PalettedImage) ColorModel() color.Model         { return W.WColorModel() }\n\n// _image_RGBA64Image is an interface wrapper for RGBA64Image type\ntype _image_RGBA64Image struct {\n\tIValue      interface{}\n\tWAt         func(x int, y int) color.Color\n\tWBounds     func() image.Rectangle\n\tWColorModel func() color.Model\n\tWRGBA64At   func(x int, y int) color.RGBA64\n}\n\nfunc (W _image_RGBA64Image) At(x int, y int) color.Color        { return W.WAt(x, y) }\nfunc (W _image_RGBA64Image) Bounds() image.Rectangle            { return W.WBounds() }\nfunc (W _image_RGBA64Image) ColorModel() color.Model            { return W.WColorModel() }\nfunc (W _image_RGBA64Image) RGBA64At(x int, y int) color.RGBA64 { return W.WRGBA64At(x, y) }\n"
  },
  {
    "path": "stdlib/go1_22_image_color.go",
    "content": "// Code generated by 'yaegi extract image/color'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"image/color\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"image/color/color\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Alpha16Model\": reflect.ValueOf(&color.Alpha16Model).Elem(),\n\t\t\"AlphaModel\":   reflect.ValueOf(&color.AlphaModel).Elem(),\n\t\t\"Black\":        reflect.ValueOf(&color.Black).Elem(),\n\t\t\"CMYKModel\":    reflect.ValueOf(&color.CMYKModel).Elem(),\n\t\t\"CMYKToRGB\":    reflect.ValueOf(color.CMYKToRGB),\n\t\t\"Gray16Model\":  reflect.ValueOf(&color.Gray16Model).Elem(),\n\t\t\"GrayModel\":    reflect.ValueOf(&color.GrayModel).Elem(),\n\t\t\"ModelFunc\":    reflect.ValueOf(color.ModelFunc),\n\t\t\"NRGBA64Model\": reflect.ValueOf(&color.NRGBA64Model).Elem(),\n\t\t\"NRGBAModel\":   reflect.ValueOf(&color.NRGBAModel).Elem(),\n\t\t\"NYCbCrAModel\": reflect.ValueOf(&color.NYCbCrAModel).Elem(),\n\t\t\"Opaque\":       reflect.ValueOf(&color.Opaque).Elem(),\n\t\t\"RGBA64Model\":  reflect.ValueOf(&color.RGBA64Model).Elem(),\n\t\t\"RGBAModel\":    reflect.ValueOf(&color.RGBAModel).Elem(),\n\t\t\"RGBToCMYK\":    reflect.ValueOf(color.RGBToCMYK),\n\t\t\"RGBToYCbCr\":   reflect.ValueOf(color.RGBToYCbCr),\n\t\t\"Transparent\":  reflect.ValueOf(&color.Transparent).Elem(),\n\t\t\"White\":        reflect.ValueOf(&color.White).Elem(),\n\t\t\"YCbCrModel\":   reflect.ValueOf(&color.YCbCrModel).Elem(),\n\t\t\"YCbCrToRGB\":   reflect.ValueOf(color.YCbCrToRGB),\n\n\t\t// type definitions\n\t\t\"Alpha\":   reflect.ValueOf((*color.Alpha)(nil)),\n\t\t\"Alpha16\": reflect.ValueOf((*color.Alpha16)(nil)),\n\t\t\"CMYK\":    reflect.ValueOf((*color.CMYK)(nil)),\n\t\t\"Color\":   reflect.ValueOf((*color.Color)(nil)),\n\t\t\"Gray\":    reflect.ValueOf((*color.Gray)(nil)),\n\t\t\"Gray16\":  reflect.ValueOf((*color.Gray16)(nil)),\n\t\t\"Model\":   reflect.ValueOf((*color.Model)(nil)),\n\t\t\"NRGBA\":   reflect.ValueOf((*color.NRGBA)(nil)),\n\t\t\"NRGBA64\": reflect.ValueOf((*color.NRGBA64)(nil)),\n\t\t\"NYCbCrA\": reflect.ValueOf((*color.NYCbCrA)(nil)),\n\t\t\"Palette\": reflect.ValueOf((*color.Palette)(nil)),\n\t\t\"RGBA\":    reflect.ValueOf((*color.RGBA)(nil)),\n\t\t\"RGBA64\":  reflect.ValueOf((*color.RGBA64)(nil)),\n\t\t\"YCbCr\":   reflect.ValueOf((*color.YCbCr)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Color\": reflect.ValueOf((*_image_color_Color)(nil)),\n\t\t\"_Model\": reflect.ValueOf((*_image_color_Model)(nil)),\n\t}\n}\n\n// _image_color_Color is an interface wrapper for Color type\ntype _image_color_Color struct {\n\tIValue interface{}\n\tWRGBA  func() (r uint32, g uint32, b uint32, a uint32)\n}\n\nfunc (W _image_color_Color) RGBA() (r uint32, g uint32, b uint32, a uint32) { return W.WRGBA() }\n\n// _image_color_Model is an interface wrapper for Model type\ntype _image_color_Model struct {\n\tIValue   interface{}\n\tWConvert func(c color.Color) color.Color\n}\n\nfunc (W _image_color_Model) Convert(c color.Color) color.Color { return W.WConvert(c) }\n"
  },
  {
    "path": "stdlib/go1_22_image_color_palette.go",
    "content": "// Code generated by 'yaegi extract image/color/palette'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"image/color/palette\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"image/color/palette/palette\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Plan9\":   reflect.ValueOf(&palette.Plan9).Elem(),\n\t\t\"WebSafe\": reflect.ValueOf(&palette.WebSafe).Elem(),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_image_draw.go",
    "content": "// Code generated by 'yaegi extract image/draw'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"image\"\n\t\"image/color\"\n\t\"image/draw\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"image/draw/draw\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Draw\":           reflect.ValueOf(draw.Draw),\n\t\t\"DrawMask\":       reflect.ValueOf(draw.DrawMask),\n\t\t\"FloydSteinberg\": reflect.ValueOf(&draw.FloydSteinberg).Elem(),\n\t\t\"Over\":           reflect.ValueOf(draw.Over),\n\t\t\"Src\":            reflect.ValueOf(draw.Src),\n\n\t\t// type definitions\n\t\t\"Drawer\":      reflect.ValueOf((*draw.Drawer)(nil)),\n\t\t\"Image\":       reflect.ValueOf((*draw.Image)(nil)),\n\t\t\"Op\":          reflect.ValueOf((*draw.Op)(nil)),\n\t\t\"Quantizer\":   reflect.ValueOf((*draw.Quantizer)(nil)),\n\t\t\"RGBA64Image\": reflect.ValueOf((*draw.RGBA64Image)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Drawer\":      reflect.ValueOf((*_image_draw_Drawer)(nil)),\n\t\t\"_Image\":       reflect.ValueOf((*_image_draw_Image)(nil)),\n\t\t\"_Quantizer\":   reflect.ValueOf((*_image_draw_Quantizer)(nil)),\n\t\t\"_RGBA64Image\": reflect.ValueOf((*_image_draw_RGBA64Image)(nil)),\n\t}\n}\n\n// _image_draw_Drawer is an interface wrapper for Drawer type\ntype _image_draw_Drawer struct {\n\tIValue interface{}\n\tWDraw  func(dst draw.Image, r image.Rectangle, src image.Image, sp image.Point)\n}\n\nfunc (W _image_draw_Drawer) Draw(dst draw.Image, r image.Rectangle, src image.Image, sp image.Point) {\n\tW.WDraw(dst, r, src, sp)\n}\n\n// _image_draw_Image is an interface wrapper for Image type\ntype _image_draw_Image struct {\n\tIValue      interface{}\n\tWAt         func(x int, y int) color.Color\n\tWBounds     func() image.Rectangle\n\tWColorModel func() color.Model\n\tWSet        func(x int, y int, c color.Color)\n}\n\nfunc (W _image_draw_Image) At(x int, y int) color.Color     { return W.WAt(x, y) }\nfunc (W _image_draw_Image) Bounds() image.Rectangle         { return W.WBounds() }\nfunc (W _image_draw_Image) ColorModel() color.Model         { return W.WColorModel() }\nfunc (W _image_draw_Image) Set(x int, y int, c color.Color) { W.WSet(x, y, c) }\n\n// _image_draw_Quantizer is an interface wrapper for Quantizer type\ntype _image_draw_Quantizer struct {\n\tIValue    interface{}\n\tWQuantize func(p color.Palette, m image.Image) color.Palette\n}\n\nfunc (W _image_draw_Quantizer) Quantize(p color.Palette, m image.Image) color.Palette {\n\treturn W.WQuantize(p, m)\n}\n\n// _image_draw_RGBA64Image is an interface wrapper for RGBA64Image type\ntype _image_draw_RGBA64Image struct {\n\tIValue      interface{}\n\tWAt         func(x int, y int) color.Color\n\tWBounds     func() image.Rectangle\n\tWColorModel func() color.Model\n\tWRGBA64At   func(x int, y int) color.RGBA64\n\tWSet        func(x int, y int, c color.Color)\n\tWSetRGBA64  func(x int, y int, c color.RGBA64)\n}\n\nfunc (W _image_draw_RGBA64Image) At(x int, y int) color.Color            { return W.WAt(x, y) }\nfunc (W _image_draw_RGBA64Image) Bounds() image.Rectangle                { return W.WBounds() }\nfunc (W _image_draw_RGBA64Image) ColorModel() color.Model                { return W.WColorModel() }\nfunc (W _image_draw_RGBA64Image) RGBA64At(x int, y int) color.RGBA64     { return W.WRGBA64At(x, y) }\nfunc (W _image_draw_RGBA64Image) Set(x int, y int, c color.Color)        { W.WSet(x, y, c) }\nfunc (W _image_draw_RGBA64Image) SetRGBA64(x int, y int, c color.RGBA64) { W.WSetRGBA64(x, y, c) }\n"
  },
  {
    "path": "stdlib/go1_22_image_gif.go",
    "content": "// Code generated by 'yaegi extract image/gif'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"image/gif\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"image/gif/gif\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Decode\":             reflect.ValueOf(gif.Decode),\n\t\t\"DecodeAll\":          reflect.ValueOf(gif.DecodeAll),\n\t\t\"DecodeConfig\":       reflect.ValueOf(gif.DecodeConfig),\n\t\t\"DisposalBackground\": reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DisposalNone\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DisposalPrevious\":   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Encode\":             reflect.ValueOf(gif.Encode),\n\t\t\"EncodeAll\":          reflect.ValueOf(gif.EncodeAll),\n\n\t\t// type definitions\n\t\t\"GIF\":     reflect.ValueOf((*gif.GIF)(nil)),\n\t\t\"Options\": reflect.ValueOf((*gif.Options)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_image_jpeg.go",
    "content": "// Code generated by 'yaegi extract image/jpeg'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"image/jpeg\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"image/jpeg/jpeg\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Decode\":         reflect.ValueOf(jpeg.Decode),\n\t\t\"DecodeConfig\":   reflect.ValueOf(jpeg.DecodeConfig),\n\t\t\"DefaultQuality\": reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"Encode\":         reflect.ValueOf(jpeg.Encode),\n\n\t\t// type definitions\n\t\t\"FormatError\":      reflect.ValueOf((*jpeg.FormatError)(nil)),\n\t\t\"Options\":          reflect.ValueOf((*jpeg.Options)(nil)),\n\t\t\"Reader\":           reflect.ValueOf((*jpeg.Reader)(nil)),\n\t\t\"UnsupportedError\": reflect.ValueOf((*jpeg.UnsupportedError)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Reader\": reflect.ValueOf((*_image_jpeg_Reader)(nil)),\n\t}\n}\n\n// _image_jpeg_Reader is an interface wrapper for Reader type\ntype _image_jpeg_Reader struct {\n\tIValue    interface{}\n\tWRead     func(p []byte) (n int, err error)\n\tWReadByte func() (byte, error)\n}\n\nfunc (W _image_jpeg_Reader) Read(p []byte) (n int, err error) { return W.WRead(p) }\nfunc (W _image_jpeg_Reader) ReadByte() (byte, error)          { return W.WReadByte() }\n"
  },
  {
    "path": "stdlib/go1_22_image_png.go",
    "content": "// Code generated by 'yaegi extract image/png'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"image/png\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"image/png/png\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BestCompression\":    reflect.ValueOf(png.BestCompression),\n\t\t\"BestSpeed\":          reflect.ValueOf(png.BestSpeed),\n\t\t\"Decode\":             reflect.ValueOf(png.Decode),\n\t\t\"DecodeConfig\":       reflect.ValueOf(png.DecodeConfig),\n\t\t\"DefaultCompression\": reflect.ValueOf(png.DefaultCompression),\n\t\t\"Encode\":             reflect.ValueOf(png.Encode),\n\t\t\"NoCompression\":      reflect.ValueOf(png.NoCompression),\n\n\t\t// type definitions\n\t\t\"CompressionLevel\":  reflect.ValueOf((*png.CompressionLevel)(nil)),\n\t\t\"Encoder\":           reflect.ValueOf((*png.Encoder)(nil)),\n\t\t\"EncoderBuffer\":     reflect.ValueOf((*png.EncoderBuffer)(nil)),\n\t\t\"EncoderBufferPool\": reflect.ValueOf((*png.EncoderBufferPool)(nil)),\n\t\t\"FormatError\":       reflect.ValueOf((*png.FormatError)(nil)),\n\t\t\"UnsupportedError\":  reflect.ValueOf((*png.UnsupportedError)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_EncoderBufferPool\": reflect.ValueOf((*_image_png_EncoderBufferPool)(nil)),\n\t}\n}\n\n// _image_png_EncoderBufferPool is an interface wrapper for EncoderBufferPool type\ntype _image_png_EncoderBufferPool struct {\n\tIValue interface{}\n\tWGet   func() *png.EncoderBuffer\n\tWPut   func(a0 *png.EncoderBuffer)\n}\n\nfunc (W _image_png_EncoderBufferPool) Get() *png.EncoderBuffer   { return W.WGet() }\nfunc (W _image_png_EncoderBufferPool) Put(a0 *png.EncoderBuffer) { W.WPut(a0) }\n"
  },
  {
    "path": "stdlib/go1_22_index_suffixarray.go",
    "content": "// Code generated by 'yaegi extract index/suffixarray'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"index/suffixarray\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"index/suffixarray/suffixarray\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"New\": reflect.ValueOf(suffixarray.New),\n\n\t\t// type definitions\n\t\t\"Index\": reflect.ValueOf((*suffixarray.Index)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_io.go",
    "content": "// Code generated by 'yaegi extract io'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"io\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"io/io\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Copy\":             reflect.ValueOf(io.Copy),\n\t\t\"CopyBuffer\":       reflect.ValueOf(io.CopyBuffer),\n\t\t\"CopyN\":            reflect.ValueOf(io.CopyN),\n\t\t\"Discard\":          reflect.ValueOf(&io.Discard).Elem(),\n\t\t\"EOF\":              reflect.ValueOf(&io.EOF).Elem(),\n\t\t\"ErrClosedPipe\":    reflect.ValueOf(&io.ErrClosedPipe).Elem(),\n\t\t\"ErrNoProgress\":    reflect.ValueOf(&io.ErrNoProgress).Elem(),\n\t\t\"ErrShortBuffer\":   reflect.ValueOf(&io.ErrShortBuffer).Elem(),\n\t\t\"ErrShortWrite\":    reflect.ValueOf(&io.ErrShortWrite).Elem(),\n\t\t\"ErrUnexpectedEOF\": reflect.ValueOf(&io.ErrUnexpectedEOF).Elem(),\n\t\t\"LimitReader\":      reflect.ValueOf(io.LimitReader),\n\t\t\"MultiReader\":      reflect.ValueOf(io.MultiReader),\n\t\t\"MultiWriter\":      reflect.ValueOf(io.MultiWriter),\n\t\t\"NewOffsetWriter\":  reflect.ValueOf(io.NewOffsetWriter),\n\t\t\"NewSectionReader\": reflect.ValueOf(io.NewSectionReader),\n\t\t\"NopCloser\":        reflect.ValueOf(io.NopCloser),\n\t\t\"Pipe\":             reflect.ValueOf(io.Pipe),\n\t\t\"ReadAll\":          reflect.ValueOf(io.ReadAll),\n\t\t\"ReadAtLeast\":      reflect.ValueOf(io.ReadAtLeast),\n\t\t\"ReadFull\":         reflect.ValueOf(io.ReadFull),\n\t\t\"SeekCurrent\":      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SeekEnd\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SeekStart\":        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TeeReader\":        reflect.ValueOf(io.TeeReader),\n\t\t\"WriteString\":      reflect.ValueOf(io.WriteString),\n\n\t\t// type definitions\n\t\t\"ByteReader\":      reflect.ValueOf((*io.ByteReader)(nil)),\n\t\t\"ByteScanner\":     reflect.ValueOf((*io.ByteScanner)(nil)),\n\t\t\"ByteWriter\":      reflect.ValueOf((*io.ByteWriter)(nil)),\n\t\t\"Closer\":          reflect.ValueOf((*io.Closer)(nil)),\n\t\t\"LimitedReader\":   reflect.ValueOf((*io.LimitedReader)(nil)),\n\t\t\"OffsetWriter\":    reflect.ValueOf((*io.OffsetWriter)(nil)),\n\t\t\"PipeReader\":      reflect.ValueOf((*io.PipeReader)(nil)),\n\t\t\"PipeWriter\":      reflect.ValueOf((*io.PipeWriter)(nil)),\n\t\t\"ReadCloser\":      reflect.ValueOf((*io.ReadCloser)(nil)),\n\t\t\"ReadSeekCloser\":  reflect.ValueOf((*io.ReadSeekCloser)(nil)),\n\t\t\"ReadSeeker\":      reflect.ValueOf((*io.ReadSeeker)(nil)),\n\t\t\"ReadWriteCloser\": reflect.ValueOf((*io.ReadWriteCloser)(nil)),\n\t\t\"ReadWriteSeeker\": reflect.ValueOf((*io.ReadWriteSeeker)(nil)),\n\t\t\"ReadWriter\":      reflect.ValueOf((*io.ReadWriter)(nil)),\n\t\t\"Reader\":          reflect.ValueOf((*io.Reader)(nil)),\n\t\t\"ReaderAt\":        reflect.ValueOf((*io.ReaderAt)(nil)),\n\t\t\"ReaderFrom\":      reflect.ValueOf((*io.ReaderFrom)(nil)),\n\t\t\"RuneReader\":      reflect.ValueOf((*io.RuneReader)(nil)),\n\t\t\"RuneScanner\":     reflect.ValueOf((*io.RuneScanner)(nil)),\n\t\t\"SectionReader\":   reflect.ValueOf((*io.SectionReader)(nil)),\n\t\t\"Seeker\":          reflect.ValueOf((*io.Seeker)(nil)),\n\t\t\"StringWriter\":    reflect.ValueOf((*io.StringWriter)(nil)),\n\t\t\"WriteCloser\":     reflect.ValueOf((*io.WriteCloser)(nil)),\n\t\t\"WriteSeeker\":     reflect.ValueOf((*io.WriteSeeker)(nil)),\n\t\t\"Writer\":          reflect.ValueOf((*io.Writer)(nil)),\n\t\t\"WriterAt\":        reflect.ValueOf((*io.WriterAt)(nil)),\n\t\t\"WriterTo\":        reflect.ValueOf((*io.WriterTo)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_ByteReader\":      reflect.ValueOf((*_io_ByteReader)(nil)),\n\t\t\"_ByteScanner\":     reflect.ValueOf((*_io_ByteScanner)(nil)),\n\t\t\"_ByteWriter\":      reflect.ValueOf((*_io_ByteWriter)(nil)),\n\t\t\"_Closer\":          reflect.ValueOf((*_io_Closer)(nil)),\n\t\t\"_ReadCloser\":      reflect.ValueOf((*_io_ReadCloser)(nil)),\n\t\t\"_ReadSeekCloser\":  reflect.ValueOf((*_io_ReadSeekCloser)(nil)),\n\t\t\"_ReadSeeker\":      reflect.ValueOf((*_io_ReadSeeker)(nil)),\n\t\t\"_ReadWriteCloser\": reflect.ValueOf((*_io_ReadWriteCloser)(nil)),\n\t\t\"_ReadWriteSeeker\": reflect.ValueOf((*_io_ReadWriteSeeker)(nil)),\n\t\t\"_ReadWriter\":      reflect.ValueOf((*_io_ReadWriter)(nil)),\n\t\t\"_Reader\":          reflect.ValueOf((*_io_Reader)(nil)),\n\t\t\"_ReaderAt\":        reflect.ValueOf((*_io_ReaderAt)(nil)),\n\t\t\"_ReaderFrom\":      reflect.ValueOf((*_io_ReaderFrom)(nil)),\n\t\t\"_RuneReader\":      reflect.ValueOf((*_io_RuneReader)(nil)),\n\t\t\"_RuneScanner\":     reflect.ValueOf((*_io_RuneScanner)(nil)),\n\t\t\"_Seeker\":          reflect.ValueOf((*_io_Seeker)(nil)),\n\t\t\"_StringWriter\":    reflect.ValueOf((*_io_StringWriter)(nil)),\n\t\t\"_WriteCloser\":     reflect.ValueOf((*_io_WriteCloser)(nil)),\n\t\t\"_WriteSeeker\":     reflect.ValueOf((*_io_WriteSeeker)(nil)),\n\t\t\"_Writer\":          reflect.ValueOf((*_io_Writer)(nil)),\n\t\t\"_WriterAt\":        reflect.ValueOf((*_io_WriterAt)(nil)),\n\t\t\"_WriterTo\":        reflect.ValueOf((*_io_WriterTo)(nil)),\n\t}\n}\n\n// _io_ByteReader is an interface wrapper for ByteReader type\ntype _io_ByteReader struct {\n\tIValue    interface{}\n\tWReadByte func() (byte, error)\n}\n\nfunc (W _io_ByteReader) ReadByte() (byte, error) { return W.WReadByte() }\n\n// _io_ByteScanner is an interface wrapper for ByteScanner type\ntype _io_ByteScanner struct {\n\tIValue      interface{}\n\tWReadByte   func() (byte, error)\n\tWUnreadByte func() error\n}\n\nfunc (W _io_ByteScanner) ReadByte() (byte, error) { return W.WReadByte() }\nfunc (W _io_ByteScanner) UnreadByte() error       { return W.WUnreadByte() }\n\n// _io_ByteWriter is an interface wrapper for ByteWriter type\ntype _io_ByteWriter struct {\n\tIValue     interface{}\n\tWWriteByte func(c byte) error\n}\n\nfunc (W _io_ByteWriter) WriteByte(c byte) error { return W.WWriteByte(c) }\n\n// _io_Closer is an interface wrapper for Closer type\ntype _io_Closer struct {\n\tIValue interface{}\n\tWClose func() error\n}\n\nfunc (W _io_Closer) Close() error { return W.WClose() }\n\n// _io_ReadCloser is an interface wrapper for ReadCloser type\ntype _io_ReadCloser struct {\n\tIValue interface{}\n\tWClose func() error\n\tWRead  func(p []byte) (n int, err error)\n}\n\nfunc (W _io_ReadCloser) Close() error                     { return W.WClose() }\nfunc (W _io_ReadCloser) Read(p []byte) (n int, err error) { return W.WRead(p) }\n\n// _io_ReadSeekCloser is an interface wrapper for ReadSeekCloser type\ntype _io_ReadSeekCloser struct {\n\tIValue interface{}\n\tWClose func() error\n\tWRead  func(p []byte) (n int, err error)\n\tWSeek  func(offset int64, whence int) (int64, error)\n}\n\nfunc (W _io_ReadSeekCloser) Close() error                     { return W.WClose() }\nfunc (W _io_ReadSeekCloser) Read(p []byte) (n int, err error) { return W.WRead(p) }\nfunc (W _io_ReadSeekCloser) Seek(offset int64, whence int) (int64, error) {\n\treturn W.WSeek(offset, whence)\n}\n\n// _io_ReadSeeker is an interface wrapper for ReadSeeker type\ntype _io_ReadSeeker struct {\n\tIValue interface{}\n\tWRead  func(p []byte) (n int, err error)\n\tWSeek  func(offset int64, whence int) (int64, error)\n}\n\nfunc (W _io_ReadSeeker) Read(p []byte) (n int, err error)             { return W.WRead(p) }\nfunc (W _io_ReadSeeker) Seek(offset int64, whence int) (int64, error) { return W.WSeek(offset, whence) }\n\n// _io_ReadWriteCloser is an interface wrapper for ReadWriteCloser type\ntype _io_ReadWriteCloser struct {\n\tIValue interface{}\n\tWClose func() error\n\tWRead  func(p []byte) (n int, err error)\n\tWWrite func(p []byte) (n int, err error)\n}\n\nfunc (W _io_ReadWriteCloser) Close() error                      { return W.WClose() }\nfunc (W _io_ReadWriteCloser) Read(p []byte) (n int, err error)  { return W.WRead(p) }\nfunc (W _io_ReadWriteCloser) Write(p []byte) (n int, err error) { return W.WWrite(p) }\n\n// _io_ReadWriteSeeker is an interface wrapper for ReadWriteSeeker type\ntype _io_ReadWriteSeeker struct {\n\tIValue interface{}\n\tWRead  func(p []byte) (n int, err error)\n\tWSeek  func(offset int64, whence int) (int64, error)\n\tWWrite func(p []byte) (n int, err error)\n}\n\nfunc (W _io_ReadWriteSeeker) Read(p []byte) (n int, err error) { return W.WRead(p) }\nfunc (W _io_ReadWriteSeeker) Seek(offset int64, whence int) (int64, error) {\n\treturn W.WSeek(offset, whence)\n}\nfunc (W _io_ReadWriteSeeker) Write(p []byte) (n int, err error) { return W.WWrite(p) }\n\n// _io_ReadWriter is an interface wrapper for ReadWriter type\ntype _io_ReadWriter struct {\n\tIValue interface{}\n\tWRead  func(p []byte) (n int, err error)\n\tWWrite func(p []byte) (n int, err error)\n}\n\nfunc (W _io_ReadWriter) Read(p []byte) (n int, err error)  { return W.WRead(p) }\nfunc (W _io_ReadWriter) Write(p []byte) (n int, err error) { return W.WWrite(p) }\n\n// _io_Reader is an interface wrapper for Reader type\ntype _io_Reader struct {\n\tIValue interface{}\n\tWRead  func(p []byte) (n int, err error)\n}\n\nfunc (W _io_Reader) Read(p []byte) (n int, err error) { return W.WRead(p) }\n\n// _io_ReaderAt is an interface wrapper for ReaderAt type\ntype _io_ReaderAt struct {\n\tIValue  interface{}\n\tWReadAt func(p []byte, off int64) (n int, err error)\n}\n\nfunc (W _io_ReaderAt) ReadAt(p []byte, off int64) (n int, err error) { return W.WReadAt(p, off) }\n\n// _io_ReaderFrom is an interface wrapper for ReaderFrom type\ntype _io_ReaderFrom struct {\n\tIValue    interface{}\n\tWReadFrom func(r io.Reader) (n int64, err error)\n}\n\nfunc (W _io_ReaderFrom) ReadFrom(r io.Reader) (n int64, err error) { return W.WReadFrom(r) }\n\n// _io_RuneReader is an interface wrapper for RuneReader type\ntype _io_RuneReader struct {\n\tIValue    interface{}\n\tWReadRune func() (r rune, size int, err error)\n}\n\nfunc (W _io_RuneReader) ReadRune() (r rune, size int, err error) { return W.WReadRune() }\n\n// _io_RuneScanner is an interface wrapper for RuneScanner type\ntype _io_RuneScanner struct {\n\tIValue      interface{}\n\tWReadRune   func() (r rune, size int, err error)\n\tWUnreadRune func() error\n}\n\nfunc (W _io_RuneScanner) ReadRune() (r rune, size int, err error) { return W.WReadRune() }\nfunc (W _io_RuneScanner) UnreadRune() error                       { return W.WUnreadRune() }\n\n// _io_Seeker is an interface wrapper for Seeker type\ntype _io_Seeker struct {\n\tIValue interface{}\n\tWSeek  func(offset int64, whence int) (int64, error)\n}\n\nfunc (W _io_Seeker) Seek(offset int64, whence int) (int64, error) { return W.WSeek(offset, whence) }\n\n// _io_StringWriter is an interface wrapper for StringWriter type\ntype _io_StringWriter struct {\n\tIValue       interface{}\n\tWWriteString func(s string) (n int, err error)\n}\n\nfunc (W _io_StringWriter) WriteString(s string) (n int, err error) { return W.WWriteString(s) }\n\n// _io_WriteCloser is an interface wrapper for WriteCloser type\ntype _io_WriteCloser struct {\n\tIValue interface{}\n\tWClose func() error\n\tWWrite func(p []byte) (n int, err error)\n}\n\nfunc (W _io_WriteCloser) Close() error                      { return W.WClose() }\nfunc (W _io_WriteCloser) Write(p []byte) (n int, err error) { return W.WWrite(p) }\n\n// _io_WriteSeeker is an interface wrapper for WriteSeeker type\ntype _io_WriteSeeker struct {\n\tIValue interface{}\n\tWSeek  func(offset int64, whence int) (int64, error)\n\tWWrite func(p []byte) (n int, err error)\n}\n\nfunc (W _io_WriteSeeker) Seek(offset int64, whence int) (int64, error) {\n\treturn W.WSeek(offset, whence)\n}\nfunc (W _io_WriteSeeker) Write(p []byte) (n int, err error) { return W.WWrite(p) }\n\n// _io_Writer is an interface wrapper for Writer type\ntype _io_Writer struct {\n\tIValue interface{}\n\tWWrite func(p []byte) (n int, err error)\n}\n\nfunc (W _io_Writer) Write(p []byte) (n int, err error) { return W.WWrite(p) }\n\n// _io_WriterAt is an interface wrapper for WriterAt type\ntype _io_WriterAt struct {\n\tIValue   interface{}\n\tWWriteAt func(p []byte, off int64) (n int, err error)\n}\n\nfunc (W _io_WriterAt) WriteAt(p []byte, off int64) (n int, err error) { return W.WWriteAt(p, off) }\n\n// _io_WriterTo is an interface wrapper for WriterTo type\ntype _io_WriterTo struct {\n\tIValue   interface{}\n\tWWriteTo func(w io.Writer) (n int64, err error)\n}\n\nfunc (W _io_WriterTo) WriteTo(w io.Writer) (n int64, err error) { return W.WWriteTo(w) }\n"
  },
  {
    "path": "stdlib/go1_22_io_fs.go",
    "content": "// Code generated by 'yaegi extract io/fs'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"io/fs\"\n\t\"reflect\"\n\t\"time\"\n)\n\nfunc init() {\n\tSymbols[\"io/fs/fs\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ErrClosed\":          reflect.ValueOf(&fs.ErrClosed).Elem(),\n\t\t\"ErrExist\":           reflect.ValueOf(&fs.ErrExist).Elem(),\n\t\t\"ErrInvalid\":         reflect.ValueOf(&fs.ErrInvalid).Elem(),\n\t\t\"ErrNotExist\":        reflect.ValueOf(&fs.ErrNotExist).Elem(),\n\t\t\"ErrPermission\":      reflect.ValueOf(&fs.ErrPermission).Elem(),\n\t\t\"FileInfoToDirEntry\": reflect.ValueOf(fs.FileInfoToDirEntry),\n\t\t\"FormatDirEntry\":     reflect.ValueOf(fs.FormatDirEntry),\n\t\t\"FormatFileInfo\":     reflect.ValueOf(fs.FormatFileInfo),\n\t\t\"Glob\":               reflect.ValueOf(fs.Glob),\n\t\t\"ModeAppend\":         reflect.ValueOf(fs.ModeAppend),\n\t\t\"ModeCharDevice\":     reflect.ValueOf(fs.ModeCharDevice),\n\t\t\"ModeDevice\":         reflect.ValueOf(fs.ModeDevice),\n\t\t\"ModeDir\":            reflect.ValueOf(fs.ModeDir),\n\t\t\"ModeExclusive\":      reflect.ValueOf(fs.ModeExclusive),\n\t\t\"ModeIrregular\":      reflect.ValueOf(fs.ModeIrregular),\n\t\t\"ModeNamedPipe\":      reflect.ValueOf(fs.ModeNamedPipe),\n\t\t\"ModePerm\":           reflect.ValueOf(fs.ModePerm),\n\t\t\"ModeSetgid\":         reflect.ValueOf(fs.ModeSetgid),\n\t\t\"ModeSetuid\":         reflect.ValueOf(fs.ModeSetuid),\n\t\t\"ModeSocket\":         reflect.ValueOf(fs.ModeSocket),\n\t\t\"ModeSticky\":         reflect.ValueOf(fs.ModeSticky),\n\t\t\"ModeSymlink\":        reflect.ValueOf(fs.ModeSymlink),\n\t\t\"ModeTemporary\":      reflect.ValueOf(fs.ModeTemporary),\n\t\t\"ModeType\":           reflect.ValueOf(fs.ModeType),\n\t\t\"ReadDir\":            reflect.ValueOf(fs.ReadDir),\n\t\t\"ReadFile\":           reflect.ValueOf(fs.ReadFile),\n\t\t\"SkipAll\":            reflect.ValueOf(&fs.SkipAll).Elem(),\n\t\t\"SkipDir\":            reflect.ValueOf(&fs.SkipDir).Elem(),\n\t\t\"Stat\":               reflect.ValueOf(fs.Stat),\n\t\t\"Sub\":                reflect.ValueOf(fs.Sub),\n\t\t\"ValidPath\":          reflect.ValueOf(fs.ValidPath),\n\t\t\"WalkDir\":            reflect.ValueOf(fs.WalkDir),\n\n\t\t// type definitions\n\t\t\"DirEntry\":    reflect.ValueOf((*fs.DirEntry)(nil)),\n\t\t\"FS\":          reflect.ValueOf((*fs.FS)(nil)),\n\t\t\"File\":        reflect.ValueOf((*fs.File)(nil)),\n\t\t\"FileInfo\":    reflect.ValueOf((*fs.FileInfo)(nil)),\n\t\t\"FileMode\":    reflect.ValueOf((*fs.FileMode)(nil)),\n\t\t\"GlobFS\":      reflect.ValueOf((*fs.GlobFS)(nil)),\n\t\t\"PathError\":   reflect.ValueOf((*fs.PathError)(nil)),\n\t\t\"ReadDirFS\":   reflect.ValueOf((*fs.ReadDirFS)(nil)),\n\t\t\"ReadDirFile\": reflect.ValueOf((*fs.ReadDirFile)(nil)),\n\t\t\"ReadFileFS\":  reflect.ValueOf((*fs.ReadFileFS)(nil)),\n\t\t\"StatFS\":      reflect.ValueOf((*fs.StatFS)(nil)),\n\t\t\"SubFS\":       reflect.ValueOf((*fs.SubFS)(nil)),\n\t\t\"WalkDirFunc\": reflect.ValueOf((*fs.WalkDirFunc)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_DirEntry\":    reflect.ValueOf((*_io_fs_DirEntry)(nil)),\n\t\t\"_FS\":          reflect.ValueOf((*_io_fs_FS)(nil)),\n\t\t\"_File\":        reflect.ValueOf((*_io_fs_File)(nil)),\n\t\t\"_FileInfo\":    reflect.ValueOf((*_io_fs_FileInfo)(nil)),\n\t\t\"_GlobFS\":      reflect.ValueOf((*_io_fs_GlobFS)(nil)),\n\t\t\"_ReadDirFS\":   reflect.ValueOf((*_io_fs_ReadDirFS)(nil)),\n\t\t\"_ReadDirFile\": reflect.ValueOf((*_io_fs_ReadDirFile)(nil)),\n\t\t\"_ReadFileFS\":  reflect.ValueOf((*_io_fs_ReadFileFS)(nil)),\n\t\t\"_StatFS\":      reflect.ValueOf((*_io_fs_StatFS)(nil)),\n\t\t\"_SubFS\":       reflect.ValueOf((*_io_fs_SubFS)(nil)),\n\t}\n}\n\n// _io_fs_DirEntry is an interface wrapper for DirEntry type\ntype _io_fs_DirEntry struct {\n\tIValue interface{}\n\tWInfo  func() (fs.FileInfo, error)\n\tWIsDir func() bool\n\tWName  func() string\n\tWType  func() fs.FileMode\n}\n\nfunc (W _io_fs_DirEntry) Info() (fs.FileInfo, error) { return W.WInfo() }\nfunc (W _io_fs_DirEntry) IsDir() bool                { return W.WIsDir() }\nfunc (W _io_fs_DirEntry) Name() string               { return W.WName() }\nfunc (W _io_fs_DirEntry) Type() fs.FileMode          { return W.WType() }\n\n// _io_fs_FS is an interface wrapper for FS type\ntype _io_fs_FS struct {\n\tIValue interface{}\n\tWOpen  func(name string) (fs.File, error)\n}\n\nfunc (W _io_fs_FS) Open(name string) (fs.File, error) { return W.WOpen(name) }\n\n// _io_fs_File is an interface wrapper for File type\ntype _io_fs_File struct {\n\tIValue interface{}\n\tWClose func() error\n\tWRead  func(a0 []byte) (int, error)\n\tWStat  func() (fs.FileInfo, error)\n}\n\nfunc (W _io_fs_File) Close() error                { return W.WClose() }\nfunc (W _io_fs_File) Read(a0 []byte) (int, error) { return W.WRead(a0) }\nfunc (W _io_fs_File) Stat() (fs.FileInfo, error)  { return W.WStat() }\n\n// _io_fs_FileInfo is an interface wrapper for FileInfo type\ntype _io_fs_FileInfo struct {\n\tIValue   interface{}\n\tWIsDir   func() bool\n\tWModTime func() time.Time\n\tWMode    func() fs.FileMode\n\tWName    func() string\n\tWSize    func() int64\n\tWSys     func() any\n}\n\nfunc (W _io_fs_FileInfo) IsDir() bool        { return W.WIsDir() }\nfunc (W _io_fs_FileInfo) ModTime() time.Time { return W.WModTime() }\nfunc (W _io_fs_FileInfo) Mode() fs.FileMode  { return W.WMode() }\nfunc (W _io_fs_FileInfo) Name() string       { return W.WName() }\nfunc (W _io_fs_FileInfo) Size() int64        { return W.WSize() }\nfunc (W _io_fs_FileInfo) Sys() any           { return W.WSys() }\n\n// _io_fs_GlobFS is an interface wrapper for GlobFS type\ntype _io_fs_GlobFS struct {\n\tIValue interface{}\n\tWGlob  func(pattern string) ([]string, error)\n\tWOpen  func(name string) (fs.File, error)\n}\n\nfunc (W _io_fs_GlobFS) Glob(pattern string) ([]string, error) { return W.WGlob(pattern) }\nfunc (W _io_fs_GlobFS) Open(name string) (fs.File, error)     { return W.WOpen(name) }\n\n// _io_fs_ReadDirFS is an interface wrapper for ReadDirFS type\ntype _io_fs_ReadDirFS struct {\n\tIValue   interface{}\n\tWOpen    func(name string) (fs.File, error)\n\tWReadDir func(name string) ([]fs.DirEntry, error)\n}\n\nfunc (W _io_fs_ReadDirFS) Open(name string) (fs.File, error)          { return W.WOpen(name) }\nfunc (W _io_fs_ReadDirFS) ReadDir(name string) ([]fs.DirEntry, error) { return W.WReadDir(name) }\n\n// _io_fs_ReadDirFile is an interface wrapper for ReadDirFile type\ntype _io_fs_ReadDirFile struct {\n\tIValue   interface{}\n\tWClose   func() error\n\tWRead    func(a0 []byte) (int, error)\n\tWReadDir func(n int) ([]fs.DirEntry, error)\n\tWStat    func() (fs.FileInfo, error)\n}\n\nfunc (W _io_fs_ReadDirFile) Close() error                         { return W.WClose() }\nfunc (W _io_fs_ReadDirFile) Read(a0 []byte) (int, error)          { return W.WRead(a0) }\nfunc (W _io_fs_ReadDirFile) ReadDir(n int) ([]fs.DirEntry, error) { return W.WReadDir(n) }\nfunc (W _io_fs_ReadDirFile) Stat() (fs.FileInfo, error)           { return W.WStat() }\n\n// _io_fs_ReadFileFS is an interface wrapper for ReadFileFS type\ntype _io_fs_ReadFileFS struct {\n\tIValue    interface{}\n\tWOpen     func(name string) (fs.File, error)\n\tWReadFile func(name string) ([]byte, error)\n}\n\nfunc (W _io_fs_ReadFileFS) Open(name string) (fs.File, error)    { return W.WOpen(name) }\nfunc (W _io_fs_ReadFileFS) ReadFile(name string) ([]byte, error) { return W.WReadFile(name) }\n\n// _io_fs_StatFS is an interface wrapper for StatFS type\ntype _io_fs_StatFS struct {\n\tIValue interface{}\n\tWOpen  func(name string) (fs.File, error)\n\tWStat  func(name string) (fs.FileInfo, error)\n}\n\nfunc (W _io_fs_StatFS) Open(name string) (fs.File, error)     { return W.WOpen(name) }\nfunc (W _io_fs_StatFS) Stat(name string) (fs.FileInfo, error) { return W.WStat(name) }\n\n// _io_fs_SubFS is an interface wrapper for SubFS type\ntype _io_fs_SubFS struct {\n\tIValue interface{}\n\tWOpen  func(name string) (fs.File, error)\n\tWSub   func(dir string) (fs.FS, error)\n}\n\nfunc (W _io_fs_SubFS) Open(name string) (fs.File, error) { return W.WOpen(name) }\nfunc (W _io_fs_SubFS) Sub(dir string) (fs.FS, error)     { return W.WSub(dir) }\n"
  },
  {
    "path": "stdlib/go1_22_io_ioutil.go",
    "content": "// Code generated by 'yaegi extract io/ioutil'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"io/ioutil\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"io/ioutil/ioutil\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Discard\":   reflect.ValueOf(&ioutil.Discard).Elem(),\n\t\t\"NopCloser\": reflect.ValueOf(ioutil.NopCloser),\n\t\t\"ReadAll\":   reflect.ValueOf(ioutil.ReadAll),\n\t\t\"ReadDir\":   reflect.ValueOf(ioutil.ReadDir),\n\t\t\"ReadFile\":  reflect.ValueOf(ioutil.ReadFile),\n\t\t\"TempDir\":   reflect.ValueOf(ioutil.TempDir),\n\t\t\"TempFile\":  reflect.ValueOf(ioutil.TempFile),\n\t\t\"WriteFile\": reflect.ValueOf(ioutil.WriteFile),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_log.go",
    "content": "// Code generated by 'yaegi extract log'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"log\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"log/log\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Default\":       reflect.ValueOf(log.Default),\n\t\t\"Fatal\":         reflect.ValueOf(logFatal),\n\t\t\"Fatalf\":        reflect.ValueOf(logFatalf),\n\t\t\"Fatalln\":       reflect.ValueOf(logFatalln),\n\t\t\"Flags\":         reflect.ValueOf(log.Flags),\n\t\t\"LUTC\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"Ldate\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Llongfile\":     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lmicroseconds\": reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Lmsgprefix\":    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Lshortfile\":    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"LstdFlags\":     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Ltime\":         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"New\":           reflect.ValueOf(logNew),\n\t\t\"Output\":        reflect.ValueOf(log.Output),\n\t\t\"Panic\":         reflect.ValueOf(log.Panic),\n\t\t\"Panicf\":        reflect.ValueOf(log.Panicf),\n\t\t\"Panicln\":       reflect.ValueOf(log.Panicln),\n\t\t\"Prefix\":        reflect.ValueOf(log.Prefix),\n\t\t\"Print\":         reflect.ValueOf(log.Print),\n\t\t\"Printf\":        reflect.ValueOf(log.Printf),\n\t\t\"Println\":       reflect.ValueOf(log.Println),\n\t\t\"SetFlags\":      reflect.ValueOf(log.SetFlags),\n\t\t\"SetOutput\":     reflect.ValueOf(log.SetOutput),\n\t\t\"SetPrefix\":     reflect.ValueOf(log.SetPrefix),\n\t\t\"Writer\":        reflect.ValueOf(log.Writer),\n\n\t\t// type definitions\n\t\t\"Logger\": reflect.ValueOf((*logLogger)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_log_slog.go",
    "content": "// Code generated by 'yaegi extract log/slog'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"context\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"log/slog\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"log/slog/slog\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Any\":               reflect.ValueOf(slog.Any),\n\t\t\"AnyValue\":          reflect.ValueOf(slog.AnyValue),\n\t\t\"Bool\":              reflect.ValueOf(slog.Bool),\n\t\t\"BoolValue\":         reflect.ValueOf(slog.BoolValue),\n\t\t\"Debug\":             reflect.ValueOf(slog.Debug),\n\t\t\"DebugContext\":      reflect.ValueOf(slog.DebugContext),\n\t\t\"Default\":           reflect.ValueOf(slog.Default),\n\t\t\"Duration\":          reflect.ValueOf(slog.Duration),\n\t\t\"DurationValue\":     reflect.ValueOf(slog.DurationValue),\n\t\t\"Error\":             reflect.ValueOf(slog.Error),\n\t\t\"ErrorContext\":      reflect.ValueOf(slog.ErrorContext),\n\t\t\"Float64\":           reflect.ValueOf(slog.Float64),\n\t\t\"Float64Value\":      reflect.ValueOf(slog.Float64Value),\n\t\t\"Group\":             reflect.ValueOf(slog.Group),\n\t\t\"GroupValue\":        reflect.ValueOf(slog.GroupValue),\n\t\t\"Info\":              reflect.ValueOf(slog.Info),\n\t\t\"InfoContext\":       reflect.ValueOf(slog.InfoContext),\n\t\t\"Int\":               reflect.ValueOf(slog.Int),\n\t\t\"Int64\":             reflect.ValueOf(slog.Int64),\n\t\t\"Int64Value\":        reflect.ValueOf(slog.Int64Value),\n\t\t\"IntValue\":          reflect.ValueOf(slog.IntValue),\n\t\t\"KindAny\":           reflect.ValueOf(slog.KindAny),\n\t\t\"KindBool\":          reflect.ValueOf(slog.KindBool),\n\t\t\"KindDuration\":      reflect.ValueOf(slog.KindDuration),\n\t\t\"KindFloat64\":       reflect.ValueOf(slog.KindFloat64),\n\t\t\"KindGroup\":         reflect.ValueOf(slog.KindGroup),\n\t\t\"KindInt64\":         reflect.ValueOf(slog.KindInt64),\n\t\t\"KindLogValuer\":     reflect.ValueOf(slog.KindLogValuer),\n\t\t\"KindString\":        reflect.ValueOf(slog.KindString),\n\t\t\"KindTime\":          reflect.ValueOf(slog.KindTime),\n\t\t\"KindUint64\":        reflect.ValueOf(slog.KindUint64),\n\t\t\"LevelDebug\":        reflect.ValueOf(slog.LevelDebug),\n\t\t\"LevelError\":        reflect.ValueOf(slog.LevelError),\n\t\t\"LevelInfo\":         reflect.ValueOf(slog.LevelInfo),\n\t\t\"LevelKey\":          reflect.ValueOf(constant.MakeFromLiteral(\"\\\"level\\\"\", token.STRING, 0)),\n\t\t\"LevelWarn\":         reflect.ValueOf(slog.LevelWarn),\n\t\t\"Log\":               reflect.ValueOf(slog.Log),\n\t\t\"LogAttrs\":          reflect.ValueOf(slog.LogAttrs),\n\t\t\"MessageKey\":        reflect.ValueOf(constant.MakeFromLiteral(\"\\\"msg\\\"\", token.STRING, 0)),\n\t\t\"New\":               reflect.ValueOf(slog.New),\n\t\t\"NewJSONHandler\":    reflect.ValueOf(slog.NewJSONHandler),\n\t\t\"NewLogLogger\":      reflect.ValueOf(slog.NewLogLogger),\n\t\t\"NewRecord\":         reflect.ValueOf(slog.NewRecord),\n\t\t\"NewTextHandler\":    reflect.ValueOf(slog.NewTextHandler),\n\t\t\"SetDefault\":        reflect.ValueOf(slog.SetDefault),\n\t\t\"SetLogLoggerLevel\": reflect.ValueOf(slog.SetLogLoggerLevel),\n\t\t\"SourceKey\":         reflect.ValueOf(constant.MakeFromLiteral(\"\\\"source\\\"\", token.STRING, 0)),\n\t\t\"String\":            reflect.ValueOf(slog.String),\n\t\t\"StringValue\":       reflect.ValueOf(slog.StringValue),\n\t\t\"Time\":              reflect.ValueOf(slog.Time),\n\t\t\"TimeKey\":           reflect.ValueOf(constant.MakeFromLiteral(\"\\\"time\\\"\", token.STRING, 0)),\n\t\t\"TimeValue\":         reflect.ValueOf(slog.TimeValue),\n\t\t\"Uint64\":            reflect.ValueOf(slog.Uint64),\n\t\t\"Uint64Value\":       reflect.ValueOf(slog.Uint64Value),\n\t\t\"Warn\":              reflect.ValueOf(slog.Warn),\n\t\t\"WarnContext\":       reflect.ValueOf(slog.WarnContext),\n\t\t\"With\":              reflect.ValueOf(slog.With),\n\n\t\t// type definitions\n\t\t\"Attr\":           reflect.ValueOf((*slog.Attr)(nil)),\n\t\t\"Handler\":        reflect.ValueOf((*slog.Handler)(nil)),\n\t\t\"HandlerOptions\": reflect.ValueOf((*slog.HandlerOptions)(nil)),\n\t\t\"JSONHandler\":    reflect.ValueOf((*slog.JSONHandler)(nil)),\n\t\t\"Kind\":           reflect.ValueOf((*slog.Kind)(nil)),\n\t\t\"Level\":          reflect.ValueOf((*slog.Level)(nil)),\n\t\t\"LevelVar\":       reflect.ValueOf((*slog.LevelVar)(nil)),\n\t\t\"Leveler\":        reflect.ValueOf((*slog.Leveler)(nil)),\n\t\t\"LogValuer\":      reflect.ValueOf((*slog.LogValuer)(nil)),\n\t\t\"Logger\":         reflect.ValueOf((*slog.Logger)(nil)),\n\t\t\"Record\":         reflect.ValueOf((*slog.Record)(nil)),\n\t\t\"Source\":         reflect.ValueOf((*slog.Source)(nil)),\n\t\t\"TextHandler\":    reflect.ValueOf((*slog.TextHandler)(nil)),\n\t\t\"Value\":          reflect.ValueOf((*slog.Value)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Handler\":   reflect.ValueOf((*_log_slog_Handler)(nil)),\n\t\t\"_Leveler\":   reflect.ValueOf((*_log_slog_Leveler)(nil)),\n\t\t\"_LogValuer\": reflect.ValueOf((*_log_slog_LogValuer)(nil)),\n\t}\n}\n\n// _log_slog_Handler is an interface wrapper for Handler type\ntype _log_slog_Handler struct {\n\tIValue     interface{}\n\tWEnabled   func(a0 context.Context, a1 slog.Level) bool\n\tWHandle    func(a0 context.Context, a1 slog.Record) error\n\tWWithAttrs func(attrs []slog.Attr) slog.Handler\n\tWWithGroup func(name string) slog.Handler\n}\n\nfunc (W _log_slog_Handler) Enabled(a0 context.Context, a1 slog.Level) bool  { return W.WEnabled(a0, a1) }\nfunc (W _log_slog_Handler) Handle(a0 context.Context, a1 slog.Record) error { return W.WHandle(a0, a1) }\nfunc (W _log_slog_Handler) WithAttrs(attrs []slog.Attr) slog.Handler        { return W.WWithAttrs(attrs) }\nfunc (W _log_slog_Handler) WithGroup(name string) slog.Handler              { return W.WWithGroup(name) }\n\n// _log_slog_Leveler is an interface wrapper for Leveler type\ntype _log_slog_Leveler struct {\n\tIValue interface{}\n\tWLevel func() slog.Level\n}\n\nfunc (W _log_slog_Leveler) Level() slog.Level { return W.WLevel() }\n\n// _log_slog_LogValuer is an interface wrapper for LogValuer type\ntype _log_slog_LogValuer struct {\n\tIValue    interface{}\n\tWLogValue func() slog.Value\n}\n\nfunc (W _log_slog_LogValuer) LogValue() slog.Value { return W.WLogValue() }\n"
  },
  {
    "path": "stdlib/go1_22_log_syslog.go",
    "content": "// Code generated by 'yaegi extract log/syslog'. DO NOT EDIT.\n\n//go:build go1.22 && !windows && !nacl && !plan9\n// +build go1.22,!windows,!nacl,!plan9\n\npackage stdlib\n\nimport (\n\t\"log/syslog\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"log/syslog/syslog\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Dial\":         reflect.ValueOf(syslog.Dial),\n\t\t\"LOG_ALERT\":    reflect.ValueOf(syslog.LOG_ALERT),\n\t\t\"LOG_AUTH\":     reflect.ValueOf(syslog.LOG_AUTH),\n\t\t\"LOG_AUTHPRIV\": reflect.ValueOf(syslog.LOG_AUTHPRIV),\n\t\t\"LOG_CRIT\":     reflect.ValueOf(syslog.LOG_CRIT),\n\t\t\"LOG_CRON\":     reflect.ValueOf(syslog.LOG_CRON),\n\t\t\"LOG_DAEMON\":   reflect.ValueOf(syslog.LOG_DAEMON),\n\t\t\"LOG_DEBUG\":    reflect.ValueOf(syslog.LOG_DEBUG),\n\t\t\"LOG_EMERG\":    reflect.ValueOf(syslog.LOG_EMERG),\n\t\t\"LOG_ERR\":      reflect.ValueOf(syslog.LOG_ERR),\n\t\t\"LOG_FTP\":      reflect.ValueOf(syslog.LOG_FTP),\n\t\t\"LOG_INFO\":     reflect.ValueOf(syslog.LOG_INFO),\n\t\t\"LOG_KERN\":     reflect.ValueOf(syslog.LOG_KERN),\n\t\t\"LOG_LOCAL0\":   reflect.ValueOf(syslog.LOG_LOCAL0),\n\t\t\"LOG_LOCAL1\":   reflect.ValueOf(syslog.LOG_LOCAL1),\n\t\t\"LOG_LOCAL2\":   reflect.ValueOf(syslog.LOG_LOCAL2),\n\t\t\"LOG_LOCAL3\":   reflect.ValueOf(syslog.LOG_LOCAL3),\n\t\t\"LOG_LOCAL4\":   reflect.ValueOf(syslog.LOG_LOCAL4),\n\t\t\"LOG_LOCAL5\":   reflect.ValueOf(syslog.LOG_LOCAL5),\n\t\t\"LOG_LOCAL6\":   reflect.ValueOf(syslog.LOG_LOCAL6),\n\t\t\"LOG_LOCAL7\":   reflect.ValueOf(syslog.LOG_LOCAL7),\n\t\t\"LOG_LPR\":      reflect.ValueOf(syslog.LOG_LPR),\n\t\t\"LOG_MAIL\":     reflect.ValueOf(syslog.LOG_MAIL),\n\t\t\"LOG_NEWS\":     reflect.ValueOf(syslog.LOG_NEWS),\n\t\t\"LOG_NOTICE\":   reflect.ValueOf(syslog.LOG_NOTICE),\n\t\t\"LOG_SYSLOG\":   reflect.ValueOf(syslog.LOG_SYSLOG),\n\t\t\"LOG_USER\":     reflect.ValueOf(syslog.LOG_USER),\n\t\t\"LOG_UUCP\":     reflect.ValueOf(syslog.LOG_UUCP),\n\t\t\"LOG_WARNING\":  reflect.ValueOf(syslog.LOG_WARNING),\n\t\t\"New\":          reflect.ValueOf(syslog.New),\n\t\t\"NewLogger\":    reflect.ValueOf(syslog.NewLogger),\n\n\t\t// type definitions\n\t\t\"Priority\": reflect.ValueOf((*syslog.Priority)(nil)),\n\t\t\"Writer\":   reflect.ValueOf((*syslog.Writer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_maps.go",
    "content": "// Code generated by 'yaegi extract maps'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"maps/maps\"] = map[string]reflect.Value{}\n}\n"
  },
  {
    "path": "stdlib/go1_22_math.go",
    "content": "// Code generated by 'yaegi extract math'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"math\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"math/math\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Abs\":                    reflect.ValueOf(math.Abs),\n\t\t\"Acos\":                   reflect.ValueOf(math.Acos),\n\t\t\"Acosh\":                  reflect.ValueOf(math.Acosh),\n\t\t\"Asin\":                   reflect.ValueOf(math.Asin),\n\t\t\"Asinh\":                  reflect.ValueOf(math.Asinh),\n\t\t\"Atan\":                   reflect.ValueOf(math.Atan),\n\t\t\"Atan2\":                  reflect.ValueOf(math.Atan2),\n\t\t\"Atanh\":                  reflect.ValueOf(math.Atanh),\n\t\t\"Cbrt\":                   reflect.ValueOf(math.Cbrt),\n\t\t\"Ceil\":                   reflect.ValueOf(math.Ceil),\n\t\t\"Copysign\":               reflect.ValueOf(math.Copysign),\n\t\t\"Cos\":                    reflect.ValueOf(math.Cos),\n\t\t\"Cosh\":                   reflect.ValueOf(math.Cosh),\n\t\t\"Dim\":                    reflect.ValueOf(math.Dim),\n\t\t\"E\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2.71828182845904523536028747135266249775724709369995957496696762566337824315673231520670375558666729784504486779277967997696994772644702281675346915668215131895555530285035761295375777990557253360748291015625\", token.FLOAT, 0)),\n\t\t\"Erf\":                    reflect.ValueOf(math.Erf),\n\t\t\"Erfc\":                   reflect.ValueOf(math.Erfc),\n\t\t\"Erfcinv\":                reflect.ValueOf(math.Erfcinv),\n\t\t\"Erfinv\":                 reflect.ValueOf(math.Erfinv),\n\t\t\"Exp\":                    reflect.ValueOf(math.Exp),\n\t\t\"Exp2\":                   reflect.ValueOf(math.Exp2),\n\t\t\"Expm1\":                  reflect.ValueOf(math.Expm1),\n\t\t\"FMA\":                    reflect.ValueOf(math.FMA),\n\t\t\"Float32bits\":            reflect.ValueOf(math.Float32bits),\n\t\t\"Float32frombits\":        reflect.ValueOf(math.Float32frombits),\n\t\t\"Float64bits\":            reflect.ValueOf(math.Float64bits),\n\t\t\"Float64frombits\":        reflect.ValueOf(math.Float64frombits),\n\t\t\"Floor\":                  reflect.ValueOf(math.Floor),\n\t\t\"Frexp\":                  reflect.ValueOf(math.Frexp),\n\t\t\"Gamma\":                  reflect.ValueOf(math.Gamma),\n\t\t\"Hypot\":                  reflect.ValueOf(math.Hypot),\n\t\t\"Ilogb\":                  reflect.ValueOf(math.Ilogb),\n\t\t\"Inf\":                    reflect.ValueOf(math.Inf),\n\t\t\"IsInf\":                  reflect.ValueOf(math.IsInf),\n\t\t\"IsNaN\":                  reflect.ValueOf(math.IsNaN),\n\t\t\"J0\":                     reflect.ValueOf(math.J0),\n\t\t\"J1\":                     reflect.ValueOf(math.J1),\n\t\t\"Jn\":                     reflect.ValueOf(math.Jn),\n\t\t\"Ldexp\":                  reflect.ValueOf(math.Ldexp),\n\t\t\"Lgamma\":                 reflect.ValueOf(math.Lgamma),\n\t\t\"Ln10\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2.30258509299404568401799145468436420760110148862877297603332784146804725494827975466552490443295866962642372461496758838959542646932914211937012833592062802600362869664962772731087170541286468505859375\", token.FLOAT, 0)),\n\t\t\"Ln2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0.6931471805599453094172321214581765680755001343602552541206800092715999496201383079363438206637927920954189307729314303884387720696314608777673678644642390655170150035209453154294578780536539852619171142578125\", token.FLOAT, 0)),\n\t\t\"Log\":                    reflect.ValueOf(math.Log),\n\t\t\"Log10\":                  reflect.ValueOf(math.Log10),\n\t\t\"Log10E\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0.43429448190325182765112891891660508229439700580366656611445378416636798190620320263064286300825210972160277489744884502676719847561509639618196799746596688688378591625127711495224502868950366973876953125\", token.FLOAT, 0)),\n\t\t\"Log1p\":                  reflect.ValueOf(math.Log1p),\n\t\t\"Log2\":                   reflect.ValueOf(math.Log2),\n\t\t\"Log2E\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1.44269504088896340735992468100189213742664595415298593413544940772066427768997545329060870636212628972710992130324953463427359402479619301286929040235571747101382214539290471666532766903401352465152740478515625\", token.FLOAT, 0)),\n\t\t\"Logb\":                   reflect.ValueOf(math.Logb),\n\t\t\"Max\":                    reflect.ValueOf(math.Max),\n\t\t\"MaxFloat32\":             reflect.ValueOf(constant.MakeFromLiteral(\"340282346638528859811704183484516925440\", token.FLOAT, 0)),\n\t\t\"MaxFloat64\":             reflect.ValueOf(constant.MakeFromLiteral(\"179769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858368\", token.FLOAT, 0)),\n\t\t\"MaxInt\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"MaxInt16\":               reflect.ValueOf(constant.MakeFromLiteral(\"32767\", token.INT, 0)),\n\t\t\"MaxInt32\":               reflect.ValueOf(constant.MakeFromLiteral(\"2147483647\", token.INT, 0)),\n\t\t\"MaxInt64\":               reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"MaxInt8\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"MaxUint\":                reflect.ValueOf(constant.MakeFromLiteral(\"18446744073709551615\", token.INT, 0)),\n\t\t\"MaxUint16\":              reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"MaxUint32\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"MaxUint64\":              reflect.ValueOf(constant.MakeFromLiteral(\"18446744073709551615\", token.INT, 0)),\n\t\t\"MaxUint8\":               reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"Min\":                    reflect.ValueOf(math.Min),\n\t\t\"MinInt\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-9223372036854775808\", token.INT, 0)),\n\t\t\"MinInt16\":               reflect.ValueOf(constant.MakeFromLiteral(\"-32768\", token.INT, 0)),\n\t\t\"MinInt32\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MinInt64\":               reflect.ValueOf(constant.MakeFromLiteral(\"-9223372036854775808\", token.INT, 0)),\n\t\t\"MinInt8\":                reflect.ValueOf(constant.MakeFromLiteral(\"-128\", token.INT, 0)),\n\t\t\"Mod\":                    reflect.ValueOf(math.Mod),\n\t\t\"Modf\":                   reflect.ValueOf(math.Modf),\n\t\t\"NaN\":                    reflect.ValueOf(math.NaN),\n\t\t\"Nextafter\":              reflect.ValueOf(math.Nextafter),\n\t\t\"Nextafter32\":            reflect.ValueOf(math.Nextafter32),\n\t\t\"Phi\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1.6180339887498948482045868343656381177203091798057628621354486119746080982153796619881086049305501566952211682590824739205931370737029882996587050475921915678674035433959321750307935872115194797515869140625\", token.FLOAT, 0)),\n\t\t\"Pi\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3.141592653589793238462643383279502884197169399375105820974944594789982923695635954704435713335896673485663389728754819466702315787113662862838515639906529162340867271374644786874341662041842937469482421875\", token.FLOAT, 0)),\n\t\t\"Pow\":                    reflect.ValueOf(math.Pow),\n\t\t\"Pow10\":                  reflect.ValueOf(math.Pow10),\n\t\t\"Remainder\":              reflect.ValueOf(math.Remainder),\n\t\t\"Round\":                  reflect.ValueOf(math.Round),\n\t\t\"RoundToEven\":            reflect.ValueOf(math.RoundToEven),\n\t\t\"Signbit\":                reflect.ValueOf(math.Signbit),\n\t\t\"Sin\":                    reflect.ValueOf(math.Sin),\n\t\t\"Sincos\":                 reflect.ValueOf(math.Sincos),\n\t\t\"Sinh\":                   reflect.ValueOf(math.Sinh),\n\t\t\"SmallestNonzeroFloat32\": reflect.ValueOf(constant.MakeFromLiteral(\"1.40129846432481707092372958328991613128026194187651577175706828388979108268586060148663818836212158203125e-45\", token.FLOAT, 0)),\n\t\t\"SmallestNonzeroFloat64\": reflect.ValueOf(constant.MakeFromLiteral(\"4.940656458412465441765687928682213723650598026143247644255856825006755072702087518652998363616359923797965646954457177309266567103559397963987747960107818781263007131903114045278458171678489821036887186360569987307230500063874091535649843873124733972731696151400317153853980741262385655911710266585566867681870395603106249319452715914924553293054565444011274801297099995419319894090804165633245247571478690147267801593552386115501348035264934720193790268107107491703332226844753335720832431936092382893458368060106011506169809753078342277318329247904982524730776375927247874656084778203734469699533647017972677717585125660551199131504891101451037862738167250955837389733598993664809941164205702637090279242767544565229087538682506419718265533447265625e-324\", token.FLOAT, 0)),\n\t\t\"Sqrt\":                   reflect.ValueOf(math.Sqrt),\n\t\t\"Sqrt2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1.414213562373095048801688724209698078569671875376948073176679739576083351575381440094441524123797447886801949755143139115339040409162552642832693297721230919563348109313505318596071447245776653289794921875\", token.FLOAT, 0)),\n\t\t\"SqrtE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1.64872127070012814684865078781416357165377610071014801157507931167328763229187870850146925823776361770041160388013884200789716007979526823569827080974091691342077871211546646890155898290686309337615966796875\", token.FLOAT, 0)),\n\t\t\"SqrtPhi\":                reflect.ValueOf(constant.MakeFromLiteral(\"1.2720196495140689642524224617374914917156080418400962486166403754616080542166459302584536396369727769747312116100875915825863540562126478288118732191412003988041797518382391984914647764526307582855224609375\", token.FLOAT, 0)),\n\t\t\"SqrtPi\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1.772453850905516027298167483341145182797549456122387128213807789740599698370237052541269446184448945647349951047154197675245574635259260134350885938555625028620527962319730619356050738133490085601806640625\", token.FLOAT, 0)),\n\t\t\"Tan\":                    reflect.ValueOf(math.Tan),\n\t\t\"Tanh\":                   reflect.ValueOf(math.Tanh),\n\t\t\"Trunc\":                  reflect.ValueOf(math.Trunc),\n\t\t\"Y0\":                     reflect.ValueOf(math.Y0),\n\t\t\"Y1\":                     reflect.ValueOf(math.Y1),\n\t\t\"Yn\":                     reflect.ValueOf(math.Yn),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_math_big.go",
    "content": "// Code generated by 'yaegi extract math/big'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"math/big\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"math/big/big\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Above\":         reflect.ValueOf(big.Above),\n\t\t\"AwayFromZero\":  reflect.ValueOf(big.AwayFromZero),\n\t\t\"Below\":         reflect.ValueOf(big.Below),\n\t\t\"Exact\":         reflect.ValueOf(big.Exact),\n\t\t\"Jacobi\":        reflect.ValueOf(big.Jacobi),\n\t\t\"MaxBase\":       reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"MaxExp\":        reflect.ValueOf(constant.MakeFromLiteral(\"2147483647\", token.INT, 0)),\n\t\t\"MaxPrec\":       reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"MinExp\":        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"NewFloat\":      reflect.ValueOf(big.NewFloat),\n\t\t\"NewInt\":        reflect.ValueOf(big.NewInt),\n\t\t\"NewRat\":        reflect.ValueOf(big.NewRat),\n\t\t\"ParseFloat\":    reflect.ValueOf(big.ParseFloat),\n\t\t\"ToNearestAway\": reflect.ValueOf(big.ToNearestAway),\n\t\t\"ToNearestEven\": reflect.ValueOf(big.ToNearestEven),\n\t\t\"ToNegativeInf\": reflect.ValueOf(big.ToNegativeInf),\n\t\t\"ToPositiveInf\": reflect.ValueOf(big.ToPositiveInf),\n\t\t\"ToZero\":        reflect.ValueOf(big.ToZero),\n\n\t\t// type definitions\n\t\t\"Accuracy\":     reflect.ValueOf((*big.Accuracy)(nil)),\n\t\t\"ErrNaN\":       reflect.ValueOf((*big.ErrNaN)(nil)),\n\t\t\"Float\":        reflect.ValueOf((*big.Float)(nil)),\n\t\t\"Int\":          reflect.ValueOf((*big.Int)(nil)),\n\t\t\"Rat\":          reflect.ValueOf((*big.Rat)(nil)),\n\t\t\"RoundingMode\": reflect.ValueOf((*big.RoundingMode)(nil)),\n\t\t\"Word\":         reflect.ValueOf((*big.Word)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_math_bits.go",
    "content": "// Code generated by 'yaegi extract math/bits'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"math/bits\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"math/bits/bits\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Add\":             reflect.ValueOf(bits.Add),\n\t\t\"Add32\":           reflect.ValueOf(bits.Add32),\n\t\t\"Add64\":           reflect.ValueOf(bits.Add64),\n\t\t\"Div\":             reflect.ValueOf(bits.Div),\n\t\t\"Div32\":           reflect.ValueOf(bits.Div32),\n\t\t\"Div64\":           reflect.ValueOf(bits.Div64),\n\t\t\"LeadingZeros\":    reflect.ValueOf(bits.LeadingZeros),\n\t\t\"LeadingZeros16\":  reflect.ValueOf(bits.LeadingZeros16),\n\t\t\"LeadingZeros32\":  reflect.ValueOf(bits.LeadingZeros32),\n\t\t\"LeadingZeros64\":  reflect.ValueOf(bits.LeadingZeros64),\n\t\t\"LeadingZeros8\":   reflect.ValueOf(bits.LeadingZeros8),\n\t\t\"Len\":             reflect.ValueOf(bits.Len),\n\t\t\"Len16\":           reflect.ValueOf(bits.Len16),\n\t\t\"Len32\":           reflect.ValueOf(bits.Len32),\n\t\t\"Len64\":           reflect.ValueOf(bits.Len64),\n\t\t\"Len8\":            reflect.ValueOf(bits.Len8),\n\t\t\"Mul\":             reflect.ValueOf(bits.Mul),\n\t\t\"Mul32\":           reflect.ValueOf(bits.Mul32),\n\t\t\"Mul64\":           reflect.ValueOf(bits.Mul64),\n\t\t\"OnesCount\":       reflect.ValueOf(bits.OnesCount),\n\t\t\"OnesCount16\":     reflect.ValueOf(bits.OnesCount16),\n\t\t\"OnesCount32\":     reflect.ValueOf(bits.OnesCount32),\n\t\t\"OnesCount64\":     reflect.ValueOf(bits.OnesCount64),\n\t\t\"OnesCount8\":      reflect.ValueOf(bits.OnesCount8),\n\t\t\"Rem\":             reflect.ValueOf(bits.Rem),\n\t\t\"Rem32\":           reflect.ValueOf(bits.Rem32),\n\t\t\"Rem64\":           reflect.ValueOf(bits.Rem64),\n\t\t\"Reverse\":         reflect.ValueOf(bits.Reverse),\n\t\t\"Reverse16\":       reflect.ValueOf(bits.Reverse16),\n\t\t\"Reverse32\":       reflect.ValueOf(bits.Reverse32),\n\t\t\"Reverse64\":       reflect.ValueOf(bits.Reverse64),\n\t\t\"Reverse8\":        reflect.ValueOf(bits.Reverse8),\n\t\t\"ReverseBytes\":    reflect.ValueOf(bits.ReverseBytes),\n\t\t\"ReverseBytes16\":  reflect.ValueOf(bits.ReverseBytes16),\n\t\t\"ReverseBytes32\":  reflect.ValueOf(bits.ReverseBytes32),\n\t\t\"ReverseBytes64\":  reflect.ValueOf(bits.ReverseBytes64),\n\t\t\"RotateLeft\":      reflect.ValueOf(bits.RotateLeft),\n\t\t\"RotateLeft16\":    reflect.ValueOf(bits.RotateLeft16),\n\t\t\"RotateLeft32\":    reflect.ValueOf(bits.RotateLeft32),\n\t\t\"RotateLeft64\":    reflect.ValueOf(bits.RotateLeft64),\n\t\t\"RotateLeft8\":     reflect.ValueOf(bits.RotateLeft8),\n\t\t\"Sub\":             reflect.ValueOf(bits.Sub),\n\t\t\"Sub32\":           reflect.ValueOf(bits.Sub32),\n\t\t\"Sub64\":           reflect.ValueOf(bits.Sub64),\n\t\t\"TrailingZeros\":   reflect.ValueOf(bits.TrailingZeros),\n\t\t\"TrailingZeros16\": reflect.ValueOf(bits.TrailingZeros16),\n\t\t\"TrailingZeros32\": reflect.ValueOf(bits.TrailingZeros32),\n\t\t\"TrailingZeros64\": reflect.ValueOf(bits.TrailingZeros64),\n\t\t\"TrailingZeros8\":  reflect.ValueOf(bits.TrailingZeros8),\n\t\t\"UintSize\":        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_math_cmplx.go",
    "content": "// Code generated by 'yaegi extract math/cmplx'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"math/cmplx\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"math/cmplx/cmplx\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Abs\":   reflect.ValueOf(cmplx.Abs),\n\t\t\"Acos\":  reflect.ValueOf(cmplx.Acos),\n\t\t\"Acosh\": reflect.ValueOf(cmplx.Acosh),\n\t\t\"Asin\":  reflect.ValueOf(cmplx.Asin),\n\t\t\"Asinh\": reflect.ValueOf(cmplx.Asinh),\n\t\t\"Atan\":  reflect.ValueOf(cmplx.Atan),\n\t\t\"Atanh\": reflect.ValueOf(cmplx.Atanh),\n\t\t\"Conj\":  reflect.ValueOf(cmplx.Conj),\n\t\t\"Cos\":   reflect.ValueOf(cmplx.Cos),\n\t\t\"Cosh\":  reflect.ValueOf(cmplx.Cosh),\n\t\t\"Cot\":   reflect.ValueOf(cmplx.Cot),\n\t\t\"Exp\":   reflect.ValueOf(cmplx.Exp),\n\t\t\"Inf\":   reflect.ValueOf(cmplx.Inf),\n\t\t\"IsInf\": reflect.ValueOf(cmplx.IsInf),\n\t\t\"IsNaN\": reflect.ValueOf(cmplx.IsNaN),\n\t\t\"Log\":   reflect.ValueOf(cmplx.Log),\n\t\t\"Log10\": reflect.ValueOf(cmplx.Log10),\n\t\t\"NaN\":   reflect.ValueOf(cmplx.NaN),\n\t\t\"Phase\": reflect.ValueOf(cmplx.Phase),\n\t\t\"Polar\": reflect.ValueOf(cmplx.Polar),\n\t\t\"Pow\":   reflect.ValueOf(cmplx.Pow),\n\t\t\"Rect\":  reflect.ValueOf(cmplx.Rect),\n\t\t\"Sin\":   reflect.ValueOf(cmplx.Sin),\n\t\t\"Sinh\":  reflect.ValueOf(cmplx.Sinh),\n\t\t\"Sqrt\":  reflect.ValueOf(cmplx.Sqrt),\n\t\t\"Tan\":   reflect.ValueOf(cmplx.Tan),\n\t\t\"Tanh\":  reflect.ValueOf(cmplx.Tanh),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_math_rand.go",
    "content": "// Code generated by 'yaegi extract math/rand'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"math/rand\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"math/rand/rand\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ExpFloat64\":  reflect.ValueOf(rand.ExpFloat64),\n\t\t\"Float32\":     reflect.ValueOf(rand.Float32),\n\t\t\"Float64\":     reflect.ValueOf(rand.Float64),\n\t\t\"Int\":         reflect.ValueOf(rand.Int),\n\t\t\"Int31\":       reflect.ValueOf(rand.Int31),\n\t\t\"Int31n\":      reflect.ValueOf(rand.Int31n),\n\t\t\"Int63\":       reflect.ValueOf(rand.Int63),\n\t\t\"Int63n\":      reflect.ValueOf(rand.Int63n),\n\t\t\"Intn\":        reflect.ValueOf(rand.Intn),\n\t\t\"New\":         reflect.ValueOf(rand.New),\n\t\t\"NewSource\":   reflect.ValueOf(rand.NewSource),\n\t\t\"NewZipf\":     reflect.ValueOf(rand.NewZipf),\n\t\t\"NormFloat64\": reflect.ValueOf(rand.NormFloat64),\n\t\t\"Perm\":        reflect.ValueOf(rand.Perm),\n\t\t\"Read\":        reflect.ValueOf(rand.Read),\n\t\t\"Seed\":        reflect.ValueOf(rand.Seed),\n\t\t\"Shuffle\":     reflect.ValueOf(rand.Shuffle),\n\t\t\"Uint32\":      reflect.ValueOf(rand.Uint32),\n\t\t\"Uint64\":      reflect.ValueOf(rand.Uint64),\n\n\t\t// type definitions\n\t\t\"Rand\":     reflect.ValueOf((*rand.Rand)(nil)),\n\t\t\"Source\":   reflect.ValueOf((*rand.Source)(nil)),\n\t\t\"Source64\": reflect.ValueOf((*rand.Source64)(nil)),\n\t\t\"Zipf\":     reflect.ValueOf((*rand.Zipf)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Source\":   reflect.ValueOf((*_math_rand_Source)(nil)),\n\t\t\"_Source64\": reflect.ValueOf((*_math_rand_Source64)(nil)),\n\t}\n}\n\n// _math_rand_Source is an interface wrapper for Source type\ntype _math_rand_Source struct {\n\tIValue interface{}\n\tWInt63 func() int64\n\tWSeed  func(seed int64)\n}\n\nfunc (W _math_rand_Source) Int63() int64    { return W.WInt63() }\nfunc (W _math_rand_Source) Seed(seed int64) { W.WSeed(seed) }\n\n// _math_rand_Source64 is an interface wrapper for Source64 type\ntype _math_rand_Source64 struct {\n\tIValue  interface{}\n\tWInt63  func() int64\n\tWSeed   func(seed int64)\n\tWUint64 func() uint64\n}\n\nfunc (W _math_rand_Source64) Int63() int64    { return W.WInt63() }\nfunc (W _math_rand_Source64) Seed(seed int64) { W.WSeed(seed) }\nfunc (W _math_rand_Source64) Uint64() uint64  { return W.WUint64() }\n"
  },
  {
    "path": "stdlib/go1_22_math_rand_v2.go",
    "content": "// Code generated by 'yaegi extract math/rand/v2'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"math/rand/v2\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"math/rand/v2/rand\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ExpFloat64\":  reflect.ValueOf(rand.ExpFloat64),\n\t\t\"Float32\":     reflect.ValueOf(rand.Float32),\n\t\t\"Float64\":     reflect.ValueOf(rand.Float64),\n\t\t\"Int\":         reflect.ValueOf(rand.Int),\n\t\t\"Int32\":       reflect.ValueOf(rand.Int32),\n\t\t\"Int32N\":      reflect.ValueOf(rand.Int32N),\n\t\t\"Int64\":       reflect.ValueOf(rand.Int64),\n\t\t\"Int64N\":      reflect.ValueOf(rand.Int64N),\n\t\t\"IntN\":        reflect.ValueOf(rand.IntN),\n\t\t\"New\":         reflect.ValueOf(rand.New),\n\t\t\"NewChaCha8\":  reflect.ValueOf(rand.NewChaCha8),\n\t\t\"NewPCG\":      reflect.ValueOf(rand.NewPCG),\n\t\t\"NewZipf\":     reflect.ValueOf(rand.NewZipf),\n\t\t\"NormFloat64\": reflect.ValueOf(rand.NormFloat64),\n\t\t\"Perm\":        reflect.ValueOf(rand.Perm),\n\t\t\"Shuffle\":     reflect.ValueOf(rand.Shuffle),\n\t\t\"Uint32\":      reflect.ValueOf(rand.Uint32),\n\t\t\"Uint32N\":     reflect.ValueOf(rand.Uint32N),\n\t\t\"Uint64\":      reflect.ValueOf(rand.Uint64),\n\t\t\"Uint64N\":     reflect.ValueOf(rand.Uint64N),\n\t\t\"UintN\":       reflect.ValueOf(rand.UintN),\n\n\t\t// type definitions\n\t\t\"ChaCha8\": reflect.ValueOf((*rand.ChaCha8)(nil)),\n\t\t\"PCG\":     reflect.ValueOf((*rand.PCG)(nil)),\n\t\t\"Rand\":    reflect.ValueOf((*rand.Rand)(nil)),\n\t\t\"Source\":  reflect.ValueOf((*rand.Source)(nil)),\n\t\t\"Zipf\":    reflect.ValueOf((*rand.Zipf)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Source\": reflect.ValueOf((*_math_rand_v2_Source)(nil)),\n\t}\n}\n\n// _math_rand_v2_Source is an interface wrapper for Source type\ntype _math_rand_v2_Source struct {\n\tIValue  interface{}\n\tWUint64 func() uint64\n}\n\nfunc (W _math_rand_v2_Source) Uint64() uint64 { return W.WUint64() }\n"
  },
  {
    "path": "stdlib/go1_22_mime.go",
    "content": "// Code generated by 'yaegi extract mime'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"mime\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"mime/mime\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AddExtensionType\":         reflect.ValueOf(mime.AddExtensionType),\n\t\t\"BEncoding\":                reflect.ValueOf(mime.BEncoding),\n\t\t\"ErrInvalidMediaParameter\": reflect.ValueOf(&mime.ErrInvalidMediaParameter).Elem(),\n\t\t\"ExtensionsByType\":         reflect.ValueOf(mime.ExtensionsByType),\n\t\t\"FormatMediaType\":          reflect.ValueOf(mime.FormatMediaType),\n\t\t\"ParseMediaType\":           reflect.ValueOf(mime.ParseMediaType),\n\t\t\"QEncoding\":                reflect.ValueOf(mime.QEncoding),\n\t\t\"TypeByExtension\":          reflect.ValueOf(mime.TypeByExtension),\n\n\t\t// type definitions\n\t\t\"WordDecoder\": reflect.ValueOf((*mime.WordDecoder)(nil)),\n\t\t\"WordEncoder\": reflect.ValueOf((*mime.WordEncoder)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_mime_multipart.go",
    "content": "// Code generated by 'yaegi extract mime/multipart'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"mime/multipart\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"mime/multipart/multipart\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ErrMessageTooLarge\": reflect.ValueOf(&multipart.ErrMessageTooLarge).Elem(),\n\t\t\"NewReader\":          reflect.ValueOf(multipart.NewReader),\n\t\t\"NewWriter\":          reflect.ValueOf(multipart.NewWriter),\n\n\t\t// type definitions\n\t\t\"File\":       reflect.ValueOf((*multipart.File)(nil)),\n\t\t\"FileHeader\": reflect.ValueOf((*multipart.FileHeader)(nil)),\n\t\t\"Form\":       reflect.ValueOf((*multipart.Form)(nil)),\n\t\t\"Part\":       reflect.ValueOf((*multipart.Part)(nil)),\n\t\t\"Reader\":     reflect.ValueOf((*multipart.Reader)(nil)),\n\t\t\"Writer\":     reflect.ValueOf((*multipart.Writer)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_File\": reflect.ValueOf((*_mime_multipart_File)(nil)),\n\t}\n}\n\n// _mime_multipart_File is an interface wrapper for File type\ntype _mime_multipart_File struct {\n\tIValue  interface{}\n\tWClose  func() error\n\tWRead   func(p []byte) (n int, err error)\n\tWReadAt func(p []byte, off int64) (n int, err error)\n\tWSeek   func(offset int64, whence int) (int64, error)\n}\n\nfunc (W _mime_multipart_File) Close() error                     { return W.WClose() }\nfunc (W _mime_multipart_File) Read(p []byte) (n int, err error) { return W.WRead(p) }\nfunc (W _mime_multipart_File) ReadAt(p []byte, off int64) (n int, err error) {\n\treturn W.WReadAt(p, off)\n}\nfunc (W _mime_multipart_File) Seek(offset int64, whence int) (int64, error) {\n\treturn W.WSeek(offset, whence)\n}\n"
  },
  {
    "path": "stdlib/go1_22_mime_quotedprintable.go",
    "content": "// Code generated by 'yaegi extract mime/quotedprintable'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"mime/quotedprintable\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"mime/quotedprintable/quotedprintable\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"NewReader\": reflect.ValueOf(quotedprintable.NewReader),\n\t\t\"NewWriter\": reflect.ValueOf(quotedprintable.NewWriter),\n\n\t\t// type definitions\n\t\t\"Reader\": reflect.ValueOf((*quotedprintable.Reader)(nil)),\n\t\t\"Writer\": reflect.ValueOf((*quotedprintable.Writer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_net.go",
    "content": "// Code generated by 'yaegi extract net'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"net\"\n\t\"reflect\"\n\t\"time\"\n)\n\nfunc init() {\n\tSymbols[\"net/net\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"CIDRMask\":                   reflect.ValueOf(net.CIDRMask),\n\t\t\"DefaultResolver\":            reflect.ValueOf(&net.DefaultResolver).Elem(),\n\t\t\"Dial\":                       reflect.ValueOf(net.Dial),\n\t\t\"DialIP\":                     reflect.ValueOf(net.DialIP),\n\t\t\"DialTCP\":                    reflect.ValueOf(net.DialTCP),\n\t\t\"DialTimeout\":                reflect.ValueOf(net.DialTimeout),\n\t\t\"DialUDP\":                    reflect.ValueOf(net.DialUDP),\n\t\t\"DialUnix\":                   reflect.ValueOf(net.DialUnix),\n\t\t\"ErrClosed\":                  reflect.ValueOf(&net.ErrClosed).Elem(),\n\t\t\"ErrWriteToConnected\":        reflect.ValueOf(&net.ErrWriteToConnected).Elem(),\n\t\t\"FileConn\":                   reflect.ValueOf(net.FileConn),\n\t\t\"FileListener\":               reflect.ValueOf(net.FileListener),\n\t\t\"FilePacketConn\":             reflect.ValueOf(net.FilePacketConn),\n\t\t\"FlagBroadcast\":              reflect.ValueOf(net.FlagBroadcast),\n\t\t\"FlagLoopback\":               reflect.ValueOf(net.FlagLoopback),\n\t\t\"FlagMulticast\":              reflect.ValueOf(net.FlagMulticast),\n\t\t\"FlagPointToPoint\":           reflect.ValueOf(net.FlagPointToPoint),\n\t\t\"FlagRunning\":                reflect.ValueOf(net.FlagRunning),\n\t\t\"FlagUp\":                     reflect.ValueOf(net.FlagUp),\n\t\t\"IPv4\":                       reflect.ValueOf(net.IPv4),\n\t\t\"IPv4Mask\":                   reflect.ValueOf(net.IPv4Mask),\n\t\t\"IPv4allrouter\":              reflect.ValueOf(&net.IPv4allrouter).Elem(),\n\t\t\"IPv4allsys\":                 reflect.ValueOf(&net.IPv4allsys).Elem(),\n\t\t\"IPv4bcast\":                  reflect.ValueOf(&net.IPv4bcast).Elem(),\n\t\t\"IPv4len\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPv4zero\":                   reflect.ValueOf(&net.IPv4zero).Elem(),\n\t\t\"IPv6interfacelocalallnodes\": reflect.ValueOf(&net.IPv6interfacelocalallnodes).Elem(),\n\t\t\"IPv6len\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPv6linklocalallnodes\":      reflect.ValueOf(&net.IPv6linklocalallnodes).Elem(),\n\t\t\"IPv6linklocalallrouters\":    reflect.ValueOf(&net.IPv6linklocalallrouters).Elem(),\n\t\t\"IPv6loopback\":               reflect.ValueOf(&net.IPv6loopback).Elem(),\n\t\t\"IPv6unspecified\":            reflect.ValueOf(&net.IPv6unspecified).Elem(),\n\t\t\"IPv6zero\":                   reflect.ValueOf(&net.IPv6zero).Elem(),\n\t\t\"InterfaceAddrs\":             reflect.ValueOf(net.InterfaceAddrs),\n\t\t\"InterfaceByIndex\":           reflect.ValueOf(net.InterfaceByIndex),\n\t\t\"InterfaceByName\":            reflect.ValueOf(net.InterfaceByName),\n\t\t\"Interfaces\":                 reflect.ValueOf(net.Interfaces),\n\t\t\"JoinHostPort\":               reflect.ValueOf(net.JoinHostPort),\n\t\t\"Listen\":                     reflect.ValueOf(net.Listen),\n\t\t\"ListenIP\":                   reflect.ValueOf(net.ListenIP),\n\t\t\"ListenMulticastUDP\":         reflect.ValueOf(net.ListenMulticastUDP),\n\t\t\"ListenPacket\":               reflect.ValueOf(net.ListenPacket),\n\t\t\"ListenTCP\":                  reflect.ValueOf(net.ListenTCP),\n\t\t\"ListenUDP\":                  reflect.ValueOf(net.ListenUDP),\n\t\t\"ListenUnix\":                 reflect.ValueOf(net.ListenUnix),\n\t\t\"ListenUnixgram\":             reflect.ValueOf(net.ListenUnixgram),\n\t\t\"LookupAddr\":                 reflect.ValueOf(net.LookupAddr),\n\t\t\"LookupCNAME\":                reflect.ValueOf(net.LookupCNAME),\n\t\t\"LookupHost\":                 reflect.ValueOf(net.LookupHost),\n\t\t\"LookupIP\":                   reflect.ValueOf(net.LookupIP),\n\t\t\"LookupMX\":                   reflect.ValueOf(net.LookupMX),\n\t\t\"LookupNS\":                   reflect.ValueOf(net.LookupNS),\n\t\t\"LookupPort\":                 reflect.ValueOf(net.LookupPort),\n\t\t\"LookupSRV\":                  reflect.ValueOf(net.LookupSRV),\n\t\t\"LookupTXT\":                  reflect.ValueOf(net.LookupTXT),\n\t\t\"ParseCIDR\":                  reflect.ValueOf(net.ParseCIDR),\n\t\t\"ParseIP\":                    reflect.ValueOf(net.ParseIP),\n\t\t\"ParseMAC\":                   reflect.ValueOf(net.ParseMAC),\n\t\t\"Pipe\":                       reflect.ValueOf(net.Pipe),\n\t\t\"ResolveIPAddr\":              reflect.ValueOf(net.ResolveIPAddr),\n\t\t\"ResolveTCPAddr\":             reflect.ValueOf(net.ResolveTCPAddr),\n\t\t\"ResolveUDPAddr\":             reflect.ValueOf(net.ResolveUDPAddr),\n\t\t\"ResolveUnixAddr\":            reflect.ValueOf(net.ResolveUnixAddr),\n\t\t\"SplitHostPort\":              reflect.ValueOf(net.SplitHostPort),\n\t\t\"TCPAddrFromAddrPort\":        reflect.ValueOf(net.TCPAddrFromAddrPort),\n\t\t\"UDPAddrFromAddrPort\":        reflect.ValueOf(net.UDPAddrFromAddrPort),\n\n\t\t// type definitions\n\t\t\"Addr\":                reflect.ValueOf((*net.Addr)(nil)),\n\t\t\"AddrError\":           reflect.ValueOf((*net.AddrError)(nil)),\n\t\t\"Buffers\":             reflect.ValueOf((*net.Buffers)(nil)),\n\t\t\"Conn\":                reflect.ValueOf((*net.Conn)(nil)),\n\t\t\"DNSConfigError\":      reflect.ValueOf((*net.DNSConfigError)(nil)),\n\t\t\"DNSError\":            reflect.ValueOf((*net.DNSError)(nil)),\n\t\t\"Dialer\":              reflect.ValueOf((*net.Dialer)(nil)),\n\t\t\"Error\":               reflect.ValueOf((*net.Error)(nil)),\n\t\t\"Flags\":               reflect.ValueOf((*net.Flags)(nil)),\n\t\t\"HardwareAddr\":        reflect.ValueOf((*net.HardwareAddr)(nil)),\n\t\t\"IP\":                  reflect.ValueOf((*net.IP)(nil)),\n\t\t\"IPAddr\":              reflect.ValueOf((*net.IPAddr)(nil)),\n\t\t\"IPConn\":              reflect.ValueOf((*net.IPConn)(nil)),\n\t\t\"IPMask\":              reflect.ValueOf((*net.IPMask)(nil)),\n\t\t\"IPNet\":               reflect.ValueOf((*net.IPNet)(nil)),\n\t\t\"Interface\":           reflect.ValueOf((*net.Interface)(nil)),\n\t\t\"InvalidAddrError\":    reflect.ValueOf((*net.InvalidAddrError)(nil)),\n\t\t\"ListenConfig\":        reflect.ValueOf((*net.ListenConfig)(nil)),\n\t\t\"Listener\":            reflect.ValueOf((*net.Listener)(nil)),\n\t\t\"MX\":                  reflect.ValueOf((*net.MX)(nil)),\n\t\t\"NS\":                  reflect.ValueOf((*net.NS)(nil)),\n\t\t\"OpError\":             reflect.ValueOf((*net.OpError)(nil)),\n\t\t\"PacketConn\":          reflect.ValueOf((*net.PacketConn)(nil)),\n\t\t\"ParseError\":          reflect.ValueOf((*net.ParseError)(nil)),\n\t\t\"Resolver\":            reflect.ValueOf((*net.Resolver)(nil)),\n\t\t\"SRV\":                 reflect.ValueOf((*net.SRV)(nil)),\n\t\t\"TCPAddr\":             reflect.ValueOf((*net.TCPAddr)(nil)),\n\t\t\"TCPConn\":             reflect.ValueOf((*net.TCPConn)(nil)),\n\t\t\"TCPListener\":         reflect.ValueOf((*net.TCPListener)(nil)),\n\t\t\"UDPAddr\":             reflect.ValueOf((*net.UDPAddr)(nil)),\n\t\t\"UDPConn\":             reflect.ValueOf((*net.UDPConn)(nil)),\n\t\t\"UnixAddr\":            reflect.ValueOf((*net.UnixAddr)(nil)),\n\t\t\"UnixConn\":            reflect.ValueOf((*net.UnixConn)(nil)),\n\t\t\"UnixListener\":        reflect.ValueOf((*net.UnixListener)(nil)),\n\t\t\"UnknownNetworkError\": reflect.ValueOf((*net.UnknownNetworkError)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Addr\":       reflect.ValueOf((*_net_Addr)(nil)),\n\t\t\"_Conn\":       reflect.ValueOf((*_net_Conn)(nil)),\n\t\t\"_Error\":      reflect.ValueOf((*_net_Error)(nil)),\n\t\t\"_Listener\":   reflect.ValueOf((*_net_Listener)(nil)),\n\t\t\"_PacketConn\": reflect.ValueOf((*_net_PacketConn)(nil)),\n\t}\n}\n\n// _net_Addr is an interface wrapper for Addr type\ntype _net_Addr struct {\n\tIValue   interface{}\n\tWNetwork func() string\n\tWString  func() string\n}\n\nfunc (W _net_Addr) Network() string { return W.WNetwork() }\nfunc (W _net_Addr) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n\n// _net_Conn is an interface wrapper for Conn type\ntype _net_Conn struct {\n\tIValue            interface{}\n\tWClose            func() error\n\tWLocalAddr        func() net.Addr\n\tWRead             func(b []byte) (n int, err error)\n\tWRemoteAddr       func() net.Addr\n\tWSetDeadline      func(t time.Time) error\n\tWSetReadDeadline  func(t time.Time) error\n\tWSetWriteDeadline func(t time.Time) error\n\tWWrite            func(b []byte) (n int, err error)\n}\n\nfunc (W _net_Conn) Close() error                       { return W.WClose() }\nfunc (W _net_Conn) LocalAddr() net.Addr                { return W.WLocalAddr() }\nfunc (W _net_Conn) Read(b []byte) (n int, err error)   { return W.WRead(b) }\nfunc (W _net_Conn) RemoteAddr() net.Addr               { return W.WRemoteAddr() }\nfunc (W _net_Conn) SetDeadline(t time.Time) error      { return W.WSetDeadline(t) }\nfunc (W _net_Conn) SetReadDeadline(t time.Time) error  { return W.WSetReadDeadline(t) }\nfunc (W _net_Conn) SetWriteDeadline(t time.Time) error { return W.WSetWriteDeadline(t) }\nfunc (W _net_Conn) Write(b []byte) (n int, err error)  { return W.WWrite(b) }\n\n// _net_Error is an interface wrapper for Error type\ntype _net_Error struct {\n\tIValue     interface{}\n\tWError     func() string\n\tWTemporary func() bool\n\tWTimeout   func() bool\n}\n\nfunc (W _net_Error) Error() string   { return W.WError() }\nfunc (W _net_Error) Temporary() bool { return W.WTemporary() }\nfunc (W _net_Error) Timeout() bool   { return W.WTimeout() }\n\n// _net_Listener is an interface wrapper for Listener type\ntype _net_Listener struct {\n\tIValue  interface{}\n\tWAccept func() (net.Conn, error)\n\tWAddr   func() net.Addr\n\tWClose  func() error\n}\n\nfunc (W _net_Listener) Accept() (net.Conn, error) { return W.WAccept() }\nfunc (W _net_Listener) Addr() net.Addr            { return W.WAddr() }\nfunc (W _net_Listener) Close() error              { return W.WClose() }\n\n// _net_PacketConn is an interface wrapper for PacketConn type\ntype _net_PacketConn struct {\n\tIValue            interface{}\n\tWClose            func() error\n\tWLocalAddr        func() net.Addr\n\tWReadFrom         func(p []byte) (n int, addr net.Addr, err error)\n\tWSetDeadline      func(t time.Time) error\n\tWSetReadDeadline  func(t time.Time) error\n\tWSetWriteDeadline func(t time.Time) error\n\tWWriteTo          func(p []byte, addr net.Addr) (n int, err error)\n}\n\nfunc (W _net_PacketConn) Close() error                                        { return W.WClose() }\nfunc (W _net_PacketConn) LocalAddr() net.Addr                                 { return W.WLocalAddr() }\nfunc (W _net_PacketConn) ReadFrom(p []byte) (n int, addr net.Addr, err error) { return W.WReadFrom(p) }\nfunc (W _net_PacketConn) SetDeadline(t time.Time) error                       { return W.WSetDeadline(t) }\nfunc (W _net_PacketConn) SetReadDeadline(t time.Time) error                   { return W.WSetReadDeadline(t) }\nfunc (W _net_PacketConn) SetWriteDeadline(t time.Time) error                  { return W.WSetWriteDeadline(t) }\nfunc (W _net_PacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error) {\n\treturn W.WWriteTo(p, addr)\n}\n"
  },
  {
    "path": "stdlib/go1_22_net_http.go",
    "content": "// Code generated by 'yaegi extract net/http'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"bufio\"\n\t\"go/constant\"\n\t\"go/token\"\n\t\"io/fs\"\n\t\"net\"\n\t\"net/http\"\n\t\"net/url\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/http/http\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllowQuerySemicolons\":                reflect.ValueOf(http.AllowQuerySemicolons),\n\t\t\"CanonicalHeaderKey\":                  reflect.ValueOf(http.CanonicalHeaderKey),\n\t\t\"DefaultClient\":                       reflect.ValueOf(&http.DefaultClient).Elem(),\n\t\t\"DefaultMaxHeaderBytes\":               reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"DefaultMaxIdleConnsPerHost\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DefaultServeMux\":                     reflect.ValueOf(&http.DefaultServeMux).Elem(),\n\t\t\"DefaultTransport\":                    reflect.ValueOf(&http.DefaultTransport).Elem(),\n\t\t\"DetectContentType\":                   reflect.ValueOf(http.DetectContentType),\n\t\t\"ErrAbortHandler\":                     reflect.ValueOf(&http.ErrAbortHandler).Elem(),\n\t\t\"ErrBodyNotAllowed\":                   reflect.ValueOf(&http.ErrBodyNotAllowed).Elem(),\n\t\t\"ErrBodyReadAfterClose\":               reflect.ValueOf(&http.ErrBodyReadAfterClose).Elem(),\n\t\t\"ErrContentLength\":                    reflect.ValueOf(&http.ErrContentLength).Elem(),\n\t\t\"ErrHandlerTimeout\":                   reflect.ValueOf(&http.ErrHandlerTimeout).Elem(),\n\t\t\"ErrHeaderTooLong\":                    reflect.ValueOf(&http.ErrHeaderTooLong).Elem(),\n\t\t\"ErrHijacked\":                         reflect.ValueOf(&http.ErrHijacked).Elem(),\n\t\t\"ErrLineTooLong\":                      reflect.ValueOf(&http.ErrLineTooLong).Elem(),\n\t\t\"ErrMissingBoundary\":                  reflect.ValueOf(&http.ErrMissingBoundary).Elem(),\n\t\t\"ErrMissingContentLength\":             reflect.ValueOf(&http.ErrMissingContentLength).Elem(),\n\t\t\"ErrMissingFile\":                      reflect.ValueOf(&http.ErrMissingFile).Elem(),\n\t\t\"ErrNoCookie\":                         reflect.ValueOf(&http.ErrNoCookie).Elem(),\n\t\t\"ErrNoLocation\":                       reflect.ValueOf(&http.ErrNoLocation).Elem(),\n\t\t\"ErrNotMultipart\":                     reflect.ValueOf(&http.ErrNotMultipart).Elem(),\n\t\t\"ErrNotSupported\":                     reflect.ValueOf(&http.ErrNotSupported).Elem(),\n\t\t\"ErrSchemeMismatch\":                   reflect.ValueOf(&http.ErrSchemeMismatch).Elem(),\n\t\t\"ErrServerClosed\":                     reflect.ValueOf(&http.ErrServerClosed).Elem(),\n\t\t\"ErrShortBody\":                        reflect.ValueOf(&http.ErrShortBody).Elem(),\n\t\t\"ErrSkipAltProtocol\":                  reflect.ValueOf(&http.ErrSkipAltProtocol).Elem(),\n\t\t\"ErrUnexpectedTrailer\":                reflect.ValueOf(&http.ErrUnexpectedTrailer).Elem(),\n\t\t\"ErrUseLastResponse\":                  reflect.ValueOf(&http.ErrUseLastResponse).Elem(),\n\t\t\"ErrWriteAfterFlush\":                  reflect.ValueOf(&http.ErrWriteAfterFlush).Elem(),\n\t\t\"Error\":                               reflect.ValueOf(http.Error),\n\t\t\"FS\":                                  reflect.ValueOf(http.FS),\n\t\t\"FileServer\":                          reflect.ValueOf(http.FileServer),\n\t\t\"FileServerFS\":                        reflect.ValueOf(http.FileServerFS),\n\t\t\"Get\":                                 reflect.ValueOf(http.Get),\n\t\t\"Handle\":                              reflect.ValueOf(http.Handle),\n\t\t\"HandleFunc\":                          reflect.ValueOf(http.HandleFunc),\n\t\t\"Head\":                                reflect.ValueOf(http.Head),\n\t\t\"ListenAndServe\":                      reflect.ValueOf(http.ListenAndServe),\n\t\t\"ListenAndServeTLS\":                   reflect.ValueOf(http.ListenAndServeTLS),\n\t\t\"LocalAddrContextKey\":                 reflect.ValueOf(&http.LocalAddrContextKey).Elem(),\n\t\t\"MaxBytesHandler\":                     reflect.ValueOf(http.MaxBytesHandler),\n\t\t\"MaxBytesReader\":                      reflect.ValueOf(http.MaxBytesReader),\n\t\t\"MethodConnect\":                       reflect.ValueOf(constant.MakeFromLiteral(\"\\\"CONNECT\\\"\", token.STRING, 0)),\n\t\t\"MethodDelete\":                        reflect.ValueOf(constant.MakeFromLiteral(\"\\\"DELETE\\\"\", token.STRING, 0)),\n\t\t\"MethodGet\":                           reflect.ValueOf(constant.MakeFromLiteral(\"\\\"GET\\\"\", token.STRING, 0)),\n\t\t\"MethodHead\":                          reflect.ValueOf(constant.MakeFromLiteral(\"\\\"HEAD\\\"\", token.STRING, 0)),\n\t\t\"MethodOptions\":                       reflect.ValueOf(constant.MakeFromLiteral(\"\\\"OPTIONS\\\"\", token.STRING, 0)),\n\t\t\"MethodPatch\":                         reflect.ValueOf(constant.MakeFromLiteral(\"\\\"PATCH\\\"\", token.STRING, 0)),\n\t\t\"MethodPost\":                          reflect.ValueOf(constant.MakeFromLiteral(\"\\\"POST\\\"\", token.STRING, 0)),\n\t\t\"MethodPut\":                           reflect.ValueOf(constant.MakeFromLiteral(\"\\\"PUT\\\"\", token.STRING, 0)),\n\t\t\"MethodTrace\":                         reflect.ValueOf(constant.MakeFromLiteral(\"\\\"TRACE\\\"\", token.STRING, 0)),\n\t\t\"NewFileTransport\":                    reflect.ValueOf(http.NewFileTransport),\n\t\t\"NewFileTransportFS\":                  reflect.ValueOf(http.NewFileTransportFS),\n\t\t\"NewRequest\":                          reflect.ValueOf(http.NewRequest),\n\t\t\"NewRequestWithContext\":               reflect.ValueOf(http.NewRequestWithContext),\n\t\t\"NewResponseController\":               reflect.ValueOf(http.NewResponseController),\n\t\t\"NewServeMux\":                         reflect.ValueOf(http.NewServeMux),\n\t\t\"NoBody\":                              reflect.ValueOf(&http.NoBody).Elem(),\n\t\t\"NotFound\":                            reflect.ValueOf(http.NotFound),\n\t\t\"NotFoundHandler\":                     reflect.ValueOf(http.NotFoundHandler),\n\t\t\"ParseHTTPVersion\":                    reflect.ValueOf(http.ParseHTTPVersion),\n\t\t\"ParseTime\":                           reflect.ValueOf(http.ParseTime),\n\t\t\"Post\":                                reflect.ValueOf(http.Post),\n\t\t\"PostForm\":                            reflect.ValueOf(http.PostForm),\n\t\t\"ProxyFromEnvironment\":                reflect.ValueOf(http.ProxyFromEnvironment),\n\t\t\"ProxyURL\":                            reflect.ValueOf(http.ProxyURL),\n\t\t\"ReadRequest\":                         reflect.ValueOf(http.ReadRequest),\n\t\t\"ReadResponse\":                        reflect.ValueOf(http.ReadResponse),\n\t\t\"Redirect\":                            reflect.ValueOf(http.Redirect),\n\t\t\"RedirectHandler\":                     reflect.ValueOf(http.RedirectHandler),\n\t\t\"SameSiteDefaultMode\":                 reflect.ValueOf(http.SameSiteDefaultMode),\n\t\t\"SameSiteLaxMode\":                     reflect.ValueOf(http.SameSiteLaxMode),\n\t\t\"SameSiteNoneMode\":                    reflect.ValueOf(http.SameSiteNoneMode),\n\t\t\"SameSiteStrictMode\":                  reflect.ValueOf(http.SameSiteStrictMode),\n\t\t\"Serve\":                               reflect.ValueOf(http.Serve),\n\t\t\"ServeContent\":                        reflect.ValueOf(http.ServeContent),\n\t\t\"ServeFile\":                           reflect.ValueOf(http.ServeFile),\n\t\t\"ServeFileFS\":                         reflect.ValueOf(http.ServeFileFS),\n\t\t\"ServeTLS\":                            reflect.ValueOf(http.ServeTLS),\n\t\t\"ServerContextKey\":                    reflect.ValueOf(&http.ServerContextKey).Elem(),\n\t\t\"SetCookie\":                           reflect.ValueOf(http.SetCookie),\n\t\t\"StateActive\":                         reflect.ValueOf(http.StateActive),\n\t\t\"StateClosed\":                         reflect.ValueOf(http.StateClosed),\n\t\t\"StateHijacked\":                       reflect.ValueOf(http.StateHijacked),\n\t\t\"StateIdle\":                           reflect.ValueOf(http.StateIdle),\n\t\t\"StateNew\":                            reflect.ValueOf(http.StateNew),\n\t\t\"StatusAccepted\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"StatusAlreadyReported\":               reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"StatusBadGateway\":                    reflect.ValueOf(constant.MakeFromLiteral(\"502\", token.INT, 0)),\n\t\t\"StatusBadRequest\":                    reflect.ValueOf(constant.MakeFromLiteral(\"400\", token.INT, 0)),\n\t\t\"StatusConflict\":                      reflect.ValueOf(constant.MakeFromLiteral(\"409\", token.INT, 0)),\n\t\t\"StatusContinue\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"StatusCreated\":                       reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"StatusEarlyHints\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"StatusExpectationFailed\":             reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"StatusFailedDependency\":              reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"StatusForbidden\":                     reflect.ValueOf(constant.MakeFromLiteral(\"403\", token.INT, 0)),\n\t\t\"StatusFound\":                         reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"StatusGatewayTimeout\":                reflect.ValueOf(constant.MakeFromLiteral(\"504\", token.INT, 0)),\n\t\t\"StatusGone\":                          reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"StatusHTTPVersionNotSupported\":       reflect.ValueOf(constant.MakeFromLiteral(\"505\", token.INT, 0)),\n\t\t\"StatusIMUsed\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"StatusInsufficientStorage\":           reflect.ValueOf(constant.MakeFromLiteral(\"507\", token.INT, 0)),\n\t\t\"StatusInternalServerError\":           reflect.ValueOf(constant.MakeFromLiteral(\"500\", token.INT, 0)),\n\t\t\"StatusLengthRequired\":                reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"StatusLocked\":                        reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"StatusLoopDetected\":                  reflect.ValueOf(constant.MakeFromLiteral(\"508\", token.INT, 0)),\n\t\t\"StatusMethodNotAllowed\":              reflect.ValueOf(constant.MakeFromLiteral(\"405\", token.INT, 0)),\n\t\t\"StatusMisdirectedRequest\":            reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"StatusMovedPermanently\":              reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"StatusMultiStatus\":                   reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"StatusMultipleChoices\":               reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"StatusNetworkAuthenticationRequired\": reflect.ValueOf(constant.MakeFromLiteral(\"511\", token.INT, 0)),\n\t\t\"StatusNoContent\":                     reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"StatusNonAuthoritativeInfo\":          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"StatusNotAcceptable\":                 reflect.ValueOf(constant.MakeFromLiteral(\"406\", token.INT, 0)),\n\t\t\"StatusNotExtended\":                   reflect.ValueOf(constant.MakeFromLiteral(\"510\", token.INT, 0)),\n\t\t\"StatusNotFound\":                      reflect.ValueOf(constant.MakeFromLiteral(\"404\", token.INT, 0)),\n\t\t\"StatusNotImplemented\":                reflect.ValueOf(constant.MakeFromLiteral(\"501\", token.INT, 0)),\n\t\t\"StatusNotModified\":                   reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"StatusOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"StatusPartialContent\":                reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"StatusPaymentRequired\":               reflect.ValueOf(constant.MakeFromLiteral(\"402\", token.INT, 0)),\n\t\t\"StatusPermanentRedirect\":             reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"StatusPreconditionFailed\":            reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"StatusPreconditionRequired\":          reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"StatusProcessing\":                    reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"StatusProxyAuthRequired\":             reflect.ValueOf(constant.MakeFromLiteral(\"407\", token.INT, 0)),\n\t\t\"StatusRequestEntityTooLarge\":         reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"StatusRequestHeaderFieldsTooLarge\":   reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"StatusRequestTimeout\":                reflect.ValueOf(constant.MakeFromLiteral(\"408\", token.INT, 0)),\n\t\t\"StatusRequestURITooLong\":             reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"StatusRequestedRangeNotSatisfiable\":  reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"StatusResetContent\":                  reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"StatusSeeOther\":                      reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"StatusServiceUnavailable\":            reflect.ValueOf(constant.MakeFromLiteral(\"503\", token.INT, 0)),\n\t\t\"StatusSwitchingProtocols\":            reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"StatusTeapot\":                        reflect.ValueOf(constant.MakeFromLiteral(\"418\", token.INT, 0)),\n\t\t\"StatusTemporaryRedirect\":             reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"StatusText\":                          reflect.ValueOf(http.StatusText),\n\t\t\"StatusTooEarly\":                      reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"StatusTooManyRequests\":               reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"StatusUnauthorized\":                  reflect.ValueOf(constant.MakeFromLiteral(\"401\", token.INT, 0)),\n\t\t\"StatusUnavailableForLegalReasons\":    reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"StatusUnprocessableEntity\":           reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"StatusUnsupportedMediaType\":          reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"StatusUpgradeRequired\":               reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"StatusUseProxy\":                      reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"StatusVariantAlsoNegotiates\":         reflect.ValueOf(constant.MakeFromLiteral(\"506\", token.INT, 0)),\n\t\t\"StripPrefix\":                         reflect.ValueOf(http.StripPrefix),\n\t\t\"TimeFormat\":                          reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Mon, 02 Jan 2006 15:04:05 GMT\\\"\", token.STRING, 0)),\n\t\t\"TimeoutHandler\":                      reflect.ValueOf(http.TimeoutHandler),\n\t\t\"TrailerPrefix\":                       reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Trailer:\\\"\", token.STRING, 0)),\n\n\t\t// type definitions\n\t\t\"Client\":             reflect.ValueOf((*http.Client)(nil)),\n\t\t\"CloseNotifier\":      reflect.ValueOf((*http.CloseNotifier)(nil)),\n\t\t\"ConnState\":          reflect.ValueOf((*http.ConnState)(nil)),\n\t\t\"Cookie\":             reflect.ValueOf((*http.Cookie)(nil)),\n\t\t\"CookieJar\":          reflect.ValueOf((*http.CookieJar)(nil)),\n\t\t\"Dir\":                reflect.ValueOf((*http.Dir)(nil)),\n\t\t\"File\":               reflect.ValueOf((*http.File)(nil)),\n\t\t\"FileSystem\":         reflect.ValueOf((*http.FileSystem)(nil)),\n\t\t\"Flusher\":            reflect.ValueOf((*http.Flusher)(nil)),\n\t\t\"Handler\":            reflect.ValueOf((*http.Handler)(nil)),\n\t\t\"HandlerFunc\":        reflect.ValueOf((*http.HandlerFunc)(nil)),\n\t\t\"Header\":             reflect.ValueOf((*http.Header)(nil)),\n\t\t\"Hijacker\":           reflect.ValueOf((*http.Hijacker)(nil)),\n\t\t\"MaxBytesError\":      reflect.ValueOf((*http.MaxBytesError)(nil)),\n\t\t\"ProtocolError\":      reflect.ValueOf((*http.ProtocolError)(nil)),\n\t\t\"PushOptions\":        reflect.ValueOf((*http.PushOptions)(nil)),\n\t\t\"Pusher\":             reflect.ValueOf((*http.Pusher)(nil)),\n\t\t\"Request\":            reflect.ValueOf((*http.Request)(nil)),\n\t\t\"Response\":           reflect.ValueOf((*http.Response)(nil)),\n\t\t\"ResponseController\": reflect.ValueOf((*http.ResponseController)(nil)),\n\t\t\"ResponseWriter\":     reflect.ValueOf((*http.ResponseWriter)(nil)),\n\t\t\"RoundTripper\":       reflect.ValueOf((*http.RoundTripper)(nil)),\n\t\t\"SameSite\":           reflect.ValueOf((*http.SameSite)(nil)),\n\t\t\"ServeMux\":           reflect.ValueOf((*http.ServeMux)(nil)),\n\t\t\"Server\":             reflect.ValueOf((*http.Server)(nil)),\n\t\t\"Transport\":          reflect.ValueOf((*http.Transport)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_CloseNotifier\":  reflect.ValueOf((*_net_http_CloseNotifier)(nil)),\n\t\t\"_CookieJar\":      reflect.ValueOf((*_net_http_CookieJar)(nil)),\n\t\t\"_File\":           reflect.ValueOf((*_net_http_File)(nil)),\n\t\t\"_FileSystem\":     reflect.ValueOf((*_net_http_FileSystem)(nil)),\n\t\t\"_Flusher\":        reflect.ValueOf((*_net_http_Flusher)(nil)),\n\t\t\"_Handler\":        reflect.ValueOf((*_net_http_Handler)(nil)),\n\t\t\"_Hijacker\":       reflect.ValueOf((*_net_http_Hijacker)(nil)),\n\t\t\"_Pusher\":         reflect.ValueOf((*_net_http_Pusher)(nil)),\n\t\t\"_ResponseWriter\": reflect.ValueOf((*_net_http_ResponseWriter)(nil)),\n\t\t\"_RoundTripper\":   reflect.ValueOf((*_net_http_RoundTripper)(nil)),\n\t}\n}\n\n// _net_http_CloseNotifier is an interface wrapper for CloseNotifier type\ntype _net_http_CloseNotifier struct {\n\tIValue       interface{}\n\tWCloseNotify func() <-chan bool\n}\n\nfunc (W _net_http_CloseNotifier) CloseNotify() <-chan bool { return W.WCloseNotify() }\n\n// _net_http_CookieJar is an interface wrapper for CookieJar type\ntype _net_http_CookieJar struct {\n\tIValue      interface{}\n\tWCookies    func(u *url.URL) []*http.Cookie\n\tWSetCookies func(u *url.URL, cookies []*http.Cookie)\n}\n\nfunc (W _net_http_CookieJar) Cookies(u *url.URL) []*http.Cookie { return W.WCookies(u) }\nfunc (W _net_http_CookieJar) SetCookies(u *url.URL, cookies []*http.Cookie) {\n\tW.WSetCookies(u, cookies)\n}\n\n// _net_http_File is an interface wrapper for File type\ntype _net_http_File struct {\n\tIValue   interface{}\n\tWClose   func() error\n\tWRead    func(p []byte) (n int, err error)\n\tWReaddir func(count int) ([]fs.FileInfo, error)\n\tWSeek    func(offset int64, whence int) (int64, error)\n\tWStat    func() (fs.FileInfo, error)\n}\n\nfunc (W _net_http_File) Close() error                                 { return W.WClose() }\nfunc (W _net_http_File) Read(p []byte) (n int, err error)             { return W.WRead(p) }\nfunc (W _net_http_File) Readdir(count int) ([]fs.FileInfo, error)     { return W.WReaddir(count) }\nfunc (W _net_http_File) Seek(offset int64, whence int) (int64, error) { return W.WSeek(offset, whence) }\nfunc (W _net_http_File) Stat() (fs.FileInfo, error)                   { return W.WStat() }\n\n// _net_http_FileSystem is an interface wrapper for FileSystem type\ntype _net_http_FileSystem struct {\n\tIValue interface{}\n\tWOpen  func(name string) (http.File, error)\n}\n\nfunc (W _net_http_FileSystem) Open(name string) (http.File, error) { return W.WOpen(name) }\n\n// _net_http_Flusher is an interface wrapper for Flusher type\ntype _net_http_Flusher struct {\n\tIValue interface{}\n\tWFlush func()\n}\n\nfunc (W _net_http_Flusher) Flush() { W.WFlush() }\n\n// _net_http_Handler is an interface wrapper for Handler type\ntype _net_http_Handler struct {\n\tIValue     interface{}\n\tWServeHTTP func(a0 http.ResponseWriter, a1 *http.Request)\n}\n\nfunc (W _net_http_Handler) ServeHTTP(a0 http.ResponseWriter, a1 *http.Request) { W.WServeHTTP(a0, a1) }\n\n// _net_http_Hijacker is an interface wrapper for Hijacker type\ntype _net_http_Hijacker struct {\n\tIValue  interface{}\n\tWHijack func() (net.Conn, *bufio.ReadWriter, error)\n}\n\nfunc (W _net_http_Hijacker) Hijack() (net.Conn, *bufio.ReadWriter, error) { return W.WHijack() }\n\n// _net_http_Pusher is an interface wrapper for Pusher type\ntype _net_http_Pusher struct {\n\tIValue interface{}\n\tWPush  func(target string, opts *http.PushOptions) error\n}\n\nfunc (W _net_http_Pusher) Push(target string, opts *http.PushOptions) error {\n\treturn W.WPush(target, opts)\n}\n\n// _net_http_ResponseWriter is an interface wrapper for ResponseWriter type\ntype _net_http_ResponseWriter struct {\n\tIValue       interface{}\n\tWHeader      func() http.Header\n\tWWrite       func(a0 []byte) (int, error)\n\tWWriteHeader func(statusCode int)\n}\n\nfunc (W _net_http_ResponseWriter) Header() http.Header          { return W.WHeader() }\nfunc (W _net_http_ResponseWriter) Write(a0 []byte) (int, error) { return W.WWrite(a0) }\nfunc (W _net_http_ResponseWriter) WriteHeader(statusCode int)   { W.WWriteHeader(statusCode) }\n\n// _net_http_RoundTripper is an interface wrapper for RoundTripper type\ntype _net_http_RoundTripper struct {\n\tIValue     interface{}\n\tWRoundTrip func(a0 *http.Request) (*http.Response, error)\n}\n\nfunc (W _net_http_RoundTripper) RoundTrip(a0 *http.Request) (*http.Response, error) {\n\treturn W.WRoundTrip(a0)\n}\n"
  },
  {
    "path": "stdlib/go1_22_net_http_cgi.go",
    "content": "// Code generated by 'yaegi extract net/http/cgi'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"net/http/cgi\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/http/cgi/cgi\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Request\":        reflect.ValueOf(cgi.Request),\n\t\t\"RequestFromMap\": reflect.ValueOf(cgi.RequestFromMap),\n\t\t\"Serve\":          reflect.ValueOf(cgi.Serve),\n\n\t\t// type definitions\n\t\t\"Handler\": reflect.ValueOf((*cgi.Handler)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_net_http_cookiejar.go",
    "content": "// Code generated by 'yaegi extract net/http/cookiejar'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"net/http/cookiejar\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/http/cookiejar/cookiejar\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"New\": reflect.ValueOf(cookiejar.New),\n\n\t\t// type definitions\n\t\t\"Jar\":              reflect.ValueOf((*cookiejar.Jar)(nil)),\n\t\t\"Options\":          reflect.ValueOf((*cookiejar.Options)(nil)),\n\t\t\"PublicSuffixList\": reflect.ValueOf((*cookiejar.PublicSuffixList)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_PublicSuffixList\": reflect.ValueOf((*_net_http_cookiejar_PublicSuffixList)(nil)),\n\t}\n}\n\n// _net_http_cookiejar_PublicSuffixList is an interface wrapper for PublicSuffixList type\ntype _net_http_cookiejar_PublicSuffixList struct {\n\tIValue        interface{}\n\tWPublicSuffix func(domain string) string\n\tWString       func() string\n}\n\nfunc (W _net_http_cookiejar_PublicSuffixList) PublicSuffix(domain string) string {\n\treturn W.WPublicSuffix(domain)\n}\nfunc (W _net_http_cookiejar_PublicSuffixList) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n"
  },
  {
    "path": "stdlib/go1_22_net_http_fcgi.go",
    "content": "// Code generated by 'yaegi extract net/http/fcgi'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"net/http/fcgi\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/http/fcgi/fcgi\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ErrConnClosed\":     reflect.ValueOf(&fcgi.ErrConnClosed).Elem(),\n\t\t\"ErrRequestAborted\": reflect.ValueOf(&fcgi.ErrRequestAborted).Elem(),\n\t\t\"ProcessEnv\":        reflect.ValueOf(fcgi.ProcessEnv),\n\t\t\"Serve\":             reflect.ValueOf(fcgi.Serve),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_net_http_httptest.go",
    "content": "// Code generated by 'yaegi extract net/http/httptest'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"net/http/httptest\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/http/httptest/httptest\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"DefaultRemoteAddr\":  reflect.ValueOf(constant.MakeFromLiteral(\"\\\"1.2.3.4\\\"\", token.STRING, 0)),\n\t\t\"NewRecorder\":        reflect.ValueOf(httptest.NewRecorder),\n\t\t\"NewRequest\":         reflect.ValueOf(httptest.NewRequest),\n\t\t\"NewServer\":          reflect.ValueOf(httptest.NewServer),\n\t\t\"NewTLSServer\":       reflect.ValueOf(httptest.NewTLSServer),\n\t\t\"NewUnstartedServer\": reflect.ValueOf(httptest.NewUnstartedServer),\n\n\t\t// type definitions\n\t\t\"ResponseRecorder\": reflect.ValueOf((*httptest.ResponseRecorder)(nil)),\n\t\t\"Server\":           reflect.ValueOf((*httptest.Server)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_net_http_httptrace.go",
    "content": "// Code generated by 'yaegi extract net/http/httptrace'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"net/http/httptrace\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/http/httptrace/httptrace\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ContextClientTrace\": reflect.ValueOf(httptrace.ContextClientTrace),\n\t\t\"WithClientTrace\":    reflect.ValueOf(httptrace.WithClientTrace),\n\n\t\t// type definitions\n\t\t\"ClientTrace\":      reflect.ValueOf((*httptrace.ClientTrace)(nil)),\n\t\t\"DNSDoneInfo\":      reflect.ValueOf((*httptrace.DNSDoneInfo)(nil)),\n\t\t\"DNSStartInfo\":     reflect.ValueOf((*httptrace.DNSStartInfo)(nil)),\n\t\t\"GotConnInfo\":      reflect.ValueOf((*httptrace.GotConnInfo)(nil)),\n\t\t\"WroteRequestInfo\": reflect.ValueOf((*httptrace.WroteRequestInfo)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_net_http_httputil.go",
    "content": "// Code generated by 'yaegi extract net/http/httputil'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"net/http/httputil\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/http/httputil/httputil\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"DumpRequest\":               reflect.ValueOf(httputil.DumpRequest),\n\t\t\"DumpRequestOut\":            reflect.ValueOf(httputil.DumpRequestOut),\n\t\t\"DumpResponse\":              reflect.ValueOf(httputil.DumpResponse),\n\t\t\"ErrClosed\":                 reflect.ValueOf(&httputil.ErrClosed).Elem(),\n\t\t\"ErrLineTooLong\":            reflect.ValueOf(&httputil.ErrLineTooLong).Elem(),\n\t\t\"ErrPersistEOF\":             reflect.ValueOf(&httputil.ErrPersistEOF).Elem(),\n\t\t\"ErrPipeline\":               reflect.ValueOf(&httputil.ErrPipeline).Elem(),\n\t\t\"NewChunkedReader\":          reflect.ValueOf(httputil.NewChunkedReader),\n\t\t\"NewChunkedWriter\":          reflect.ValueOf(httputil.NewChunkedWriter),\n\t\t\"NewClientConn\":             reflect.ValueOf(httputil.NewClientConn),\n\t\t\"NewProxyClientConn\":        reflect.ValueOf(httputil.NewProxyClientConn),\n\t\t\"NewServerConn\":             reflect.ValueOf(httputil.NewServerConn),\n\t\t\"NewSingleHostReverseProxy\": reflect.ValueOf(httputil.NewSingleHostReverseProxy),\n\n\t\t// type definitions\n\t\t\"BufferPool\":   reflect.ValueOf((*httputil.BufferPool)(nil)),\n\t\t\"ClientConn\":   reflect.ValueOf((*httputil.ClientConn)(nil)),\n\t\t\"ProxyRequest\": reflect.ValueOf((*httputil.ProxyRequest)(nil)),\n\t\t\"ReverseProxy\": reflect.ValueOf((*httputil.ReverseProxy)(nil)),\n\t\t\"ServerConn\":   reflect.ValueOf((*httputil.ServerConn)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_BufferPool\": reflect.ValueOf((*_net_http_httputil_BufferPool)(nil)),\n\t}\n}\n\n// _net_http_httputil_BufferPool is an interface wrapper for BufferPool type\ntype _net_http_httputil_BufferPool struct {\n\tIValue interface{}\n\tWGet   func() []byte\n\tWPut   func(a0 []byte)\n}\n\nfunc (W _net_http_httputil_BufferPool) Get() []byte   { return W.WGet() }\nfunc (W _net_http_httputil_BufferPool) Put(a0 []byte) { W.WPut(a0) }\n"
  },
  {
    "path": "stdlib/go1_22_net_http_pprof.go",
    "content": "// Code generated by 'yaegi extract net/http/pprof'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"net/http/pprof\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/http/pprof/pprof\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Cmdline\": reflect.ValueOf(pprof.Cmdline),\n\t\t\"Handler\": reflect.ValueOf(pprof.Handler),\n\t\t\"Index\":   reflect.ValueOf(pprof.Index),\n\t\t\"Profile\": reflect.ValueOf(pprof.Profile),\n\t\t\"Symbol\":  reflect.ValueOf(pprof.Symbol),\n\t\t\"Trace\":   reflect.ValueOf(pprof.Trace),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_net_mail.go",
    "content": "// Code generated by 'yaegi extract net/mail'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"net/mail\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/mail/mail\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ErrHeaderNotPresent\": reflect.ValueOf(&mail.ErrHeaderNotPresent).Elem(),\n\t\t\"ParseAddress\":        reflect.ValueOf(mail.ParseAddress),\n\t\t\"ParseAddressList\":    reflect.ValueOf(mail.ParseAddressList),\n\t\t\"ParseDate\":           reflect.ValueOf(mail.ParseDate),\n\t\t\"ReadMessage\":         reflect.ValueOf(mail.ReadMessage),\n\n\t\t// type definitions\n\t\t\"Address\":       reflect.ValueOf((*mail.Address)(nil)),\n\t\t\"AddressParser\": reflect.ValueOf((*mail.AddressParser)(nil)),\n\t\t\"Header\":        reflect.ValueOf((*mail.Header)(nil)),\n\t\t\"Message\":       reflect.ValueOf((*mail.Message)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_net_netip.go",
    "content": "// Code generated by 'yaegi extract net/netip'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"net/netip\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/netip/netip\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AddrFrom16\":              reflect.ValueOf(netip.AddrFrom16),\n\t\t\"AddrFrom4\":               reflect.ValueOf(netip.AddrFrom4),\n\t\t\"AddrFromSlice\":           reflect.ValueOf(netip.AddrFromSlice),\n\t\t\"AddrPortFrom\":            reflect.ValueOf(netip.AddrPortFrom),\n\t\t\"IPv4Unspecified\":         reflect.ValueOf(netip.IPv4Unspecified),\n\t\t\"IPv6LinkLocalAllNodes\":   reflect.ValueOf(netip.IPv6LinkLocalAllNodes),\n\t\t\"IPv6LinkLocalAllRouters\": reflect.ValueOf(netip.IPv6LinkLocalAllRouters),\n\t\t\"IPv6Loopback\":            reflect.ValueOf(netip.IPv6Loopback),\n\t\t\"IPv6Unspecified\":         reflect.ValueOf(netip.IPv6Unspecified),\n\t\t\"MustParseAddr\":           reflect.ValueOf(netip.MustParseAddr),\n\t\t\"MustParseAddrPort\":       reflect.ValueOf(netip.MustParseAddrPort),\n\t\t\"MustParsePrefix\":         reflect.ValueOf(netip.MustParsePrefix),\n\t\t\"ParseAddr\":               reflect.ValueOf(netip.ParseAddr),\n\t\t\"ParseAddrPort\":           reflect.ValueOf(netip.ParseAddrPort),\n\t\t\"ParsePrefix\":             reflect.ValueOf(netip.ParsePrefix),\n\t\t\"PrefixFrom\":              reflect.ValueOf(netip.PrefixFrom),\n\n\t\t// type definitions\n\t\t\"Addr\":     reflect.ValueOf((*netip.Addr)(nil)),\n\t\t\"AddrPort\": reflect.ValueOf((*netip.AddrPort)(nil)),\n\t\t\"Prefix\":   reflect.ValueOf((*netip.Prefix)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_net_rpc.go",
    "content": "// Code generated by 'yaegi extract net/rpc'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"net/rpc\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/rpc/rpc\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Accept\":             reflect.ValueOf(rpc.Accept),\n\t\t\"DefaultDebugPath\":   reflect.ValueOf(constant.MakeFromLiteral(\"\\\"/debug/rpc\\\"\", token.STRING, 0)),\n\t\t\"DefaultRPCPath\":     reflect.ValueOf(constant.MakeFromLiteral(\"\\\"/_goRPC_\\\"\", token.STRING, 0)),\n\t\t\"DefaultServer\":      reflect.ValueOf(&rpc.DefaultServer).Elem(),\n\t\t\"Dial\":               reflect.ValueOf(rpc.Dial),\n\t\t\"DialHTTP\":           reflect.ValueOf(rpc.DialHTTP),\n\t\t\"DialHTTPPath\":       reflect.ValueOf(rpc.DialHTTPPath),\n\t\t\"ErrShutdown\":        reflect.ValueOf(&rpc.ErrShutdown).Elem(),\n\t\t\"HandleHTTP\":         reflect.ValueOf(rpc.HandleHTTP),\n\t\t\"NewClient\":          reflect.ValueOf(rpc.NewClient),\n\t\t\"NewClientWithCodec\": reflect.ValueOf(rpc.NewClientWithCodec),\n\t\t\"NewServer\":          reflect.ValueOf(rpc.NewServer),\n\t\t\"Register\":           reflect.ValueOf(rpc.Register),\n\t\t\"RegisterName\":       reflect.ValueOf(rpc.RegisterName),\n\t\t\"ServeCodec\":         reflect.ValueOf(rpc.ServeCodec),\n\t\t\"ServeConn\":          reflect.ValueOf(rpc.ServeConn),\n\t\t\"ServeRequest\":       reflect.ValueOf(rpc.ServeRequest),\n\n\t\t// type definitions\n\t\t\"Call\":        reflect.ValueOf((*rpc.Call)(nil)),\n\t\t\"Client\":      reflect.ValueOf((*rpc.Client)(nil)),\n\t\t\"ClientCodec\": reflect.ValueOf((*rpc.ClientCodec)(nil)),\n\t\t\"Request\":     reflect.ValueOf((*rpc.Request)(nil)),\n\t\t\"Response\":    reflect.ValueOf((*rpc.Response)(nil)),\n\t\t\"Server\":      reflect.ValueOf((*rpc.Server)(nil)),\n\t\t\"ServerCodec\": reflect.ValueOf((*rpc.ServerCodec)(nil)),\n\t\t\"ServerError\": reflect.ValueOf((*rpc.ServerError)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_ClientCodec\": reflect.ValueOf((*_net_rpc_ClientCodec)(nil)),\n\t\t\"_ServerCodec\": reflect.ValueOf((*_net_rpc_ServerCodec)(nil)),\n\t}\n}\n\n// _net_rpc_ClientCodec is an interface wrapper for ClientCodec type\ntype _net_rpc_ClientCodec struct {\n\tIValue              interface{}\n\tWClose              func() error\n\tWReadResponseBody   func(a0 any) error\n\tWReadResponseHeader func(a0 *rpc.Response) error\n\tWWriteRequest       func(a0 *rpc.Request, a1 any) error\n}\n\nfunc (W _net_rpc_ClientCodec) Close() error                  { return W.WClose() }\nfunc (W _net_rpc_ClientCodec) ReadResponseBody(a0 any) error { return W.WReadResponseBody(a0) }\nfunc (W _net_rpc_ClientCodec) ReadResponseHeader(a0 *rpc.Response) error {\n\treturn W.WReadResponseHeader(a0)\n}\nfunc (W _net_rpc_ClientCodec) WriteRequest(a0 *rpc.Request, a1 any) error {\n\treturn W.WWriteRequest(a0, a1)\n}\n\n// _net_rpc_ServerCodec is an interface wrapper for ServerCodec type\ntype _net_rpc_ServerCodec struct {\n\tIValue             interface{}\n\tWClose             func() error\n\tWReadRequestBody   func(a0 any) error\n\tWReadRequestHeader func(a0 *rpc.Request) error\n\tWWriteResponse     func(a0 *rpc.Response, a1 any) error\n}\n\nfunc (W _net_rpc_ServerCodec) Close() error                 { return W.WClose() }\nfunc (W _net_rpc_ServerCodec) ReadRequestBody(a0 any) error { return W.WReadRequestBody(a0) }\nfunc (W _net_rpc_ServerCodec) ReadRequestHeader(a0 *rpc.Request) error {\n\treturn W.WReadRequestHeader(a0)\n}\nfunc (W _net_rpc_ServerCodec) WriteResponse(a0 *rpc.Response, a1 any) error {\n\treturn W.WWriteResponse(a0, a1)\n}\n"
  },
  {
    "path": "stdlib/go1_22_net_rpc_jsonrpc.go",
    "content": "// Code generated by 'yaegi extract net/rpc/jsonrpc'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"net/rpc/jsonrpc\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/rpc/jsonrpc/jsonrpc\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Dial\":           reflect.ValueOf(jsonrpc.Dial),\n\t\t\"NewClient\":      reflect.ValueOf(jsonrpc.NewClient),\n\t\t\"NewClientCodec\": reflect.ValueOf(jsonrpc.NewClientCodec),\n\t\t\"NewServerCodec\": reflect.ValueOf(jsonrpc.NewServerCodec),\n\t\t\"ServeConn\":      reflect.ValueOf(jsonrpc.ServeConn),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_net_smtp.go",
    "content": "// Code generated by 'yaegi extract net/smtp'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"net/smtp\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/smtp/smtp\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"CRAMMD5Auth\": reflect.ValueOf(smtp.CRAMMD5Auth),\n\t\t\"Dial\":        reflect.ValueOf(smtp.Dial),\n\t\t\"NewClient\":   reflect.ValueOf(smtp.NewClient),\n\t\t\"PlainAuth\":   reflect.ValueOf(smtp.PlainAuth),\n\t\t\"SendMail\":    reflect.ValueOf(smtp.SendMail),\n\n\t\t// type definitions\n\t\t\"Auth\":       reflect.ValueOf((*smtp.Auth)(nil)),\n\t\t\"Client\":     reflect.ValueOf((*smtp.Client)(nil)),\n\t\t\"ServerInfo\": reflect.ValueOf((*smtp.ServerInfo)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Auth\": reflect.ValueOf((*_net_smtp_Auth)(nil)),\n\t}\n}\n\n// _net_smtp_Auth is an interface wrapper for Auth type\ntype _net_smtp_Auth struct {\n\tIValue interface{}\n\tWNext  func(fromServer []byte, more bool) (toServer []byte, err error)\n\tWStart func(server *smtp.ServerInfo) (proto string, toServer []byte, err error)\n}\n\nfunc (W _net_smtp_Auth) Next(fromServer []byte, more bool) (toServer []byte, err error) {\n\treturn W.WNext(fromServer, more)\n}\nfunc (W _net_smtp_Auth) Start(server *smtp.ServerInfo) (proto string, toServer []byte, err error) {\n\treturn W.WStart(server)\n}\n"
  },
  {
    "path": "stdlib/go1_22_net_textproto.go",
    "content": "// Code generated by 'yaegi extract net/textproto'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"net/textproto\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/textproto/textproto\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"CanonicalMIMEHeaderKey\": reflect.ValueOf(textproto.CanonicalMIMEHeaderKey),\n\t\t\"Dial\":                   reflect.ValueOf(textproto.Dial),\n\t\t\"NewConn\":                reflect.ValueOf(textproto.NewConn),\n\t\t\"NewReader\":              reflect.ValueOf(textproto.NewReader),\n\t\t\"NewWriter\":              reflect.ValueOf(textproto.NewWriter),\n\t\t\"TrimBytes\":              reflect.ValueOf(textproto.TrimBytes),\n\t\t\"TrimString\":             reflect.ValueOf(textproto.TrimString),\n\n\t\t// type definitions\n\t\t\"Conn\":          reflect.ValueOf((*textproto.Conn)(nil)),\n\t\t\"Error\":         reflect.ValueOf((*textproto.Error)(nil)),\n\t\t\"MIMEHeader\":    reflect.ValueOf((*textproto.MIMEHeader)(nil)),\n\t\t\"Pipeline\":      reflect.ValueOf((*textproto.Pipeline)(nil)),\n\t\t\"ProtocolError\": reflect.ValueOf((*textproto.ProtocolError)(nil)),\n\t\t\"Reader\":        reflect.ValueOf((*textproto.Reader)(nil)),\n\t\t\"Writer\":        reflect.ValueOf((*textproto.Writer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_net_url.go",
    "content": "// Code generated by 'yaegi extract net/url'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"net/url\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"net/url/url\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"JoinPath\":        reflect.ValueOf(url.JoinPath),\n\t\t\"Parse\":           reflect.ValueOf(url.Parse),\n\t\t\"ParseQuery\":      reflect.ValueOf(url.ParseQuery),\n\t\t\"ParseRequestURI\": reflect.ValueOf(url.ParseRequestURI),\n\t\t\"PathEscape\":      reflect.ValueOf(url.PathEscape),\n\t\t\"PathUnescape\":    reflect.ValueOf(url.PathUnescape),\n\t\t\"QueryEscape\":     reflect.ValueOf(url.QueryEscape),\n\t\t\"QueryUnescape\":   reflect.ValueOf(url.QueryUnescape),\n\t\t\"User\":            reflect.ValueOf(url.User),\n\t\t\"UserPassword\":    reflect.ValueOf(url.UserPassword),\n\n\t\t// type definitions\n\t\t\"Error\":            reflect.ValueOf((*url.Error)(nil)),\n\t\t\"EscapeError\":      reflect.ValueOf((*url.EscapeError)(nil)),\n\t\t\"InvalidHostError\": reflect.ValueOf((*url.InvalidHostError)(nil)),\n\t\t\"URL\":              reflect.ValueOf((*url.URL)(nil)),\n\t\t\"Userinfo\":         reflect.ValueOf((*url.Userinfo)(nil)),\n\t\t\"Values\":           reflect.ValueOf((*url.Values)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_os.go",
    "content": "// Code generated by 'yaegi extract os'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"io/fs\"\n\t\"os\"\n\t\"reflect\"\n\t\"time\"\n)\n\nfunc init() {\n\tSymbols[\"os/os\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Args\":                reflect.ValueOf(&os.Args).Elem(),\n\t\t\"Chdir\":               reflect.ValueOf(os.Chdir),\n\t\t\"Chmod\":               reflect.ValueOf(os.Chmod),\n\t\t\"Chown\":               reflect.ValueOf(os.Chown),\n\t\t\"Chtimes\":             reflect.ValueOf(os.Chtimes),\n\t\t\"Clearenv\":            reflect.ValueOf(os.Clearenv),\n\t\t\"Create\":              reflect.ValueOf(os.Create),\n\t\t\"CreateTemp\":          reflect.ValueOf(os.CreateTemp),\n\t\t\"DevNull\":             reflect.ValueOf(constant.MakeFromLiteral(\"\\\"/dev/null\\\"\", token.STRING, 0)),\n\t\t\"DirFS\":               reflect.ValueOf(os.DirFS),\n\t\t\"Environ\":             reflect.ValueOf(os.Environ),\n\t\t\"ErrClosed\":           reflect.ValueOf(&os.ErrClosed).Elem(),\n\t\t\"ErrDeadlineExceeded\": reflect.ValueOf(&os.ErrDeadlineExceeded).Elem(),\n\t\t\"ErrExist\":            reflect.ValueOf(&os.ErrExist).Elem(),\n\t\t\"ErrInvalid\":          reflect.ValueOf(&os.ErrInvalid).Elem(),\n\t\t\"ErrNoDeadline\":       reflect.ValueOf(&os.ErrNoDeadline).Elem(),\n\t\t\"ErrNotExist\":         reflect.ValueOf(&os.ErrNotExist).Elem(),\n\t\t\"ErrPermission\":       reflect.ValueOf(&os.ErrPermission).Elem(),\n\t\t\"ErrProcessDone\":      reflect.ValueOf(&os.ErrProcessDone).Elem(),\n\t\t\"Executable\":          reflect.ValueOf(os.Executable),\n\t\t\"Exit\":                reflect.ValueOf(osExit),\n\t\t\"Expand\":              reflect.ValueOf(os.Expand),\n\t\t\"ExpandEnv\":           reflect.ValueOf(os.ExpandEnv),\n\t\t\"FindProcess\":         reflect.ValueOf(osFindProcess),\n\t\t\"Getegid\":             reflect.ValueOf(os.Getegid),\n\t\t\"Getenv\":              reflect.ValueOf(os.Getenv),\n\t\t\"Geteuid\":             reflect.ValueOf(os.Geteuid),\n\t\t\"Getgid\":              reflect.ValueOf(os.Getgid),\n\t\t\"Getgroups\":           reflect.ValueOf(os.Getgroups),\n\t\t\"Getpagesize\":         reflect.ValueOf(os.Getpagesize),\n\t\t\"Getpid\":              reflect.ValueOf(os.Getpid),\n\t\t\"Getppid\":             reflect.ValueOf(os.Getppid),\n\t\t\"Getuid\":              reflect.ValueOf(os.Getuid),\n\t\t\"Getwd\":               reflect.ValueOf(os.Getwd),\n\t\t\"Hostname\":            reflect.ValueOf(os.Hostname),\n\t\t\"Interrupt\":           reflect.ValueOf(&os.Interrupt).Elem(),\n\t\t\"IsExist\":             reflect.ValueOf(os.IsExist),\n\t\t\"IsNotExist\":          reflect.ValueOf(os.IsNotExist),\n\t\t\"IsPathSeparator\":     reflect.ValueOf(os.IsPathSeparator),\n\t\t\"IsPermission\":        reflect.ValueOf(os.IsPermission),\n\t\t\"IsTimeout\":           reflect.ValueOf(os.IsTimeout),\n\t\t\"Kill\":                reflect.ValueOf(&os.Kill).Elem(),\n\t\t\"Lchown\":              reflect.ValueOf(os.Lchown),\n\t\t\"Link\":                reflect.ValueOf(os.Link),\n\t\t\"LookupEnv\":           reflect.ValueOf(os.LookupEnv),\n\t\t\"Lstat\":               reflect.ValueOf(os.Lstat),\n\t\t\"Mkdir\":               reflect.ValueOf(os.Mkdir),\n\t\t\"MkdirAll\":            reflect.ValueOf(os.MkdirAll),\n\t\t\"MkdirTemp\":           reflect.ValueOf(os.MkdirTemp),\n\t\t\"ModeAppend\":          reflect.ValueOf(os.ModeAppend),\n\t\t\"ModeCharDevice\":      reflect.ValueOf(os.ModeCharDevice),\n\t\t\"ModeDevice\":          reflect.ValueOf(os.ModeDevice),\n\t\t\"ModeDir\":             reflect.ValueOf(os.ModeDir),\n\t\t\"ModeExclusive\":       reflect.ValueOf(os.ModeExclusive),\n\t\t\"ModeIrregular\":       reflect.ValueOf(os.ModeIrregular),\n\t\t\"ModeNamedPipe\":       reflect.ValueOf(os.ModeNamedPipe),\n\t\t\"ModePerm\":            reflect.ValueOf(os.ModePerm),\n\t\t\"ModeSetgid\":          reflect.ValueOf(os.ModeSetgid),\n\t\t\"ModeSetuid\":          reflect.ValueOf(os.ModeSetuid),\n\t\t\"ModeSocket\":          reflect.ValueOf(os.ModeSocket),\n\t\t\"ModeSticky\":          reflect.ValueOf(os.ModeSticky),\n\t\t\"ModeSymlink\":         reflect.ValueOf(os.ModeSymlink),\n\t\t\"ModeTemporary\":       reflect.ValueOf(os.ModeTemporary),\n\t\t\"ModeType\":            reflect.ValueOf(os.ModeType),\n\t\t\"NewFile\":             reflect.ValueOf(os.NewFile),\n\t\t\"NewSyscallError\":     reflect.ValueOf(os.NewSyscallError),\n\t\t\"O_APPEND\":            reflect.ValueOf(os.O_APPEND),\n\t\t\"O_CREATE\":            reflect.ValueOf(os.O_CREATE),\n\t\t\"O_EXCL\":              reflect.ValueOf(os.O_EXCL),\n\t\t\"O_RDONLY\":            reflect.ValueOf(os.O_RDONLY),\n\t\t\"O_RDWR\":              reflect.ValueOf(os.O_RDWR),\n\t\t\"O_SYNC\":              reflect.ValueOf(os.O_SYNC),\n\t\t\"O_TRUNC\":             reflect.ValueOf(os.O_TRUNC),\n\t\t\"O_WRONLY\":            reflect.ValueOf(os.O_WRONLY),\n\t\t\"Open\":                reflect.ValueOf(os.Open),\n\t\t\"OpenFile\":            reflect.ValueOf(os.OpenFile),\n\t\t\"PathListSeparator\":   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"PathSeparator\":       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"Pipe\":                reflect.ValueOf(os.Pipe),\n\t\t\"ReadDir\":             reflect.ValueOf(os.ReadDir),\n\t\t\"ReadFile\":            reflect.ValueOf(os.ReadFile),\n\t\t\"Readlink\":            reflect.ValueOf(os.Readlink),\n\t\t\"Remove\":              reflect.ValueOf(os.Remove),\n\t\t\"RemoveAll\":           reflect.ValueOf(os.RemoveAll),\n\t\t\"Rename\":              reflect.ValueOf(os.Rename),\n\t\t\"SEEK_CUR\":            reflect.ValueOf(os.SEEK_CUR),\n\t\t\"SEEK_END\":            reflect.ValueOf(os.SEEK_END),\n\t\t\"SEEK_SET\":            reflect.ValueOf(os.SEEK_SET),\n\t\t\"SameFile\":            reflect.ValueOf(os.SameFile),\n\t\t\"Setenv\":              reflect.ValueOf(os.Setenv),\n\t\t\"StartProcess\":        reflect.ValueOf(os.StartProcess),\n\t\t\"Stat\":                reflect.ValueOf(os.Stat),\n\t\t\"Stderr\":              reflect.ValueOf(&os.Stderr).Elem(),\n\t\t\"Stdin\":               reflect.ValueOf(&os.Stdin).Elem(),\n\t\t\"Stdout\":              reflect.ValueOf(&os.Stdout).Elem(),\n\t\t\"Symlink\":             reflect.ValueOf(os.Symlink),\n\t\t\"TempDir\":             reflect.ValueOf(os.TempDir),\n\t\t\"Truncate\":            reflect.ValueOf(os.Truncate),\n\t\t\"Unsetenv\":            reflect.ValueOf(os.Unsetenv),\n\t\t\"UserCacheDir\":        reflect.ValueOf(os.UserCacheDir),\n\t\t\"UserConfigDir\":       reflect.ValueOf(os.UserConfigDir),\n\t\t\"UserHomeDir\":         reflect.ValueOf(os.UserHomeDir),\n\t\t\"WriteFile\":           reflect.ValueOf(os.WriteFile),\n\n\t\t// type definitions\n\t\t\"DirEntry\":     reflect.ValueOf((*os.DirEntry)(nil)),\n\t\t\"File\":         reflect.ValueOf((*os.File)(nil)),\n\t\t\"FileInfo\":     reflect.ValueOf((*os.FileInfo)(nil)),\n\t\t\"FileMode\":     reflect.ValueOf((*os.FileMode)(nil)),\n\t\t\"LinkError\":    reflect.ValueOf((*os.LinkError)(nil)),\n\t\t\"PathError\":    reflect.ValueOf((*os.PathError)(nil)),\n\t\t\"ProcAttr\":     reflect.ValueOf((*os.ProcAttr)(nil)),\n\t\t\"Process\":      reflect.ValueOf((*os.Process)(nil)),\n\t\t\"ProcessState\": reflect.ValueOf((*os.ProcessState)(nil)),\n\t\t\"Signal\":       reflect.ValueOf((*os.Signal)(nil)),\n\t\t\"SyscallError\": reflect.ValueOf((*os.SyscallError)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_DirEntry\": reflect.ValueOf((*_os_DirEntry)(nil)),\n\t\t\"_FileInfo\": reflect.ValueOf((*_os_FileInfo)(nil)),\n\t\t\"_Signal\":   reflect.ValueOf((*_os_Signal)(nil)),\n\t}\n}\n\n// _os_DirEntry is an interface wrapper for DirEntry type\ntype _os_DirEntry struct {\n\tIValue interface{}\n\tWInfo  func() (fs.FileInfo, error)\n\tWIsDir func() bool\n\tWName  func() string\n\tWType  func() fs.FileMode\n}\n\nfunc (W _os_DirEntry) Info() (fs.FileInfo, error) { return W.WInfo() }\nfunc (W _os_DirEntry) IsDir() bool                { return W.WIsDir() }\nfunc (W _os_DirEntry) Name() string               { return W.WName() }\nfunc (W _os_DirEntry) Type() fs.FileMode          { return W.WType() }\n\n// _os_FileInfo is an interface wrapper for FileInfo type\ntype _os_FileInfo struct {\n\tIValue   interface{}\n\tWIsDir   func() bool\n\tWModTime func() time.Time\n\tWMode    func() fs.FileMode\n\tWName    func() string\n\tWSize    func() int64\n\tWSys     func() any\n}\n\nfunc (W _os_FileInfo) IsDir() bool        { return W.WIsDir() }\nfunc (W _os_FileInfo) ModTime() time.Time { return W.WModTime() }\nfunc (W _os_FileInfo) Mode() fs.FileMode  { return W.WMode() }\nfunc (W _os_FileInfo) Name() string       { return W.WName() }\nfunc (W _os_FileInfo) Size() int64        { return W.WSize() }\nfunc (W _os_FileInfo) Sys() any           { return W.WSys() }\n\n// _os_Signal is an interface wrapper for Signal type\ntype _os_Signal struct {\n\tIValue  interface{}\n\tWSignal func()\n\tWString func() string\n}\n\nfunc (W _os_Signal) Signal() { W.WSignal() }\nfunc (W _os_Signal) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n"
  },
  {
    "path": "stdlib/go1_22_os_signal.go",
    "content": "// Code generated by 'yaegi extract os/signal'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"os/signal\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"os/signal/signal\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Ignore\":        reflect.ValueOf(signal.Ignore),\n\t\t\"Ignored\":       reflect.ValueOf(signal.Ignored),\n\t\t\"Notify\":        reflect.ValueOf(signal.Notify),\n\t\t\"NotifyContext\": reflect.ValueOf(signal.NotifyContext),\n\t\t\"Reset\":         reflect.ValueOf(signal.Reset),\n\t\t\"Stop\":          reflect.ValueOf(signal.Stop),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_os_user.go",
    "content": "// Code generated by 'yaegi extract os/user'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"os/user\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"os/user/user\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Current\":       reflect.ValueOf(user.Current),\n\t\t\"Lookup\":        reflect.ValueOf(user.Lookup),\n\t\t\"LookupGroup\":   reflect.ValueOf(user.LookupGroup),\n\t\t\"LookupGroupId\": reflect.ValueOf(user.LookupGroupId),\n\t\t\"LookupId\":      reflect.ValueOf(user.LookupId),\n\n\t\t// type definitions\n\t\t\"Group\":               reflect.ValueOf((*user.Group)(nil)),\n\t\t\"UnknownGroupError\":   reflect.ValueOf((*user.UnknownGroupError)(nil)),\n\t\t\"UnknownGroupIdError\": reflect.ValueOf((*user.UnknownGroupIdError)(nil)),\n\t\t\"UnknownUserError\":    reflect.ValueOf((*user.UnknownUserError)(nil)),\n\t\t\"UnknownUserIdError\":  reflect.ValueOf((*user.UnknownUserIdError)(nil)),\n\t\t\"User\":                reflect.ValueOf((*user.User)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_path.go",
    "content": "// Code generated by 'yaegi extract path'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"path\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"path/path\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Base\":          reflect.ValueOf(path.Base),\n\t\t\"Clean\":         reflect.ValueOf(path.Clean),\n\t\t\"Dir\":           reflect.ValueOf(path.Dir),\n\t\t\"ErrBadPattern\": reflect.ValueOf(&path.ErrBadPattern).Elem(),\n\t\t\"Ext\":           reflect.ValueOf(path.Ext),\n\t\t\"IsAbs\":         reflect.ValueOf(path.IsAbs),\n\t\t\"Join\":          reflect.ValueOf(path.Join),\n\t\t\"Match\":         reflect.ValueOf(path.Match),\n\t\t\"Split\":         reflect.ValueOf(path.Split),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_path_filepath.go",
    "content": "// Code generated by 'yaegi extract path/filepath'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"path/filepath\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"path/filepath/filepath\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Abs\":           reflect.ValueOf(filepath.Abs),\n\t\t\"Base\":          reflect.ValueOf(filepath.Base),\n\t\t\"Clean\":         reflect.ValueOf(filepath.Clean),\n\t\t\"Dir\":           reflect.ValueOf(filepath.Dir),\n\t\t\"ErrBadPattern\": reflect.ValueOf(&filepath.ErrBadPattern).Elem(),\n\t\t\"EvalSymlinks\":  reflect.ValueOf(filepath.EvalSymlinks),\n\t\t\"Ext\":           reflect.ValueOf(filepath.Ext),\n\t\t\"FromSlash\":     reflect.ValueOf(filepath.FromSlash),\n\t\t\"Glob\":          reflect.ValueOf(filepath.Glob),\n\t\t\"HasPrefix\":     reflect.ValueOf(filepath.HasPrefix),\n\t\t\"IsAbs\":         reflect.ValueOf(filepath.IsAbs),\n\t\t\"IsLocal\":       reflect.ValueOf(filepath.IsLocal),\n\t\t\"Join\":          reflect.ValueOf(filepath.Join),\n\t\t\"ListSeparator\": reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"Match\":         reflect.ValueOf(filepath.Match),\n\t\t\"Rel\":           reflect.ValueOf(filepath.Rel),\n\t\t\"Separator\":     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SkipAll\":       reflect.ValueOf(&filepath.SkipAll).Elem(),\n\t\t\"SkipDir\":       reflect.ValueOf(&filepath.SkipDir).Elem(),\n\t\t\"Split\":         reflect.ValueOf(filepath.Split),\n\t\t\"SplitList\":     reflect.ValueOf(filepath.SplitList),\n\t\t\"ToSlash\":       reflect.ValueOf(filepath.ToSlash),\n\t\t\"VolumeName\":    reflect.ValueOf(filepath.VolumeName),\n\t\t\"Walk\":          reflect.ValueOf(filepath.Walk),\n\t\t\"WalkDir\":       reflect.ValueOf(filepath.WalkDir),\n\n\t\t// type definitions\n\t\t\"WalkFunc\": reflect.ValueOf((*filepath.WalkFunc)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_reflect.go",
    "content": "// Code generated by 'yaegi extract reflect'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"reflect/reflect\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Append\":          reflect.ValueOf(reflect.Append),\n\t\t\"AppendSlice\":     reflect.ValueOf(reflect.AppendSlice),\n\t\t\"Array\":           reflect.ValueOf(reflect.Array),\n\t\t\"ArrayOf\":         reflect.ValueOf(reflect.ArrayOf),\n\t\t\"Bool\":            reflect.ValueOf(reflect.Bool),\n\t\t\"BothDir\":         reflect.ValueOf(reflect.BothDir),\n\t\t\"Chan\":            reflect.ValueOf(reflect.Chan),\n\t\t\"ChanOf\":          reflect.ValueOf(reflect.ChanOf),\n\t\t\"Complex128\":      reflect.ValueOf(reflect.Complex128),\n\t\t\"Complex64\":       reflect.ValueOf(reflect.Complex64),\n\t\t\"Copy\":            reflect.ValueOf(reflect.Copy),\n\t\t\"DeepEqual\":       reflect.ValueOf(reflect.DeepEqual),\n\t\t\"Float32\":         reflect.ValueOf(reflect.Float32),\n\t\t\"Float64\":         reflect.ValueOf(reflect.Float64),\n\t\t\"Func\":            reflect.ValueOf(reflect.Func),\n\t\t\"FuncOf\":          reflect.ValueOf(reflect.FuncOf),\n\t\t\"Indirect\":        reflect.ValueOf(reflect.Indirect),\n\t\t\"Int\":             reflect.ValueOf(reflect.Int),\n\t\t\"Int16\":           reflect.ValueOf(reflect.Int16),\n\t\t\"Int32\":           reflect.ValueOf(reflect.Int32),\n\t\t\"Int64\":           reflect.ValueOf(reflect.Int64),\n\t\t\"Int8\":            reflect.ValueOf(reflect.Int8),\n\t\t\"Interface\":       reflect.ValueOf(reflect.Interface),\n\t\t\"Invalid\":         reflect.ValueOf(reflect.Invalid),\n\t\t\"MakeChan\":        reflect.ValueOf(reflect.MakeChan),\n\t\t\"MakeFunc\":        reflect.ValueOf(reflect.MakeFunc),\n\t\t\"MakeMap\":         reflect.ValueOf(reflect.MakeMap),\n\t\t\"MakeMapWithSize\": reflect.ValueOf(reflect.MakeMapWithSize),\n\t\t\"MakeSlice\":       reflect.ValueOf(reflect.MakeSlice),\n\t\t\"Map\":             reflect.ValueOf(reflect.Map),\n\t\t\"MapOf\":           reflect.ValueOf(reflect.MapOf),\n\t\t\"New\":             reflect.ValueOf(reflect.New),\n\t\t\"NewAt\":           reflect.ValueOf(reflect.NewAt),\n\t\t\"Pointer\":         reflect.ValueOf(reflect.Pointer),\n\t\t\"PointerTo\":       reflect.ValueOf(reflect.PointerTo),\n\t\t\"Ptr\":             reflect.ValueOf(reflect.Ptr),\n\t\t\"PtrTo\":           reflect.ValueOf(reflect.PtrTo),\n\t\t\"RecvDir\":         reflect.ValueOf(reflect.RecvDir),\n\t\t\"Select\":          reflect.ValueOf(reflect.Select),\n\t\t\"SelectDefault\":   reflect.ValueOf(reflect.SelectDefault),\n\t\t\"SelectRecv\":      reflect.ValueOf(reflect.SelectRecv),\n\t\t\"SelectSend\":      reflect.ValueOf(reflect.SelectSend),\n\t\t\"SendDir\":         reflect.ValueOf(reflect.SendDir),\n\t\t\"Slice\":           reflect.ValueOf(reflect.Slice),\n\t\t\"SliceOf\":         reflect.ValueOf(reflect.SliceOf),\n\t\t\"String\":          reflect.ValueOf(reflect.String),\n\t\t\"Struct\":          reflect.ValueOf(reflect.Struct),\n\t\t\"StructOf\":        reflect.ValueOf(reflect.StructOf),\n\t\t\"Swapper\":         reflect.ValueOf(reflect.Swapper),\n\t\t\"TypeOf\":          reflect.ValueOf(reflect.TypeOf),\n\t\t\"Uint\":            reflect.ValueOf(reflect.Uint),\n\t\t\"Uint16\":          reflect.ValueOf(reflect.Uint16),\n\t\t\"Uint32\":          reflect.ValueOf(reflect.Uint32),\n\t\t\"Uint64\":          reflect.ValueOf(reflect.Uint64),\n\t\t\"Uint8\":           reflect.ValueOf(reflect.Uint8),\n\t\t\"Uintptr\":         reflect.ValueOf(reflect.Uintptr),\n\t\t\"UnsafePointer\":   reflect.ValueOf(reflect.UnsafePointer),\n\t\t\"ValueOf\":         reflect.ValueOf(reflect.ValueOf),\n\t\t\"VisibleFields\":   reflect.ValueOf(reflect.VisibleFields),\n\t\t\"Zero\":            reflect.ValueOf(reflect.Zero),\n\n\t\t// type definitions\n\t\t\"ChanDir\":      reflect.ValueOf((*reflect.ChanDir)(nil)),\n\t\t\"Kind\":         reflect.ValueOf((*reflect.Kind)(nil)),\n\t\t\"MapIter\":      reflect.ValueOf((*reflect.MapIter)(nil)),\n\t\t\"Method\":       reflect.ValueOf((*reflect.Method)(nil)),\n\t\t\"SelectCase\":   reflect.ValueOf((*reflect.SelectCase)(nil)),\n\t\t\"SelectDir\":    reflect.ValueOf((*reflect.SelectDir)(nil)),\n\t\t\"SliceHeader\":  reflect.ValueOf((*reflect.SliceHeader)(nil)),\n\t\t\"StringHeader\": reflect.ValueOf((*reflect.StringHeader)(nil)),\n\t\t\"StructField\":  reflect.ValueOf((*reflect.StructField)(nil)),\n\t\t\"StructTag\":    reflect.ValueOf((*reflect.StructTag)(nil)),\n\t\t\"Type\":         reflect.ValueOf((*reflect.Type)(nil)),\n\t\t\"Value\":        reflect.ValueOf((*reflect.Value)(nil)),\n\t\t\"ValueError\":   reflect.ValueOf((*reflect.ValueError)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Type\": reflect.ValueOf((*_reflect_Type)(nil)),\n\t}\n}\n\n// _reflect_Type is an interface wrapper for Type type\ntype _reflect_Type struct {\n\tIValue           interface{}\n\tWAlign           func() int\n\tWAssignableTo    func(u reflect.Type) bool\n\tWBits            func() int\n\tWChanDir         func() reflect.ChanDir\n\tWComparable      func() bool\n\tWConvertibleTo   func(u reflect.Type) bool\n\tWElem            func() reflect.Type\n\tWField           func(i int) reflect.StructField\n\tWFieldAlign      func() int\n\tWFieldByIndex    func(index []int) reflect.StructField\n\tWFieldByName     func(name string) (reflect.StructField, bool)\n\tWFieldByNameFunc func(match func(string) bool) (reflect.StructField, bool)\n\tWImplements      func(u reflect.Type) bool\n\tWIn              func(i int) reflect.Type\n\tWIsVariadic      func() bool\n\tWKey             func() reflect.Type\n\tWKind            func() reflect.Kind\n\tWLen             func() int\n\tWMethod          func(a0 int) reflect.Method\n\tWMethodByName    func(a0 string) (reflect.Method, bool)\n\tWName            func() string\n\tWNumField        func() int\n\tWNumIn           func() int\n\tWNumMethod       func() int\n\tWNumOut          func() int\n\tWOut             func(i int) reflect.Type\n\tWPkgPath         func() string\n\tWSize            func() uintptr\n\tWString          func() string\n}\n\nfunc (W _reflect_Type) Align() int                                   { return W.WAlign() }\nfunc (W _reflect_Type) AssignableTo(u reflect.Type) bool             { return W.WAssignableTo(u) }\nfunc (W _reflect_Type) Bits() int                                    { return W.WBits() }\nfunc (W _reflect_Type) ChanDir() reflect.ChanDir                     { return W.WChanDir() }\nfunc (W _reflect_Type) Comparable() bool                             { return W.WComparable() }\nfunc (W _reflect_Type) ConvertibleTo(u reflect.Type) bool            { return W.WConvertibleTo(u) }\nfunc (W _reflect_Type) Elem() reflect.Type                           { return W.WElem() }\nfunc (W _reflect_Type) Field(i int) reflect.StructField              { return W.WField(i) }\nfunc (W _reflect_Type) FieldAlign() int                              { return W.WFieldAlign() }\nfunc (W _reflect_Type) FieldByIndex(index []int) reflect.StructField { return W.WFieldByIndex(index) }\nfunc (W _reflect_Type) FieldByName(name string) (reflect.StructField, bool) {\n\treturn W.WFieldByName(name)\n}\nfunc (W _reflect_Type) FieldByNameFunc(match func(string) bool) (reflect.StructField, bool) {\n\treturn W.WFieldByNameFunc(match)\n}\nfunc (W _reflect_Type) Implements(u reflect.Type) bool                { return W.WImplements(u) }\nfunc (W _reflect_Type) In(i int) reflect.Type                         { return W.WIn(i) }\nfunc (W _reflect_Type) IsVariadic() bool                              { return W.WIsVariadic() }\nfunc (W _reflect_Type) Key() reflect.Type                             { return W.WKey() }\nfunc (W _reflect_Type) Kind() reflect.Kind                            { return W.WKind() }\nfunc (W _reflect_Type) Len() int                                      { return W.WLen() }\nfunc (W _reflect_Type) Method(a0 int) reflect.Method                  { return W.WMethod(a0) }\nfunc (W _reflect_Type) MethodByName(a0 string) (reflect.Method, bool) { return W.WMethodByName(a0) }\nfunc (W _reflect_Type) Name() string                                  { return W.WName() }\nfunc (W _reflect_Type) NumField() int                                 { return W.WNumField() }\nfunc (W _reflect_Type) NumIn() int                                    { return W.WNumIn() }\nfunc (W _reflect_Type) NumMethod() int                                { return W.WNumMethod() }\nfunc (W _reflect_Type) NumOut() int                                   { return W.WNumOut() }\nfunc (W _reflect_Type) Out(i int) reflect.Type                        { return W.WOut(i) }\nfunc (W _reflect_Type) PkgPath() string                               { return W.WPkgPath() }\nfunc (W _reflect_Type) Size() uintptr                                 { return W.WSize() }\nfunc (W _reflect_Type) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\n"
  },
  {
    "path": "stdlib/go1_22_regexp.go",
    "content": "// Code generated by 'yaegi extract regexp'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"regexp\"\n)\n\nfunc init() {\n\tSymbols[\"regexp/regexp\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Compile\":          reflect.ValueOf(regexp.Compile),\n\t\t\"CompilePOSIX\":     reflect.ValueOf(regexp.CompilePOSIX),\n\t\t\"Match\":            reflect.ValueOf(regexp.Match),\n\t\t\"MatchReader\":      reflect.ValueOf(regexp.MatchReader),\n\t\t\"MatchString\":      reflect.ValueOf(regexp.MatchString),\n\t\t\"MustCompile\":      reflect.ValueOf(regexp.MustCompile),\n\t\t\"MustCompilePOSIX\": reflect.ValueOf(regexp.MustCompilePOSIX),\n\t\t\"QuoteMeta\":        reflect.ValueOf(regexp.QuoteMeta),\n\n\t\t// type definitions\n\t\t\"Regexp\": reflect.ValueOf((*regexp.Regexp)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_regexp_syntax.go",
    "content": "// Code generated by 'yaegi extract regexp/syntax'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"regexp/syntax\"\n)\n\nfunc init() {\n\tSymbols[\"regexp/syntax/syntax\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ClassNL\":                  reflect.ValueOf(syntax.ClassNL),\n\t\t\"Compile\":                  reflect.ValueOf(syntax.Compile),\n\t\t\"DotNL\":                    reflect.ValueOf(syntax.DotNL),\n\t\t\"EmptyBeginLine\":           reflect.ValueOf(syntax.EmptyBeginLine),\n\t\t\"EmptyBeginText\":           reflect.ValueOf(syntax.EmptyBeginText),\n\t\t\"EmptyEndLine\":             reflect.ValueOf(syntax.EmptyEndLine),\n\t\t\"EmptyEndText\":             reflect.ValueOf(syntax.EmptyEndText),\n\t\t\"EmptyNoWordBoundary\":      reflect.ValueOf(syntax.EmptyNoWordBoundary),\n\t\t\"EmptyOpContext\":           reflect.ValueOf(syntax.EmptyOpContext),\n\t\t\"EmptyWordBoundary\":        reflect.ValueOf(syntax.EmptyWordBoundary),\n\t\t\"ErrInternalError\":         reflect.ValueOf(syntax.ErrInternalError),\n\t\t\"ErrInvalidCharClass\":      reflect.ValueOf(syntax.ErrInvalidCharClass),\n\t\t\"ErrInvalidCharRange\":      reflect.ValueOf(syntax.ErrInvalidCharRange),\n\t\t\"ErrInvalidEscape\":         reflect.ValueOf(syntax.ErrInvalidEscape),\n\t\t\"ErrInvalidNamedCapture\":   reflect.ValueOf(syntax.ErrInvalidNamedCapture),\n\t\t\"ErrInvalidPerlOp\":         reflect.ValueOf(syntax.ErrInvalidPerlOp),\n\t\t\"ErrInvalidRepeatOp\":       reflect.ValueOf(syntax.ErrInvalidRepeatOp),\n\t\t\"ErrInvalidRepeatSize\":     reflect.ValueOf(syntax.ErrInvalidRepeatSize),\n\t\t\"ErrInvalidUTF8\":           reflect.ValueOf(syntax.ErrInvalidUTF8),\n\t\t\"ErrLarge\":                 reflect.ValueOf(syntax.ErrLarge),\n\t\t\"ErrMissingBracket\":        reflect.ValueOf(syntax.ErrMissingBracket),\n\t\t\"ErrMissingParen\":          reflect.ValueOf(syntax.ErrMissingParen),\n\t\t\"ErrMissingRepeatArgument\": reflect.ValueOf(syntax.ErrMissingRepeatArgument),\n\t\t\"ErrNestingDepth\":          reflect.ValueOf(syntax.ErrNestingDepth),\n\t\t\"ErrTrailingBackslash\":     reflect.ValueOf(syntax.ErrTrailingBackslash),\n\t\t\"ErrUnexpectedParen\":       reflect.ValueOf(syntax.ErrUnexpectedParen),\n\t\t\"FoldCase\":                 reflect.ValueOf(syntax.FoldCase),\n\t\t\"InstAlt\":                  reflect.ValueOf(syntax.InstAlt),\n\t\t\"InstAltMatch\":             reflect.ValueOf(syntax.InstAltMatch),\n\t\t\"InstCapture\":              reflect.ValueOf(syntax.InstCapture),\n\t\t\"InstEmptyWidth\":           reflect.ValueOf(syntax.InstEmptyWidth),\n\t\t\"InstFail\":                 reflect.ValueOf(syntax.InstFail),\n\t\t\"InstMatch\":                reflect.ValueOf(syntax.InstMatch),\n\t\t\"InstNop\":                  reflect.ValueOf(syntax.InstNop),\n\t\t\"InstRune\":                 reflect.ValueOf(syntax.InstRune),\n\t\t\"InstRune1\":                reflect.ValueOf(syntax.InstRune1),\n\t\t\"InstRuneAny\":              reflect.ValueOf(syntax.InstRuneAny),\n\t\t\"InstRuneAnyNotNL\":         reflect.ValueOf(syntax.InstRuneAnyNotNL),\n\t\t\"IsWordChar\":               reflect.ValueOf(syntax.IsWordChar),\n\t\t\"Literal\":                  reflect.ValueOf(syntax.Literal),\n\t\t\"MatchNL\":                  reflect.ValueOf(syntax.MatchNL),\n\t\t\"NonGreedy\":                reflect.ValueOf(syntax.NonGreedy),\n\t\t\"OneLine\":                  reflect.ValueOf(syntax.OneLine),\n\t\t\"OpAlternate\":              reflect.ValueOf(syntax.OpAlternate),\n\t\t\"OpAnyChar\":                reflect.ValueOf(syntax.OpAnyChar),\n\t\t\"OpAnyCharNotNL\":           reflect.ValueOf(syntax.OpAnyCharNotNL),\n\t\t\"OpBeginLine\":              reflect.ValueOf(syntax.OpBeginLine),\n\t\t\"OpBeginText\":              reflect.ValueOf(syntax.OpBeginText),\n\t\t\"OpCapture\":                reflect.ValueOf(syntax.OpCapture),\n\t\t\"OpCharClass\":              reflect.ValueOf(syntax.OpCharClass),\n\t\t\"OpConcat\":                 reflect.ValueOf(syntax.OpConcat),\n\t\t\"OpEmptyMatch\":             reflect.ValueOf(syntax.OpEmptyMatch),\n\t\t\"OpEndLine\":                reflect.ValueOf(syntax.OpEndLine),\n\t\t\"OpEndText\":                reflect.ValueOf(syntax.OpEndText),\n\t\t\"OpLiteral\":                reflect.ValueOf(syntax.OpLiteral),\n\t\t\"OpNoMatch\":                reflect.ValueOf(syntax.OpNoMatch),\n\t\t\"OpNoWordBoundary\":         reflect.ValueOf(syntax.OpNoWordBoundary),\n\t\t\"OpPlus\":                   reflect.ValueOf(syntax.OpPlus),\n\t\t\"OpQuest\":                  reflect.ValueOf(syntax.OpQuest),\n\t\t\"OpRepeat\":                 reflect.ValueOf(syntax.OpRepeat),\n\t\t\"OpStar\":                   reflect.ValueOf(syntax.OpStar),\n\t\t\"OpWordBoundary\":           reflect.ValueOf(syntax.OpWordBoundary),\n\t\t\"POSIX\":                    reflect.ValueOf(syntax.POSIX),\n\t\t\"Parse\":                    reflect.ValueOf(syntax.Parse),\n\t\t\"Perl\":                     reflect.ValueOf(syntax.Perl),\n\t\t\"PerlX\":                    reflect.ValueOf(syntax.PerlX),\n\t\t\"Simple\":                   reflect.ValueOf(syntax.Simple),\n\t\t\"UnicodeGroups\":            reflect.ValueOf(syntax.UnicodeGroups),\n\t\t\"WasDollar\":                reflect.ValueOf(syntax.WasDollar),\n\n\t\t// type definitions\n\t\t\"EmptyOp\":   reflect.ValueOf((*syntax.EmptyOp)(nil)),\n\t\t\"Error\":     reflect.ValueOf((*syntax.Error)(nil)),\n\t\t\"ErrorCode\": reflect.ValueOf((*syntax.ErrorCode)(nil)),\n\t\t\"Flags\":     reflect.ValueOf((*syntax.Flags)(nil)),\n\t\t\"Inst\":      reflect.ValueOf((*syntax.Inst)(nil)),\n\t\t\"InstOp\":    reflect.ValueOf((*syntax.InstOp)(nil)),\n\t\t\"Op\":        reflect.ValueOf((*syntax.Op)(nil)),\n\t\t\"Prog\":      reflect.ValueOf((*syntax.Prog)(nil)),\n\t\t\"Regexp\":    reflect.ValueOf((*syntax.Regexp)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_runtime.go",
    "content": "// Code generated by 'yaegi extract runtime'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"runtime\"\n)\n\nfunc init() {\n\tSymbols[\"runtime/runtime\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"BlockProfile\":            reflect.ValueOf(runtime.BlockProfile),\n\t\t\"Breakpoint\":              reflect.ValueOf(runtime.Breakpoint),\n\t\t\"CPUProfile\":              reflect.ValueOf(runtime.CPUProfile),\n\t\t\"Caller\":                  reflect.ValueOf(runtime.Caller),\n\t\t\"Callers\":                 reflect.ValueOf(runtime.Callers),\n\t\t\"CallersFrames\":           reflect.ValueOf(runtime.CallersFrames),\n\t\t\"Compiler\":                reflect.ValueOf(constant.MakeFromLiteral(\"\\\"gc\\\"\", token.STRING, 0)),\n\t\t\"FuncForPC\":               reflect.ValueOf(runtime.FuncForPC),\n\t\t\"GC\":                      reflect.ValueOf(runtime.GC),\n\t\t\"GOARCH\":                  reflect.ValueOf(runtime.GOARCH),\n\t\t\"GOMAXPROCS\":              reflect.ValueOf(runtime.GOMAXPROCS),\n\t\t\"GOOS\":                    reflect.ValueOf(runtime.GOOS),\n\t\t\"GOROOT\":                  reflect.ValueOf(runtime.GOROOT),\n\t\t\"Goexit\":                  reflect.ValueOf(runtime.Goexit),\n\t\t\"GoroutineProfile\":        reflect.ValueOf(runtime.GoroutineProfile),\n\t\t\"Gosched\":                 reflect.ValueOf(runtime.Gosched),\n\t\t\"KeepAlive\":               reflect.ValueOf(runtime.KeepAlive),\n\t\t\"LockOSThread\":            reflect.ValueOf(runtime.LockOSThread),\n\t\t\"MemProfile\":              reflect.ValueOf(runtime.MemProfile),\n\t\t\"MemProfileRate\":          reflect.ValueOf(&runtime.MemProfileRate).Elem(),\n\t\t\"MutexProfile\":            reflect.ValueOf(runtime.MutexProfile),\n\t\t\"NumCPU\":                  reflect.ValueOf(runtime.NumCPU),\n\t\t\"NumCgoCall\":              reflect.ValueOf(runtime.NumCgoCall),\n\t\t\"NumGoroutine\":            reflect.ValueOf(runtime.NumGoroutine),\n\t\t\"ReadMemStats\":            reflect.ValueOf(runtime.ReadMemStats),\n\t\t\"ReadTrace\":               reflect.ValueOf(runtime.ReadTrace),\n\t\t\"SetBlockProfileRate\":     reflect.ValueOf(runtime.SetBlockProfileRate),\n\t\t\"SetCPUProfileRate\":       reflect.ValueOf(runtime.SetCPUProfileRate),\n\t\t\"SetCgoTraceback\":         reflect.ValueOf(runtime.SetCgoTraceback),\n\t\t\"SetFinalizer\":            reflect.ValueOf(runtime.SetFinalizer),\n\t\t\"SetMutexProfileFraction\": reflect.ValueOf(runtime.SetMutexProfileFraction),\n\t\t\"Stack\":                   reflect.ValueOf(runtime.Stack),\n\t\t\"StartTrace\":              reflect.ValueOf(runtime.StartTrace),\n\t\t\"StopTrace\":               reflect.ValueOf(runtime.StopTrace),\n\t\t\"ThreadCreateProfile\":     reflect.ValueOf(runtime.ThreadCreateProfile),\n\t\t\"UnlockOSThread\":          reflect.ValueOf(runtime.UnlockOSThread),\n\t\t\"Version\":                 reflect.ValueOf(runtime.Version),\n\n\t\t// type definitions\n\t\t\"BlockProfileRecord\": reflect.ValueOf((*runtime.BlockProfileRecord)(nil)),\n\t\t\"Error\":              reflect.ValueOf((*runtime.Error)(nil)),\n\t\t\"Frame\":              reflect.ValueOf((*runtime.Frame)(nil)),\n\t\t\"Frames\":             reflect.ValueOf((*runtime.Frames)(nil)),\n\t\t\"Func\":               reflect.ValueOf((*runtime.Func)(nil)),\n\t\t\"MemProfileRecord\":   reflect.ValueOf((*runtime.MemProfileRecord)(nil)),\n\t\t\"MemStats\":           reflect.ValueOf((*runtime.MemStats)(nil)),\n\t\t\"PanicNilError\":      reflect.ValueOf((*runtime.PanicNilError)(nil)),\n\t\t\"Pinner\":             reflect.ValueOf((*runtime.Pinner)(nil)),\n\t\t\"StackRecord\":        reflect.ValueOf((*runtime.StackRecord)(nil)),\n\t\t\"TypeAssertionError\": reflect.ValueOf((*runtime.TypeAssertionError)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Error\": reflect.ValueOf((*_runtime_Error)(nil)),\n\t}\n}\n\n// _runtime_Error is an interface wrapper for Error type\ntype _runtime_Error struct {\n\tIValue        interface{}\n\tWError        func() string\n\tWRuntimeError func()\n}\n\nfunc (W _runtime_Error) Error() string { return W.WError() }\nfunc (W _runtime_Error) RuntimeError() { W.WRuntimeError() }\n"
  },
  {
    "path": "stdlib/go1_22_runtime_debug.go",
    "content": "// Code generated by 'yaegi extract runtime/debug'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"runtime/debug\"\n)\n\nfunc init() {\n\tSymbols[\"runtime/debug/debug\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"FreeOSMemory\":    reflect.ValueOf(debug.FreeOSMemory),\n\t\t\"ParseBuildInfo\":  reflect.ValueOf(debug.ParseBuildInfo),\n\t\t\"PrintStack\":      reflect.ValueOf(debug.PrintStack),\n\t\t\"ReadBuildInfo\":   reflect.ValueOf(debug.ReadBuildInfo),\n\t\t\"ReadGCStats\":     reflect.ValueOf(debug.ReadGCStats),\n\t\t\"SetGCPercent\":    reflect.ValueOf(debug.SetGCPercent),\n\t\t\"SetMaxStack\":     reflect.ValueOf(debug.SetMaxStack),\n\t\t\"SetMaxThreads\":   reflect.ValueOf(debug.SetMaxThreads),\n\t\t\"SetMemoryLimit\":  reflect.ValueOf(debug.SetMemoryLimit),\n\t\t\"SetPanicOnFault\": reflect.ValueOf(debug.SetPanicOnFault),\n\t\t\"SetTraceback\":    reflect.ValueOf(debug.SetTraceback),\n\t\t\"Stack\":           reflect.ValueOf(debug.Stack),\n\t\t\"WriteHeapDump\":   reflect.ValueOf(debug.WriteHeapDump),\n\n\t\t// type definitions\n\t\t\"BuildInfo\":    reflect.ValueOf((*debug.BuildInfo)(nil)),\n\t\t\"BuildSetting\": reflect.ValueOf((*debug.BuildSetting)(nil)),\n\t\t\"GCStats\":      reflect.ValueOf((*debug.GCStats)(nil)),\n\t\t\"Module\":       reflect.ValueOf((*debug.Module)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_runtime_metrics.go",
    "content": "// Code generated by 'yaegi extract runtime/metrics'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"runtime/metrics\"\n)\n\nfunc init() {\n\tSymbols[\"runtime/metrics/metrics\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"All\":                  reflect.ValueOf(metrics.All),\n\t\t\"KindBad\":              reflect.ValueOf(metrics.KindBad),\n\t\t\"KindFloat64\":          reflect.ValueOf(metrics.KindFloat64),\n\t\t\"KindFloat64Histogram\": reflect.ValueOf(metrics.KindFloat64Histogram),\n\t\t\"KindUint64\":           reflect.ValueOf(metrics.KindUint64),\n\t\t\"Read\":                 reflect.ValueOf(metrics.Read),\n\n\t\t// type definitions\n\t\t\"Description\":      reflect.ValueOf((*metrics.Description)(nil)),\n\t\t\"Float64Histogram\": reflect.ValueOf((*metrics.Float64Histogram)(nil)),\n\t\t\"Sample\":           reflect.ValueOf((*metrics.Sample)(nil)),\n\t\t\"Value\":            reflect.ValueOf((*metrics.Value)(nil)),\n\t\t\"ValueKind\":        reflect.ValueOf((*metrics.ValueKind)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_runtime_pprof.go",
    "content": "// Code generated by 'yaegi extract runtime/pprof'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"runtime/pprof\"\n)\n\nfunc init() {\n\tSymbols[\"runtime/pprof/pprof\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Do\":                 reflect.ValueOf(pprof.Do),\n\t\t\"ForLabels\":          reflect.ValueOf(pprof.ForLabels),\n\t\t\"Label\":              reflect.ValueOf(pprof.Label),\n\t\t\"Labels\":             reflect.ValueOf(pprof.Labels),\n\t\t\"Lookup\":             reflect.ValueOf(pprof.Lookup),\n\t\t\"NewProfile\":         reflect.ValueOf(pprof.NewProfile),\n\t\t\"Profiles\":           reflect.ValueOf(pprof.Profiles),\n\t\t\"SetGoroutineLabels\": reflect.ValueOf(pprof.SetGoroutineLabels),\n\t\t\"StartCPUProfile\":    reflect.ValueOf(pprof.StartCPUProfile),\n\t\t\"StopCPUProfile\":     reflect.ValueOf(pprof.StopCPUProfile),\n\t\t\"WithLabels\":         reflect.ValueOf(pprof.WithLabels),\n\t\t\"WriteHeapProfile\":   reflect.ValueOf(pprof.WriteHeapProfile),\n\n\t\t// type definitions\n\t\t\"LabelSet\": reflect.ValueOf((*pprof.LabelSet)(nil)),\n\t\t\"Profile\":  reflect.ValueOf((*pprof.Profile)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_runtime_trace.go",
    "content": "// Code generated by 'yaegi extract runtime/trace'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"runtime/trace\"\n)\n\nfunc init() {\n\tSymbols[\"runtime/trace/trace\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"IsEnabled\":   reflect.ValueOf(trace.IsEnabled),\n\t\t\"Log\":         reflect.ValueOf(trace.Log),\n\t\t\"Logf\":        reflect.ValueOf(trace.Logf),\n\t\t\"NewTask\":     reflect.ValueOf(trace.NewTask),\n\t\t\"Start\":       reflect.ValueOf(trace.Start),\n\t\t\"StartRegion\": reflect.ValueOf(trace.StartRegion),\n\t\t\"Stop\":        reflect.ValueOf(trace.Stop),\n\t\t\"WithRegion\":  reflect.ValueOf(trace.WithRegion),\n\n\t\t// type definitions\n\t\t\"Region\": reflect.ValueOf((*trace.Region)(nil)),\n\t\t\"Task\":   reflect.ValueOf((*trace.Task)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_slices.go",
    "content": "// Code generated by 'yaegi extract slices'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n)\n\nfunc init() {\n\tSymbols[\"slices/slices\"] = map[string]reflect.Value{}\n}\n"
  },
  {
    "path": "stdlib/go1_22_sort.go",
    "content": "// Code generated by 'yaegi extract sort'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"sort\"\n)\n\nfunc init() {\n\tSymbols[\"sort/sort\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Find\":              reflect.ValueOf(sort.Find),\n\t\t\"Float64s\":          reflect.ValueOf(sort.Float64s),\n\t\t\"Float64sAreSorted\": reflect.ValueOf(sort.Float64sAreSorted),\n\t\t\"Ints\":              reflect.ValueOf(sort.Ints),\n\t\t\"IntsAreSorted\":     reflect.ValueOf(sort.IntsAreSorted),\n\t\t\"IsSorted\":          reflect.ValueOf(sort.IsSorted),\n\t\t\"Reverse\":           reflect.ValueOf(sort.Reverse),\n\t\t\"Search\":            reflect.ValueOf(sort.Search),\n\t\t\"SearchFloat64s\":    reflect.ValueOf(sort.SearchFloat64s),\n\t\t\"SearchInts\":        reflect.ValueOf(sort.SearchInts),\n\t\t\"SearchStrings\":     reflect.ValueOf(sort.SearchStrings),\n\t\t\"Slice\":             reflect.ValueOf(sort.Slice),\n\t\t\"SliceIsSorted\":     reflect.ValueOf(sort.SliceIsSorted),\n\t\t\"SliceStable\":       reflect.ValueOf(sort.SliceStable),\n\t\t\"Sort\":              reflect.ValueOf(sort.Sort),\n\t\t\"Stable\":            reflect.ValueOf(sort.Stable),\n\t\t\"Strings\":           reflect.ValueOf(sort.Strings),\n\t\t\"StringsAreSorted\":  reflect.ValueOf(sort.StringsAreSorted),\n\n\t\t// type definitions\n\t\t\"Float64Slice\": reflect.ValueOf((*sort.Float64Slice)(nil)),\n\t\t\"IntSlice\":     reflect.ValueOf((*sort.IntSlice)(nil)),\n\t\t\"Interface\":    reflect.ValueOf((*sort.Interface)(nil)),\n\t\t\"StringSlice\":  reflect.ValueOf((*sort.StringSlice)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Interface\": reflect.ValueOf((*_sort_Interface)(nil)),\n\t}\n}\n\n// _sort_Interface is an interface wrapper for Interface type\ntype _sort_Interface struct {\n\tIValue interface{}\n\tWLen   func() int\n\tWLess  func(i int, j int) bool\n\tWSwap  func(i int, j int)\n}\n\nfunc (W _sort_Interface) Len() int               { return W.WLen() }\nfunc (W _sort_Interface) Less(i int, j int) bool { return W.WLess(i, j) }\nfunc (W _sort_Interface) Swap(i int, j int)      { W.WSwap(i, j) }\n"
  },
  {
    "path": "stdlib/go1_22_strconv.go",
    "content": "// Code generated by 'yaegi extract strconv'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"strconv\"\n)\n\nfunc init() {\n\tSymbols[\"strconv/strconv\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AppendBool\":               reflect.ValueOf(strconv.AppendBool),\n\t\t\"AppendFloat\":              reflect.ValueOf(strconv.AppendFloat),\n\t\t\"AppendInt\":                reflect.ValueOf(strconv.AppendInt),\n\t\t\"AppendQuote\":              reflect.ValueOf(strconv.AppendQuote),\n\t\t\"AppendQuoteRune\":          reflect.ValueOf(strconv.AppendQuoteRune),\n\t\t\"AppendQuoteRuneToASCII\":   reflect.ValueOf(strconv.AppendQuoteRuneToASCII),\n\t\t\"AppendQuoteRuneToGraphic\": reflect.ValueOf(strconv.AppendQuoteRuneToGraphic),\n\t\t\"AppendQuoteToASCII\":       reflect.ValueOf(strconv.AppendQuoteToASCII),\n\t\t\"AppendQuoteToGraphic\":     reflect.ValueOf(strconv.AppendQuoteToGraphic),\n\t\t\"AppendUint\":               reflect.ValueOf(strconv.AppendUint),\n\t\t\"Atoi\":                     reflect.ValueOf(strconv.Atoi),\n\t\t\"CanBackquote\":             reflect.ValueOf(strconv.CanBackquote),\n\t\t\"ErrRange\":                 reflect.ValueOf(&strconv.ErrRange).Elem(),\n\t\t\"ErrSyntax\":                reflect.ValueOf(&strconv.ErrSyntax).Elem(),\n\t\t\"FormatBool\":               reflect.ValueOf(strconv.FormatBool),\n\t\t\"FormatComplex\":            reflect.ValueOf(strconv.FormatComplex),\n\t\t\"FormatFloat\":              reflect.ValueOf(strconv.FormatFloat),\n\t\t\"FormatInt\":                reflect.ValueOf(strconv.FormatInt),\n\t\t\"FormatUint\":               reflect.ValueOf(strconv.FormatUint),\n\t\t\"IntSize\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IsGraphic\":                reflect.ValueOf(strconv.IsGraphic),\n\t\t\"IsPrint\":                  reflect.ValueOf(strconv.IsPrint),\n\t\t\"Itoa\":                     reflect.ValueOf(strconv.Itoa),\n\t\t\"ParseBool\":                reflect.ValueOf(strconv.ParseBool),\n\t\t\"ParseComplex\":             reflect.ValueOf(strconv.ParseComplex),\n\t\t\"ParseFloat\":               reflect.ValueOf(strconv.ParseFloat),\n\t\t\"ParseInt\":                 reflect.ValueOf(strconv.ParseInt),\n\t\t\"ParseUint\":                reflect.ValueOf(strconv.ParseUint),\n\t\t\"Quote\":                    reflect.ValueOf(strconv.Quote),\n\t\t\"QuoteRune\":                reflect.ValueOf(strconv.QuoteRune),\n\t\t\"QuoteRuneToASCII\":         reflect.ValueOf(strconv.QuoteRuneToASCII),\n\t\t\"QuoteRuneToGraphic\":       reflect.ValueOf(strconv.QuoteRuneToGraphic),\n\t\t\"QuoteToASCII\":             reflect.ValueOf(strconv.QuoteToASCII),\n\t\t\"QuoteToGraphic\":           reflect.ValueOf(strconv.QuoteToGraphic),\n\t\t\"QuotedPrefix\":             reflect.ValueOf(strconv.QuotedPrefix),\n\t\t\"Unquote\":                  reflect.ValueOf(strconv.Unquote),\n\t\t\"UnquoteChar\":              reflect.ValueOf(strconv.UnquoteChar),\n\n\t\t// type definitions\n\t\t\"NumError\": reflect.ValueOf((*strconv.NumError)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_strings.go",
    "content": "// Code generated by 'yaegi extract strings'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"strings\"\n)\n\nfunc init() {\n\tSymbols[\"strings/strings\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Clone\":          reflect.ValueOf(strings.Clone),\n\t\t\"Compare\":        reflect.ValueOf(strings.Compare),\n\t\t\"Contains\":       reflect.ValueOf(strings.Contains),\n\t\t\"ContainsAny\":    reflect.ValueOf(strings.ContainsAny),\n\t\t\"ContainsFunc\":   reflect.ValueOf(strings.ContainsFunc),\n\t\t\"ContainsRune\":   reflect.ValueOf(strings.ContainsRune),\n\t\t\"Count\":          reflect.ValueOf(strings.Count),\n\t\t\"Cut\":            reflect.ValueOf(strings.Cut),\n\t\t\"CutPrefix\":      reflect.ValueOf(strings.CutPrefix),\n\t\t\"CutSuffix\":      reflect.ValueOf(strings.CutSuffix),\n\t\t\"EqualFold\":      reflect.ValueOf(strings.EqualFold),\n\t\t\"Fields\":         reflect.ValueOf(strings.Fields),\n\t\t\"FieldsFunc\":     reflect.ValueOf(strings.FieldsFunc),\n\t\t\"HasPrefix\":      reflect.ValueOf(strings.HasPrefix),\n\t\t\"HasSuffix\":      reflect.ValueOf(strings.HasSuffix),\n\t\t\"Index\":          reflect.ValueOf(strings.Index),\n\t\t\"IndexAny\":       reflect.ValueOf(strings.IndexAny),\n\t\t\"IndexByte\":      reflect.ValueOf(strings.IndexByte),\n\t\t\"IndexFunc\":      reflect.ValueOf(strings.IndexFunc),\n\t\t\"IndexRune\":      reflect.ValueOf(strings.IndexRune),\n\t\t\"Join\":           reflect.ValueOf(strings.Join),\n\t\t\"LastIndex\":      reflect.ValueOf(strings.LastIndex),\n\t\t\"LastIndexAny\":   reflect.ValueOf(strings.LastIndexAny),\n\t\t\"LastIndexByte\":  reflect.ValueOf(strings.LastIndexByte),\n\t\t\"LastIndexFunc\":  reflect.ValueOf(strings.LastIndexFunc),\n\t\t\"Map\":            reflect.ValueOf(strings.Map),\n\t\t\"NewReader\":      reflect.ValueOf(strings.NewReader),\n\t\t\"NewReplacer\":    reflect.ValueOf(strings.NewReplacer),\n\t\t\"Repeat\":         reflect.ValueOf(strings.Repeat),\n\t\t\"Replace\":        reflect.ValueOf(strings.Replace),\n\t\t\"ReplaceAll\":     reflect.ValueOf(strings.ReplaceAll),\n\t\t\"Split\":          reflect.ValueOf(strings.Split),\n\t\t\"SplitAfter\":     reflect.ValueOf(strings.SplitAfter),\n\t\t\"SplitAfterN\":    reflect.ValueOf(strings.SplitAfterN),\n\t\t\"SplitN\":         reflect.ValueOf(strings.SplitN),\n\t\t\"Title\":          reflect.ValueOf(strings.Title),\n\t\t\"ToLower\":        reflect.ValueOf(strings.ToLower),\n\t\t\"ToLowerSpecial\": reflect.ValueOf(strings.ToLowerSpecial),\n\t\t\"ToTitle\":        reflect.ValueOf(strings.ToTitle),\n\t\t\"ToTitleSpecial\": reflect.ValueOf(strings.ToTitleSpecial),\n\t\t\"ToUpper\":        reflect.ValueOf(strings.ToUpper),\n\t\t\"ToUpperSpecial\": reflect.ValueOf(strings.ToUpperSpecial),\n\t\t\"ToValidUTF8\":    reflect.ValueOf(strings.ToValidUTF8),\n\t\t\"Trim\":           reflect.ValueOf(strings.Trim),\n\t\t\"TrimFunc\":       reflect.ValueOf(strings.TrimFunc),\n\t\t\"TrimLeft\":       reflect.ValueOf(strings.TrimLeft),\n\t\t\"TrimLeftFunc\":   reflect.ValueOf(strings.TrimLeftFunc),\n\t\t\"TrimPrefix\":     reflect.ValueOf(strings.TrimPrefix),\n\t\t\"TrimRight\":      reflect.ValueOf(strings.TrimRight),\n\t\t\"TrimRightFunc\":  reflect.ValueOf(strings.TrimRightFunc),\n\t\t\"TrimSpace\":      reflect.ValueOf(strings.TrimSpace),\n\t\t\"TrimSuffix\":     reflect.ValueOf(strings.TrimSuffix),\n\n\t\t// type definitions\n\t\t\"Builder\":  reflect.ValueOf((*strings.Builder)(nil)),\n\t\t\"Reader\":   reflect.ValueOf((*strings.Reader)(nil)),\n\t\t\"Replacer\": reflect.ValueOf((*strings.Replacer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_sync.go",
    "content": "// Code generated by 'yaegi extract sync'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"sync\"\n)\n\nfunc init() {\n\tSymbols[\"sync/sync\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"NewCond\":  reflect.ValueOf(sync.NewCond),\n\t\t\"OnceFunc\": reflect.ValueOf(sync.OnceFunc),\n\n\t\t// type definitions\n\t\t\"Cond\":      reflect.ValueOf((*sync.Cond)(nil)),\n\t\t\"Locker\":    reflect.ValueOf((*sync.Locker)(nil)),\n\t\t\"Map\":       reflect.ValueOf((*sync.Map)(nil)),\n\t\t\"Mutex\":     reflect.ValueOf((*sync.Mutex)(nil)),\n\t\t\"Once\":      reflect.ValueOf((*sync.Once)(nil)),\n\t\t\"Pool\":      reflect.ValueOf((*sync.Pool)(nil)),\n\t\t\"RWMutex\":   reflect.ValueOf((*sync.RWMutex)(nil)),\n\t\t\"WaitGroup\": reflect.ValueOf((*sync.WaitGroup)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Locker\": reflect.ValueOf((*_sync_Locker)(nil)),\n\t}\n}\n\n// _sync_Locker is an interface wrapper for Locker type\ntype _sync_Locker struct {\n\tIValue  interface{}\n\tWLock   func()\n\tWUnlock func()\n}\n\nfunc (W _sync_Locker) Lock()   { W.WLock() }\nfunc (W _sync_Locker) Unlock() { W.WUnlock() }\n"
  },
  {
    "path": "stdlib/go1_22_sync_atomic.go",
    "content": "// Code generated by 'yaegi extract sync/atomic'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"sync/atomic\"\n)\n\nfunc init() {\n\tSymbols[\"sync/atomic/atomic\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AddInt32\":              reflect.ValueOf(atomic.AddInt32),\n\t\t\"AddInt64\":              reflect.ValueOf(atomic.AddInt64),\n\t\t\"AddUint32\":             reflect.ValueOf(atomic.AddUint32),\n\t\t\"AddUint64\":             reflect.ValueOf(atomic.AddUint64),\n\t\t\"AddUintptr\":            reflect.ValueOf(atomic.AddUintptr),\n\t\t\"CompareAndSwapInt32\":   reflect.ValueOf(atomic.CompareAndSwapInt32),\n\t\t\"CompareAndSwapInt64\":   reflect.ValueOf(atomic.CompareAndSwapInt64),\n\t\t\"CompareAndSwapPointer\": reflect.ValueOf(atomic.CompareAndSwapPointer),\n\t\t\"CompareAndSwapUint32\":  reflect.ValueOf(atomic.CompareAndSwapUint32),\n\t\t\"CompareAndSwapUint64\":  reflect.ValueOf(atomic.CompareAndSwapUint64),\n\t\t\"CompareAndSwapUintptr\": reflect.ValueOf(atomic.CompareAndSwapUintptr),\n\t\t\"LoadInt32\":             reflect.ValueOf(atomic.LoadInt32),\n\t\t\"LoadInt64\":             reflect.ValueOf(atomic.LoadInt64),\n\t\t\"LoadPointer\":           reflect.ValueOf(atomic.LoadPointer),\n\t\t\"LoadUint32\":            reflect.ValueOf(atomic.LoadUint32),\n\t\t\"LoadUint64\":            reflect.ValueOf(atomic.LoadUint64),\n\t\t\"LoadUintptr\":           reflect.ValueOf(atomic.LoadUintptr),\n\t\t\"StoreInt32\":            reflect.ValueOf(atomic.StoreInt32),\n\t\t\"StoreInt64\":            reflect.ValueOf(atomic.StoreInt64),\n\t\t\"StorePointer\":          reflect.ValueOf(atomic.StorePointer),\n\t\t\"StoreUint32\":           reflect.ValueOf(atomic.StoreUint32),\n\t\t\"StoreUint64\":           reflect.ValueOf(atomic.StoreUint64),\n\t\t\"StoreUintptr\":          reflect.ValueOf(atomic.StoreUintptr),\n\t\t\"SwapInt32\":             reflect.ValueOf(atomic.SwapInt32),\n\t\t\"SwapInt64\":             reflect.ValueOf(atomic.SwapInt64),\n\t\t\"SwapPointer\":           reflect.ValueOf(atomic.SwapPointer),\n\t\t\"SwapUint32\":            reflect.ValueOf(atomic.SwapUint32),\n\t\t\"SwapUint64\":            reflect.ValueOf(atomic.SwapUint64),\n\t\t\"SwapUintptr\":           reflect.ValueOf(atomic.SwapUintptr),\n\n\t\t// type definitions\n\t\t\"Bool\":    reflect.ValueOf((*atomic.Bool)(nil)),\n\t\t\"Int32\":   reflect.ValueOf((*atomic.Int32)(nil)),\n\t\t\"Int64\":   reflect.ValueOf((*atomic.Int64)(nil)),\n\t\t\"Uint32\":  reflect.ValueOf((*atomic.Uint32)(nil)),\n\t\t\"Uint64\":  reflect.ValueOf((*atomic.Uint64)(nil)),\n\t\t\"Uintptr\": reflect.ValueOf((*atomic.Uintptr)(nil)),\n\t\t\"Value\":   reflect.ValueOf((*atomic.Value)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_testing.go",
    "content": "// Code generated by 'yaegi extract testing'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"testing\"\n)\n\nfunc init() {\n\tSymbols[\"testing/testing\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllocsPerRun\":  reflect.ValueOf(testing.AllocsPerRun),\n\t\t\"Benchmark\":     reflect.ValueOf(testing.Benchmark),\n\t\t\"CoverMode\":     reflect.ValueOf(testing.CoverMode),\n\t\t\"Coverage\":      reflect.ValueOf(testing.Coverage),\n\t\t\"Init\":          reflect.ValueOf(testing.Init),\n\t\t\"Main\":          reflect.ValueOf(testing.Main),\n\t\t\"MainStart\":     reflect.ValueOf(testing.MainStart),\n\t\t\"RegisterCover\": reflect.ValueOf(testing.RegisterCover),\n\t\t\"RunBenchmarks\": reflect.ValueOf(testing.RunBenchmarks),\n\t\t\"RunExamples\":   reflect.ValueOf(testing.RunExamples),\n\t\t\"RunTests\":      reflect.ValueOf(testing.RunTests),\n\t\t\"Short\":         reflect.ValueOf(testing.Short),\n\t\t\"Testing\":       reflect.ValueOf(testing.Testing),\n\t\t\"Verbose\":       reflect.ValueOf(testing.Verbose),\n\n\t\t// type definitions\n\t\t\"B\":                  reflect.ValueOf((*testing.B)(nil)),\n\t\t\"BenchmarkResult\":    reflect.ValueOf((*testing.BenchmarkResult)(nil)),\n\t\t\"Cover\":              reflect.ValueOf((*testing.Cover)(nil)),\n\t\t\"CoverBlock\":         reflect.ValueOf((*testing.CoverBlock)(nil)),\n\t\t\"F\":                  reflect.ValueOf((*testing.F)(nil)),\n\t\t\"InternalBenchmark\":  reflect.ValueOf((*testing.InternalBenchmark)(nil)),\n\t\t\"InternalExample\":    reflect.ValueOf((*testing.InternalExample)(nil)),\n\t\t\"InternalFuzzTarget\": reflect.ValueOf((*testing.InternalFuzzTarget)(nil)),\n\t\t\"InternalTest\":       reflect.ValueOf((*testing.InternalTest)(nil)),\n\t\t\"M\":                  reflect.ValueOf((*testing.M)(nil)),\n\t\t\"PB\":                 reflect.ValueOf((*testing.PB)(nil)),\n\t\t\"T\":                  reflect.ValueOf((*testing.T)(nil)),\n\t\t\"TB\":                 reflect.ValueOf((*testing.TB)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_TB\": reflect.ValueOf((*_testing_TB)(nil)),\n\t}\n}\n\n// _testing_TB is an interface wrapper for TB type\ntype _testing_TB struct {\n\tIValue   interface{}\n\tWCleanup func(a0 func())\n\tWError   func(args ...any)\n\tWErrorf  func(format string, args ...any)\n\tWFail    func()\n\tWFailNow func()\n\tWFailed  func() bool\n\tWFatal   func(args ...any)\n\tWFatalf  func(format string, args ...any)\n\tWHelper  func()\n\tWLog     func(args ...any)\n\tWLogf    func(format string, args ...any)\n\tWName    func() string\n\tWSetenv  func(key string, value string)\n\tWSkip    func(args ...any)\n\tWSkipNow func()\n\tWSkipf   func(format string, args ...any)\n\tWSkipped func() bool\n\tWTempDir func() string\n}\n\nfunc (W _testing_TB) Cleanup(a0 func())                 { W.WCleanup(a0) }\nfunc (W _testing_TB) Error(args ...any)                 { W.WError(args...) }\nfunc (W _testing_TB) Errorf(format string, args ...any) { W.WErrorf(format, args...) }\nfunc (W _testing_TB) Fail()                             { W.WFail() }\nfunc (W _testing_TB) FailNow()                          { W.WFailNow() }\nfunc (W _testing_TB) Failed() bool                      { return W.WFailed() }\nfunc (W _testing_TB) Fatal(args ...any)                 { W.WFatal(args...) }\nfunc (W _testing_TB) Fatalf(format string, args ...any) { W.WFatalf(format, args...) }\nfunc (W _testing_TB) Helper()                           { W.WHelper() }\nfunc (W _testing_TB) Log(args ...any)                   { W.WLog(args...) }\nfunc (W _testing_TB) Logf(format string, args ...any)   { W.WLogf(format, args...) }\nfunc (W _testing_TB) Name() string                      { return W.WName() }\nfunc (W _testing_TB) Setenv(key string, value string)   { W.WSetenv(key, value) }\nfunc (W _testing_TB) Skip(args ...any)                  { W.WSkip(args...) }\nfunc (W _testing_TB) SkipNow()                          { W.WSkipNow() }\nfunc (W _testing_TB) Skipf(format string, args ...any)  { W.WSkipf(format, args...) }\nfunc (W _testing_TB) Skipped() bool                     { return W.WSkipped() }\nfunc (W _testing_TB) TempDir() string                   { return W.WTempDir() }\n"
  },
  {
    "path": "stdlib/go1_22_testing_fstest.go",
    "content": "// Code generated by 'yaegi extract testing/fstest'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"testing/fstest\"\n)\n\nfunc init() {\n\tSymbols[\"testing/fstest/fstest\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"TestFS\": reflect.ValueOf(fstest.TestFS),\n\n\t\t// type definitions\n\t\t\"MapFS\":   reflect.ValueOf((*fstest.MapFS)(nil)),\n\t\t\"MapFile\": reflect.ValueOf((*fstest.MapFile)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_testing_iotest.go",
    "content": "// Code generated by 'yaegi extract testing/iotest'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"testing/iotest\"\n)\n\nfunc init() {\n\tSymbols[\"testing/iotest/iotest\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"DataErrReader\":  reflect.ValueOf(iotest.DataErrReader),\n\t\t\"ErrReader\":      reflect.ValueOf(iotest.ErrReader),\n\t\t\"ErrTimeout\":     reflect.ValueOf(&iotest.ErrTimeout).Elem(),\n\t\t\"HalfReader\":     reflect.ValueOf(iotest.HalfReader),\n\t\t\"NewReadLogger\":  reflect.ValueOf(iotest.NewReadLogger),\n\t\t\"NewWriteLogger\": reflect.ValueOf(iotest.NewWriteLogger),\n\t\t\"OneByteReader\":  reflect.ValueOf(iotest.OneByteReader),\n\t\t\"TestReader\":     reflect.ValueOf(iotest.TestReader),\n\t\t\"TimeoutReader\":  reflect.ValueOf(iotest.TimeoutReader),\n\t\t\"TruncateWriter\": reflect.ValueOf(iotest.TruncateWriter),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_testing_quick.go",
    "content": "// Code generated by 'yaegi extract testing/quick'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"math/rand\"\n\t\"reflect\"\n\t\"testing/quick\"\n)\n\nfunc init() {\n\tSymbols[\"testing/quick/quick\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Check\":      reflect.ValueOf(quick.Check),\n\t\t\"CheckEqual\": reflect.ValueOf(quick.CheckEqual),\n\t\t\"Value\":      reflect.ValueOf(quick.Value),\n\n\t\t// type definitions\n\t\t\"CheckEqualError\": reflect.ValueOf((*quick.CheckEqualError)(nil)),\n\t\t\"CheckError\":      reflect.ValueOf((*quick.CheckError)(nil)),\n\t\t\"Config\":          reflect.ValueOf((*quick.Config)(nil)),\n\t\t\"Generator\":       reflect.ValueOf((*quick.Generator)(nil)),\n\t\t\"SetupError\":      reflect.ValueOf((*quick.SetupError)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Generator\": reflect.ValueOf((*_testing_quick_Generator)(nil)),\n\t}\n}\n\n// _testing_quick_Generator is an interface wrapper for Generator type\ntype _testing_quick_Generator struct {\n\tIValue    interface{}\n\tWGenerate func(rand *rand.Rand, size int) reflect.Value\n}\n\nfunc (W _testing_quick_Generator) Generate(rand *rand.Rand, size int) reflect.Value {\n\treturn W.WGenerate(rand, size)\n}\n"
  },
  {
    "path": "stdlib/go1_22_testing_slogtest.go",
    "content": "// Code generated by 'yaegi extract testing/slogtest'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"testing/slogtest\"\n)\n\nfunc init() {\n\tSymbols[\"testing/slogtest/slogtest\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Run\":         reflect.ValueOf(slogtest.Run),\n\t\t\"TestHandler\": reflect.ValueOf(slogtest.TestHandler),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_text_scanner.go",
    "content": "// Code generated by 'yaegi extract text/scanner'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"text/scanner\"\n)\n\nfunc init() {\n\tSymbols[\"text/scanner/scanner\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Char\":           reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"Comment\":        reflect.ValueOf(constant.MakeFromLiteral(\"-8\", token.INT, 0)),\n\t\t\"EOF\":            reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"Float\":          reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"GoTokens\":       reflect.ValueOf(constant.MakeFromLiteral(\"1012\", token.INT, 0)),\n\t\t\"GoWhitespace\":   reflect.ValueOf(constant.MakeFromLiteral(\"4294977024\", token.INT, 0)),\n\t\t\"Ident\":          reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"Int\":            reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"RawString\":      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"ScanChars\":      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ScanComments\":   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ScanFloats\":     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ScanIdents\":     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ScanInts\":       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ScanRawStrings\": reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ScanStrings\":    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SkipComments\":   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"String\":         reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"TokenString\":    reflect.ValueOf(scanner.TokenString),\n\n\t\t// type definitions\n\t\t\"Position\": reflect.ValueOf((*scanner.Position)(nil)),\n\t\t\"Scanner\":  reflect.ValueOf((*scanner.Scanner)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_text_tabwriter.go",
    "content": "// Code generated by 'yaegi extract text/tabwriter'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"text/tabwriter\"\n)\n\nfunc init() {\n\tSymbols[\"text/tabwriter/tabwriter\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AlignRight\":          reflect.ValueOf(tabwriter.AlignRight),\n\t\t\"Debug\":               reflect.ValueOf(tabwriter.Debug),\n\t\t\"DiscardEmptyColumns\": reflect.ValueOf(tabwriter.DiscardEmptyColumns),\n\t\t\"Escape\":              reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"FilterHTML\":          reflect.ValueOf(tabwriter.FilterHTML),\n\t\t\"NewWriter\":           reflect.ValueOf(tabwriter.NewWriter),\n\t\t\"StripEscape\":         reflect.ValueOf(tabwriter.StripEscape),\n\t\t\"TabIndent\":           reflect.ValueOf(tabwriter.TabIndent),\n\n\t\t// type definitions\n\t\t\"Writer\": reflect.ValueOf((*tabwriter.Writer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_text_template.go",
    "content": "// Code generated by 'yaegi extract text/template'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"text/template\"\n)\n\nfunc init() {\n\tSymbols[\"text/template/template\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"HTMLEscape\":       reflect.ValueOf(template.HTMLEscape),\n\t\t\"HTMLEscapeString\": reflect.ValueOf(template.HTMLEscapeString),\n\t\t\"HTMLEscaper\":      reflect.ValueOf(template.HTMLEscaper),\n\t\t\"IsTrue\":           reflect.ValueOf(template.IsTrue),\n\t\t\"JSEscape\":         reflect.ValueOf(template.JSEscape),\n\t\t\"JSEscapeString\":   reflect.ValueOf(template.JSEscapeString),\n\t\t\"JSEscaper\":        reflect.ValueOf(template.JSEscaper),\n\t\t\"Must\":             reflect.ValueOf(template.Must),\n\t\t\"New\":              reflect.ValueOf(template.New),\n\t\t\"ParseFS\":          reflect.ValueOf(template.ParseFS),\n\t\t\"ParseFiles\":       reflect.ValueOf(template.ParseFiles),\n\t\t\"ParseGlob\":        reflect.ValueOf(template.ParseGlob),\n\t\t\"URLQueryEscaper\":  reflect.ValueOf(template.URLQueryEscaper),\n\n\t\t// type definitions\n\t\t\"ExecError\": reflect.ValueOf((*template.ExecError)(nil)),\n\t\t\"FuncMap\":   reflect.ValueOf((*template.FuncMap)(nil)),\n\t\t\"Template\":  reflect.ValueOf((*template.Template)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_text_template_parse.go",
    "content": "// Code generated by 'yaegi extract text/template/parse'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"text/template/parse\"\n)\n\nfunc init() {\n\tSymbols[\"text/template/parse/parse\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"IsEmptyTree\":    reflect.ValueOf(parse.IsEmptyTree),\n\t\t\"New\":            reflect.ValueOf(parse.New),\n\t\t\"NewIdentifier\":  reflect.ValueOf(parse.NewIdentifier),\n\t\t\"NodeAction\":     reflect.ValueOf(parse.NodeAction),\n\t\t\"NodeBool\":       reflect.ValueOf(parse.NodeBool),\n\t\t\"NodeBreak\":      reflect.ValueOf(parse.NodeBreak),\n\t\t\"NodeChain\":      reflect.ValueOf(parse.NodeChain),\n\t\t\"NodeCommand\":    reflect.ValueOf(parse.NodeCommand),\n\t\t\"NodeComment\":    reflect.ValueOf(parse.NodeComment),\n\t\t\"NodeContinue\":   reflect.ValueOf(parse.NodeContinue),\n\t\t\"NodeDot\":        reflect.ValueOf(parse.NodeDot),\n\t\t\"NodeField\":      reflect.ValueOf(parse.NodeField),\n\t\t\"NodeIdentifier\": reflect.ValueOf(parse.NodeIdentifier),\n\t\t\"NodeIf\":         reflect.ValueOf(parse.NodeIf),\n\t\t\"NodeList\":       reflect.ValueOf(parse.NodeList),\n\t\t\"NodeNil\":        reflect.ValueOf(parse.NodeNil),\n\t\t\"NodeNumber\":     reflect.ValueOf(parse.NodeNumber),\n\t\t\"NodePipe\":       reflect.ValueOf(parse.NodePipe),\n\t\t\"NodeRange\":      reflect.ValueOf(parse.NodeRange),\n\t\t\"NodeString\":     reflect.ValueOf(parse.NodeString),\n\t\t\"NodeTemplate\":   reflect.ValueOf(parse.NodeTemplate),\n\t\t\"NodeText\":       reflect.ValueOf(parse.NodeText),\n\t\t\"NodeVariable\":   reflect.ValueOf(parse.NodeVariable),\n\t\t\"NodeWith\":       reflect.ValueOf(parse.NodeWith),\n\t\t\"Parse\":          reflect.ValueOf(parse.Parse),\n\t\t\"ParseComments\":  reflect.ValueOf(parse.ParseComments),\n\t\t\"SkipFuncCheck\":  reflect.ValueOf(parse.SkipFuncCheck),\n\n\t\t// type definitions\n\t\t\"ActionNode\":     reflect.ValueOf((*parse.ActionNode)(nil)),\n\t\t\"BoolNode\":       reflect.ValueOf((*parse.BoolNode)(nil)),\n\t\t\"BranchNode\":     reflect.ValueOf((*parse.BranchNode)(nil)),\n\t\t\"BreakNode\":      reflect.ValueOf((*parse.BreakNode)(nil)),\n\t\t\"ChainNode\":      reflect.ValueOf((*parse.ChainNode)(nil)),\n\t\t\"CommandNode\":    reflect.ValueOf((*parse.CommandNode)(nil)),\n\t\t\"CommentNode\":    reflect.ValueOf((*parse.CommentNode)(nil)),\n\t\t\"ContinueNode\":   reflect.ValueOf((*parse.ContinueNode)(nil)),\n\t\t\"DotNode\":        reflect.ValueOf((*parse.DotNode)(nil)),\n\t\t\"FieldNode\":      reflect.ValueOf((*parse.FieldNode)(nil)),\n\t\t\"IdentifierNode\": reflect.ValueOf((*parse.IdentifierNode)(nil)),\n\t\t\"IfNode\":         reflect.ValueOf((*parse.IfNode)(nil)),\n\t\t\"ListNode\":       reflect.ValueOf((*parse.ListNode)(nil)),\n\t\t\"Mode\":           reflect.ValueOf((*parse.Mode)(nil)),\n\t\t\"NilNode\":        reflect.ValueOf((*parse.NilNode)(nil)),\n\t\t\"Node\":           reflect.ValueOf((*parse.Node)(nil)),\n\t\t\"NodeType\":       reflect.ValueOf((*parse.NodeType)(nil)),\n\t\t\"NumberNode\":     reflect.ValueOf((*parse.NumberNode)(nil)),\n\t\t\"PipeNode\":       reflect.ValueOf((*parse.PipeNode)(nil)),\n\t\t\"Pos\":            reflect.ValueOf((*parse.Pos)(nil)),\n\t\t\"RangeNode\":      reflect.ValueOf((*parse.RangeNode)(nil)),\n\t\t\"StringNode\":     reflect.ValueOf((*parse.StringNode)(nil)),\n\t\t\"TemplateNode\":   reflect.ValueOf((*parse.TemplateNode)(nil)),\n\t\t\"TextNode\":       reflect.ValueOf((*parse.TextNode)(nil)),\n\t\t\"Tree\":           reflect.ValueOf((*parse.Tree)(nil)),\n\t\t\"VariableNode\":   reflect.ValueOf((*parse.VariableNode)(nil)),\n\t\t\"WithNode\":       reflect.ValueOf((*parse.WithNode)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Node\": reflect.ValueOf((*_text_template_parse_Node)(nil)),\n\t}\n}\n\n// _text_template_parse_Node is an interface wrapper for Node type\ntype _text_template_parse_Node struct {\n\tIValue    interface{}\n\tWCopy     func() parse.Node\n\tWPosition func() parse.Pos\n\tWString   func() string\n\tWType     func() parse.NodeType\n}\n\nfunc (W _text_template_parse_Node) Copy() parse.Node    { return W.WCopy() }\nfunc (W _text_template_parse_Node) Position() parse.Pos { return W.WPosition() }\nfunc (W _text_template_parse_Node) String() string {\n\tif W.WString == nil {\n\t\treturn \"\"\n\t}\n\treturn W.WString()\n}\nfunc (W _text_template_parse_Node) Type() parse.NodeType { return W.WType() }\n"
  },
  {
    "path": "stdlib/go1_22_time.go",
    "content": "// Code generated by 'yaegi extract time'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"time\"\n)\n\nfunc init() {\n\tSymbols[\"time/time\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ANSIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Mon Jan _2 15:04:05 2006\\\"\", token.STRING, 0)),\n\t\t\"After\":                  reflect.ValueOf(time.After),\n\t\t\"AfterFunc\":              reflect.ValueOf(time.AfterFunc),\n\t\t\"April\":                  reflect.ValueOf(time.April),\n\t\t\"August\":                 reflect.ValueOf(time.August),\n\t\t\"Date\":                   reflect.ValueOf(time.Date),\n\t\t\"DateOnly\":               reflect.ValueOf(constant.MakeFromLiteral(\"\\\"2006-01-02\\\"\", token.STRING, 0)),\n\t\t\"DateTime\":               reflect.ValueOf(constant.MakeFromLiteral(\"\\\"2006-01-02 15:04:05\\\"\", token.STRING, 0)),\n\t\t\"December\":               reflect.ValueOf(time.December),\n\t\t\"February\":               reflect.ValueOf(time.February),\n\t\t\"FixedZone\":              reflect.ValueOf(time.FixedZone),\n\t\t\"Friday\":                 reflect.ValueOf(time.Friday),\n\t\t\"Hour\":                   reflect.ValueOf(time.Hour),\n\t\t\"January\":                reflect.ValueOf(time.January),\n\t\t\"July\":                   reflect.ValueOf(time.July),\n\t\t\"June\":                   reflect.ValueOf(time.June),\n\t\t\"Kitchen\":                reflect.ValueOf(constant.MakeFromLiteral(\"\\\"3:04PM\\\"\", token.STRING, 0)),\n\t\t\"Layout\":                 reflect.ValueOf(constant.MakeFromLiteral(\"\\\"01/02 03:04:05PM '06 -0700\\\"\", token.STRING, 0)),\n\t\t\"LoadLocation\":           reflect.ValueOf(time.LoadLocation),\n\t\t\"LoadLocationFromTZData\": reflect.ValueOf(time.LoadLocationFromTZData),\n\t\t\"Local\":                  reflect.ValueOf(&time.Local).Elem(),\n\t\t\"March\":                  reflect.ValueOf(time.March),\n\t\t\"May\":                    reflect.ValueOf(time.May),\n\t\t\"Microsecond\":            reflect.ValueOf(time.Microsecond),\n\t\t\"Millisecond\":            reflect.ValueOf(time.Millisecond),\n\t\t\"Minute\":                 reflect.ValueOf(time.Minute),\n\t\t\"Monday\":                 reflect.ValueOf(time.Monday),\n\t\t\"Nanosecond\":             reflect.ValueOf(time.Nanosecond),\n\t\t\"NewTicker\":              reflect.ValueOf(time.NewTicker),\n\t\t\"NewTimer\":               reflect.ValueOf(time.NewTimer),\n\t\t\"November\":               reflect.ValueOf(time.November),\n\t\t\"Now\":                    reflect.ValueOf(time.Now),\n\t\t\"October\":                reflect.ValueOf(time.October),\n\t\t\"Parse\":                  reflect.ValueOf(time.Parse),\n\t\t\"ParseDuration\":          reflect.ValueOf(time.ParseDuration),\n\t\t\"ParseInLocation\":        reflect.ValueOf(time.ParseInLocation),\n\t\t\"RFC1123\":                reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Mon, 02 Jan 2006 15:04:05 MST\\\"\", token.STRING, 0)),\n\t\t\"RFC1123Z\":               reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Mon, 02 Jan 2006 15:04:05 -0700\\\"\", token.STRING, 0)),\n\t\t\"RFC3339\":                reflect.ValueOf(constant.MakeFromLiteral(\"\\\"2006-01-02T15:04:05Z07:00\\\"\", token.STRING, 0)),\n\t\t\"RFC3339Nano\":            reflect.ValueOf(constant.MakeFromLiteral(\"\\\"2006-01-02T15:04:05.999999999Z07:00\\\"\", token.STRING, 0)),\n\t\t\"RFC822\":                 reflect.ValueOf(constant.MakeFromLiteral(\"\\\"02 Jan 06 15:04 MST\\\"\", token.STRING, 0)),\n\t\t\"RFC822Z\":                reflect.ValueOf(constant.MakeFromLiteral(\"\\\"02 Jan 06 15:04 -0700\\\"\", token.STRING, 0)),\n\t\t\"RFC850\":                 reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Monday, 02-Jan-06 15:04:05 MST\\\"\", token.STRING, 0)),\n\t\t\"RubyDate\":               reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Mon Jan 02 15:04:05 -0700 2006\\\"\", token.STRING, 0)),\n\t\t\"Saturday\":               reflect.ValueOf(time.Saturday),\n\t\t\"Second\":                 reflect.ValueOf(time.Second),\n\t\t\"September\":              reflect.ValueOf(time.September),\n\t\t\"Since\":                  reflect.ValueOf(time.Since),\n\t\t\"Sleep\":                  reflect.ValueOf(time.Sleep),\n\t\t\"Stamp\":                  reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Jan _2 15:04:05\\\"\", token.STRING, 0)),\n\t\t\"StampMicro\":             reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Jan _2 15:04:05.000000\\\"\", token.STRING, 0)),\n\t\t\"StampMilli\":             reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Jan _2 15:04:05.000\\\"\", token.STRING, 0)),\n\t\t\"StampNano\":              reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Jan _2 15:04:05.000000000\\\"\", token.STRING, 0)),\n\t\t\"Sunday\":                 reflect.ValueOf(time.Sunday),\n\t\t\"Thursday\":               reflect.ValueOf(time.Thursday),\n\t\t\"Tick\":                   reflect.ValueOf(time.Tick),\n\t\t\"TimeOnly\":               reflect.ValueOf(constant.MakeFromLiteral(\"\\\"15:04:05\\\"\", token.STRING, 0)),\n\t\t\"Tuesday\":                reflect.ValueOf(time.Tuesday),\n\t\t\"UTC\":                    reflect.ValueOf(&time.UTC).Elem(),\n\t\t\"Unix\":                   reflect.ValueOf(time.Unix),\n\t\t\"UnixDate\":               reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Mon Jan _2 15:04:05 MST 2006\\\"\", token.STRING, 0)),\n\t\t\"UnixMicro\":              reflect.ValueOf(time.UnixMicro),\n\t\t\"UnixMilli\":              reflect.ValueOf(time.UnixMilli),\n\t\t\"Until\":                  reflect.ValueOf(time.Until),\n\t\t\"Wednesday\":              reflect.ValueOf(time.Wednesday),\n\n\t\t// type definitions\n\t\t\"Duration\":   reflect.ValueOf((*time.Duration)(nil)),\n\t\t\"Location\":   reflect.ValueOf((*time.Location)(nil)),\n\t\t\"Month\":      reflect.ValueOf((*time.Month)(nil)),\n\t\t\"ParseError\": reflect.ValueOf((*time.ParseError)(nil)),\n\t\t\"Ticker\":     reflect.ValueOf((*time.Ticker)(nil)),\n\t\t\"Time\":       reflect.ValueOf((*time.Time)(nil)),\n\t\t\"Timer\":      reflect.ValueOf((*time.Timer)(nil)),\n\t\t\"Weekday\":    reflect.ValueOf((*time.Weekday)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_unicode.go",
    "content": "// Code generated by 'yaegi extract unicode'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"unicode\"\n)\n\nfunc init() {\n\tSymbols[\"unicode/unicode\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"ASCII_Hex_Digit\":                    reflect.ValueOf(&unicode.ASCII_Hex_Digit).Elem(),\n\t\t\"Adlam\":                              reflect.ValueOf(&unicode.Adlam).Elem(),\n\t\t\"Ahom\":                               reflect.ValueOf(&unicode.Ahom).Elem(),\n\t\t\"Anatolian_Hieroglyphs\":              reflect.ValueOf(&unicode.Anatolian_Hieroglyphs).Elem(),\n\t\t\"Arabic\":                             reflect.ValueOf(&unicode.Arabic).Elem(),\n\t\t\"Armenian\":                           reflect.ValueOf(&unicode.Armenian).Elem(),\n\t\t\"Avestan\":                            reflect.ValueOf(&unicode.Avestan).Elem(),\n\t\t\"AzeriCase\":                          reflect.ValueOf(&unicode.AzeriCase).Elem(),\n\t\t\"Balinese\":                           reflect.ValueOf(&unicode.Balinese).Elem(),\n\t\t\"Bamum\":                              reflect.ValueOf(&unicode.Bamum).Elem(),\n\t\t\"Bassa_Vah\":                          reflect.ValueOf(&unicode.Bassa_Vah).Elem(),\n\t\t\"Batak\":                              reflect.ValueOf(&unicode.Batak).Elem(),\n\t\t\"Bengali\":                            reflect.ValueOf(&unicode.Bengali).Elem(),\n\t\t\"Bhaiksuki\":                          reflect.ValueOf(&unicode.Bhaiksuki).Elem(),\n\t\t\"Bidi_Control\":                       reflect.ValueOf(&unicode.Bidi_Control).Elem(),\n\t\t\"Bopomofo\":                           reflect.ValueOf(&unicode.Bopomofo).Elem(),\n\t\t\"Brahmi\":                             reflect.ValueOf(&unicode.Brahmi).Elem(),\n\t\t\"Braille\":                            reflect.ValueOf(&unicode.Braille).Elem(),\n\t\t\"Buginese\":                           reflect.ValueOf(&unicode.Buginese).Elem(),\n\t\t\"Buhid\":                              reflect.ValueOf(&unicode.Buhid).Elem(),\n\t\t\"C\":                                  reflect.ValueOf(&unicode.C).Elem(),\n\t\t\"Canadian_Aboriginal\":                reflect.ValueOf(&unicode.Canadian_Aboriginal).Elem(),\n\t\t\"Carian\":                             reflect.ValueOf(&unicode.Carian).Elem(),\n\t\t\"CaseRanges\":                         reflect.ValueOf(&unicode.CaseRanges).Elem(),\n\t\t\"Categories\":                         reflect.ValueOf(&unicode.Categories).Elem(),\n\t\t\"Caucasian_Albanian\":                 reflect.ValueOf(&unicode.Caucasian_Albanian).Elem(),\n\t\t\"Cc\":                                 reflect.ValueOf(&unicode.Cc).Elem(),\n\t\t\"Cf\":                                 reflect.ValueOf(&unicode.Cf).Elem(),\n\t\t\"Chakma\":                             reflect.ValueOf(&unicode.Chakma).Elem(),\n\t\t\"Cham\":                               reflect.ValueOf(&unicode.Cham).Elem(),\n\t\t\"Cherokee\":                           reflect.ValueOf(&unicode.Cherokee).Elem(),\n\t\t\"Chorasmian\":                         reflect.ValueOf(&unicode.Chorasmian).Elem(),\n\t\t\"Co\":                                 reflect.ValueOf(&unicode.Co).Elem(),\n\t\t\"Common\":                             reflect.ValueOf(&unicode.Common).Elem(),\n\t\t\"Coptic\":                             reflect.ValueOf(&unicode.Coptic).Elem(),\n\t\t\"Cs\":                                 reflect.ValueOf(&unicode.Cs).Elem(),\n\t\t\"Cuneiform\":                          reflect.ValueOf(&unicode.Cuneiform).Elem(),\n\t\t\"Cypriot\":                            reflect.ValueOf(&unicode.Cypriot).Elem(),\n\t\t\"Cypro_Minoan\":                       reflect.ValueOf(&unicode.Cypro_Minoan).Elem(),\n\t\t\"Cyrillic\":                           reflect.ValueOf(&unicode.Cyrillic).Elem(),\n\t\t\"Dash\":                               reflect.ValueOf(&unicode.Dash).Elem(),\n\t\t\"Deprecated\":                         reflect.ValueOf(&unicode.Deprecated).Elem(),\n\t\t\"Deseret\":                            reflect.ValueOf(&unicode.Deseret).Elem(),\n\t\t\"Devanagari\":                         reflect.ValueOf(&unicode.Devanagari).Elem(),\n\t\t\"Diacritic\":                          reflect.ValueOf(&unicode.Diacritic).Elem(),\n\t\t\"Digit\":                              reflect.ValueOf(&unicode.Digit).Elem(),\n\t\t\"Dives_Akuru\":                        reflect.ValueOf(&unicode.Dives_Akuru).Elem(),\n\t\t\"Dogra\":                              reflect.ValueOf(&unicode.Dogra).Elem(),\n\t\t\"Duployan\":                           reflect.ValueOf(&unicode.Duployan).Elem(),\n\t\t\"Egyptian_Hieroglyphs\":               reflect.ValueOf(&unicode.Egyptian_Hieroglyphs).Elem(),\n\t\t\"Elbasan\":                            reflect.ValueOf(&unicode.Elbasan).Elem(),\n\t\t\"Elymaic\":                            reflect.ValueOf(&unicode.Elymaic).Elem(),\n\t\t\"Ethiopic\":                           reflect.ValueOf(&unicode.Ethiopic).Elem(),\n\t\t\"Extender\":                           reflect.ValueOf(&unicode.Extender).Elem(),\n\t\t\"FoldCategory\":                       reflect.ValueOf(&unicode.FoldCategory).Elem(),\n\t\t\"FoldScript\":                         reflect.ValueOf(&unicode.FoldScript).Elem(),\n\t\t\"Georgian\":                           reflect.ValueOf(&unicode.Georgian).Elem(),\n\t\t\"Glagolitic\":                         reflect.ValueOf(&unicode.Glagolitic).Elem(),\n\t\t\"Gothic\":                             reflect.ValueOf(&unicode.Gothic).Elem(),\n\t\t\"Grantha\":                            reflect.ValueOf(&unicode.Grantha).Elem(),\n\t\t\"GraphicRanges\":                      reflect.ValueOf(&unicode.GraphicRanges).Elem(),\n\t\t\"Greek\":                              reflect.ValueOf(&unicode.Greek).Elem(),\n\t\t\"Gujarati\":                           reflect.ValueOf(&unicode.Gujarati).Elem(),\n\t\t\"Gunjala_Gondi\":                      reflect.ValueOf(&unicode.Gunjala_Gondi).Elem(),\n\t\t\"Gurmukhi\":                           reflect.ValueOf(&unicode.Gurmukhi).Elem(),\n\t\t\"Han\":                                reflect.ValueOf(&unicode.Han).Elem(),\n\t\t\"Hangul\":                             reflect.ValueOf(&unicode.Hangul).Elem(),\n\t\t\"Hanifi_Rohingya\":                    reflect.ValueOf(&unicode.Hanifi_Rohingya).Elem(),\n\t\t\"Hanunoo\":                            reflect.ValueOf(&unicode.Hanunoo).Elem(),\n\t\t\"Hatran\":                             reflect.ValueOf(&unicode.Hatran).Elem(),\n\t\t\"Hebrew\":                             reflect.ValueOf(&unicode.Hebrew).Elem(),\n\t\t\"Hex_Digit\":                          reflect.ValueOf(&unicode.Hex_Digit).Elem(),\n\t\t\"Hiragana\":                           reflect.ValueOf(&unicode.Hiragana).Elem(),\n\t\t\"Hyphen\":                             reflect.ValueOf(&unicode.Hyphen).Elem(),\n\t\t\"IDS_Binary_Operator\":                reflect.ValueOf(&unicode.IDS_Binary_Operator).Elem(),\n\t\t\"IDS_Trinary_Operator\":               reflect.ValueOf(&unicode.IDS_Trinary_Operator).Elem(),\n\t\t\"Ideographic\":                        reflect.ValueOf(&unicode.Ideographic).Elem(),\n\t\t\"Imperial_Aramaic\":                   reflect.ValueOf(&unicode.Imperial_Aramaic).Elem(),\n\t\t\"In\":                                 reflect.ValueOf(unicode.In),\n\t\t\"Inherited\":                          reflect.ValueOf(&unicode.Inherited).Elem(),\n\t\t\"Inscriptional_Pahlavi\":              reflect.ValueOf(&unicode.Inscriptional_Pahlavi).Elem(),\n\t\t\"Inscriptional_Parthian\":             reflect.ValueOf(&unicode.Inscriptional_Parthian).Elem(),\n\t\t\"Is\":                                 reflect.ValueOf(unicode.Is),\n\t\t\"IsControl\":                          reflect.ValueOf(unicode.IsControl),\n\t\t\"IsDigit\":                            reflect.ValueOf(unicode.IsDigit),\n\t\t\"IsGraphic\":                          reflect.ValueOf(unicode.IsGraphic),\n\t\t\"IsLetter\":                           reflect.ValueOf(unicode.IsLetter),\n\t\t\"IsLower\":                            reflect.ValueOf(unicode.IsLower),\n\t\t\"IsMark\":                             reflect.ValueOf(unicode.IsMark),\n\t\t\"IsNumber\":                           reflect.ValueOf(unicode.IsNumber),\n\t\t\"IsOneOf\":                            reflect.ValueOf(unicode.IsOneOf),\n\t\t\"IsPrint\":                            reflect.ValueOf(unicode.IsPrint),\n\t\t\"IsPunct\":                            reflect.ValueOf(unicode.IsPunct),\n\t\t\"IsSpace\":                            reflect.ValueOf(unicode.IsSpace),\n\t\t\"IsSymbol\":                           reflect.ValueOf(unicode.IsSymbol),\n\t\t\"IsTitle\":                            reflect.ValueOf(unicode.IsTitle),\n\t\t\"IsUpper\":                            reflect.ValueOf(unicode.IsUpper),\n\t\t\"Javanese\":                           reflect.ValueOf(&unicode.Javanese).Elem(),\n\t\t\"Join_Control\":                       reflect.ValueOf(&unicode.Join_Control).Elem(),\n\t\t\"Kaithi\":                             reflect.ValueOf(&unicode.Kaithi).Elem(),\n\t\t\"Kannada\":                            reflect.ValueOf(&unicode.Kannada).Elem(),\n\t\t\"Katakana\":                           reflect.ValueOf(&unicode.Katakana).Elem(),\n\t\t\"Kawi\":                               reflect.ValueOf(&unicode.Kawi).Elem(),\n\t\t\"Kayah_Li\":                           reflect.ValueOf(&unicode.Kayah_Li).Elem(),\n\t\t\"Kharoshthi\":                         reflect.ValueOf(&unicode.Kharoshthi).Elem(),\n\t\t\"Khitan_Small_Script\":                reflect.ValueOf(&unicode.Khitan_Small_Script).Elem(),\n\t\t\"Khmer\":                              reflect.ValueOf(&unicode.Khmer).Elem(),\n\t\t\"Khojki\":                             reflect.ValueOf(&unicode.Khojki).Elem(),\n\t\t\"Khudawadi\":                          reflect.ValueOf(&unicode.Khudawadi).Elem(),\n\t\t\"L\":                                  reflect.ValueOf(&unicode.L).Elem(),\n\t\t\"Lao\":                                reflect.ValueOf(&unicode.Lao).Elem(),\n\t\t\"Latin\":                              reflect.ValueOf(&unicode.Latin).Elem(),\n\t\t\"Lepcha\":                             reflect.ValueOf(&unicode.Lepcha).Elem(),\n\t\t\"Letter\":                             reflect.ValueOf(&unicode.Letter).Elem(),\n\t\t\"Limbu\":                              reflect.ValueOf(&unicode.Limbu).Elem(),\n\t\t\"Linear_A\":                           reflect.ValueOf(&unicode.Linear_A).Elem(),\n\t\t\"Linear_B\":                           reflect.ValueOf(&unicode.Linear_B).Elem(),\n\t\t\"Lisu\":                               reflect.ValueOf(&unicode.Lisu).Elem(),\n\t\t\"Ll\":                                 reflect.ValueOf(&unicode.Ll).Elem(),\n\t\t\"Lm\":                                 reflect.ValueOf(&unicode.Lm).Elem(),\n\t\t\"Lo\":                                 reflect.ValueOf(&unicode.Lo).Elem(),\n\t\t\"Logical_Order_Exception\":            reflect.ValueOf(&unicode.Logical_Order_Exception).Elem(),\n\t\t\"Lower\":                              reflect.ValueOf(&unicode.Lower).Elem(),\n\t\t\"LowerCase\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Lt\":                                 reflect.ValueOf(&unicode.Lt).Elem(),\n\t\t\"Lu\":                                 reflect.ValueOf(&unicode.Lu).Elem(),\n\t\t\"Lycian\":                             reflect.ValueOf(&unicode.Lycian).Elem(),\n\t\t\"Lydian\":                             reflect.ValueOf(&unicode.Lydian).Elem(),\n\t\t\"M\":                                  reflect.ValueOf(&unicode.M).Elem(),\n\t\t\"Mahajani\":                           reflect.ValueOf(&unicode.Mahajani).Elem(),\n\t\t\"Makasar\":                            reflect.ValueOf(&unicode.Makasar).Elem(),\n\t\t\"Malayalam\":                          reflect.ValueOf(&unicode.Malayalam).Elem(),\n\t\t\"Mandaic\":                            reflect.ValueOf(&unicode.Mandaic).Elem(),\n\t\t\"Manichaean\":                         reflect.ValueOf(&unicode.Manichaean).Elem(),\n\t\t\"Marchen\":                            reflect.ValueOf(&unicode.Marchen).Elem(),\n\t\t\"Mark\":                               reflect.ValueOf(&unicode.Mark).Elem(),\n\t\t\"Masaram_Gondi\":                      reflect.ValueOf(&unicode.Masaram_Gondi).Elem(),\n\t\t\"MaxASCII\":                           reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"MaxCase\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MaxLatin1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"MaxRune\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1114111\", token.INT, 0)),\n\t\t\"Mc\":                                 reflect.ValueOf(&unicode.Mc).Elem(),\n\t\t\"Me\":                                 reflect.ValueOf(&unicode.Me).Elem(),\n\t\t\"Medefaidrin\":                        reflect.ValueOf(&unicode.Medefaidrin).Elem(),\n\t\t\"Meetei_Mayek\":                       reflect.ValueOf(&unicode.Meetei_Mayek).Elem(),\n\t\t\"Mende_Kikakui\":                      reflect.ValueOf(&unicode.Mende_Kikakui).Elem(),\n\t\t\"Meroitic_Cursive\":                   reflect.ValueOf(&unicode.Meroitic_Cursive).Elem(),\n\t\t\"Meroitic_Hieroglyphs\":               reflect.ValueOf(&unicode.Meroitic_Hieroglyphs).Elem(),\n\t\t\"Miao\":                               reflect.ValueOf(&unicode.Miao).Elem(),\n\t\t\"Mn\":                                 reflect.ValueOf(&unicode.Mn).Elem(),\n\t\t\"Modi\":                               reflect.ValueOf(&unicode.Modi).Elem(),\n\t\t\"Mongolian\":                          reflect.ValueOf(&unicode.Mongolian).Elem(),\n\t\t\"Mro\":                                reflect.ValueOf(&unicode.Mro).Elem(),\n\t\t\"Multani\":                            reflect.ValueOf(&unicode.Multani).Elem(),\n\t\t\"Myanmar\":                            reflect.ValueOf(&unicode.Myanmar).Elem(),\n\t\t\"N\":                                  reflect.ValueOf(&unicode.N).Elem(),\n\t\t\"Nabataean\":                          reflect.ValueOf(&unicode.Nabataean).Elem(),\n\t\t\"Nag_Mundari\":                        reflect.ValueOf(&unicode.Nag_Mundari).Elem(),\n\t\t\"Nandinagari\":                        reflect.ValueOf(&unicode.Nandinagari).Elem(),\n\t\t\"Nd\":                                 reflect.ValueOf(&unicode.Nd).Elem(),\n\t\t\"New_Tai_Lue\":                        reflect.ValueOf(&unicode.New_Tai_Lue).Elem(),\n\t\t\"Newa\":                               reflect.ValueOf(&unicode.Newa).Elem(),\n\t\t\"Nko\":                                reflect.ValueOf(&unicode.Nko).Elem(),\n\t\t\"Nl\":                                 reflect.ValueOf(&unicode.Nl).Elem(),\n\t\t\"No\":                                 reflect.ValueOf(&unicode.No).Elem(),\n\t\t\"Noncharacter_Code_Point\":            reflect.ValueOf(&unicode.Noncharacter_Code_Point).Elem(),\n\t\t\"Number\":                             reflect.ValueOf(&unicode.Number).Elem(),\n\t\t\"Nushu\":                              reflect.ValueOf(&unicode.Nushu).Elem(),\n\t\t\"Nyiakeng_Puachue_Hmong\":             reflect.ValueOf(&unicode.Nyiakeng_Puachue_Hmong).Elem(),\n\t\t\"Ogham\":                              reflect.ValueOf(&unicode.Ogham).Elem(),\n\t\t\"Ol_Chiki\":                           reflect.ValueOf(&unicode.Ol_Chiki).Elem(),\n\t\t\"Old_Hungarian\":                      reflect.ValueOf(&unicode.Old_Hungarian).Elem(),\n\t\t\"Old_Italic\":                         reflect.ValueOf(&unicode.Old_Italic).Elem(),\n\t\t\"Old_North_Arabian\":                  reflect.ValueOf(&unicode.Old_North_Arabian).Elem(),\n\t\t\"Old_Permic\":                         reflect.ValueOf(&unicode.Old_Permic).Elem(),\n\t\t\"Old_Persian\":                        reflect.ValueOf(&unicode.Old_Persian).Elem(),\n\t\t\"Old_Sogdian\":                        reflect.ValueOf(&unicode.Old_Sogdian).Elem(),\n\t\t\"Old_South_Arabian\":                  reflect.ValueOf(&unicode.Old_South_Arabian).Elem(),\n\t\t\"Old_Turkic\":                         reflect.ValueOf(&unicode.Old_Turkic).Elem(),\n\t\t\"Old_Uyghur\":                         reflect.ValueOf(&unicode.Old_Uyghur).Elem(),\n\t\t\"Oriya\":                              reflect.ValueOf(&unicode.Oriya).Elem(),\n\t\t\"Osage\":                              reflect.ValueOf(&unicode.Osage).Elem(),\n\t\t\"Osmanya\":                            reflect.ValueOf(&unicode.Osmanya).Elem(),\n\t\t\"Other\":                              reflect.ValueOf(&unicode.Other).Elem(),\n\t\t\"Other_Alphabetic\":                   reflect.ValueOf(&unicode.Other_Alphabetic).Elem(),\n\t\t\"Other_Default_Ignorable_Code_Point\": reflect.ValueOf(&unicode.Other_Default_Ignorable_Code_Point).Elem(),\n\t\t\"Other_Grapheme_Extend\":              reflect.ValueOf(&unicode.Other_Grapheme_Extend).Elem(),\n\t\t\"Other_ID_Continue\":                  reflect.ValueOf(&unicode.Other_ID_Continue).Elem(),\n\t\t\"Other_ID_Start\":                     reflect.ValueOf(&unicode.Other_ID_Start).Elem(),\n\t\t\"Other_Lowercase\":                    reflect.ValueOf(&unicode.Other_Lowercase).Elem(),\n\t\t\"Other_Math\":                         reflect.ValueOf(&unicode.Other_Math).Elem(),\n\t\t\"Other_Uppercase\":                    reflect.ValueOf(&unicode.Other_Uppercase).Elem(),\n\t\t\"P\":                                  reflect.ValueOf(&unicode.P).Elem(),\n\t\t\"Pahawh_Hmong\":                       reflect.ValueOf(&unicode.Pahawh_Hmong).Elem(),\n\t\t\"Palmyrene\":                          reflect.ValueOf(&unicode.Palmyrene).Elem(),\n\t\t\"Pattern_Syntax\":                     reflect.ValueOf(&unicode.Pattern_Syntax).Elem(),\n\t\t\"Pattern_White_Space\":                reflect.ValueOf(&unicode.Pattern_White_Space).Elem(),\n\t\t\"Pau_Cin_Hau\":                        reflect.ValueOf(&unicode.Pau_Cin_Hau).Elem(),\n\t\t\"Pc\":                                 reflect.ValueOf(&unicode.Pc).Elem(),\n\t\t\"Pd\":                                 reflect.ValueOf(&unicode.Pd).Elem(),\n\t\t\"Pe\":                                 reflect.ValueOf(&unicode.Pe).Elem(),\n\t\t\"Pf\":                                 reflect.ValueOf(&unicode.Pf).Elem(),\n\t\t\"Phags_Pa\":                           reflect.ValueOf(&unicode.Phags_Pa).Elem(),\n\t\t\"Phoenician\":                         reflect.ValueOf(&unicode.Phoenician).Elem(),\n\t\t\"Pi\":                                 reflect.ValueOf(&unicode.Pi).Elem(),\n\t\t\"Po\":                                 reflect.ValueOf(&unicode.Po).Elem(),\n\t\t\"Prepended_Concatenation_Mark\":       reflect.ValueOf(&unicode.Prepended_Concatenation_Mark).Elem(),\n\t\t\"PrintRanges\":                        reflect.ValueOf(&unicode.PrintRanges).Elem(),\n\t\t\"Properties\":                         reflect.ValueOf(&unicode.Properties).Elem(),\n\t\t\"Ps\":                                 reflect.ValueOf(&unicode.Ps).Elem(),\n\t\t\"Psalter_Pahlavi\":                    reflect.ValueOf(&unicode.Psalter_Pahlavi).Elem(),\n\t\t\"Punct\":                              reflect.ValueOf(&unicode.Punct).Elem(),\n\t\t\"Quotation_Mark\":                     reflect.ValueOf(&unicode.Quotation_Mark).Elem(),\n\t\t\"Radical\":                            reflect.ValueOf(&unicode.Radical).Elem(),\n\t\t\"Regional_Indicator\":                 reflect.ValueOf(&unicode.Regional_Indicator).Elem(),\n\t\t\"Rejang\":                             reflect.ValueOf(&unicode.Rejang).Elem(),\n\t\t\"ReplacementChar\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65533\", token.INT, 0)),\n\t\t\"Runic\":                              reflect.ValueOf(&unicode.Runic).Elem(),\n\t\t\"S\":                                  reflect.ValueOf(&unicode.S).Elem(),\n\t\t\"STerm\":                              reflect.ValueOf(&unicode.STerm).Elem(),\n\t\t\"Samaritan\":                          reflect.ValueOf(&unicode.Samaritan).Elem(),\n\t\t\"Saurashtra\":                         reflect.ValueOf(&unicode.Saurashtra).Elem(),\n\t\t\"Sc\":                                 reflect.ValueOf(&unicode.Sc).Elem(),\n\t\t\"Scripts\":                            reflect.ValueOf(&unicode.Scripts).Elem(),\n\t\t\"Sentence_Terminal\":                  reflect.ValueOf(&unicode.Sentence_Terminal).Elem(),\n\t\t\"Sharada\":                            reflect.ValueOf(&unicode.Sharada).Elem(),\n\t\t\"Shavian\":                            reflect.ValueOf(&unicode.Shavian).Elem(),\n\t\t\"Siddham\":                            reflect.ValueOf(&unicode.Siddham).Elem(),\n\t\t\"SignWriting\":                        reflect.ValueOf(&unicode.SignWriting).Elem(),\n\t\t\"SimpleFold\":                         reflect.ValueOf(unicode.SimpleFold),\n\t\t\"Sinhala\":                            reflect.ValueOf(&unicode.Sinhala).Elem(),\n\t\t\"Sk\":                                 reflect.ValueOf(&unicode.Sk).Elem(),\n\t\t\"Sm\":                                 reflect.ValueOf(&unicode.Sm).Elem(),\n\t\t\"So\":                                 reflect.ValueOf(&unicode.So).Elem(),\n\t\t\"Soft_Dotted\":                        reflect.ValueOf(&unicode.Soft_Dotted).Elem(),\n\t\t\"Sogdian\":                            reflect.ValueOf(&unicode.Sogdian).Elem(),\n\t\t\"Sora_Sompeng\":                       reflect.ValueOf(&unicode.Sora_Sompeng).Elem(),\n\t\t\"Soyombo\":                            reflect.ValueOf(&unicode.Soyombo).Elem(),\n\t\t\"Space\":                              reflect.ValueOf(&unicode.Space).Elem(),\n\t\t\"Sundanese\":                          reflect.ValueOf(&unicode.Sundanese).Elem(),\n\t\t\"Syloti_Nagri\":                       reflect.ValueOf(&unicode.Syloti_Nagri).Elem(),\n\t\t\"Symbol\":                             reflect.ValueOf(&unicode.Symbol).Elem(),\n\t\t\"Syriac\":                             reflect.ValueOf(&unicode.Syriac).Elem(),\n\t\t\"Tagalog\":                            reflect.ValueOf(&unicode.Tagalog).Elem(),\n\t\t\"Tagbanwa\":                           reflect.ValueOf(&unicode.Tagbanwa).Elem(),\n\t\t\"Tai_Le\":                             reflect.ValueOf(&unicode.Tai_Le).Elem(),\n\t\t\"Tai_Tham\":                           reflect.ValueOf(&unicode.Tai_Tham).Elem(),\n\t\t\"Tai_Viet\":                           reflect.ValueOf(&unicode.Tai_Viet).Elem(),\n\t\t\"Takri\":                              reflect.ValueOf(&unicode.Takri).Elem(),\n\t\t\"Tamil\":                              reflect.ValueOf(&unicode.Tamil).Elem(),\n\t\t\"Tangsa\":                             reflect.ValueOf(&unicode.Tangsa).Elem(),\n\t\t\"Tangut\":                             reflect.ValueOf(&unicode.Tangut).Elem(),\n\t\t\"Telugu\":                             reflect.ValueOf(&unicode.Telugu).Elem(),\n\t\t\"Terminal_Punctuation\":               reflect.ValueOf(&unicode.Terminal_Punctuation).Elem(),\n\t\t\"Thaana\":                             reflect.ValueOf(&unicode.Thaana).Elem(),\n\t\t\"Thai\":                               reflect.ValueOf(&unicode.Thai).Elem(),\n\t\t\"Tibetan\":                            reflect.ValueOf(&unicode.Tibetan).Elem(),\n\t\t\"Tifinagh\":                           reflect.ValueOf(&unicode.Tifinagh).Elem(),\n\t\t\"Tirhuta\":                            reflect.ValueOf(&unicode.Tirhuta).Elem(),\n\t\t\"Title\":                              reflect.ValueOf(&unicode.Title).Elem(),\n\t\t\"TitleCase\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"To\":                                 reflect.ValueOf(unicode.To),\n\t\t\"ToLower\":                            reflect.ValueOf(unicode.ToLower),\n\t\t\"ToTitle\":                            reflect.ValueOf(unicode.ToTitle),\n\t\t\"ToUpper\":                            reflect.ValueOf(unicode.ToUpper),\n\t\t\"Toto\":                               reflect.ValueOf(&unicode.Toto).Elem(),\n\t\t\"TurkishCase\":                        reflect.ValueOf(&unicode.TurkishCase).Elem(),\n\t\t\"Ugaritic\":                           reflect.ValueOf(&unicode.Ugaritic).Elem(),\n\t\t\"Unified_Ideograph\":                  reflect.ValueOf(&unicode.Unified_Ideograph).Elem(),\n\t\t\"Upper\":                              reflect.ValueOf(&unicode.Upper).Elem(),\n\t\t\"UpperCase\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"UpperLower\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1114112\", token.INT, 0)),\n\t\t\"Vai\":                                reflect.ValueOf(&unicode.Vai).Elem(),\n\t\t\"Variation_Selector\":                 reflect.ValueOf(&unicode.Variation_Selector).Elem(),\n\t\t\"Version\":                            reflect.ValueOf(constant.MakeFromLiteral(\"\\\"15.0.0\\\"\", token.STRING, 0)),\n\t\t\"Vithkuqi\":                           reflect.ValueOf(&unicode.Vithkuqi).Elem(),\n\t\t\"Wancho\":                             reflect.ValueOf(&unicode.Wancho).Elem(),\n\t\t\"Warang_Citi\":                        reflect.ValueOf(&unicode.Warang_Citi).Elem(),\n\t\t\"White_Space\":                        reflect.ValueOf(&unicode.White_Space).Elem(),\n\t\t\"Yezidi\":                             reflect.ValueOf(&unicode.Yezidi).Elem(),\n\t\t\"Yi\":                                 reflect.ValueOf(&unicode.Yi).Elem(),\n\t\t\"Z\":                                  reflect.ValueOf(&unicode.Z).Elem(),\n\t\t\"Zanabazar_Square\":                   reflect.ValueOf(&unicode.Zanabazar_Square).Elem(),\n\t\t\"Zl\":                                 reflect.ValueOf(&unicode.Zl).Elem(),\n\t\t\"Zp\":                                 reflect.ValueOf(&unicode.Zp).Elem(),\n\t\t\"Zs\":                                 reflect.ValueOf(&unicode.Zs).Elem(),\n\n\t\t// type definitions\n\t\t\"CaseRange\":   reflect.ValueOf((*unicode.CaseRange)(nil)),\n\t\t\"Range16\":     reflect.ValueOf((*unicode.Range16)(nil)),\n\t\t\"Range32\":     reflect.ValueOf((*unicode.Range32)(nil)),\n\t\t\"RangeTable\":  reflect.ValueOf((*unicode.RangeTable)(nil)),\n\t\t\"SpecialCase\": reflect.ValueOf((*unicode.SpecialCase)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_unicode_utf16.go",
    "content": "// Code generated by 'yaegi extract unicode/utf16'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"reflect\"\n\t\"unicode/utf16\"\n)\n\nfunc init() {\n\tSymbols[\"unicode/utf16/utf16\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AppendRune\":  reflect.ValueOf(utf16.AppendRune),\n\t\t\"Decode\":      reflect.ValueOf(utf16.Decode),\n\t\t\"DecodeRune\":  reflect.ValueOf(utf16.DecodeRune),\n\t\t\"Encode\":      reflect.ValueOf(utf16.Encode),\n\t\t\"EncodeRune\":  reflect.ValueOf(utf16.EncodeRune),\n\t\t\"IsSurrogate\": reflect.ValueOf(utf16.IsSurrogate),\n\t}\n}\n"
  },
  {
    "path": "stdlib/go1_22_unicode_utf8.go",
    "content": "// Code generated by 'yaegi extract unicode/utf8'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage stdlib\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"unicode/utf8\"\n)\n\nfunc init() {\n\tSymbols[\"unicode/utf8/utf8\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AppendRune\":             reflect.ValueOf(utf8.AppendRune),\n\t\t\"DecodeLastRune\":         reflect.ValueOf(utf8.DecodeLastRune),\n\t\t\"DecodeLastRuneInString\": reflect.ValueOf(utf8.DecodeLastRuneInString),\n\t\t\"DecodeRune\":             reflect.ValueOf(utf8.DecodeRune),\n\t\t\"DecodeRuneInString\":     reflect.ValueOf(utf8.DecodeRuneInString),\n\t\t\"EncodeRune\":             reflect.ValueOf(utf8.EncodeRune),\n\t\t\"FullRune\":               reflect.ValueOf(utf8.FullRune),\n\t\t\"FullRuneInString\":       reflect.ValueOf(utf8.FullRuneInString),\n\t\t\"MaxRune\":                reflect.ValueOf(constant.MakeFromLiteral(\"1114111\", token.INT, 0)),\n\t\t\"RuneCount\":              reflect.ValueOf(utf8.RuneCount),\n\t\t\"RuneCountInString\":      reflect.ValueOf(utf8.RuneCountInString),\n\t\t\"RuneError\":              reflect.ValueOf(constant.MakeFromLiteral(\"65533\", token.INT, 0)),\n\t\t\"RuneLen\":                reflect.ValueOf(utf8.RuneLen),\n\t\t\"RuneSelf\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RuneStart\":              reflect.ValueOf(utf8.RuneStart),\n\t\t\"UTFMax\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Valid\":                  reflect.ValueOf(utf8.Valid),\n\t\t\"ValidRune\":              reflect.ValueOf(utf8.ValidRune),\n\t\t\"ValidString\":            reflect.ValueOf(utf8.ValidString),\n\t}\n}\n"
  },
  {
    "path": "stdlib/maptypes.go",
    "content": "package stdlib\n\nimport (\n\t\"encoding\"\n\t\"encoding/json\"\n\t\"encoding/xml\"\n\t\"fmt\"\n\t\"log\"\n\t\"reflect\"\n)\n\nfunc init() {\n\tmt := []reflect.Type{\n\t\treflect.TypeOf((*fmt.Formatter)(nil)).Elem(),\n\t\treflect.TypeOf((*fmt.Stringer)(nil)).Elem(),\n\t}\n\n\tMapTypes[reflect.ValueOf(fmt.Errorf)] = mt\n\tMapTypes[reflect.ValueOf(fmt.Fprint)] = mt\n\tMapTypes[reflect.ValueOf(fmt.Fprintf)] = mt\n\tMapTypes[reflect.ValueOf(fmt.Fprintln)] = mt\n\tMapTypes[reflect.ValueOf(fmt.Print)] = mt\n\tMapTypes[reflect.ValueOf(fmt.Printf)] = mt\n\tMapTypes[reflect.ValueOf(fmt.Println)] = mt\n\tMapTypes[reflect.ValueOf(fmt.Sprint)] = mt\n\tMapTypes[reflect.ValueOf(fmt.Sprintf)] = mt\n\tMapTypes[reflect.ValueOf(fmt.Sprintln)] = mt\n\n\tMapTypes[reflect.ValueOf(log.Fatal)] = mt\n\tMapTypes[reflect.ValueOf(log.Fatalf)] = mt\n\tMapTypes[reflect.ValueOf(log.Fatalln)] = mt\n\tMapTypes[reflect.ValueOf(log.Panic)] = mt\n\tMapTypes[reflect.ValueOf(log.Panicf)] = mt\n\tMapTypes[reflect.ValueOf(log.Panicln)] = mt\n\n\tmt = []reflect.Type{reflect.TypeOf((*fmt.Scanner)(nil)).Elem()}\n\n\tMapTypes[reflect.ValueOf(fmt.Scan)] = mt\n\tMapTypes[reflect.ValueOf(fmt.Scanf)] = mt\n\tMapTypes[reflect.ValueOf(fmt.Scanln)] = mt\n\n\tMapTypes[reflect.ValueOf(json.Marshal)] = []reflect.Type{\n\t\treflect.TypeOf((*json.Marshaler)(nil)).Elem(),\n\t\treflect.TypeOf((*encoding.TextMarshaler)(nil)).Elem(),\n\t}\n\tMapTypes[reflect.ValueOf(json.Unmarshal)] = []reflect.Type{\n\t\treflect.TypeOf((*json.Unmarshaler)(nil)).Elem(),\n\t\treflect.TypeOf((*encoding.TextUnmarshaler)(nil)).Elem(),\n\t}\n\tMapTypes[reflect.ValueOf(xml.Marshal)] = []reflect.Type{\n\t\treflect.TypeOf((*xml.Marshaler)(nil)).Elem(),\n\t\treflect.TypeOf((*encoding.TextMarshaler)(nil)).Elem(),\n\t}\n\tMapTypes[reflect.ValueOf(xml.Unmarshal)] = []reflect.Type{\n\t\treflect.TypeOf((*xml.Unmarshaler)(nil)).Elem(),\n\t\treflect.TypeOf((*encoding.TextUnmarshaler)(nil)).Elem(),\n\t}\n}\n"
  },
  {
    "path": "stdlib/restricted.go",
    "content": "package stdlib\n\nimport (\n\t\"errors\"\n\t\"io\"\n\t\"log\"\n\t\"os\"\n\t\"strconv\"\n)\n\nvar errRestricted = errors.New(\"restricted\")\n\n// osExit invokes panic instead of exit.\nfunc osExit(code int) { panic(\"os.Exit(\" + strconv.Itoa(code) + \")\") }\n\n// osFindProcess returns os.FindProcess, except for self process.\nfunc osFindProcess(pid int) (*os.Process, error) {\n\tif pid == os.Getpid() {\n\t\treturn nil, errRestricted\n\t}\n\treturn os.FindProcess(pid)\n}\n\n// The following functions call Panic instead of Fatal to avoid exit.\nfunc logFatal(v ...interface{})            { log.Panic(v...) }\nfunc logFatalf(f string, v ...interface{}) { log.Panicf(f, v...) }\nfunc logFatalln(v ...interface{})          { log.Panicln(v...) }\n\ntype logLogger struct {\n\tl *log.Logger\n}\n\n// logNew Returns a wrapped logger.\nfunc logNew(out io.Writer, prefix string, flag int) *logLogger {\n\treturn &logLogger{log.New(out, prefix, flag)}\n}\n\n// The following methods call Panic instead of Fatal to avoid exit.\nfunc (l *logLogger) Fatal(v ...interface{})            { l.l.Panic(v...) }\nfunc (l *logLogger) Fatalf(f string, v ...interface{}) { l.l.Panicf(f, v...) }\nfunc (l *logLogger) Fatalln(v ...interface{})          { l.l.Panicln(v...) }\n\n// The following methods just forward to wrapped logger.\nfunc (l *logLogger) Flags() int                        { return l.l.Flags() }\nfunc (l *logLogger) Output(d int, s string) error      { return l.l.Output(d, s) }\nfunc (l *logLogger) Panic(v ...interface{})            { l.l.Panic(v...) }\nfunc (l *logLogger) Panicf(f string, v ...interface{}) { l.l.Panicf(f, v...) }\nfunc (l *logLogger) Panicln(v ...interface{})          { l.l.Panicln(v...) }\nfunc (l *logLogger) Prefix() string                    { return l.l.Prefix() }\nfunc (l *logLogger) Print(v ...interface{})            { l.l.Print(v...) }\nfunc (l *logLogger) Printf(f string, v ...interface{}) { l.l.Printf(f, v...) }\nfunc (l *logLogger) Println(v ...interface{})          { l.l.Println(v...) }\nfunc (l *logLogger) SetFlags(flag int)                 { l.l.SetFlags(flag) }\nfunc (l *logLogger) SetOutput(w io.Writer)             { l.l.SetOutput(w) }\nfunc (l *logLogger) Writer() io.Writer                 { return l.l.Writer() }\n"
  },
  {
    "path": "stdlib/stdlib-go1.22.go",
    "content": "//go:build go1.22\n\npackage stdlib\n\n//go:generate ../internal/cmd/extract/extract go/version math/rand/v2\n"
  },
  {
    "path": "stdlib/stdlib.go",
    "content": "//go:build go1.21\n\n// Package stdlib provides wrappers of standard library packages to be imported natively in Yaegi.\npackage stdlib\n\nimport \"reflect\"\n\n// Symbols variable stores the map of stdlib symbols per package.\nvar Symbols = map[string]map[string]reflect.Value{}\n\n// MapTypes variable contains a map of functions which have an interface{} as parameter but\n// do something special if the parameter implements a given interface.\nvar MapTypes = map[reflect.Value][]reflect.Type{}\n\nfunc init() {\n\tSymbols[\"github.com/traefik/yaegi/stdlib/stdlib\"] = map[string]reflect.Value{\n\t\t\"Symbols\": reflect.ValueOf(Symbols),\n\t}\n\tSymbols[\".\"] = map[string]reflect.Value{\n\t\t\"MapTypes\": reflect.ValueOf(MapTypes),\n\t}\n}\n\n// Provide access to go standard library (http://golang.org/pkg/)\n// go list std | grep -v internal | grep -v '\\.' | grep -v unsafe | grep -v syscall\n\n//go:generate ../internal/cmd/extract/extract archive/tar archive/zip\n//go:generate ../internal/cmd/extract/extract bufio bytes cmp\n//go:generate ../internal/cmd/extract/extract compress/bzip2 compress/flate compress/gzip compress/lzw compress/zlib\n//go:generate ../internal/cmd/extract/extract container/heap container/list container/ring\n//go:generate ../internal/cmd/extract/extract context crypto crypto/aes crypto/cipher crypto/des crypto/dsa crypto/ecdsa crypto/ecdh\n//go:generate ../internal/cmd/extract/extract crypto/ed25519 crypto/elliptic crypto/hmac crypto/md5 crypto/rand\n//go:generate ../internal/cmd/extract/extract crypto/rc4 crypto/rsa crypto/sha1 crypto/sha256 crypto/sha512\n//go:generate ../internal/cmd/extract/extract crypto/subtle crypto/tls crypto/x509 crypto/x509/pkix\n//go:generate ../internal/cmd/extract/extract database/sql database/sql/driver\n//go:generate ../internal/cmd/extract/extract debug/buildinfo debug/dwarf debug/elf debug/gosym debug/macho debug/pe debug/plan9obj\n//go:generate ../internal/cmd/extract/extract encoding encoding/ascii85 encoding/asn1 encoding/base32\n//go:generate ../internal/cmd/extract/extract encoding/base64 encoding/binary encoding/csv encoding/gob\n//go:generate ../internal/cmd/extract/extract encoding/hex encoding/json encoding/pem encoding/xml\n//go:generate ../internal/cmd/extract/extract errors expvar flag fmt\n//go:generate ../internal/cmd/extract/extract go/ast go/build go/build/constraint go/constant go/doc go/doc/comment go/format\n//go:generate ../internal/cmd/extract/extract go/importer go/parser go/printer go/scanner go/token go/types\n//go:generate ../internal/cmd/extract/extract hash hash/adler32 hash/crc32 hash/crc64 hash/fnv hash/maphash\n//go:generate ../internal/cmd/extract/extract html html/template\n//go:generate ../internal/cmd/extract/extract image image/color image/color/palette\n//go:generate ../internal/cmd/extract/extract image/draw image/gif image/jpeg image/png index/suffixarray\n//go:generate ../internal/cmd/extract/extract io io/fs io/ioutil log log/syslog log/slog\n//go:generate ../internal/cmd/extract/extract maps math math/big math/bits math/cmplx math/rand\n//go:generate ../internal/cmd/extract/extract mime mime/multipart mime/quotedprintable\n//go:generate ../internal/cmd/extract/extract net net/http net/http/cgi net/http/cookiejar net/http/fcgi\n//go:generate ../internal/cmd/extract/extract net/http/httptest net/http/httptrace net/http/httputil net/http/pprof\n//go:generate ../internal/cmd/extract/extract net/mail net/netip net/rpc net/rpc/jsonrpc net/smtp net/textproto net/url\n//go:generate ../internal/cmd/extract/extract os os/signal os/user\n//go:generate ../internal/cmd/extract/extract path path/filepath reflect regexp regexp/syntax\n//go:generate ../internal/cmd/extract/extract runtime runtime/debug runtime/metrics runtime/pprof runtime/trace\n//go:generate ../internal/cmd/extract/extract slices sort strconv strings sync sync/atomic\n//go:generate ../internal/cmd/extract/extract testing testing/fstest testing/iotest testing/quick testing/slogtest\n//go:generate ../internal/cmd/extract/extract text/scanner text/tabwriter text/template text/template/parse\n//go:generate ../internal/cmd/extract/extract time unicode unicode/utf16 unicode/utf8\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_aix_ppc64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_BYPASS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_CCITT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_ECMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_INTF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_ISO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_NDD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_NETWARE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_NS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_RIF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SNA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_802_3\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_802_5\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Accept\":                        reflect.ValueOf(syscall.Accept),\n\t\t\"Access\":                        reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                          reflect.ValueOf(syscall.Acct),\n\t\t\"B0\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B1200\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1800\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2400\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B300\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B38400\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4800\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B9600\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BRKINT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                          reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":             reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":           reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIOCGIFCONF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1072666332\", token.INT, 0)),\n\t\t\"CSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSMAP_DIR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"\\\"/usr/lib/nls/csmap/\\\"\", token.STRING, 0)),\n\t\t\"CSTART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                         reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                         reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                         reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                        reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                      reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                         reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                   reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                       reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                     reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                       reflect.ValueOf(syscall.Connect),\n\t\t\"Dup\":                           reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                          reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                         reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                        reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                    reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                 reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                  reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                        reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                      reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADF\":                         reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                       reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBUSY\":                         reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                     reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                        reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"ECHOE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"ECHONL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"ECHRNG\":                        reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECH_ICMPID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECLONEME\":                      reflect.ValueOf(syscall.ECLONEME),\n\t\t\"ECONNABORTED\":                  reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                  reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                    reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"ECORRUPT\":                      reflect.ValueOf(syscall.ECORRUPT),\n\t\t\"EDEADLK\":                       reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDREQ\":                   reflect.ValueOf(syscall.EDESTADDREQ),\n\t\t\"EDESTADDRREQ\":                  reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDIST\":                         reflect.ValueOf(syscall.EDIST),\n\t\t\"EDOM\":                          reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                        reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                        reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                        reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                         reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFORMAT\":                       reflect.ValueOf(syscall.EFORMAT),\n\t\t\"EHOSTDOWN\":                     reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                  reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                         reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                        reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                   reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                         reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                        reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                           reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                       reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                        reflect.ValueOf(syscall.EISDIR),\n\t\t\"EL2HLT\":                        reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                      reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                        reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                        reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELNRNG\":                        reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                         reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIA\":                        reflect.ValueOf(syscall.EMEDIA),\n\t\t\"EMFILE\":                        reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                        reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                      reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                     reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                  reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENETDOWN\":                      reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                     reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                   reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                        reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                       reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                       reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCONNECT\":                    reflect.ValueOf(syscall.ENOCONNECT),\n\t\t\"ENOCSI\":                        reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                       reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                        reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                        reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                       reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                        reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                       reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                        reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                        reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                   reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                        reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                         reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                        reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                        reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                       reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                      reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                       reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                     reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTREADY\":                     reflect.ValueOf(syscall.ENOTREADY),\n\t\t\"ENOTRECOVERABLE\":               reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTRUST\":                      reflect.ValueOf(syscall.ENOTRUST),\n\t\t\"ENOTSOCK\":                      reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                       reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                        reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                         reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                    reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                     reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                    reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                         reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                  reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                         reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                      reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROTO\":                        reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":               reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                    reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                        reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                       reflect.ValueOf(syscall.EREMOTE),\n\t\t\"ERESTART\":                      reflect.ValueOf(syscall.ERESTART),\n\t\t\"EROFS\":                         reflect.ValueOf(syscall.EROFS),\n\t\t\"ESAD\":                          reflect.ValueOf(syscall.ESAD),\n\t\t\"ESHUTDOWN\":                     reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":               reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESOFT\":                         reflect.ValueOf(syscall.ESOFT),\n\t\t\"ESPIPE\":                        reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                         reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                        reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESYSERROR\":                     reflect.ValueOf(syscall.ESYSERROR),\n\t\t\"ETHERNET_CSMACD\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETIME\":                         reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                     reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                  reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                       reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUNATCH\":                       reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                        reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVENP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                   reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EWRPROTECT\":                    reflect.ValueOf(syscall.EWRPROTECT),\n\t\t\"EXCONTINUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EXDEV\":                         reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXDLOK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EXIO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EXPGIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EXRESUME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EXRETURN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EXSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EXTA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTRAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EYEC_RTENTRYA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2698347105741992513\", token.INT, 0)),\n\t\t\"EYEC_RTENTRYF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2698347105741992518\", token.INT, 0)),\n\t\t\"E_ACC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Environ\":                       reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"FLUSHBAND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"FLUSHLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"FLUSHO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"FLUSHR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FLUSHRW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"FLUSHW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_CLOSEM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUP2FD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_DUPFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_GETFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_GETLK64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_GETOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_OK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_SETLK64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_SETLKW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_TEST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_TSTLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_ULOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_WRLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Faccessat\":                     reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fchdir\":                        reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                        reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                      reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                        reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                      reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                    reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"ForkLock\":                      reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                     reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                         reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                       reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                         reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                     reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Getcwd\":                        reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getegid\":                       reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                        reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                       reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                        reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                     reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getkerninfo\":                   reflect.ValueOf(syscall.Getkerninfo),\n\t\t\"Getpagesize\":                   reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                   reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpid\":                        reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                       reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                   reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                     reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                     reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                   reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptInt\":                 reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                  reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                        reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                         reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"ICMP6_SEC_SEND_DEL\":            reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"ICMP6_SEC_SEND_GET\":            reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"ICMP6_SEC_SEND_SET\":            reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"ICMP6_SEC_SEND_SET_CGA_ADDR\":   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"ICRNL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFA_FIRSTALIAS\":                reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFA_ROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_64BIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IFF_ALLCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_BPF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"IFF_BRIDGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                reflect.ValueOf(constant.MakeFromLiteral(\"527442\", token.INT, 0)),\n\t\t\"IFF_CHECKSUM_OFFLOAD\":          reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"IFF_D1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_D2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_D3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_D4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DEVHEALTH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_DO_HW_LOOPBACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_GROUP_ROUTING\":             reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IFF_IFBUFMGT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOECHO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_PSEG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SNAP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_TCP_DISABLE_CKSUM\":         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IFF_TCP_NOCKSUM\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IFF_UP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VIPA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFO_FLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_1822\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CLUSTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_DS3\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FCS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_GIFTUNNEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":               reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":               reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_RS232\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_SONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_T1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_V35\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_VIPA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"INLCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_USE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_BIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":               reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":              reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GIF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_LOCAL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_QOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":               reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_ADDR_PREFERENCES\":         reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_AIXRAWSOCKET\":             reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_FLOWLABEL\":       reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_PRIFLOW\":         reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_PRIORITY\":        reflect.ValueOf(constant.MakeFromLiteral(\"251658240\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_SRFLAG\":          reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_VERSION\":         reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":              reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MIPDSTOPTS\":               reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_NOPROBE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_PKTOPTIONS\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_10\":              reflect.ValueOf(constant.MakeFromLiteral(\"167772160\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_11\":              reflect.ValueOf(constant.MakeFromLiteral(\"184549376\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_12\":              reflect.ValueOf(constant.MakeFromLiteral(\"201326592\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_13\":              reflect.ValueOf(constant.MakeFromLiteral(\"218103808\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_14\":              reflect.ValueOf(constant.MakeFromLiteral(\"234881024\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_15\":              reflect.ValueOf(constant.MakeFromLiteral(\"251658240\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_8\":               reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_9\":               reflect.ValueOf(constant.MakeFromLiteral(\"150994944\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_BULK\":            reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_CONTROL\":         reflect.ValueOf(constant.MakeFromLiteral(\"117440512\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_FILLER\":          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_INTERACTIVE\":     reflect.ValueOf(constant.MakeFromLiteral(\"100663296\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_RESERVED1\":       reflect.ValueOf(constant.MakeFromLiteral(\"50331648\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_RESERVED2\":       reflect.ValueOf(constant.MakeFromLiteral(\"83886080\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_UNATTENDED\":      reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_UNCHARACTERIZED\": reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":              reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":             reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":              reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_RECVIF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":              reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVSRCRT\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":             reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_2\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_SENDIF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_SRFLAG_LOOSE\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SRFLAG_STRICT\":            reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_TOKEN_LENGTH\":             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":              reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1610612736\", token.INT, 0)),\n\t\t\"IP_ADDRFORM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":      reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IP_BROADCAST_IF\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_CACHE_LINE_SIZE\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DHCPMODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_DONTFRAG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":     reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_FINDPMTU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_INC_MEMBERSHIPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_INIT_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_HOPS\":             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":               reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_OPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PMTUAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVIFINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RECVINTERFACE\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_RECVMACHDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_SOURCE_FILTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IP_TOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":             reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IP_UNICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ISIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXOFF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"I_FLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536892165\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":               reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"LNOFLSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"LOCK_EX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                        reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                          reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                        reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                         reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DONTNEED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_SPACEAVAIL\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_FILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"MAP_VARIABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_ANY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_ARGEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_BAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_COMPAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_EOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_HIPRI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_MAXIOVLEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_MPEG2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_NONBLOCK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_OOB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_EINTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_PER_SEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1000\", token.INT, 0)),\n\t\t\"MS_SYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"Mkdir\":                         reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                       reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mknodat\":                       reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mmap\":                          reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                        reflect.ValueOf(syscall.Munmap),\n\t\t\"NOFLSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"NOFLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NsecToTimespec\":                reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                 reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONLCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONOEOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"OPOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"O_APPEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_CIO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_CIOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34359738368\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"O_CREAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_DEFER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_DELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_DSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_EFSOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17179869184\", token.INT, 0)),\n\t\t\"O_EFSON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"O_EXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"O_NDELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOCACHE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_NSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"O_RDONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_RSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_SEARCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_SNAPSHOT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_SYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_TRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_TTY_INIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_WRONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                          reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                        reflect.ValueOf(syscall.Openat),\n\t\t\"PARENB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PAREXT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PARMRK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_64BIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_ADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_ARGEXT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"PR_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_CONNREQUIRED\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_FASTHZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_INP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PR_INTRLEVEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PR_MLS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PR_MLS_1_LABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PR_NOEOR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PR_RIGHTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_SLOWHZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_WANTRCVD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_ATTACH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PT_CLEAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PT_COMMAND_MAX\":                reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"PT_CONTINUE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PT_DETACH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PT_GET_UKEY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PT_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PT_LDINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PT_LDXINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PT_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PT_NEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PT_QUERY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PT_READ_BLOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PT_READ_D\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PT_READ_FPR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PT_READ_GPR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PT_READ_I\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PT_REATT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PT_REGSET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PT_SET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PT_STEP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PT_TRACE_ME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_WATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"PT_WRITE_BLOCK\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PT_WRITE_D\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PT_WRITE_FPR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PT_WRITE_GPR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PT_WRITE_I\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ParseDirent\":                   reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseSocketControlMessage\":     reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":               reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1023\", token.INT, 0)),\n\t\t\"Pipe\":                          reflect.ValueOf(syscall.Pipe),\n\t\t\"Pread\":                         reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                        reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DOWNSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTA_DST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_ACTIVE_DGD\":                reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_BCE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_BUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_CLONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_CLONED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FREE_IN_PROG\":              reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PERMANENT6\":                reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_SMALLMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_STOPSRCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_UNREACHABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_UP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_EXPIRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_GET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_GETNEXT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTLOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_SAMEADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_SET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_VERSION_GR\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_VERSION_GR_COMPAT\":         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_VERSION_POLICY\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_VERSION_POLICY_EXT\":        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_VERSION_POLICY_PRFN\":       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                          reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                    reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                      reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                      reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                       reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                        reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                      reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                         reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_RIGHTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SHUT_RD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                       reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGAIO\":                        reflect.ValueOf(syscall.SIGAIO),\n\t\t\"SIGALRM\":                       reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGALRM1\":                      reflect.ValueOf(syscall.SIGALRM1),\n\t\t\"SIGBUS\":                        reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCAPI\":                       reflect.ValueOf(syscall.SIGCAPI),\n\t\t\"SIGCHLD\":                       reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                        reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                       reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGCPUFAIL\":                    reflect.ValueOf(syscall.SIGCPUFAIL),\n\t\t\"SIGDANGER\":                     reflect.ValueOf(syscall.SIGDANGER),\n\t\t\"SIGEMT\":                        reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                        reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGGRANT\":                      reflect.ValueOf(syscall.SIGGRANT),\n\t\t\"SIGHUP\":                        reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                        reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                        reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                         reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOINT\":                      reflect.ValueOf(syscall.SIGIOINT),\n\t\t\"SIGIOT\":                        reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKAP\":                        reflect.ValueOf(syscall.SIGKAP),\n\t\t\"SIGKILL\":                       reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGLOST\":                       reflect.ValueOf(syscall.SIGLOST),\n\t\t\"SIGMAX\":                        reflect.ValueOf(syscall.SIGMAX),\n\t\t\"SIGMAX32\":                      reflect.ValueOf(syscall.SIGMAX32),\n\t\t\"SIGMAX64\":                      reflect.ValueOf(syscall.SIGMAX64),\n\t\t\"SIGMIGRATE\":                    reflect.ValueOf(syscall.SIGMIGRATE),\n\t\t\"SIGMSG\":                        reflect.ValueOf(syscall.SIGMSG),\n\t\t\"SIGPIPE\":                       reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                       reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPRE\":                        reflect.ValueOf(syscall.SIGPRE),\n\t\t\"SIGPROF\":                       reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPTY\":                        reflect.ValueOf(syscall.SIGPTY),\n\t\t\"SIGPWR\":                        reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUEUE_MAX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SIGQUIT\":                       reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGRECONFIG\":                   reflect.ValueOf(syscall.SIGRECONFIG),\n\t\t\"SIGRETRACT\":                    reflect.ValueOf(syscall.SIGRETRACT),\n\t\t\"SIGSAK\":                        reflect.ValueOf(syscall.SIGSAK),\n\t\t\"SIGSEGV\":                       reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSOUND\":                      reflect.ValueOf(syscall.SIGSOUND),\n\t\t\"SIGSTOP\":                       reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                        reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGSYSERROR\":                   reflect.ValueOf(syscall.SIGSYSERROR),\n\t\t\"SIGTALRM\":                      reflect.ValueOf(syscall.SIGTALRM),\n\t\t\"SIGTERM\":                       reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                       reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                       reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                       reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                       reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                        reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                       reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                       reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVIRT\":                       reflect.ValueOf(syscall.SIGVIRT),\n\t\t\"SIGVTALRM\":                     reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWAITING\":                    reflect.ValueOf(syscall.SIGWAITING),\n\t\t\"SIGWINCH\":                      reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                       reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                       reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDIFVIPA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"536897858\", token.INT, 0)),\n\t\t\"SIOCADDMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2147194512\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359567\", token.INT, 0)),\n\t\t\"SIOCADDNETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2144835241\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2143784438\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2143262438\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2142476000\", token.INT, 0)),\n\t\t\"SIOCDELIFVIPA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"536897859\", token.INT, 0)),\n\t\t\"SIOCDELMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2147194511\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359566\", token.INT, 0)),\n\t\t\"SIOCDELPMTU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2144833526\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2143784437\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2144835303\", token.INT, 0)),\n\t\t\"SIOCDNETOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073649280\", token.INT, 0)),\n\t\t\"SIOCDX25XLATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2144835227\", token.INT, 0)),\n\t\t\"SIOCFIFADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2145359469\", token.INT, 0)),\n\t\t\"SIOCGARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-1068734170\", token.INT, 0)),\n\t\t\"SIOCGETMTUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536897903\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1072401100\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1072401101\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1071093471\", token.INT, 0)),\n\t\t\"SIOCGIFADDRS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"536897932\", token.INT, 0)),\n\t\t\"SIOCGIFBAUDRATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1071093395\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1071093469\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1072666299\", token.INT, 0)),\n\t\t\"SIOCGIFCONFGLOB\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1072666224\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1071093470\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071093487\", token.INT, 0)),\n\t\t\"SIOCGIFGIDLIST\":                reflect.ValueOf(constant.MakeFromLiteral(\"536897896\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1068209771\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1071093481\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071093418\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1071093467\", token.INT, 0)),\n\t\t\"SIOCGIFOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1071093462\", token.INT, 0)),\n\t\t\"SIOCGISNO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1071093397\", token.INT, 0)),\n\t\t\"SIOCGLOADF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1073452670\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGNETOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073649317\", token.INT, 0)),\n\t\t\"SIOCGNETOPT1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617663\", token.INT, 0)),\n\t\t\"SIOCGNMTUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536897902\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGSIZIFCONF\":                reflect.ValueOf(constant.MakeFromLiteral(\"1074030954\", token.INT, 0)),\n\t\t\"SIOCGSRCFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1072142027\", token.INT, 0)),\n\t\t\"SIOCGTUNEPHASE\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1073452662\", token.INT, 0)),\n\t\t\"SIOCGX25XLATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1071093404\", token.INT, 0)),\n\t\t\"SIOCIFATTACH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359513\", token.INT, 0)),\n\t\t\"SIOCIFDETACH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359514\", token.INT, 0)),\n\t\t\"SIOCIFGETPKEY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2145359515\", token.INT, 0)),\n\t\t\"SIOCIF_ATM_DARP\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2145359491\", token.INT, 0)),\n\t\t\"SIOCIF_ATM_DUMPARP\":            reflect.ValueOf(constant.MakeFromLiteral(\"-2145359493\", token.INT, 0)),\n\t\t\"SIOCIF_ATM_GARP\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2145359490\", token.INT, 0)),\n\t\t\"SIOCIF_ATM_IDLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2145359494\", token.INT, 0)),\n\t\t\"SIOCIF_ATM_SARP\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2145359489\", token.INT, 0)),\n\t\t\"SIOCIF_ATM_SNMPARP\":            reflect.ValueOf(constant.MakeFromLiteral(\"-2145359495\", token.INT, 0)),\n\t\t\"SIOCIF_ATM_SVC\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2145359492\", token.INT, 0)),\n\t\t\"SIOCIF_ATM_UBR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2145359496\", token.INT, 0)),\n\t\t\"SIOCIF_DEVHEALTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"-2147194476\", token.INT, 0)),\n\t\t\"SIOCIF_IB_ARP_INCOMP\":          reflect.ValueOf(constant.MakeFromLiteral(\"-2145359479\", token.INT, 0)),\n\t\t\"SIOCIF_IB_ARP_TIMER\":           reflect.ValueOf(constant.MakeFromLiteral(\"-2145359480\", token.INT, 0)),\n\t\t\"SIOCIF_IB_CLEAR_PINFO\":         reflect.ValueOf(constant.MakeFromLiteral(\"-1071617647\", token.INT, 0)),\n\t\t\"SIOCIF_IB_DEL_ARP\":             reflect.ValueOf(constant.MakeFromLiteral(\"-2145359487\", token.INT, 0)),\n\t\t\"SIOCIF_IB_DEL_PINFO\":           reflect.ValueOf(constant.MakeFromLiteral(\"-1071617648\", token.INT, 0)),\n\t\t\"SIOCIF_IB_DUMP_ARP\":            reflect.ValueOf(constant.MakeFromLiteral(\"-2145359488\", token.INT, 0)),\n\t\t\"SIOCIF_IB_GET_ARP\":             reflect.ValueOf(constant.MakeFromLiteral(\"-2145359486\", token.INT, 0)),\n\t\t\"SIOCIF_IB_GET_INFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"-1065850485\", token.INT, 0)),\n\t\t\"SIOCIF_IB_GET_STATS\":           reflect.ValueOf(constant.MakeFromLiteral(\"-1065850482\", token.INT, 0)),\n\t\t\"SIOCIF_IB_NOTIFY_ADDR_REM\":     reflect.ValueOf(constant.MakeFromLiteral(\"-1065850474\", token.INT, 0)),\n\t\t\"SIOCIF_IB_RESET_STATS\":         reflect.ValueOf(constant.MakeFromLiteral(\"-1065850481\", token.INT, 0)),\n\t\t\"SIOCIF_IB_RESIZE_CQ\":           reflect.ValueOf(constant.MakeFromLiteral(\"-2145359481\", token.INT, 0)),\n\t\t\"SIOCIF_IB_SET_ARP\":             reflect.ValueOf(constant.MakeFromLiteral(\"-2145359485\", token.INT, 0)),\n\t\t\"SIOCIF_IB_SET_PKEY\":            reflect.ValueOf(constant.MakeFromLiteral(\"-2145359484\", token.INT, 0)),\n\t\t\"SIOCIF_IB_SET_PORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"-2145359483\", token.INT, 0)),\n\t\t\"SIOCIF_IB_SET_QKEY\":            reflect.ValueOf(constant.MakeFromLiteral(\"-2145359478\", token.INT, 0)),\n\t\t\"SIOCIF_IB_SET_QSIZE\":           reflect.ValueOf(constant.MakeFromLiteral(\"-2145359482\", token.INT, 0)),\n\t\t\"SIOCLISTIFVIPA\":                reflect.ValueOf(constant.MakeFromLiteral(\"536897860\", token.INT, 0)),\n\t\t\"SIOCSARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2142476002\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359552\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2144835316\", token.INT, 0)),\n\t\t\"SIOCSIFADDRORI\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2145097331\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2144835309\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2144835314\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2144835312\", token.INT, 0)),\n\t\t\"SIOCSIFGIDLIST\":                reflect.ValueOf(constant.MakeFromLiteral(\"536897897\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2144835304\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2144835240\", token.INT, 0)),\n\t\t\"SIOCSIFNETDUMP\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2144835300\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2144835306\", token.INT, 0)),\n\t\t\"SIOCSIFOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2144835287\", token.INT, 0)),\n\t\t\"SIOCSIFSUBCHAN\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2144835301\", token.INT, 0)),\n\t\t\"SIOCSISNO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2144835220\", token.INT, 0)),\n\t\t\"SIOCSLOADF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1073452669\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359554\", token.INT, 0)),\n\t\t\"SIOCSNETOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2147391142\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359560\", token.INT, 0)),\n\t\t\"SIOCSX25XLATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2144835229\", token.INT, 0)),\n\t\t\"SOCK_CONN_DGRAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_AUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_CKSUMRECV\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_KERNACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_LINGER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_NOMULTIPATH\":                reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_NOREUSEADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"SO_TYPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_USE_IFBUFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"S_BANDURG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_EMODFMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1006632960\", token.INT, 0)),\n\t\t\"S_ENFMT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ERROR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_HANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_HIPRI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_ICRYPTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"S_IEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFJOURNAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"S_IFLNK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMPX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8704\", token.INT, 0)),\n\t\t\"S_IFMT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFPDIR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"S_IFPSDIR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"S_IFPSSDIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"201326592\", token.INT, 0)),\n\t\t\"S_IFREG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFSYSEA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"805306368\", token.INT, 0)),\n\t\t\"S_INPUT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IREAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_ITCB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"S_ITP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"S_IWGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXACL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"S_IXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"S_IXGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXINTERFACE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"S_IXMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"S_IXOTH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_MSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_OUTPUT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_RDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_RDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_RESERVED1\":                   reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"S_RESERVED2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"S_RESERVED3\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"S_RESERVED4\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"S_RESFMT1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"S_RESFMT10\":                    reflect.ValueOf(constant.MakeFromLiteral(\"872415232\", token.INT, 0)),\n\t\t\"S_RESFMT11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"939524096\", token.INT, 0)),\n\t\t\"S_RESFMT12\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1006632960\", token.INT, 0)),\n\t\t\"S_RESFMT2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"335544320\", token.INT, 0)),\n\t\t\"S_RESFMT3\":                     reflect.ValueOf(constant.MakeFromLiteral(\"402653184\", token.INT, 0)),\n\t\t\"S_RESFMT4\":                     reflect.ValueOf(constant.MakeFromLiteral(\"469762048\", token.INT, 0)),\n\t\t\"S_RESFMT5\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"S_RESFMT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"603979776\", token.INT, 0)),\n\t\t\"S_RESFMT7\":                     reflect.ValueOf(constant.MakeFromLiteral(\"671088640\", token.INT, 0)),\n\t\t\"S_RESFMT8\":                     reflect.ValueOf(constant.MakeFromLiteral(\"738197504\", token.INT, 0)),\n\t\t\"S_WRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_WRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                          reflect.ValueOf(syscall.Seek),\n\t\t\"Sendfile\":                      reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                       reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                      reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                        reflect.ValueOf(syscall.Sendto),\n\t\t\"SetNonblock\":                   reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                       reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                        reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                       reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                        reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                     reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setpgid\":                       reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                   reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                      reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                      reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                     reflect.ValueOf(syscall.Setrlimit),\n\t\t\"SetsockoptByte\":                reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":        reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":              reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":            reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":           reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                 reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":              reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":              reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":             reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"SizeofCmsghdr\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":             reflect.ValueOf(constant.MakeFromLiteral(\"1028\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":           reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":            reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":           reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                        reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":             reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                    reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                          reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                        reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                        reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                         reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                        reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                 reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":               reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                       reflect.ValueOf(syscall.Symlink),\n\t\t\"TCIFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_24DAYS_WORTH_OF_SLOWTICKS\": reflect.ValueOf(constant.MakeFromLiteral(\"4147200\", token.INT, 0)),\n\t\t\"TCP_ACLADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"TCP_ACLBIND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"TCP_ACLCLEAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"TCP_ACLDEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"TCP_ACLDENY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_ACLFLUSH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"TCP_ACLGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_ACLLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"TCP_ACLSUBNET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_ACLUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CWND_DF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_CWND_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_DELAY_ACK_FIN\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_DELAY_ACK_SYN\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_FASTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16844810\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_LSPRIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"TCP_LUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXDF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"TCP_MAXIF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAXWINDOWSCALE\":            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MSS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1460\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NODELAYACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_NOREDUCE_CWND_EXIT_FRXMT\":  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"TCP_NOREDUCE_CWND_IN_FRXMT\":    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_NOTENTER_SSTART\":           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_OPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"TCP_RFC1323\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_SETPRIV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"TCP_STDURG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_TIMESTAMP_OPTLEN\":          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_UNSETPRIV\":                 reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359906\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359824\", token.INT, 0)),\n\t\t\"TIOCGETC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074164754\", token.INT, 0)),\n\t\t\"TIOCGETD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074033664\", token.INT, 0)),\n\t\t\"TIOCGETP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074164744\", token.INT, 0)),\n\t\t\"TIOCGLTC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074164852\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGSID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074033736\", token.INT, 0)),\n\t\t\"TIOCGSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCHPCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900610\", token.INT, 0)),\n\t\t\"TIOCLBIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359934\", token.INT, 0)),\n\t\t\"TIOCLBIS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359935\", token.INT, 0)),\n\t\t\"TIOCLGET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074033788\", token.INT, 0)),\n\t\t\"TIOCLSET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359933\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359915\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359916\", token.INT, 0)),\n\t\t\"TIOCMGET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359908\", token.INT, 0)),\n\t\t\"TIOCMODG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074033667\", token.INT, 0)),\n\t\t\"TIOCMODS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359812\", token.INT, 0)),\n\t\t\"TIOCMSET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359917\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359920\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359913\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562490897\", token.INT, 0)),\n\t\t\"TIOCSETD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359809\", token.INT, 0)),\n\t\t\"TIOCSETN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562490890\", token.INT, 0)),\n\t\t\"TIOCSETP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562490889\", token.INT, 0)),\n\t\t\"TIOCSLTC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562490997\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359926\", token.INT, 0)),\n\t\t\"TIOCSSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562622055\", token.INT, 0)),\n\t\t\"TIOCSTART\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562163314\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562622055\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359910\", token.INT, 0)),\n\t\t\"TOSTOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                 reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                      reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                         reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                         reflect.ValueOf(syscall.Uname),\n\t\t\"UnixRights\":                    reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                        reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                      reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unsetenv\":                      reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                        reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                    reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCRD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VDSUSP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VEOF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VEOL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VERASE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VQUIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VSTART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VSTOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VSUSP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VT0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"VTDELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"VTDLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"VTIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"WPARSTART\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WPARSTOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WPARTTYNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Global\\\"\", token.STRING, 0)),\n\t\t\"Wait4\":                         reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                         reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid64_t\":             reflect.ValueOf((*syscall.Fsid64_t)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfMsgHdr\":             reflect.ValueOf((*syscall.IfMsgHdr)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":  reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":     reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"StTimespec_t\":         reflect.ValueOf((*syscall.StTimespec_t)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timeval32\":            reflect.ValueOf((*syscall.Timeval32)(nil)),\n\t\t\"Timezone\":             reflect.ValueOf((*syscall.Timezone)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_android_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22 && !linux\n// +build go1.21,!go1.22,!linux\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_PHY\":            reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPOLL_NONBLOCK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Ioperm\":                           reflect.ValueOf(syscall.Ioperm),\n\t\t\"Iopl\":                             reflect.ValueOf(syscall.Iopl),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_32BIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETFPXREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETFPXREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SINGLEBLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_SYSEMU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PTRACE_SYSEMU_SINGLESTEP\":         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_BDFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_BREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_CHOWN32\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_FADVISE64_64\":                 reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FCHOWN32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FCNTL64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_FSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_FSTATAT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_FTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE64\":                  reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_GETEGID32\":                    reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETEUID32\":                    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_GETRESGID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_GETRESUID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETUID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_GET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_GTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_IDLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPERM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_IOPL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_IPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_LCHOWN32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_LOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_LSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_MADVISE1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_MMAP2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_MODIFY_LDT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_MPX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_NICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_OLDFSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_OLDLSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_OLDOLDUNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_OLDSTAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_OLDUNAME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_PROF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_READDIR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_SENDFILE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_SETFSGID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_SETFSUID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SETGID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SETREGID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_SETRESGID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETRESUID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_SETREUID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETUID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_SGETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_SIGNAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_SOCKETCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_SSETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_STAT64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_STIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_STTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_TIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_UGETRLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_ULIMIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_VM86\":                         reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_VM86OLD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_VSERVER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_WAITPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS__LLSEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS__NEWSELECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074287829\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074287830\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_android_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22 && !linux\n// +build go1.21,!go1.22,!linux\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_PHY\":            reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPOLL_NONBLOCK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Ioperm\":                           reflect.ValueOf(syscall.Ioperm),\n\t\t\"Iopl\":                             reflect.ValueOf(syscall.Iopl),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_32BIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ARCH_PRCTL\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETFPXREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETFPXREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SINGLEBLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_SYSEMU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PTRACE_SYSEMU_SINGLESTEP\":         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_ARCH_PRCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL_OLD\":                reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT_OLD\":               reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_GET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_IOPERM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_IOPL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_MODIFY_LDT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_NEWFSTATAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_SECURITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_SEMTIMEDOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_SET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_TIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_TUXCALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_VSERVER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812117\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812118\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_android_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22 && !linux\n// +build go1.21,!go1.22,!linux\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_PHY\":            reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELF_NGREG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ELF_PRARGSZ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPOLL_NONBLOCK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_CLEAR_SECCOMP_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SECCOMP_FILTER_EVENT\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SECCOMP_FILTER_SYSCALL\":        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETCRUNCHREGS\":             reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETHBPREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETVFPREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PTRACE_GETWMMXREGS\":               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SETCRUNCHREGS\":             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETHBPREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETVFPREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PTRACE_SETWMMXREGS\":               reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PTRACE_SET_SYSCALL\":               reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_DATA_ADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65540\", token.INT, 0)),\n\t\t\"PT_TEXT_ADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PT_TEXT_END_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65544\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_ARM_FADVISE64_64\":             reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_ARM_SYNC_FILE_RANGE\":          reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_BDFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_CHOWN32\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FCHOWN32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FCNTL64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_FSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_FSTATAT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE64\":                  reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_GETEGID32\":                    reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETEUID32\":                    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_GETRESGID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_GETRESUID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETUID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_IPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_LCHOWN32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_LSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_MMAP2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_NICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_OABI_SYSCALL_BASE\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_IOBASE\":             reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_READ\":               reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_WRITE\":              reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"359\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"377\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_READDIR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_RECV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_SEMTIMEDOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_SEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_SENDFILE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"374\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_SETFSGID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_SETFSUID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SETGID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"375\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SETREGID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_SETRESGID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETRESUID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_SETREUID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETUID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_SOCKETCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_STAT64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_STIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"373\", token.INT, 0)),\n\t\t\"SYS_SYSCALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_SYSCALL_BASE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_TIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_UGETRLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_VSERVER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS__LLSEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS__NEWSELECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074287829\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074287830\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_android_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22 && !linux\n// +build go1.21,!go1.22,!linux\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":        reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":               reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIGNAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35067\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatat\":                          reflect.ValueOf(syscall.Fstatat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_802_1Q_VLAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BONDING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_BRIDGE_PORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DISABLE_NETPOLL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_DONT_BRIDGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_EBRIDGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_ISATAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_LIVE_ADDR_CHANGE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MACVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_MACVLAN_PORT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MASTER_8023AD\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER_ALB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_MASTER_ARPMON\":                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_OVS_DATAPATH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SLAVE_INACTIVE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_SLAVE_NEEDARP\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SUPP_NOFCS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TEAM_PORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_TX_SKB_SHARING\":               reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_UNICAST_FLT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFF_WAN_HDLC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_XMIT_DST_RELEASE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_BEETPH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DODUMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_HUGE_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"MAP_HUGE_SHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_PATH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TMPFILE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4259840\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048831\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_MAX_PACING_RATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":              reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_ARCH_SPECIFIC_SYSCALL\":        reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_BPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_EXECVEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_FINIT_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETRANDOM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_KCMP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_MEMFD_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_SECCOMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_SEMTIMEDOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE2\":             reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21515\", token.INT, 0)),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_COOKIE_IN_ALWAYS\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_COOKIE_OUT_NEVER\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_COOKIE_PAIR_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_COOKIE_TRANSACTIONS\":          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MSS_DEFAULT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_MSS_DESIRED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1220\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUEUE_SEQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_REPAIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_REPAIR_OPTIONS\":               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_REPAIR_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_S_DATA_IN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_S_DATA_OUT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_THIN_DUPACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_THIN_LINEAR_TIMEOUTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_USER_TIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767360\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767352\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767353\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812117\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812118\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148553947\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025690\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025689\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_darwin_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_CCITT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_ECMA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_IPX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_ISO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_NATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_NDRV\":                            reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NS\":                              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PPP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_PUP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_RESERVED_36\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SIP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SNA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_SYSTEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_UNIX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Accept\":                             reflect.ValueOf(syscall.Accept),\n\t\t\"Access\":                             reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                            reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                               reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                               reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                               reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B4800\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                                reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                               reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                                reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B9600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222028921\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020978\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147762808\", token.INT, 0)),\n\t\t\"BIOCSETF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762803\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                            reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                               reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                          reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                        reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                      reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                       reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                            reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                           reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                            reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                         reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                  reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":                reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                                reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                                reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                              reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                    reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                            reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                              reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                              reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                             reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                           reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                              reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                        reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                            reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                          reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                            reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":         reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AX25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CHDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                     reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":               reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":           reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_NULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAW\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DT_BLK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                                reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                               reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                              reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                             reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                         reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                      reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                       reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                             reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                           reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                              reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADARCH\":                           reflect.ValueOf(syscall.EBADARCH),\n\t\t\"EBADEXEC\":                           reflect.ValueOf(syscall.EBADEXEC),\n\t\t\"EBADF\":                              reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMACHO\":                          reflect.ValueOf(syscall.EBADMACHO),\n\t\t\"EBADMSG\":                            reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                            reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                              reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                          reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                             reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                       reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                       reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                         reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                            reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                       reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDEVERR\":                            reflect.ValueOf(syscall.EDEVERR),\n\t\t\"EDOM\":                               reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                             reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                             reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                             reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                              reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                             reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                          reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                       reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                              reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                             reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                        reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                              reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                             reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                                reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                            reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                             reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                              reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                              reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                             reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                             reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                           reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                          reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                       reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                          reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                           reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                          reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                        reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                             reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                            reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                            reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODATA\":                            reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                             reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                             reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                            reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                             reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                            reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                             reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                             reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPOLICY\":                          reflect.ValueOf(syscall.ENOPOLICY),\n\t\t\"ENOPROTOOPT\":                        reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                             reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                              reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                             reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                             reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                            reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                           reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                            reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                          reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":                    reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                           reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                            reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                             reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                              reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                         reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                          reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                         reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                              reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                       reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                              reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                           reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                       reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                      reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                       reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                             reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                    reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                         reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"EPWROFF\":                            reflect.ValueOf(syscall.EPWROFF),\n\t\t\"ERANGE\":                             reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                            reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                              reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                       reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHLIBVERS\":                         reflect.ValueOf(syscall.ESHLIBVERS),\n\t\t\"ESHUTDOWN\":                          reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                    reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                             reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                              reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                             reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIME\":                              reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                          reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                       reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                            reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                             reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-9\", token.INT, 0)),\n\t\t\"EVFILT_MACHPORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-8\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"EVFILT_THREADMARKER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"EVFILT_VM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-12\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_DISPATCH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_OOBAND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_POLL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_RECEIPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                        reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                              reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                               reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                            reflect.ValueOf(syscall.Environ),\n\t\t\"Exchangedata\":                       reflect.ValueOf(syscall.Exchangedata),\n\t\t\"FD_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_ADDFILESIGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"F_ADDSIGS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"F_ALLOCATEALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_ALLOCATECONTIG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_CHKCLEAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"F_DUPFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"F_FLUSH_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"F_FREEZE_FS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"F_FULLFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"F_GETFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETLKPID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"F_GETNOSIGPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"F_GETOWN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETPATH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"F_GETPATH_MTMINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"F_GETPROTECTIONCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"F_GLOBAL_NOCACHE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"F_LOG2PHYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"F_LOG2PHYS_EXT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"F_MARKDEPENDENCY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"F_NOCACHE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"F_NODIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"F_OK\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_PATHPKG_CHECK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"F_PEOFPOSMODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_PREALLOCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"F_RDADVISE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"F_RDAHEAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"F_RDLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_READBOOTSTRAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"F_SETBACKINGSTORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"F_SETFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETNOSIGPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"F_SETOWN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETPROTECTIONCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"F_SETSIZE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"F_THAW_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"F_UNLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_VOLPOSMODE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRITEBOOTSTRAP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"F_WRLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                             reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                           reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                             reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                             reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                         reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                              reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                           reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                           reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                          reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                              reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                            reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                              reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                          reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                            reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                      reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getdtablesize\":                      reflect.ValueOf(syscall.Getdtablesize),\n\t\t\"Getegid\":                            reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                             reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                            reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                          reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                             reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                          reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                        reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                        reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                            reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                            reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                             reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                            reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                        reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                          reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                          reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                             reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                        reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                     reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":             reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                   reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":              reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                 reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":                reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                      reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                       reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                             reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                              reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ALTPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                           reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_CARP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CELLULAR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_DS3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_ENC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_GIF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                       reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                         reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PDP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PPP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_RS232\":                          reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_T1\":                             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_V35\":                            reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_X25\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LINKLOCALNETNUM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2851995648\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IPPROTO_3PC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPPROTO_ADFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_AHIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPPROTO_APES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IPPROTO_ARGUS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPPROTO_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IPPROTO_BHA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPPROTO_BLT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPPROTO_BRSATMON\":                   reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPPROTO_CFTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPPROTO_CHAOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPPROTO_CMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPPROTO_CPHB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPPROTO_CPNX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPPROTO_DDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPPROTO_DGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EMCON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HMP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IDPR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPPROTO_IDRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IPPROTO_IGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IPPROTO_IL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPPROTO_INLSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_INP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IPPROTO_IPEIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IRTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPPROTO_KRYPTOLAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPPROTO_LARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MEAS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPPROTO_MHRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPPROTO_MICP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_MUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NHRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_NSP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_NVPII\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPPROTO_OSPFIGP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PGM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IPPROTO_PIGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PRM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_PVP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_RCCMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPPROTO_RDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_RVD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPPROTO_SATEXPAK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPPROTO_SATMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IPPROTO_SCCSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_SDRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPPROTO_SEP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_SRPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IPPROTO_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPPROTO_SVMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IPPROTO_SWIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPPROTO_TCF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_TPXX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPPROTO_TTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VINES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_VISA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPPROTO_VMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IPPROTO_WBEXPAK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IPPROTO_WBMON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPPROTO_WSN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPPROTO_XNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPPROTO_XTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_2292NEXTHOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_BINDV6ONLY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_BOUND_IF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_FW_ADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_FW_DEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_FW_FLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_FW_GET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_FW_ZERO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXOPTHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MAX_GROUP_SRC_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IPV6_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IPV6_MAX_SOCK_SRC_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IPV6_MIN_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IP_BOUND_IF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_CONFIGURE\":              reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_FLUSH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_GET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IP_FAITH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_FW_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FW_DEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_FW_FLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IP_FW_GET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IP_FW_RESETLOG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IP_FW_ZERO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_GROUP_SRC_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_MUTE_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_SRC_FILTER\":             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IP_MSS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IFINDEX\":               reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_VIF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_NAT__XXX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OLD_FW_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_OLD_FW_DEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IP_OLD_FW_FLUSH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IP_OLD_FW_GET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IP_OLD_FW_RESETLOG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IP_OLD_FW_ZERO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVPKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RSVP_OFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_RSVP_ON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_OFF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_ON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_STRIPHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_TOS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TRAFFIC_MGT_BACKGROUND\":          reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_TTL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"ISIG\":                               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUTF8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                    reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                          reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                             reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                             reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                             reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                               reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                             reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                              reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_CAN_REUSE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_FREE_REUSABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_FREE_REUSE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MADV_ZERO_WIRED_PAGES\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MAP_ANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_JIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_NOCACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_NOEXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_RESERVED0080\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_EOR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_FLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_HAVEMORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_HOLD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_NEEDSA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MSG_OOB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_RCVMORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_SEND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_WAITSTREAM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_DEACTIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_KILLPAGES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"Mkdir\":                              reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                             reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                              reflect.ValueOf(syscall.Mknod),\n\t\t\"Mlock\":                              reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                           reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                               reflect.ValueOf(syscall.Mmap),\n\t\t\"Mprotect\":                           reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                            reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                         reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                             reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_DUMP2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NET_RT_STAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_TRASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NOFLSH\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ABSOLUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXITSTATUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FFAND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_FFCOPY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFLAGSMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"NOTE_FFNOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NOTE_FFOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_NONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"NOTE_NSECONDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1048576\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_REAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_RESOURCEEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_SECONDS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_SIGNAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRIGGER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"NOTE_USECONDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_VM_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE_SUDDEN_TERMINATE\":  reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE_TERMINATE\":         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NsecToTimespec\":                     reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                      reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OFDEL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"OFILL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ONLCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_ALERT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"O_APPEND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_CREAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_DSYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_EVTONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_EXCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_POPUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"O_RDONLY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYMLINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_SYNC\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                               reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_ATTACH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PT_ATTACHEXC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PT_CONTINUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PT_DENY_ATTACH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PT_DETACH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PT_FIRSTMACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PT_FORCEQUOTA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PT_KILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PT_READ_D\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PT_READ_I\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PT_READ_U\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PT_SIGEXC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PT_STEP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PT_THUPDATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PT_TRACE_ME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_WRITE_D\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PT_WRITE_I\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PT_WRITE_U\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ParseDirent\":                        reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":                reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":               reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":          reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                    reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                           reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                               reflect.ValueOf(syscall.Pipe),\n\t\t\"Pread\":                              reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                             reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_CONDEMNED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_DELCLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_DONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_IFREF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_IFSCOPE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PRCLONING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WASCLONED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DELMADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_GET2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_IFINFO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                               reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                         reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                           reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                           reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                            reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                             reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                             reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                              reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                           reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_CREDS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP_MONOTONIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SHUT_RD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                            reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                            reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                             reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                            reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                            reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                             reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                             reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                             reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                             reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                            reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                             reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                              reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                             reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                            reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                            reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                            reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                            reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                            reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                            reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                             reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                            reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                            reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                            reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                            reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                            reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                             reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                            reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                            reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                          reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                           reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                            reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                            reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2165860637\", token.INT, 0)),\n\t\t\"SIOCARPIPLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349544\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCAUTOADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349542\", token.INT, 0)),\n\t\t\"SIOCAUTONETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607719\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607745\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2165860639\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223873915\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222565404\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222565403\", token.INT, 0)),\n\t\t\"SIOCGETVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349631\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFALTMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFASYNCMAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCGIFBOND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349595\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3222038820\", token.INT, 0)),\n\t\t\"SIOCGIFDEVMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349572\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFKPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349639\", token.INT, 0)),\n\t\t\"SIOCGIFMAC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349634\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3224135992\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349555\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349568\", token.INT, 0)),\n\t\t\"SIOCGIFPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349567\", token.INT, 0)),\n\t\t\"SIOCGIFSTATUS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3274795325\", token.INT, 0)),\n\t\t\"SIOCGIFVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349631\", token.INT, 0)),\n\t\t\"SIOCGIFWAKEFLAGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349640\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3239602462\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3239602499\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349624\", token.INT, 0)),\n\t\t\"SIOCIFCREATE2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349626\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCRSLVMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222300987\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2150132091\", token.INT, 0)),\n\t\t\"SIOCSETVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607806\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFALTMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607749\", token.INT, 0)),\n\t\t\"SIOCSIFASYNCMAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607805\", token.INT, 0)),\n\t\t\"SIOCSIFBOND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607750\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607770\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFKPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607814\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607740\", token.INT, 0)),\n\t\t\"SIOCSIFMAC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607811\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607732\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2151704894\", token.INT, 0)),\n\t\t\"SIOCSIFPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607734\", token.INT, 0)),\n\t\t\"SIOCSIFVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607806\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2165860674\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_MAXADDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_DONTTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_ERROR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LABEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SO_LINGER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LINGER_SEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4224\", token.INT, 0)),\n\t\t\"SO_NKE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"SO_NOADDRERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4131\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"SO_NOTIFYCONFLICT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4134\", token.INT, 0)),\n\t\t\"SO_NP_EXTENSIONS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4227\", token.INT, 0)),\n\t\t\"SO_NREAD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4128\", token.INT, 0)),\n\t\t\"SO_NWRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4132\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERLABEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_RANDOMPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4226\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_RESTRICTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4225\", token.INT, 0)),\n\t\t\"SO_RESTRICT_DENYIN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_RESTRICT_DENYOUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_RESTRICT_DENYSET\":                reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_REUSESHAREUID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4133\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP_MONOTONIC\":             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_TYPE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_UPCALLCLOSEWAIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4135\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_WANTMORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_WANTOOBFLAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"404\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCESS_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADD_PROFIL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_AIO_CANCEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_AIO_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_AIO_FSYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_AIO_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_AIO_RETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND_NOCANCEL\":           reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_AIO_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_ATGETMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_ATPGETREQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_ATPGETRSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_ATPSNDREQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_ATPSNDRSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_ATPUTMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_ATSOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_AUDIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_AUDITCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"359\", token.INT, 0)),\n\t\t\"SYS_AUDITON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_JOIN\":             reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_PORT\":             reflect.ValueOf(constant.MakeFromLiteral(\"432\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_SELF\":             reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS_BIND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_REGISTER\":             reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_TERMINATE\":            reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHMOD_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CHUD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSE_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"399\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_CONNECT_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"409\", token.INT, 0)),\n\t\t\"SYS_COPYFILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_CSOPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_DUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EXCHANGEDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMOD_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FCNTL_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"406\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_FFSCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_FGETATTRLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_FILEPORT_MAKEFD\":                reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS_FILEPORT_MAKEPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_FSCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_FSETATTRLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_FSGETPATH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_FSTAT64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_FSTAT64_EXTENDED\":               reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_FSTATV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_FSTAT_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FSYNC_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"408\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_GETATTRLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT_ADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_GETAUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES64\":                reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIESATTR\":              reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_GETDTABLESIZE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETHOSTUUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_GETLCID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"395\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_GETSGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETWGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_IDENTITYSVC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_INITGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPOLICYSYS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_KDEBUG_TRACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_KEVENT64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_KILL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LIO_LISTIO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_LSTAT64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_LSTAT64_EXTENDED\":               reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_LSTATV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_LSTAT_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MAXSYSCALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKCOMPLEX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIR_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFO_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MODWATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_MSGRCV_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"419\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_MSGSND_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"418\", token.INT, 0)),\n\t\t\"SYS_MSGSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_MSYNC_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"405\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NFSCLNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_NFSSVC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPEN_EXTENDED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_OPEN_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"398\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PID_HIBERNATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS_PID_RESUME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS_PID_SHUTDOWN_SOCKETS\":           reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_PID_SUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"433\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_POLL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_POLL_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_POSIX_SPAWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_PREAD_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_PROCESS_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_PROC_INFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVBROAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVCLRPREPOST\":            reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVSIGNAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_MUTEXDROP\":               reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_MUTEXWAIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_DOWNGRADE\":            reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_LONGRDLOCK\":           reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_RDLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UNLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UNLOCK2\":              reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UPGRADE\":              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_WRLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_YIELDWRLOCK\":          reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_PWRITE_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_READ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_READV_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS_READ_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"396\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVFROM_NOCANCEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"403\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RECVMSG_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"401\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SEARCHFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_SELECT_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"407\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_SEMSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_SEM_CLOSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_SEM_DESTROY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_SEM_GETVALUE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_SEM_INIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_SEM_OPEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_SEM_POST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_SEM_TRYWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_SEM_UNLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_SEM_WAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_SEM_WAIT_NOCANCEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"420\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDMSG_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"402\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SENDTO_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_SETATTRLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT_ADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_SETAUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SETLCID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETPRIVEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_SETTID_WITH_PID\":                reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETWGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_SHARED_REGION_CHECK_NP\":         reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_SHARED_REGION_MAP_AND_SLIDE_NP\": reflect.ValueOf(constant.MakeFromLiteral(\"438\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_SHMSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_SHM_OPEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_SHM_UNLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND_NOCANCEL\":            reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_STACK_SNAPSHOT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_STAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_STAT64\":                         reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_STAT64_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_STATV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_STAT_EXTENDED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSCALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_THREAD_SELFID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMASK_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                         reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_VM_PRESSURE_MONITOR\":            reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WAIT4_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"400\", token.INT, 0)),\n\t\t\"SYS_WAITEVENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_WAITID_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_WATCHEVENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_WORKQ_KERNRETURN\":               reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_WORKQ_OPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_WRITEV_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_WRITE_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"397\", token.INT, 0)),\n\t\t\"SYS___DISABLE_THREADSIGNAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS___MAC_EXECVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"380\", token.INT, 0)),\n\t\t\"SYS___MAC_GETFSSTAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"388\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"382\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LCID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"391\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LCTX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"392\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_MOUNT\":                reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PROC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS___MAC_MOUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"389\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"383\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LCTX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"393\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_PROC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"387\", token.INT, 0)),\n\t\t\"SYS___MAC_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"381\", token.INT, 0)),\n\t\t\"SYS___OLD_SEMWAIT_SIGNAL\":           reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL\":  reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_CANCELED\":             reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_CHDIR\":                reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_FCHDIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_KILL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_MARKCANCEL\":           reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_SIGMASK\":              reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS___SEMWAIT_SIGNAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS___SEMWAIT_SIGNAL_NOCANCEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS___SIGWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS___SIGWAIT_NOCANCEL\":             reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_IEXEC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFWHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57344\", token.INT, 0)),\n\t\t\"S_IREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISTXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_ISUID\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                               reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                             reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                           reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                            reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                           reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                             reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                             reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                       reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                     reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                   reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                    reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                    reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                      reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                      reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                          reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                        reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                            reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                             reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                            reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                             reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                          reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                           reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                            reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                        reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setprivexec\":                        reflect.ValueOf(syscall.Setprivexec),\n\t\t\"Setregid\":                           reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                           reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                          reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                             reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                     reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":             reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                   reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                 reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":                reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                      reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                   reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                   reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                  reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                       reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                             reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfData\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                    reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                  reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":             reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                 reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":                reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                             reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                  reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                         reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                               reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                             reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                             reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                              reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                             reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                      reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                    reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                     reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                            reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                               reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                             reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                       reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CONNECTIONTIMEOUT\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MAXHLEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"TCP_MAXOLEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MINMSSOVERLOAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1000\", token.INT, 0)),\n\t\t\"TCP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOOPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_RXT_CONNDROPTIME\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TCP_RXT_FINDROP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDCDTIMESTAMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074820184\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCDSIMICROCODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536900693\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGDRAINWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033750\", token.INT, 0)),\n\t\t\"TIOCGETA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1078490131\", token.INT, 0)),\n\t\t\"TIOCGETD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCIXOFF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900736\", token.INT, 0)),\n\t\t\"TIOCIXON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900737\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGDTRWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074033754\", token.INT, 0)),\n\t\t\"TIOCMGET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033667\", token.INT, 0)),\n\t\t\"TIOCMODS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775492\", token.INT, 0)),\n\t\t\"TIOCMSDTRWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147775579\", token.INT, 0)),\n\t\t\"TIOCMSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTYGNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1082160211\", token.INT, 0)),\n\t\t\"TIOCPTYGRANT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536900692\", token.INT, 0)),\n\t\t\"TIOCPTYUNLK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536900690\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900707\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDRAINWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147775575\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2152231956\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2152231958\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2152231957\", token.INT, 0)),\n\t\t\"TIOCSETD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536900703\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCTIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074820185\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                     reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                      reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                           reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                              reflect.ValueOf(syscall.Umask),\n\t\t\"Undelete\":                           reflect.ValueOf(syscall.Undelete),\n\t\t\"UnixRights\":                         reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                             reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                            reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                           reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                             reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                         reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                             reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VT0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                                reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTDLY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTIME\":                              reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WORDSIZE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WUNTRACED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                              reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                              reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                        reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                       reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":                    reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                       reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfVersion\":                    reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                       reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":                    reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"Fbootstraptransfer_t\":          reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)),\n\t\t\"FdSet\":                         reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                       reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                          reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"Fstore_t\":                      reflect.ValueOf((*syscall.Fstore_t)(nil)),\n\t\t\"ICMPv6Filter\":                  reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                        reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":                   reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                      reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfData\":                        reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                      reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                     reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"IfmaMsghdr\":                    reflect.ValueOf((*syscall.IfmaMsghdr)(nil)),\n\t\t\"IfmaMsghdr2\":                   reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)),\n\t\t\"Inet4Pktinfo\":                  reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":                  reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":          reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceMessage\":              reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"InterfaceMulticastAddrMessage\": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)),\n\t\t\"Iovec\":                         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                      reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                        reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Log2phys_t\":                    reflect.ValueOf((*syscall.Log2phys_t)(nil)),\n\t\t\"Msghdr\":                        reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"Radvisory_t\":                   reflect.ValueOf((*syscall.Radvisory_t)(nil)),\n\t\t\"RawConn\":                       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                   reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":                reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":           reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":              reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":              reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":               reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":                  reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":                reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                     reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                      reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":              reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":                 reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":                 reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":          reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                      reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":                   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                       reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timeval32\":                     reflect.ValueOf((*syscall.Timeval32)(nil)),\n\t\t\"WaitStatus\":                    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_darwin_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_CCITT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_ECMA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_IPX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_ISO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_NATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_NDRV\":                            reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NS\":                              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PPP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_PUP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_RESERVED_36\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SIP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SNA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_SYSTEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_UNIX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_UTUN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"Accept\":                             reflect.ValueOf(syscall.Accept),\n\t\t\"Access\":                             reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                            reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                               reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                               reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                               reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B4800\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                                reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                               reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                                reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B9600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222028921\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020978\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147762808\", token.INT, 0)),\n\t\t\"BIOCSETF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762803\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                            reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                               reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                          reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                        reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                      reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                       reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                            reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                           reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                            reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                         reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                  reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":                reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                                reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                                reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                              reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                    reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                            reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                              reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                              reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                             reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                           reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                              reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                        reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                            reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                          reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                            reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":         reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AX25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CHDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                     reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":               reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":           reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_NULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAW\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DT_BLK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                                reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                               reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                              reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                             reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                         reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                      reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                       reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                             reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                           reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                              reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADARCH\":                           reflect.ValueOf(syscall.EBADARCH),\n\t\t\"EBADEXEC\":                           reflect.ValueOf(syscall.EBADEXEC),\n\t\t\"EBADF\":                              reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMACHO\":                          reflect.ValueOf(syscall.EBADMACHO),\n\t\t\"EBADMSG\":                            reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                            reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                              reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                          reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                             reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                       reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                       reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                         reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                            reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                       reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDEVERR\":                            reflect.ValueOf(syscall.EDEVERR),\n\t\t\"EDOM\":                               reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                             reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                             reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                             reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                              reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                             reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                          reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                       reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                              reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                             reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                        reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                              reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                             reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                                reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                            reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                             reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                              reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                              reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                             reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                             reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                           reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                          reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                       reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                          reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                           reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                          reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                        reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                             reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                            reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                            reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODATA\":                            reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                             reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                             reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                            reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                             reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                            reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                             reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                             reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPOLICY\":                          reflect.ValueOf(syscall.ENOPOLICY),\n\t\t\"ENOPROTOOPT\":                        reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                             reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                              reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                             reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                             reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                            reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                           reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                            reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                          reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":                    reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                           reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                            reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                             reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                              reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                         reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                          reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                         reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                              reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                       reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                              reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                           reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                       reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                      reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                       reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                             reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                    reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                         reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"EPWROFF\":                            reflect.ValueOf(syscall.EPWROFF),\n\t\t\"EQFULL\":                             reflect.ValueOf(syscall.EQFULL),\n\t\t\"ERANGE\":                             reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                            reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                              reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                       reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHLIBVERS\":                         reflect.ValueOf(syscall.ESHLIBVERS),\n\t\t\"ESHUTDOWN\":                          reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                    reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                             reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                              reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                             reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIME\":                              reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                          reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                       reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                            reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                             reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-9\", token.INT, 0)),\n\t\t\"EVFILT_MACHPORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-8\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EVFILT_THREADMARKER\":                reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"EVFILT_VM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-12\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_DISPATCH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_OOBAND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_POLL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_RECEIPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                        reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                              reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                               reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                            reflect.ValueOf(syscall.Environ),\n\t\t\"Exchangedata\":                       reflect.ValueOf(syscall.Exchangedata),\n\t\t\"FD_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_ADDFILESIGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"F_ADDSIGS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"F_ALLOCATEALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_ALLOCATECONTIG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_CHKCLEAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"F_DUPFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"F_FINDSIGS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"F_FLUSH_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"F_FREEZE_FS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"F_FULLFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"F_GETCODEDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"F_GETFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETLKPID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"F_GETNOSIGPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"F_GETOWN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETPATH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"F_GETPATH_MTMINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"F_GETPROTECTIONCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"F_GETPROTECTIONLEVEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"F_GLOBAL_NOCACHE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"F_LOG2PHYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"F_LOG2PHYS_EXT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"F_NOCACHE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"F_NODIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"F_OK\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_PATHPKG_CHECK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"F_PEOFPOSMODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_PREALLOCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"F_RDADVISE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"F_RDAHEAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"F_RDLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETBACKINGSTORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"F_SETFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETLKWTIMEOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SETNOSIGPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"F_SETOWN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETPROTECTIONCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"F_SETSIZE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"F_SINGLE_WRITER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"F_THAW_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"F_TRANSCODEKEY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"F_UNLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_VOLPOSMODE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                             reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                           reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                             reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                             reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                         reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                              reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                           reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                           reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                          reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                              reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                            reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                              reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                          reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                            reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                      reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getdtablesize\":                      reflect.ValueOf(syscall.Getdtablesize),\n\t\t\"Getegid\":                            reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                             reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                            reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                          reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                             reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                          reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                        reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                        reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                            reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                            reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                             reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                            reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                        reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                          reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                          reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                             reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                        reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                     reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":             reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                   reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":              reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                 reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":                reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                      reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                       reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                             reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                              reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ALTPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                           reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_CARP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CELLULAR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_DS3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_ENC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_GIF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                       reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                         reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PDP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PPP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_RS232\":                          reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_T1\":                             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_V35\":                            reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_X25\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LINKLOCALNETNUM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2851995648\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IPPROTO_3PC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPPROTO_ADFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_AHIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPPROTO_APES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IPPROTO_ARGUS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPPROTO_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IPPROTO_BHA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPPROTO_BLT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPPROTO_BRSATMON\":                   reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPPROTO_CFTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPPROTO_CHAOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPPROTO_CMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPPROTO_CPHB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPPROTO_CPNX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPPROTO_DDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPPROTO_DGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EMCON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HMP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IDPR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPPROTO_IDRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IPPROTO_IGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IPPROTO_IL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPPROTO_INLSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_INP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IPPROTO_IPEIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IRTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPPROTO_KRYPTOLAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPPROTO_LARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MEAS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPPROTO_MHRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPPROTO_MICP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_MUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NHRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_NSP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_NVPII\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPPROTO_OSPFIGP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PGM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IPPROTO_PIGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PRM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_PVP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_RCCMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPPROTO_RDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_RVD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPPROTO_SATEXPAK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPPROTO_SATMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IPPROTO_SCCSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_SDRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPPROTO_SEP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_SRPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IPPROTO_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPPROTO_SVMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IPPROTO_SWIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPPROTO_TCF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_TPXX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPPROTO_TTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VINES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_VISA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPPROTO_VMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IPPROTO_WBEXPAK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IPPROTO_WBMON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPPROTO_WSN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPPROTO_XNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPPROTO_XTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_2292NEXTHOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_BINDV6ONLY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_BOUND_IF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_FW_ADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_FW_DEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_FW_FLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_FW_GET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_FW_ZERO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXOPTHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MAX_GROUP_SRC_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IPV6_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IPV6_MAX_SOCK_SRC_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IPV6_MIN_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IP_BOUND_IF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_CONFIGURE\":              reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_FLUSH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_GET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IP_FAITH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_FW_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FW_DEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_FW_FLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IP_FW_GET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IP_FW_RESETLOG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IP_FW_ZERO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_GROUP_SRC_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_MUTE_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_SRC_FILTER\":             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IP_MSS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IFINDEX\":               reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_VIF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_NAT__XXX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OLD_FW_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_OLD_FW_DEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IP_OLD_FW_FLUSH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IP_OLD_FW_GET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IP_OLD_FW_RESETLOG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IP_OLD_FW_ZERO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVPKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RSVP_OFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_RSVP_ON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_OFF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_ON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_STRIPHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_TOS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TRAFFIC_MGT_BACKGROUND\":          reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_TTL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"ISIG\":                               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUTF8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                    reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                          reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                             reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                             reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                             reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                               reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                             reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                              reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_CAN_REUSE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_FREE_REUSABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_FREE_REUSE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MADV_ZERO_WIRED_PAGES\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MAP_ANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_JIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_NOCACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_NOEXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_RESERVED0080\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_EOR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_FLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_HAVEMORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_HOLD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_NEEDSA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MSG_OOB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_RCVMORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_SEND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_WAITSTREAM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_DEACTIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_KILLPAGES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"Mkdir\":                              reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                             reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                              reflect.ValueOf(syscall.Mknod),\n\t\t\"Mlock\":                              reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                           reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                               reflect.ValueOf(syscall.Mmap),\n\t\t\"Mprotect\":                           reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                            reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                         reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                             reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_DUMP2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NET_RT_STAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_TRASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NOFLSH\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ABSOLUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_BACKGROUND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_CRITICAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXITSTATUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"NOTE_EXIT_CSERROR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"NOTE_EXIT_DECRYPTFAIL\":              reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"NOTE_EXIT_DETAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"NOTE_EXIT_DETAIL_MASK\":              reflect.ValueOf(constant.MakeFromLiteral(\"458752\", token.INT, 0)),\n\t\t\"NOTE_EXIT_MEMORY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"NOTE_EXIT_REPARENTED\":               reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FFAND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_FFCOPY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFLAGSMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"NOTE_FFNOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NOTE_FFOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LEEWAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_NONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"NOTE_NSECONDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1048576\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_REAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_SECONDS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_SIGNAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRIGGER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"NOTE_USECONDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_VM_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE_SUDDEN_TERMINATE\":  reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE_TERMINATE\":         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NsecToTimespec\":                     reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                      reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OFDEL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"OFILL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ONLCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_ALERT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"O_APPEND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_CREAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_DP_GETRAWENCRYPTED\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_DSYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_EVTONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_EXCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_POPUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"O_RDONLY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYMLINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_SYNC\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                               reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_ATTACH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PT_ATTACHEXC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PT_CONTINUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PT_DENY_ATTACH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PT_DETACH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PT_FIRSTMACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PT_FORCEQUOTA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PT_KILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PT_READ_D\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PT_READ_I\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PT_READ_U\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PT_SIGEXC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PT_STEP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PT_THUPDATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PT_TRACE_ME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_WRITE_D\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PT_WRITE_I\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PT_WRITE_U\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ParseDirent\":                        reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":                reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":               reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":          reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                    reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                           reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                               reflect.ValueOf(syscall.Pipe),\n\t\t\"Pread\":                              reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                             reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_CPU_USAGE_MONITOR\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_CONDEMNED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_DELCLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_DONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_IFREF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_IFSCOPE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PRCLONING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_PROXY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_ROUTER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WASCLONED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DELMADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_GET2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_IFINFO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                               reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                         reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                           reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                           reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                            reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                             reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                             reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                              reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                           reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_CREDS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP_MONOTONIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SHUT_RD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                            reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                            reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                             reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                            reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                            reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                             reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                             reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                             reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                             reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                            reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                             reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                              reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                             reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                            reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                            reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                            reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                            reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                            reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                            reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                             reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                            reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                            reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                            reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                            reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                            reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                             reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                            reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                            reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                          reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                           reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                            reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                            reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCARPIPLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349544\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCAUTOADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349542\", token.INT, 0)),\n\t\t\"SIOCAUTONETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607719\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607745\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223873915\", token.INT, 0)),\n\t\t\"SIOCGETVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349631\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFALTMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFASYNCMAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCGIFBOND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349595\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3222038820\", token.INT, 0)),\n\t\t\"SIOCGIFDEVMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349572\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFKPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349639\", token.INT, 0)),\n\t\t\"SIOCGIFMAC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349634\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3224135992\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349555\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349568\", token.INT, 0)),\n\t\t\"SIOCGIFPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349567\", token.INT, 0)),\n\t\t\"SIOCGIFSTATUS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3274795325\", token.INT, 0)),\n\t\t\"SIOCGIFVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349631\", token.INT, 0)),\n\t\t\"SIOCGIFWAKEFLAGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349640\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349624\", token.INT, 0)),\n\t\t\"SIOCIFCREATE2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349626\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222301057\", token.INT, 0)),\n\t\t\"SIOCRSLVMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222300987\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2150132091\", token.INT, 0)),\n\t\t\"SIOCSETVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607806\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFALTMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607749\", token.INT, 0)),\n\t\t\"SIOCSIFASYNCMAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607805\", token.INT, 0)),\n\t\t\"SIOCSIFBOND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607750\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607770\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFKPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607814\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607740\", token.INT, 0)),\n\t\t\"SIOCSIFMAC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607811\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607732\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2151704894\", token.INT, 0)),\n\t\t\"SIOCSIFPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607734\", token.INT, 0)),\n\t\t\"SIOCSIFVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607806\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_MAXADDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_DONTTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_ERROR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LABEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SO_LINGER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LINGER_SEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4224\", token.INT, 0)),\n\t\t\"SO_NKE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"SO_NOADDRERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4131\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"SO_NOTIFYCONFLICT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4134\", token.INT, 0)),\n\t\t\"SO_NP_EXTENSIONS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4227\", token.INT, 0)),\n\t\t\"SO_NREAD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4128\", token.INT, 0)),\n\t\t\"SO_NUMRCVPKT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4370\", token.INT, 0)),\n\t\t\"SO_NWRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4132\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERLABEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_RANDOMPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4226\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_REUSESHAREUID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4133\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP_MONOTONIC\":             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_TYPE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_UPCALLCLOSEWAIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4135\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_WANTMORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_WANTOOBFLAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"404\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCESS_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_AIO_CANCEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_AIO_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_AIO_FSYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_AIO_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_AIO_RETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND_NOCANCEL\":           reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_AIO_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_ATGETMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_ATPGETREQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_ATPGETRSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_ATPSNDREQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_ATPSNDRSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_ATPUTMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_ATSOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_AUDIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_AUDITCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"359\", token.INT, 0)),\n\t\t\"SYS_AUDITON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_JOIN\":             reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_PORT\":             reflect.ValueOf(constant.MakeFromLiteral(\"432\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_SELF\":             reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS_BIND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_REGISTER\":             reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_TERMINATE\":            reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHMOD_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CHUD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSE_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"399\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_CONNECT_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"409\", token.INT, 0)),\n\t\t\"SYS_COPYFILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_CSOPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_CSOPS_AUDITTOKEN\":               reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_DUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EXCHANGEDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMOD_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FCNTL_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"406\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_FFSCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_FGETATTRLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_FILEPORT_MAKEFD\":                reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS_FILEPORT_MAKEPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_FSCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_FSETATTRLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_FSGETPATH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_FSTAT64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_FSTAT64_EXTENDED\":               reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_FSTAT_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FSYNC_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"408\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_GETATTRLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT_ADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_GETAUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES64\":                reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIESATTR\":              reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_GETDTABLESIZE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETHOSTUUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_GETLCID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"395\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_GETSGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETWGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_IDENTITYSVC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_INITGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPOLICYSYS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_KAS_INFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_KDEBUG_TRACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_KEVENT64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_KILL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_LEDGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"373\", token.INT, 0)),\n\t\t\"SYS_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LIO_LISTIO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_LSTAT64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_LSTAT64_EXTENDED\":               reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_LSTAT_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MAXSYSCALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"440\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIR_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFO_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MODWATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_MSGRCV_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"419\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_MSGSND_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"418\", token.INT, 0)),\n\t\t\"SYS_MSGSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_MSYNC_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"405\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NFSCLNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_NFSSVC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPEN_DPROTECTED_NP\":             reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_OPEN_EXTENDED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_OPEN_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"398\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PID_HIBERNATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS_PID_RESUME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS_PID_SHUTDOWN_SOCKETS\":           reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_PID_SUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"433\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_POLL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_POLL_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_POSIX_SPAWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_PREAD_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_PROCESS_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_PROC_INFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVBROAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVCLRPREPOST\":            reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVSIGNAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_MUTEXDROP\":               reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_MUTEXWAIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_DOWNGRADE\":            reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_LONGRDLOCK\":           reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_RDLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UNLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UNLOCK2\":              reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UPGRADE\":              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_WRLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_YIELDWRLOCK\":          reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_PWRITE_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_READ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_READV_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS_READ_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"396\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVFROM_NOCANCEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"403\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RECVMSG_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"401\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SEARCHFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_SELECT_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"407\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_SEMSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_SEM_CLOSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_SEM_DESTROY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_SEM_GETVALUE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_SEM_INIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_SEM_OPEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_SEM_POST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_SEM_TRYWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_SEM_UNLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_SEM_WAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_SEM_WAIT_NOCANCEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"420\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDMSG_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"402\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SENDTO_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_SETATTRLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT_ADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_SETAUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SETLCID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETPRIVEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_SETTID_WITH_PID\":                reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETWGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_SHARED_REGION_CHECK_NP\":         reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_SHARED_REGION_MAP_AND_SLIDE_NP\": reflect.ValueOf(constant.MakeFromLiteral(\"438\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_SHMSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_SHM_OPEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_SHM_UNLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND_NOCANCEL\":            reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_STACK_SNAPSHOT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_STAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_STAT64\":                         reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_STAT64_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_STAT_EXTENDED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSCALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_THREAD_SELFID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMASK_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                         reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_VM_PRESSURE_MONITOR\":            reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WAIT4_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"400\", token.INT, 0)),\n\t\t\"SYS_WAITEVENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_WAITID_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_WATCHEVENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_WORKQ_KERNRETURN\":               reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_WORKQ_OPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_WRITEV_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_WRITE_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"397\", token.INT, 0)),\n\t\t\"SYS___DISABLE_THREADSIGNAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS___MAC_EXECVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"380\", token.INT, 0)),\n\t\t\"SYS___MAC_GETFSSTAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"388\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"382\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LCID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"391\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LCTX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"392\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_MOUNT\":                reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PROC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS___MAC_MOUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"389\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"383\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LCTX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"393\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_PROC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"387\", token.INT, 0)),\n\t\t\"SYS___MAC_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"381\", token.INT, 0)),\n\t\t\"SYS___OLD_SEMWAIT_SIGNAL\":           reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL\":  reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_CANCELED\":             reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_CHDIR\":                reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_FCHDIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_KILL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_MARKCANCEL\":           reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_SIGMASK\":              reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS___SEMWAIT_SIGNAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS___SEMWAIT_SIGNAL_NOCANCEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS___SIGWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS___SIGWAIT_NOCANCEL\":             reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_IEXEC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFWHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57344\", token.INT, 0)),\n\t\t\"S_IREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISTXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_ISUID\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                               reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                             reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                           reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                            reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                           reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                             reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                             reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                       reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                     reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                   reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                    reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                    reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                      reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                      reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                          reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                        reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                            reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                             reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                            reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                             reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                          reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                           reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                            reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                        reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setprivexec\":                        reflect.ValueOf(syscall.Setprivexec),\n\t\t\"Setregid\":                           reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                           reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                          reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                             reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                     reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":             reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                   reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                 reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":                reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                      reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                   reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                   reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                  reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                       reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                             reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfData\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                    reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                  reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":             reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                 reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":                reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                             reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                  reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                         reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                               reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                             reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                             reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                              reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                             reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                      reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                    reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                     reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                            reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                               reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                             reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                       reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CONNECTIONTIMEOUT\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_ENABLE_ECN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"TCP_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"TCP_MAXHLEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"TCP_MAXOLEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOOPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_NOTSENT_LOWAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"TCP_RXT_CONNDROPTIME\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TCP_RXT_FINDROP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCP_SENDMOREACKS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDCDTIMESTAMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074820184\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCDSIMICROCODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536900693\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGDRAINWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033750\", token.INT, 0)),\n\t\t\"TIOCGETA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1078490131\", token.INT, 0)),\n\t\t\"TIOCGETD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCIXOFF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900736\", token.INT, 0)),\n\t\t\"TIOCIXON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900737\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGDTRWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074033754\", token.INT, 0)),\n\t\t\"TIOCMGET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033667\", token.INT, 0)),\n\t\t\"TIOCMODS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775492\", token.INT, 0)),\n\t\t\"TIOCMSDTRWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147775579\", token.INT, 0)),\n\t\t\"TIOCMSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTYGNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1082160211\", token.INT, 0)),\n\t\t\"TIOCPTYGRANT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536900692\", token.INT, 0)),\n\t\t\"TIOCPTYUNLK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536900690\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900707\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDRAINWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147775575\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2152231956\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2152231958\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2152231957\", token.INT, 0)),\n\t\t\"TIOCSETD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536900703\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCTIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074820185\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                     reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                      reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                           reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                              reflect.ValueOf(syscall.Umask),\n\t\t\"Undelete\":                           reflect.ValueOf(syscall.Undelete),\n\t\t\"UnixRights\":                         reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                             reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                            reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                           reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                             reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                         reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                             reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VT0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                                reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTDLY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTIME\":                              reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WORDSIZE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WUNTRACED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                              reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                              reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                        reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                       reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":                    reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                       reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfVersion\":                    reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                       reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":                    reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"Fbootstraptransfer_t\":          reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)),\n\t\t\"FdSet\":                         reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                       reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                          reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"Fstore_t\":                      reflect.ValueOf((*syscall.Fstore_t)(nil)),\n\t\t\"ICMPv6Filter\":                  reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                        reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":                   reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                      reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfData\":                        reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                      reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                     reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"IfmaMsghdr\":                    reflect.ValueOf((*syscall.IfmaMsghdr)(nil)),\n\t\t\"IfmaMsghdr2\":                   reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)),\n\t\t\"Inet4Pktinfo\":                  reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":                  reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":          reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceMessage\":              reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"InterfaceMulticastAddrMessage\": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)),\n\t\t\"Iovec\":                         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                      reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                        reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Log2phys_t\":                    reflect.ValueOf((*syscall.Log2phys_t)(nil)),\n\t\t\"Msghdr\":                        reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"Radvisory_t\":                   reflect.ValueOf((*syscall.Radvisory_t)(nil)),\n\t\t\"RawConn\":                       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                   reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":                reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":           reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":              reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":              reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":               reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":                  reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":                reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                     reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                      reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":              reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":                 reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":                 reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":          reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                      reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":                   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                       reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timeval32\":                     reflect.ValueOf((*syscall.Timeval32)(nil)),\n\t\t\"WaitStatus\":                    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_dragonfly_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_ATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_MPLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_NETGRAPH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_NS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222291065\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020978\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887930\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762808\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSETWF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148549243\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147762803\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DEFAULTBUFSIZE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MAX_CLONES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_A429\":                          reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"DLT_A653_ICM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"DLT_AIRONET_HEADER\":                reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_AX25_KISS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4\":              reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4_WITH_PHDR\":    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"DLT_CAN20B\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FLEXRAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_FRELAY_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                         reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                         reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":          reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_LINUX\":            reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NONASK_PHY\":       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS_RADIO\":      reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"DLT_IPFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"DLT_IPMB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"DLT_IPMB_LINUX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ISM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":               reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":              reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":             reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":              reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"DLT_LAPB_WITH_DIR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"DLT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"DLT_LIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MFR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"DLT_MOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAIF1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_REDBACK_SMARTEDGE\":             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"DLT_RIO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SITA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":             reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"DLT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"DLT_X2E_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"DLT_X2E_XORAYA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DBF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EASYNC\":                            reflect.ValueOf(syscall.EASYNC),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOOFUS\":                           reflect.ValueOf(syscall.EDOOFUS),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                         reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUNUSED94\":                         reflect.ValueOf(syscall.EUNUSED94),\n\t\t\"EUNUSED95\":                         reflect.ValueOf(syscall.EUNUSED95),\n\t\t\"EUNUSED96\":                         reflect.ValueOf(syscall.EUNUSED96),\n\t\t\"EUNUSED97\":                         reflect.ValueOf(syscall.EUNUSED97),\n\t\t\"EUNUSED98\":                         reflect.ValueOf(syscall.EUNUSED98),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_EXCEPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-8\", token.INT, 0)),\n\t\t\"EVFILT_MARKER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_NODATA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTEXIT_LWP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"EXTEXIT_PROC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EXTEXIT_SETINT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EXTEXIT_SIMPLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_DUP2FD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUP2FD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getdtablesize\":                     reflect.ValueOf(syscall.Getdtablesize),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                         reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ALTPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1150578\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MONITOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NPOLLING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_OACTIVE_COMPAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_POLLING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_POLLING_COMPAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_PPROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SMART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_STATICARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IPPROTO_3PC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPPROTO_ADFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_AHIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPPROTO_APES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IPPROTO_ARGUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPPROTO_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IPPROTO_BHA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPPROTO_BLT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPPROTO_BRSATMON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_CFTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPPROTO_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPPROTO_CMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPPROTO_CPHB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPPROTO_CPNX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPPROTO_DDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPPROTO_DGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EMCON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IDPR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPPROTO_IDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IPPROTO_IGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IPPROTO_IL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPPROTO_INLSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_INP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPCV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IPPROTO_IPEIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IRTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPPROTO_KRYPTOLAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPPROTO_LARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MEAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPPROTO_MHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPPROTO_MICP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_MUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_NSP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_NVPII\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPPROTO_OSPFIGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PGM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IPPROTO_PIGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PRM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_PVP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_RCCMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPPROTO_RDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_RVD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPPROTO_SATEXPAK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPPROTO_SATMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IPPROTO_SCCSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_SDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPPROTO_SEP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPPROTO_SRPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IPPROTO_ST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPPROTO_SVMTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IPPROTO_SWIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPPROTO_TCF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TLSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_TPXX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPPROTO_TTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UNKNOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"IPPROTO_VINES\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_VISA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPPROTO_VMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IPPROTO_WBEXPAK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IPPROTO_WBMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPPROTO_WSN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPPROTO_XNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPPROTO_XTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_BINDV6ONLY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_FW_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_FW_DEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_FW_FLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_FW_GET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_FW_ZERO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MSFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PKTOPTIONS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PREFER_TEMPADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_CONFIGURE\":             reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IP_FAITH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_FW_ADD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_FW_DEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IP_FW_FLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IP_FW_GET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IP_FW_RESETLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IP_FW_ZERO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_VIF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RSVP_OFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_RSVP_ON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_OFF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_ON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_AUTOSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_CONTROL_END\":                  reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_CONTROL_START\":                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_CORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_INVAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_NOCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_NOSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_SETMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_INHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_NOCORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_NOEXTEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_NOSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_SIZEALIGN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_TRYFIXED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_VPAGETABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_FBLOCKING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MSG_FMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MSG_FNONBLOCKING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_NOTIFICATION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FAPPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_FASYNCWRITE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"O_FBLOCKING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_FBUFFERED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"O_FMASK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133955584\", token.INT, 0)),\n\t\t\"O_FNONBLOCKING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_FOFFSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNCWRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_FUNBUFFERED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_MAPONREAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_MPLS1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_MPLS2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_MPLS3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_MPLS1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTA_MPLS2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTA_MPLS3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MPLSOPS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PRCLONING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WASCLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DELMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_IWCAPSEGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTV_IWMAXSEGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTV_MSL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_CREDS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCKPT\":                           reflect.ValueOf(syscall.SIGCKPT),\n\t\t\"SIGCKPTEXIT\":                       reflect.ValueOf(syscall.SIGCKPTEXIT),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHR\":                            reflect.ValueOf(syscall.SIGTHR),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151707146\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860635\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151707147\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607753\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860637\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873915\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223351824\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223876111\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349535\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222300964\", token.INT, 0)),\n\t\t\"SIOCGIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349542\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFGMEMB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873930\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349536\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3224398136\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349555\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCGIFPOLLCPU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349630\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFSTATUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3274795323\", token.INT, 0)),\n\t\t\"SIOCGIFTSOLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349632\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3239602460\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3239602507\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_0\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349584\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349585\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349626\", token.INT, 0)),\n\t\t\"SIOCIFCREATE2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222301048\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132091\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607710\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607740\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607732\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607720\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607734\", token.INT, 0)),\n\t\t\"SIOCSIFPOLLCPU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607805\", token.INT, 0)),\n\t\t\"SIOCSIFTSOLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607807\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2165860682\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_MAXADDRLEN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ACCEPTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDSPACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"541\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_AIO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_AIO_ERROR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_AIO_READ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_AIO_RETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_AIO_WAITCOMPLETE\":              reflect.ValueOf(constant.MakeFromLiteral(\"359\", token.INT, 0)),\n\t\t\"SYS_AIO_WRITE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CHROOT_KERNEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"522\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSEFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"474\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"532\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXEC_SYS_REGISTER\":             reflect.ValueOf(constant.MakeFromLiteral(\"465\", token.INT, 0)),\n\t\t\"SYS_EXEC_SYS_UNREGISTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"466\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXTACCEPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"482\", token.INT, 0)),\n\t\t\"SYS_EXTATTRCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_EXTCONNECT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"483\", token.INT, 0)),\n\t\t\"SYS_EXTEXIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"494\", token.INT, 0)),\n\t\t\"SYS_EXTPREAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_EXTPREADV\":                     reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_EXTPWRITE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_EXTPWRITEV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"509\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"506\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"507\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"478\", token.INT, 0)),\n\t\t\"SYS_FHSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_FHSTATVFS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"502\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"476\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"505\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_FSTATVFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"501\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"480\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"479\", token.INT, 0)),\n\t\t\"SYS_GETDOMAINNAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_GETDTABLESIZE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETVFSSTAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"503\", token.INT, 0)),\n\t\t\"SYS_GET_TLS_AREA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"473\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"521\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"520\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_JAIL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_JAIL_ATTACH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"471\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KLDFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_KLDFIRSTMOD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_KLDLOAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_KLDNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_KLDSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_KLDSYM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"391\", token.INT, 0)),\n\t\t\"SYS_LCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"531\", token.INT, 0)),\n\t\t\"SYS_LIO_LISTIO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"533\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"477\", token.INT, 0)),\n\t\t\"SYS_LUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_LWP_CREATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"495\", token.INT, 0)),\n\t\t\"SYS_LWP_GETTID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"496\", token.INT, 0)),\n\t\t\"SYS_LWP_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"497\", token.INT, 0)),\n\t\t\"SYS_LWP_RTPRIO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"498\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MCONTROL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"485\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"525\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"526\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MODFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_MODFNEXT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_MODNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_MODSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MOUNTCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"468\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MQ_CLOSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"511\", token.INT, 0)),\n\t\t\"SYS_MQ_GETATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"515\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"510\", token.INT, 0)),\n\t\t\"SYS_MQ_RECEIVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"SYS_MQ_SEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"SYS_MQ_SETATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"514\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":               reflect.ValueOf(constant.MakeFromLiteral(\"519\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_NTP_ADJTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_OBREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"504\", token.INT, 0)),\n\t\t\"SYS_OPENBSD_POLL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"538\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"499\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"527\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"523\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_RTPRIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_SBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":        reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":        reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_SCTP_PEELOFF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"393\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SET_TLS_AREA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"472\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_SIGTIMEDWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_SIGWAITINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SSTK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_STAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"475\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_STATVFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"500\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"529\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"528\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_SYS_CHECKPOINT\":                reflect.ValueOf(constant.MakeFromLiteral(\"467\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMTX_SLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"469\", token.INT, 0)),\n\t\t\"SYS_UMTX_WAKEUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"470\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"508\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_USCHED_SET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"481\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"539\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_UUIDGEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"392\", token.INT, 0)),\n\t\t\"SYS_VARSYM_GET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"SYS_VARSYM_LIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"452\", token.INT, 0)),\n\t\t\"SYS_VARSYM_SET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_VMM_GUEST_CTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"534\", token.INT, 0)),\n\t\t\"SYS_VMM_GUEST_SYNC_ADDR\":           reflect.ValueOf(constant.MakeFromLiteral(\"535\", token.INT, 0)),\n\t\t\"SYS_VMSPACE_CREATE\":                reflect.ValueOf(constant.MakeFromLiteral(\"486\", token.INT, 0)),\n\t\t\"SYS_VMSPACE_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"488\", token.INT, 0)),\n\t\t\"SYS_VMSPACE_DESTROY\":               reflect.ValueOf(constant.MakeFromLiteral(\"487\", token.INT, 0)),\n\t\t\"SYS_VMSPACE_MCONTROL\":              reflect.ValueOf(constant.MakeFromLiteral(\"491\", token.INT, 0)),\n\t\t\"SYS_VMSPACE_MMAP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"489\", token.INT, 0)),\n\t\t\"SYS_VMSPACE_MUNMAP\":                reflect.ValueOf(constant.MakeFromLiteral(\"490\", token.INT, 0)),\n\t\t\"SYS_VMSPACE_PREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"492\", token.INT, 0)),\n\t\t\"SYS_VMSPACE_PWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"493\", token.INT, 0)),\n\t\t\"SYS_VQUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"530\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WAIT6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"548\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_YIELD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                          reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_FASTKEEP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCP_KEEPINIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXHLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"TCP_MAXOLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCP_MIN_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOOPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_SIGNATURE_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDCDTIMESTAMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074820184\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033750\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCISPTMASTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536900693\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033754\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033667\", token.INT, 0)),\n\t\t\"TIOCMODS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775492\", token.INT, 0)),\n\t\t\"TIOCMSDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147775579\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147775575\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900703\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCTIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074820185\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"Undelete\":                          reflect.ValueOf(syscall.Undelete),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VCHECKPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VERASE2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"WLINUXCLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                        reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                       reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":                    reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                       reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfVersion\":                    reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                       reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":                    reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                         reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                       reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                          reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":                  reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                        reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":                   reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                      reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":              reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                        reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                      reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                     reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"IfmaMsghdr\":                    reflect.ValueOf((*syscall.IfmaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":                  reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":          reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\":      reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":              reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"InterfaceMulticastAddrMessage\": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)),\n\t\t\"Iovec\":                         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                      reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                        reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":                        reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                   reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":                reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":           reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":              reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":              reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":               reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":                  reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":                reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                     reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                      reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":              reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":                 reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":                 reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":          reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                      reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":                   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                       reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":                    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_freebsd_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_ARP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_ATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_INET6_SDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_INET_SDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NETGRAPH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SCLUSTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SLOW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VENDOR00\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_VENDOR01\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_VENDOR02\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"AF_VENDOR03\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"AF_VENDOR04\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"AF_VENDOR05\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"AF_VENDOR06\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"AF_VENDOR07\":                       reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"AF_VENDOR08\":                       reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"AF_VENDOR09\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"AF_VENDOR10\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"AF_VENDOR11\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"AF_VENDOR12\":                       reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"AF_VENDOR13\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"AF_VENDOR14\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"AF_VENDOR15\":                       reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"AF_VENDOR16\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"AF_VENDOR17\":                       reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"AF_VENDOR18\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"AF_VENDOR19\":                       reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"AF_VENDOR20\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"AF_VENDOR21\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"AF_VENDOR22\":                       reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"AF_VENDOR23\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"AF_VENDOR24\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"AF_VENDOR25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"AF_VENDOR26\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"AF_VENDOR27\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"AF_VENDOR28\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"AF_VENDOR29\":                       reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"AF_VENDOR30\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"AF_VENDOR31\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"AF_VENDOR32\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"AF_VENDOR33\":                       reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"AF_VENDOR34\":                       reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"AF_VENDOR35\":                       reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"AF_VENDOR36\":                       reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"AF_VENDOR37\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"AF_VENDOR38\":                       reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"AF_VENDOR39\":                       reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"AF_VENDOR40\":                       reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"AF_VENDOR41\":                       reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"AF_VENDOR42\":                       reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"AF_VENDOR43\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"AF_VENDOR44\":                       reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"AF_VENDOR45\":                       reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"AF_VENDOR46\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"AF_VENDOR47\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B460800\":                           reflect.ValueOf(constant.MakeFromLiteral(\"460800\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B921600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"921600\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFEEDBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762812\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDIRECTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3221766777\", token.INT, 0)),\n\t\t\"BIOCGETBUFMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074020989\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGETZMAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020991\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020978\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074283118\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCGTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020995\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887930\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCROTZBUF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074545280\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDIRECTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762808\", token.INT, 0)),\n\t\t\"BIOCSETBUFMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147762814\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148024935\", token.INT, 0)),\n\t\t\"BIOCSETFNR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148024962\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSETWF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148024955\", token.INT, 0)),\n\t\t\"BIOCSETZBUF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148287105\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147762803\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148024941\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCSTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147762820\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_BUFMODE_BUFFER\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_BUFMODE_ZBUF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_FAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_MONOTONIC\":           reflect.ValueOf(constant.MakeFromLiteral(\"514\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_MONOTONIC_FAST\":      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"BPF_T_FAST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"BPF_T_FLAG_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_FORMAT_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_FAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_MONOTONIC\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_MONOTONIC_FAST\":    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_MONOTONIC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_T_MONOTONIC_FAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_FAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_MONOTONIC\":          reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_MONOTONIC_FAST\":     reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"BPF_T_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_T_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_A429\":                          reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"DLT_A653_ICM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"DLT_AIRONET_HEADER\":                reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_AOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_AX25_KISS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4\":              reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4_WITH_PHDR\":    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"DLT_CAN20B\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"DLT_CAN_SOCKETCAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"DLT_DBUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"DLT_DECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_DVB_CI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FC_2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"DLT_FC_2_WITH_FRAME_DELIMS\":        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FLEXRAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_FRELAY_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                         reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                         reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_ABIS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_UM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":          reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_LINUX\":            reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NOFCS\":            reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NONASK_PHY\":       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS_RADIO\":      reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"DLT_IPFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"DLT_IPMB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"DLT_IPMB_LINUX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPOIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"DLT_IPV4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"DLT_IPV6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM_CEMIC\":             reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FIBRECHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ISM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":               reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":              reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":             reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":              reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SRX_E2E\":               reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"DLT_LAPB_WITH_DIR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"DLT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"DLT_LIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"DLT_LINUX_EVDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_PPP_WITHDIRECTION\":       reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MATCHING_MAX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"DLT_MATCHING_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_MFR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"DLT_MOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"DLT_MPEG_2_TS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_MUX27010\":                      reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"DLT_NETANALYZER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"DLT_NETANALYZER_TRANSPARENT\":       reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"DLT_NFC_LLCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"DLT_NFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"DLT_NG40\":                          reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_PPI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIRECTION\":            reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAIF1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RIO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SITA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_STANAG_5066_D_PDU\":             reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":             reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"DLT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX_MMAPPED\":             reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"DLT_USER0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"DLT_USER1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"DLT_USER10\":                        reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"DLT_USER11\":                        reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"DLT_USER12\":                        reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"DLT_USER13\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"DLT_USER14\":                        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"DLT_USER15\":                        reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"DLT_USER2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"DLT_USER3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"DLT_USER4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"DLT_USER5\":                         reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"DLT_USER6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"DLT_USER7\":                         reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"DLT_USER8\":                         reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"DLT_USER9\":                         reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"DLT_WIHART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"DLT_X2E_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"DLT_X2E_XORAYA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECAPMODE\":                          reflect.ValueOf(syscall.ECAPMODE),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOOFUS\":                           reflect.ValueOf(syscall.EDOOFUS),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCAPABLE\":                       reflect.ValueOf(syscall.ENOTCAPABLE),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":                   reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                        reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-9\", token.INT, 0)),\n\t\t\"EVFILT_LIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_USER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-11\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_DISPATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EV_DROP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_RECEIPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_CANCEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_DUP2FD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUP2FD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_OGETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_OSETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_OSETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_RDAHEAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_READAHEAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLK_REMOTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_UNLCKSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatat\":                           reflect.ValueOf(syscall.Fstatat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getdtablesize\":                     reflect.ValueOf(syscall.Getdtablesize),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                         reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                 reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ALTPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2199410\", token.INT, 0)),\n\t\t\"IFF_CANTCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DRV_OACTIVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DRV_RUNNING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_DYING\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MONITOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PPROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RENAMING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SMART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_STATICARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_IPXIP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_RFC3021_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4294967294\", token.INT, 0)),\n\t\t\"IPPROTO_3PC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPPROTO_ADFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_AHIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPPROTO_APES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IPPROTO_ARGUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPPROTO_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IPPROTO_BHA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPPROTO_BLT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPPROTO_BRSATMON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_CFTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPPROTO_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPPROTO_CMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPPROTO_CPHB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPPROTO_CPNX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPPROTO_DDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPPROTO_DGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EMCON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IDPR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPPROTO_IDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IPPROTO_IGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IPPROTO_IL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPPROTO_INLSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_INP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPCV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IPPROTO_IPEIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IRTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPPROTO_KRYPTOLAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPPROTO_LARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MEAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPPROTO_MICP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_MUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_NSP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_NVPII\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPPROTO_OLD_DIVERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"IPPROTO_OSPFIGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PGM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IPPROTO_PIGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PRM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_PVP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_RCCMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPPROTO_RDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_RVD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPPROTO_SATEXPAK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPPROTO_SATMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IPPROTO_SCCSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_SDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPPROTO_SEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"IPPROTO_SEP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPPROTO_SPACER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32767\", token.INT, 0)),\n\t\t\"IPPROTO_SRPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IPPROTO_ST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPPROTO_SVMTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IPPROTO_SWIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPPROTO_TCF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TLSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_TPXX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPPROTO_TTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VINES\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_VISA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPPROTO_VMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IPPROTO_WBEXPAK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IPPROTO_WBMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPPROTO_WSN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPPROTO_XNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPPROTO_XTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_BINDANY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_BINDV6ONLY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_FW_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_FW_DEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_FW_FLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_FW_GET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_FW_ZERO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXOPTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MAX_GROUP_SRC_FILTER\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IPV6_MAX_MEMBERSHIPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IPV6_MAX_SOCK_SRC_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IPV6_MIN_MEMBERSHIPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MSFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PREFER_TEMPADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IP_BINDANY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DONTFRAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IP_DUMMYNET3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_CONFIGURE\":             reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IP_FAITH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_FW3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IP_FW_ADD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_FW_DEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IP_FW_FLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IP_FW_GET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IP_FW_NAT_CFG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IP_FW_NAT_DEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IP_FW_NAT_GET_CONFIG\":              reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IP_FW_NAT_GET_LOG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IP_FW_RESETLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_ADD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_GETSIZE\":               reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_LIST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IP_FW_ZERO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_GROUP_SRC_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_MUTE_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_SRC_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOURCE_FILTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_VIF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_ONESBCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RSVP_OFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_RSVP_ON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_OFF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_ON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_SENDSRCADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_AUTOSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_CORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_NOCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_NOSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_PROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ALIGNED_SUPER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_SHIFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_NOCORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_NOSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_PREFAULT_READ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_RESERVED0080\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_RESERVED0100\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MSG_COMPAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_NBIO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MSG_NOTIFICATION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_IFLISTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NET_RT_IFMALIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FFAND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_FFCOPY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFCTRLMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFLAGSMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"NOTE_FFNOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NOTE_FFOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRIGGER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXEC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_TTY_INIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"268752904\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_GWFLAG_COMPAT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLDATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PRCLONING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_RNH_LOCKED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_STICKY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DELMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTV_WEIGHT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RT_CACHING_CONTEXT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RT_DEFAULT_FIB\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_NORTREF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_BINTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SCM_CREDS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGLIBRT\":                          reflect.ValueOf(syscall.SIGLIBRT),\n\t\t\"SIGLWP\":                            reflect.ValueOf(syscall.SIGLWP),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHR\":                            reflect.ValueOf(syscall.SIGTHR),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150658570\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCAIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149869959\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860635\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150658571\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149869961\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607753\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860637\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223087483\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222565392\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222565391\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349535\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221776676\", token.INT, 0)),\n\t\t\"SIOCGIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349546\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349596\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFGMEMB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223611786\", token.INT, 0)),\n\t\t\"SIOCGIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223611784\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349536\", token.INT, 0)),\n\t\t\"SIOCGIFMAC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349542\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873848\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349555\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFSTATUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3274795323\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3239602460\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3239602507\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_0\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349584\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349585\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349626\", token.INT, 0)),\n\t\t\"SIOCIFCREATE2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222038904\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149345659\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607710\", token.INT, 0)),\n\t\t\"SIOCSIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607721\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607773\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607740\", token.INT, 0)),\n\t\t\"SIOCSIFMAC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607719\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607732\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607720\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607734\", token.INT, 0)),\n\t\t\"SIOCSIFRVNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349595\", token.INT, 0)),\n\t\t\"SIOCSIFVNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349594\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2165860682\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_MAXADDRLEN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ACCEPTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BINTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LABEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LISTENINCQLEN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SO_LISTENQLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4114\", token.INT, 0)),\n\t\t\"SO_LISTENQLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_NO_DDP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SO_NO_OFFLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_PROTOTYPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SETFIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4116\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_USER_COOKIE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4117\", token.INT, 0)),\n\t\t\"SO_VENDOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"SYS_ABORT2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"463\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"541\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_AUDIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"445\", token.INT, 0)),\n\t\t\"SYS_AUDITCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"453\", token.INT, 0)),\n\t\t\"SYS_AUDITON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"446\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BINDAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"538\", token.INT, 0)),\n\t\t\"SYS_CAP_ENTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"SYS_CAP_GETMODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"SYS_CAP_GETRIGHTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"515\", token.INT, 0)),\n\t\t\"SYS_CAP_NEW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"514\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHFLAGSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"540\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETCPUCLOCKID2\":          reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSEFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"509\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_CONNECTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"539\", token.INT, 0)),\n\t\t\"SYS_CPUSET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"484\", token.INT, 0)),\n\t\t\"SYS_CPUSET_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"487\", token.INT, 0)),\n\t\t\"SYS_CPUSET_GETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"486\", token.INT, 0)),\n\t\t\"SYS_CPUSET_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"488\", token.INT, 0)),\n\t\t\"SYS_CPUSET_SETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"485\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXTATTRCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"373\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"437\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"438\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"489\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"490\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"491\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FEXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"492\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_GETCOUNTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_GETESTIMATE\":           reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_SETESTIMATE\":           reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_FHSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"398\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_FTRUNCATE\":            reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_LSEEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_MMAP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_PREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_PWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_TRUNCATE\":             reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"551\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"552\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"556\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"480\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"494\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"449\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"SYS_GETAUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"447\", token.INT, 0)),\n\t\t\"SYS_GETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"554\", token.INT, 0)),\n\t\t\"SYS_GETDTABLESIZE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"557\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETLOGINCLASS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"523\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_JAIL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_JAIL_ATTACH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_JAIL_GET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"506\", token.INT, 0)),\n\t\t\"SYS_JAIL_REMOVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"508\", token.INT, 0)),\n\t\t\"SYS_JAIL_SET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"507\", token.INT, 0)),\n\t\t\"SYS_KENV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KLDFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_KLDFIRSTMOD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_KLDLOAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_KLDNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_KLDSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_KLDSYM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOADF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"444\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_KTIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_KTIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_KTIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_KTIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_KTIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"391\", token.INT, 0)),\n\t\t\"SYS_LCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_LGETFH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"495\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"478\", token.INT, 0)),\n\t\t\"SYS_LUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_MAC_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"496\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"497\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"559\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"477\", token.INT, 0)),\n\t\t\"SYS_MODFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_MODFNEXT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_MODNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_MODSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_NFSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_NLSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_NMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"378\", token.INT, 0)),\n\t\t\"SYS_NSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_NTP_ADJTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_NTP_GETTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_OBREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"499\", token.INT, 0)),\n\t\t\"SYS_OPENBSD_POLL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_OVADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PDFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"SYS_PDGETPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"520\", token.INT, 0)),\n\t\t\"SYS_PDKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"519\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"542\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_POSIX_FADVISE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"531\", token.INT, 0)),\n\t\t\"SYS_POSIX_FALLOCATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"530\", token.INT, 0)),\n\t\t\"SYS_POSIX_OPENPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"504\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"475\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_PROCCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"544\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"522\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"476\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_RCTL_ADD_RULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"528\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_LIMITS\":               reflect.ValueOf(constant.MakeFromLiteral(\"527\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_RACCT\":                reflect.ValueOf(constant.MakeFromLiteral(\"525\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_RULES\":                reflect.ValueOf(constant.MakeFromLiteral(\"526\", token.INT, 0)),\n\t\t\"SYS_RCTL_REMOVE_RULE\":              reflect.ValueOf(constant.MakeFromLiteral(\"529\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"500\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"501\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_RTPRIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_RTPRIO_THREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"466\", token.INT, 0)),\n\t\t\"SYS_SBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":        reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":        reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_RECVMSG\":          reflect.ValueOf(constant.MakeFromLiteral(\"474\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_SENDMSG\":          reflect.ValueOf(constant.MakeFromLiteral(\"472\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_SENDMSG_IOV\":      reflect.ValueOf(constant.MakeFromLiteral(\"473\", token.INT, 0)),\n\t\t\"SYS_SCTP_PEELOFF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"471\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"393\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"452\", token.INT, 0)),\n\t\t\"SYS_SETAUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"SYS_SETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETLOGINCLASS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"524\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SHM_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"482\", token.INT, 0)),\n\t\t\"SYS_SHM_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"483\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_SIGQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"456\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_SIGTIMEDWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_SIGWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_SIGWAITINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SSTK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"555\", token.INT, 0)),\n\t\t\"SYS_SWAPCONTEXT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"502\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_THR_CREATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_THR_EXIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS_THR_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"433\", token.INT, 0)),\n\t\t\"SYS_THR_KILL2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"481\", token.INT, 0)),\n\t\t\"SYS_THR_NEW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"455\", token.INT, 0)),\n\t\t\"SYS_THR_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"432\", token.INT, 0)),\n\t\t\"SYS_THR_SET_NAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"464\", token.INT, 0)),\n\t\t\"SYS_THR_SUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"442\", token.INT, 0)),\n\t\t\"SYS_THR_WAKE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"443\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"479\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"503\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"547\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_UUIDGEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"392\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WAIT6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"532\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_YIELD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS__UMTX_LOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS__UMTX_OP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"454\", token.INT, 0)),\n\t\t\"SYS__UMTX_UNLOCK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS___MAC_EXECVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"387\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"409\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PROC\":                reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"388\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"389\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_PROC\":                reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS___SETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"374\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                          reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                 reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofBpfZbuf\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofBpfZbufHeader\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CA_NAME_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TCP_INFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCP_KEEPINIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXHLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"TCP_MAXOLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOOPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_VENDOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033750\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033679\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033754\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMSDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147775579\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DCD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTMASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900636\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147775575\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"537162847\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCTIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074295897\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"Undelete\":                          reflect.ValueOf(syscall.Undelete),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VERASE2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"WLINUXCLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WTRAPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                        reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                       reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":                    reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                       reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfVersion\":                    reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"BpfZbuf\":                       reflect.ValueOf((*syscall.BpfZbuf)(nil)),\n\t\t\"BpfZbufHeader\":                 reflect.ValueOf((*syscall.BpfZbufHeader)(nil)),\n\t\t\"Cmsghdr\":                       reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":                    reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                         reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                       reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                          reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":                  reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                        reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":                       reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":                   reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                      reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":              reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                        reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                      reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                     reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"IfmaMsghdr\":                    reflect.ValueOf((*syscall.IfmaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":                  reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":          reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\":      reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":              reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"InterfaceMulticastAddrMessage\": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)),\n\t\t\"Iovec\":                         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                      reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                        reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":                        reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                   reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":                reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":           reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":              reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":              reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":               reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":                  reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":                reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                     reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                      reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":              reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":                 reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":                 reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":          reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                      reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":                   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                       reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":                    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_freebsd_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_ARP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_ATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_INET6_SDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_INET_SDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NETGRAPH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SCLUSTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SLOW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VENDOR00\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_VENDOR01\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_VENDOR02\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"AF_VENDOR03\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"AF_VENDOR04\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"AF_VENDOR05\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"AF_VENDOR06\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"AF_VENDOR07\":                       reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"AF_VENDOR08\":                       reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"AF_VENDOR09\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"AF_VENDOR10\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"AF_VENDOR11\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"AF_VENDOR12\":                       reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"AF_VENDOR13\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"AF_VENDOR14\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"AF_VENDOR15\":                       reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"AF_VENDOR16\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"AF_VENDOR17\":                       reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"AF_VENDOR18\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"AF_VENDOR19\":                       reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"AF_VENDOR20\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"AF_VENDOR21\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"AF_VENDOR22\":                       reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"AF_VENDOR23\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"AF_VENDOR24\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"AF_VENDOR25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"AF_VENDOR26\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"AF_VENDOR27\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"AF_VENDOR28\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"AF_VENDOR29\":                       reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"AF_VENDOR30\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"AF_VENDOR31\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"AF_VENDOR32\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"AF_VENDOR33\":                       reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"AF_VENDOR34\":                       reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"AF_VENDOR35\":                       reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"AF_VENDOR36\":                       reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"AF_VENDOR37\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"AF_VENDOR38\":                       reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"AF_VENDOR39\":                       reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"AF_VENDOR40\":                       reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"AF_VENDOR41\":                       reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"AF_VENDOR42\":                       reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"AF_VENDOR43\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"AF_VENDOR44\":                       reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"AF_VENDOR45\":                       reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"AF_VENDOR46\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"AF_VENDOR47\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B460800\":                           reflect.ValueOf(constant.MakeFromLiteral(\"460800\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B921600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"921600\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFEEDBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762812\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDIRECTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222291065\", token.INT, 0)),\n\t\t\"BIOCGETBUFMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074020989\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGETZMAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074283135\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020978\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCGTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020995\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887930\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCROTZBUF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1075331712\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDIRECTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762808\", token.INT, 0)),\n\t\t\"BIOCSETBUFMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147762814\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETFNR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148549250\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSETWF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148549243\", token.INT, 0)),\n\t\t\"BIOCSETZBUF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149073537\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147762803\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCSTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147762820\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_BUFMODE_BUFFER\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_BUFMODE_ZBUF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_FAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_MONOTONIC\":           reflect.ValueOf(constant.MakeFromLiteral(\"514\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_MONOTONIC_FAST\":      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"BPF_T_FAST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"BPF_T_FLAG_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_FORMAT_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_FAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_MONOTONIC\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_MONOTONIC_FAST\":    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_MONOTONIC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_T_MONOTONIC_FAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_FAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_MONOTONIC\":          reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_MONOTONIC_FAST\":     reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"BPF_T_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_T_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_A429\":                          reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"DLT_A653_ICM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"DLT_AIRONET_HEADER\":                reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_AOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_AX25_KISS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4\":              reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4_WITH_PHDR\":    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"DLT_CAN20B\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"DLT_CAN_SOCKETCAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"DLT_DBUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"DLT_DECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_DVB_CI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FC_2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"DLT_FC_2_WITH_FRAME_DELIMS\":        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FLEXRAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_FRELAY_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                         reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                         reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_ABIS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_UM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":          reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_LINUX\":            reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NOFCS\":            reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NONASK_PHY\":       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS_RADIO\":      reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"DLT_IPFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"DLT_IPMB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"DLT_IPMB_LINUX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPOIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"DLT_IPV4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"DLT_IPV6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM_CEMIC\":             reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FIBRECHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ISM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":               reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":              reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":             reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":              reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SRX_E2E\":               reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"DLT_LAPB_WITH_DIR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"DLT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"DLT_LIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"DLT_LINUX_EVDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_PPP_WITHDIRECTION\":       reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MATCHING_MAX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"DLT_MATCHING_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_MFR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"DLT_MOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"DLT_MPEG_2_TS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_MUX27010\":                      reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"DLT_NETANALYZER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"DLT_NETANALYZER_TRANSPARENT\":       reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"DLT_NFC_LLCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"DLT_NFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"DLT_NG40\":                          reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_PPI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIRECTION\":            reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAIF1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RIO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SITA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_STANAG_5066_D_PDU\":             reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":             reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"DLT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX_MMAPPED\":             reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"DLT_USER0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"DLT_USER1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"DLT_USER10\":                        reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"DLT_USER11\":                        reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"DLT_USER12\":                        reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"DLT_USER13\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"DLT_USER14\":                        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"DLT_USER15\":                        reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"DLT_USER2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"DLT_USER3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"DLT_USER4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"DLT_USER5\":                         reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"DLT_USER6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"DLT_USER7\":                         reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"DLT_USER8\":                         reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"DLT_USER9\":                         reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"DLT_WIHART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"DLT_X2E_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"DLT_X2E_XORAYA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECAPMODE\":                          reflect.ValueOf(syscall.ECAPMODE),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOOFUS\":                           reflect.ValueOf(syscall.EDOOFUS),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCAPABLE\":                       reflect.ValueOf(syscall.ENOTCAPABLE),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":                   reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                        reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-9\", token.INT, 0)),\n\t\t\"EVFILT_LIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_USER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-11\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_DISPATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EV_DROP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_RECEIPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_CANCEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_DUP2FD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUP2FD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_OGETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_OSETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_OSETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_RDAHEAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_READAHEAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLK_REMOTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_UNLCKSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatat\":                           reflect.ValueOf(syscall.Fstatat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getdtablesize\":                     reflect.ValueOf(syscall.Getdtablesize),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                         reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                 reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ALTPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2199410\", token.INT, 0)),\n\t\t\"IFF_CANTCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DRV_OACTIVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DRV_RUNNING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_DYING\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MONITOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PPROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RENAMING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SMART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_STATICARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_IPXIP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_RFC3021_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4294967294\", token.INT, 0)),\n\t\t\"IPPROTO_3PC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPPROTO_ADFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_AHIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPPROTO_APES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IPPROTO_ARGUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPPROTO_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IPPROTO_BHA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPPROTO_BLT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPPROTO_BRSATMON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_CFTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPPROTO_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPPROTO_CMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPPROTO_CPHB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPPROTO_CPNX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPPROTO_DDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPPROTO_DGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EMCON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IDPR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPPROTO_IDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IPPROTO_IGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IPPROTO_IL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPPROTO_INLSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_INP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPCV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IPPROTO_IPEIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IRTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPPROTO_KRYPTOLAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPPROTO_LARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MEAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPPROTO_MICP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_MUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_NSP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_NVPII\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPPROTO_OLD_DIVERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"IPPROTO_OSPFIGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PGM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IPPROTO_PIGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PRM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_PVP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_RCCMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPPROTO_RDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_RVD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPPROTO_SATEXPAK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPPROTO_SATMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IPPROTO_SCCSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_SDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPPROTO_SEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"IPPROTO_SEP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPPROTO_SPACER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32767\", token.INT, 0)),\n\t\t\"IPPROTO_SRPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IPPROTO_ST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPPROTO_SVMTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IPPROTO_SWIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPPROTO_TCF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TLSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_TPXX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPPROTO_TTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VINES\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_VISA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPPROTO_VMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IPPROTO_WBEXPAK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IPPROTO_WBMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPPROTO_WSN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPPROTO_XNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPPROTO_XTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_BINDANY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_BINDV6ONLY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_FW_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_FW_DEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_FW_FLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_FW_GET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_FW_ZERO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXOPTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MAX_GROUP_SRC_FILTER\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IPV6_MAX_MEMBERSHIPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IPV6_MAX_SOCK_SRC_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IPV6_MIN_MEMBERSHIPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MSFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PREFER_TEMPADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IP_BINDANY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DONTFRAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IP_DUMMYNET3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_CONFIGURE\":             reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IP_FAITH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_FW3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IP_FW_ADD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_FW_DEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IP_FW_FLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IP_FW_GET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IP_FW_NAT_CFG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IP_FW_NAT_DEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IP_FW_NAT_GET_CONFIG\":              reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IP_FW_NAT_GET_LOG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IP_FW_RESETLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_ADD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_GETSIZE\":               reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_LIST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IP_FW_ZERO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_GROUP_SRC_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_MUTE_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_SRC_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOURCE_FILTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_VIF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_ONESBCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RSVP_OFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_RSVP_ON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_OFF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_ON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_SENDSRCADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_AUTOSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_CORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_NOCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_NOSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_PROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_32BIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MAP_ALIGNED_SUPER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_SHIFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_NOCORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_NOSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_PREFAULT_READ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_RESERVED0080\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_RESERVED0100\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MSG_COMPAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_NBIO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MSG_NOTIFICATION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_IFLISTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NET_RT_IFMALIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FFAND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_FFCOPY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFCTRLMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFLAGSMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"NOTE_FFNOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NOTE_FFOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRIGGER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXEC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_TTY_INIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"268752904\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_GWFLAG_COMPAT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLDATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PRCLONING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_RNH_LOCKED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_STICKY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DELMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTV_WEIGHT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RT_CACHING_CONTEXT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RT_DEFAULT_FIB\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_NORTREF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_BINTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SCM_CREDS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGLIBRT\":                          reflect.ValueOf(syscall.SIGLIBRT),\n\t\t\"SIGLWP\":                            reflect.ValueOf(syscall.SIGLWP),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHR\":                            reflect.ValueOf(syscall.SIGTHR),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151707146\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCAIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132103\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860635\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151707147\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132105\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607753\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860637\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873915\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223351824\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223876111\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349535\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222300964\", token.INT, 0)),\n\t\t\"SIOCGIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349546\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349596\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFGMEMB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873930\", token.INT, 0)),\n\t\t\"SIOCGIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873928\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349536\", token.INT, 0)),\n\t\t\"SIOCGIFMAC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349542\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3224398136\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349555\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFSTATUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3274795323\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3239602460\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3239602507\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_0\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349584\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349585\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349626\", token.INT, 0)),\n\t\t\"SIOCIFCREATE2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222301048\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132091\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607710\", token.INT, 0)),\n\t\t\"SIOCSIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607721\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607773\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607740\", token.INT, 0)),\n\t\t\"SIOCSIFMAC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607719\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607732\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607720\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607734\", token.INT, 0)),\n\t\t\"SIOCSIFRVNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349595\", token.INT, 0)),\n\t\t\"SIOCSIFVNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349594\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2165860682\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_MAXADDRLEN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ACCEPTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BINTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LABEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LISTENINCQLEN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SO_LISTENQLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4114\", token.INT, 0)),\n\t\t\"SO_LISTENQLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_NO_DDP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SO_NO_OFFLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_PROTOTYPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SETFIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4116\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_USER_COOKIE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4117\", token.INT, 0)),\n\t\t\"SO_VENDOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"SYS_ABORT2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"463\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"541\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_AUDIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"445\", token.INT, 0)),\n\t\t\"SYS_AUDITCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"453\", token.INT, 0)),\n\t\t\"SYS_AUDITON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"446\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BINDAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"538\", token.INT, 0)),\n\t\t\"SYS_CAP_ENTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"SYS_CAP_GETMODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"SYS_CAP_GETRIGHTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"515\", token.INT, 0)),\n\t\t\"SYS_CAP_NEW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"514\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHFLAGSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"540\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETCPUCLOCKID2\":          reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSEFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"509\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_CONNECTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"539\", token.INT, 0)),\n\t\t\"SYS_CPUSET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"484\", token.INT, 0)),\n\t\t\"SYS_CPUSET_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"487\", token.INT, 0)),\n\t\t\"SYS_CPUSET_GETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"486\", token.INT, 0)),\n\t\t\"SYS_CPUSET_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"488\", token.INT, 0)),\n\t\t\"SYS_CPUSET_SETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"485\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXTATTRCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"373\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"437\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"438\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"489\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"490\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"491\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FEXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"492\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_GETCOUNTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_GETESTIMATE\":           reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_SETESTIMATE\":           reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_FHSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"398\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_FTRUNCATE\":            reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_LSEEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_MMAP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_PREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_PWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_TRUNCATE\":             reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"551\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"552\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"556\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"480\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"494\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"449\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"SYS_GETAUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"447\", token.INT, 0)),\n\t\t\"SYS_GETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"554\", token.INT, 0)),\n\t\t\"SYS_GETDTABLESIZE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"557\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETLOGINCLASS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"523\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_JAIL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_JAIL_ATTACH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_JAIL_GET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"506\", token.INT, 0)),\n\t\t\"SYS_JAIL_REMOVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"508\", token.INT, 0)),\n\t\t\"SYS_JAIL_SET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"507\", token.INT, 0)),\n\t\t\"SYS_KENV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KLDFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_KLDFIRSTMOD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_KLDLOAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_KLDNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_KLDSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_KLDSYM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOADF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"444\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_KTIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_KTIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_KTIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_KTIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_KTIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"391\", token.INT, 0)),\n\t\t\"SYS_LCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_LGETFH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"495\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"478\", token.INT, 0)),\n\t\t\"SYS_LUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_MAC_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"496\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"497\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"559\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"477\", token.INT, 0)),\n\t\t\"SYS_MODFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_MODFNEXT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_MODNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_MODSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_NFSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_NLSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_NMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"378\", token.INT, 0)),\n\t\t\"SYS_NSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_NTP_ADJTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_NTP_GETTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_OBREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"499\", token.INT, 0)),\n\t\t\"SYS_OPENBSD_POLL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_OVADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PDFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"SYS_PDGETPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"520\", token.INT, 0)),\n\t\t\"SYS_PDKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"519\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"542\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_POSIX_FADVISE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"531\", token.INT, 0)),\n\t\t\"SYS_POSIX_FALLOCATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"530\", token.INT, 0)),\n\t\t\"SYS_POSIX_OPENPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"504\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"475\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_PROCCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"544\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"522\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"476\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_RCTL_ADD_RULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"528\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_LIMITS\":               reflect.ValueOf(constant.MakeFromLiteral(\"527\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_RACCT\":                reflect.ValueOf(constant.MakeFromLiteral(\"525\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_RULES\":                reflect.ValueOf(constant.MakeFromLiteral(\"526\", token.INT, 0)),\n\t\t\"SYS_RCTL_REMOVE_RULE\":              reflect.ValueOf(constant.MakeFromLiteral(\"529\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"500\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"501\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_RTPRIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_RTPRIO_THREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"466\", token.INT, 0)),\n\t\t\"SYS_SBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":        reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":        reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_RECVMSG\":          reflect.ValueOf(constant.MakeFromLiteral(\"474\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_SENDMSG\":          reflect.ValueOf(constant.MakeFromLiteral(\"472\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_SENDMSG_IOV\":      reflect.ValueOf(constant.MakeFromLiteral(\"473\", token.INT, 0)),\n\t\t\"SYS_SCTP_PEELOFF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"471\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"393\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"452\", token.INT, 0)),\n\t\t\"SYS_SETAUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"SYS_SETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETLOGINCLASS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"524\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SHM_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"482\", token.INT, 0)),\n\t\t\"SYS_SHM_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"483\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_SIGQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"456\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_SIGTIMEDWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_SIGWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_SIGWAITINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SSTK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"555\", token.INT, 0)),\n\t\t\"SYS_SWAPCONTEXT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"502\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_THR_CREATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_THR_EXIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS_THR_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"433\", token.INT, 0)),\n\t\t\"SYS_THR_KILL2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"481\", token.INT, 0)),\n\t\t\"SYS_THR_NEW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"455\", token.INT, 0)),\n\t\t\"SYS_THR_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"432\", token.INT, 0)),\n\t\t\"SYS_THR_SET_NAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"464\", token.INT, 0)),\n\t\t\"SYS_THR_SUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"442\", token.INT, 0)),\n\t\t\"SYS_THR_WAKE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"443\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"479\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"503\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"547\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_UUIDGEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"392\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WAIT6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"532\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_YIELD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS__UMTX_LOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS__UMTX_OP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"454\", token.INT, 0)),\n\t\t\"SYS__UMTX_UNLOCK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS___MAC_EXECVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"387\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"409\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PROC\":                reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"388\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"389\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_PROC\":                reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS___SETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"374\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                          reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                 reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofBpfZbuf\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofBpfZbufHeader\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CA_NAME_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TCP_INFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCP_KEEPINIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXHLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"TCP_MAXOLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOOPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_VENDOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033750\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033679\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033754\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMSDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147775579\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DCD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTMASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900636\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147775575\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"537162847\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCTIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074820185\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"Undelete\":                          reflect.ValueOf(syscall.Undelete),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VERASE2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"WLINUXCLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WTRAPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                        reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                       reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":                    reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                       reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfVersion\":                    reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"BpfZbuf\":                       reflect.ValueOf((*syscall.BpfZbuf)(nil)),\n\t\t\"BpfZbufHeader\":                 reflect.ValueOf((*syscall.BpfZbufHeader)(nil)),\n\t\t\"Cmsghdr\":                       reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":                    reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                         reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                       reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                          reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":                  reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                        reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":                       reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":                   reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                      reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":              reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                        reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                      reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                     reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"IfmaMsghdr\":                    reflect.ValueOf((*syscall.IfmaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":                  reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":          reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\":      reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":              reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"InterfaceMulticastAddrMessage\": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)),\n\t\t\"Iovec\":                         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                      reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                        reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":                        reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                   reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":                reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":           reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":              reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":              reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":               reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":                  reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":                reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                     reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                      reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":              reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":                 reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":                 reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":          reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                      reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":                   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                       reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":                    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_freebsd_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_ARP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_ATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_INET6_SDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_INET_SDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NETGRAPH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SCLUSTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SLOW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VENDOR00\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_VENDOR01\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_VENDOR02\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"AF_VENDOR03\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"AF_VENDOR04\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"AF_VENDOR05\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"AF_VENDOR06\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"AF_VENDOR07\":                       reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"AF_VENDOR08\":                       reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"AF_VENDOR09\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"AF_VENDOR10\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"AF_VENDOR11\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"AF_VENDOR12\":                       reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"AF_VENDOR13\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"AF_VENDOR14\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"AF_VENDOR15\":                       reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"AF_VENDOR16\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"AF_VENDOR17\":                       reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"AF_VENDOR18\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"AF_VENDOR19\":                       reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"AF_VENDOR20\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"AF_VENDOR21\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"AF_VENDOR22\":                       reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"AF_VENDOR23\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"AF_VENDOR24\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"AF_VENDOR25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"AF_VENDOR26\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"AF_VENDOR27\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"AF_VENDOR28\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"AF_VENDOR29\":                       reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"AF_VENDOR30\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"AF_VENDOR31\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"AF_VENDOR32\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"AF_VENDOR33\":                       reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"AF_VENDOR34\":                       reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"AF_VENDOR35\":                       reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"AF_VENDOR36\":                       reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"AF_VENDOR37\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"AF_VENDOR38\":                       reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"AF_VENDOR39\":                       reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"AF_VENDOR40\":                       reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"AF_VENDOR41\":                       reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"AF_VENDOR42\":                       reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"AF_VENDOR43\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"AF_VENDOR44\":                       reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"AF_VENDOR45\":                       reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"AF_VENDOR46\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"AF_VENDOR47\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B460800\":                           reflect.ValueOf(constant.MakeFromLiteral(\"460800\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B921600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"921600\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFEEDBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762812\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDIRECTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3221766777\", token.INT, 0)),\n\t\t\"BIOCGETBUFMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074020989\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGETZMAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020991\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020978\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCGTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020995\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887930\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCROTZBUF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074545280\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDIRECTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762808\", token.INT, 0)),\n\t\t\"BIOCSETBUFMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147762814\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148024935\", token.INT, 0)),\n\t\t\"BIOCSETFNR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148024962\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSETWF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148024955\", token.INT, 0)),\n\t\t\"BIOCSETZBUF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148287105\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147762803\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCSTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147762820\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_BUFMODE_BUFFER\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_BUFMODE_ZBUF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_FAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_MONOTONIC\":           reflect.ValueOf(constant.MakeFromLiteral(\"514\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_MONOTONIC_FAST\":      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"BPF_T_FAST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"BPF_T_FLAG_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_FORMAT_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_FAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_MONOTONIC\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_MONOTONIC_FAST\":    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_MONOTONIC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_T_MONOTONIC_FAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_FAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_MONOTONIC\":          reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_MONOTONIC_FAST\":     reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"BPF_T_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_T_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_A429\":                          reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"DLT_A653_ICM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"DLT_AIRONET_HEADER\":                reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_AOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_AX25_KISS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4\":              reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4_WITH_PHDR\":    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"DLT_CAN20B\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"DLT_CAN_SOCKETCAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"DLT_DBUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"DLT_DECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_DVB_CI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FC_2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"DLT_FC_2_WITH_FRAME_DELIMS\":        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FLEXRAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_FRELAY_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                         reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                         reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_ABIS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_UM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":          reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_LINUX\":            reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NOFCS\":            reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NONASK_PHY\":       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS_RADIO\":      reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"DLT_IPFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"DLT_IPMB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"DLT_IPMB_LINUX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPOIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"DLT_IPV4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"DLT_IPV6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM_CEMIC\":             reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FIBRECHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ISM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":               reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":              reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":             reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":              reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SRX_E2E\":               reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"DLT_LAPB_WITH_DIR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"DLT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"DLT_LIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"DLT_LINUX_EVDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_PPP_WITHDIRECTION\":       reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MATCHING_MAX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"DLT_MATCHING_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_MFR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"DLT_MOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"DLT_MPEG_2_TS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_MUX27010\":                      reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"DLT_NETANALYZER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"DLT_NETANALYZER_TRANSPARENT\":       reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"DLT_NFC_LLCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"DLT_NFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"DLT_NG40\":                          reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_PPI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIRECTION\":            reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAIF1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RIO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SITA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_STANAG_5066_D_PDU\":             reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":             reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"DLT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX_MMAPPED\":             reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"DLT_USER0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"DLT_USER1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"DLT_USER10\":                        reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"DLT_USER11\":                        reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"DLT_USER12\":                        reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"DLT_USER13\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"DLT_USER14\":                        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"DLT_USER15\":                        reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"DLT_USER2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"DLT_USER3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"DLT_USER4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"DLT_USER5\":                         reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"DLT_USER6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"DLT_USER7\":                         reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"DLT_USER8\":                         reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"DLT_USER9\":                         reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"DLT_WIHART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"DLT_X2E_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"DLT_X2E_XORAYA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECAPMODE\":                          reflect.ValueOf(syscall.ECAPMODE),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOOFUS\":                           reflect.ValueOf(syscall.EDOOFUS),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCAPABLE\":                       reflect.ValueOf(syscall.ENOTCAPABLE),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":                   reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                        reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-9\", token.INT, 0)),\n\t\t\"EVFILT_LIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_USER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-11\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_DISPATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EV_DROP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_RECEIPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_CANCEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_DUP2FD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUP2FD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_OGETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_OSETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_OSETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_RDAHEAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_READAHEAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLK_REMOTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_UNLCKSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatat\":                           reflect.ValueOf(syscall.Fstatat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getdtablesize\":                     reflect.ValueOf(syscall.Getdtablesize),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                         reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                 reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ALTPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2199410\", token.INT, 0)),\n\t\t\"IFF_CANTCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DRV_OACTIVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DRV_RUNNING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_DYING\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MONITOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PPROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RENAMING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SMART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_STATICARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_IPXIP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_RFC3021_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4294967294\", token.INT, 0)),\n\t\t\"IPPROTO_3PC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPPROTO_ADFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_AHIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPPROTO_APES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IPPROTO_ARGUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPPROTO_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IPPROTO_BHA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPPROTO_BLT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPPROTO_BRSATMON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_CFTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPPROTO_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPPROTO_CMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPPROTO_CPHB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPPROTO_CPNX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPPROTO_DDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPPROTO_DGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EMCON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IDPR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPPROTO_IDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IPPROTO_IGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IPPROTO_IL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPPROTO_INLSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_INP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPCV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IPPROTO_IPEIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IRTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPPROTO_KRYPTOLAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPPROTO_LARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MEAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPPROTO_MICP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_MUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_NSP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_NVPII\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPPROTO_OLD_DIVERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"IPPROTO_OSPFIGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PGM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IPPROTO_PIGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PRM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_PVP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_RCCMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPPROTO_RDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_RVD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPPROTO_SATEXPAK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPPROTO_SATMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IPPROTO_SCCSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_SDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPPROTO_SEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"IPPROTO_SEP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPPROTO_SPACER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32767\", token.INT, 0)),\n\t\t\"IPPROTO_SRPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IPPROTO_ST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPPROTO_SVMTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IPPROTO_SWIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPPROTO_TCF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TLSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_TPXX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPPROTO_TTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VINES\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_VISA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPPROTO_VMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IPPROTO_WBEXPAK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IPPROTO_WBMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPPROTO_WSN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPPROTO_XNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPPROTO_XTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_BINDANY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_BINDV6ONLY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_FW_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_FW_DEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_FW_FLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_FW_GET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_FW_ZERO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXOPTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MAX_GROUP_SRC_FILTER\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IPV6_MAX_MEMBERSHIPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IPV6_MAX_SOCK_SRC_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IPV6_MIN_MEMBERSHIPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MSFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PREFER_TEMPADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IP_BINDANY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DONTFRAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IP_DUMMYNET3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_CONFIGURE\":             reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IP_FAITH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_FW3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IP_FW_ADD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_FW_DEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IP_FW_FLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IP_FW_GET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IP_FW_NAT_CFG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IP_FW_NAT_DEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IP_FW_NAT_GET_CONFIG\":              reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IP_FW_NAT_GET_LOG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IP_FW_RESETLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_ADD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_GETSIZE\":               reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_LIST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IP_FW_ZERO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_GROUP_SRC_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_MUTE_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_SRC_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOURCE_FILTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_VIF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_ONESBCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RSVP_OFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_RSVP_ON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_OFF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_ON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_SENDSRCADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_AUTOSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_CORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_NOCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_NOSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_PROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ALIGNED_SUPER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_SHIFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_NOCORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_NOSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_PREFAULT_READ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_RESERVED0080\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_RESERVED0100\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MSG_COMPAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_NBIO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MSG_NOTIFICATION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_IFLISTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NET_RT_IFMALIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FFAND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_FFCOPY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFCTRLMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFLAGSMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"NOTE_FFNOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NOTE_FFOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRIGGER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXEC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_TTY_INIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"268752904\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_GWFLAG_COMPAT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLDATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PRCLONING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_RNH_LOCKED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_STICKY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DELMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTV_WEIGHT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RT_CACHING_CONTEXT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RT_DEFAULT_FIB\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_NORTREF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_BINTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SCM_CREDS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGLIBRT\":                          reflect.ValueOf(syscall.SIGLIBRT),\n\t\t\"SIGLWP\":                            reflect.ValueOf(syscall.SIGLWP),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHR\":                            reflect.ValueOf(syscall.SIGTHR),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150658570\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCAIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149869959\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860635\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150658571\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149869961\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607753\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860637\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223087483\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222565392\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222565391\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349535\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221776676\", token.INT, 0)),\n\t\t\"SIOCGIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349546\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349596\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFGMEMB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223611786\", token.INT, 0)),\n\t\t\"SIOCGIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223611784\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349536\", token.INT, 0)),\n\t\t\"SIOCGIFMAC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349542\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873848\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349555\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFSTATUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3274795323\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3239602460\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3239602507\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_0\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349584\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349585\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349626\", token.INT, 0)),\n\t\t\"SIOCIFCREATE2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222038904\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149345659\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607710\", token.INT, 0)),\n\t\t\"SIOCSIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607721\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607773\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607740\", token.INT, 0)),\n\t\t\"SIOCSIFMAC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607719\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607732\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607720\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607734\", token.INT, 0)),\n\t\t\"SIOCSIFRVNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349595\", token.INT, 0)),\n\t\t\"SIOCSIFVNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349594\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2165860682\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_MAXADDRLEN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ACCEPTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BINTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LABEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LISTENINCQLEN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SO_LISTENQLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4114\", token.INT, 0)),\n\t\t\"SO_LISTENQLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_NO_DDP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SO_NO_OFFLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_PROTOTYPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SETFIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4116\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_USER_COOKIE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4117\", token.INT, 0)),\n\t\t\"SO_VENDOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"SYS_ABORT2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"463\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"541\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_AUDIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"445\", token.INT, 0)),\n\t\t\"SYS_AUDITCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"453\", token.INT, 0)),\n\t\t\"SYS_AUDITON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"446\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BINDAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"538\", token.INT, 0)),\n\t\t\"SYS_CAP_ENTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"SYS_CAP_GETMODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"SYS_CAP_GETRIGHTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"515\", token.INT, 0)),\n\t\t\"SYS_CAP_NEW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"514\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHFLAGSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"540\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETCPUCLOCKID2\":          reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSEFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"509\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_CONNECTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"539\", token.INT, 0)),\n\t\t\"SYS_CPUSET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"484\", token.INT, 0)),\n\t\t\"SYS_CPUSET_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"487\", token.INT, 0)),\n\t\t\"SYS_CPUSET_GETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"486\", token.INT, 0)),\n\t\t\"SYS_CPUSET_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"488\", token.INT, 0)),\n\t\t\"SYS_CPUSET_SETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"485\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXTATTRCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"373\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"437\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"438\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"489\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"490\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"491\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FEXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"492\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_GETCOUNTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_GETESTIMATE\":           reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_SETESTIMATE\":           reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_FHSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"398\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_FTRUNCATE\":            reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_LSEEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_MMAP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_PREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_PWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_TRUNCATE\":             reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"551\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"552\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"556\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"480\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"494\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"449\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"SYS_GETAUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"447\", token.INT, 0)),\n\t\t\"SYS_GETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"554\", token.INT, 0)),\n\t\t\"SYS_GETDTABLESIZE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"557\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETLOGINCLASS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"523\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_JAIL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_JAIL_ATTACH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_JAIL_GET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"506\", token.INT, 0)),\n\t\t\"SYS_JAIL_REMOVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"508\", token.INT, 0)),\n\t\t\"SYS_JAIL_SET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"507\", token.INT, 0)),\n\t\t\"SYS_KENV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KLDFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_KLDFIRSTMOD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_KLDLOAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_KLDNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_KLDSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_KLDSYM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOADF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"444\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_KTIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_KTIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_KTIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_KTIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_KTIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"391\", token.INT, 0)),\n\t\t\"SYS_LCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_LGETFH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"495\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"478\", token.INT, 0)),\n\t\t\"SYS_LUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_MAC_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"496\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"497\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"559\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"477\", token.INT, 0)),\n\t\t\"SYS_MODFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_MODFNEXT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_MODNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_MODSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_NFSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_NLSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_NMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"378\", token.INT, 0)),\n\t\t\"SYS_NSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_NTP_ADJTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_NTP_GETTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_OBREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"499\", token.INT, 0)),\n\t\t\"SYS_OPENBSD_POLL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_OVADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PDFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"SYS_PDGETPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"520\", token.INT, 0)),\n\t\t\"SYS_PDKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"519\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"542\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_POSIX_FADVISE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"531\", token.INT, 0)),\n\t\t\"SYS_POSIX_FALLOCATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"530\", token.INT, 0)),\n\t\t\"SYS_POSIX_OPENPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"504\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"475\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_PROCCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"544\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"522\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"476\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_RCTL_ADD_RULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"528\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_LIMITS\":               reflect.ValueOf(constant.MakeFromLiteral(\"527\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_RACCT\":                reflect.ValueOf(constant.MakeFromLiteral(\"525\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_RULES\":                reflect.ValueOf(constant.MakeFromLiteral(\"526\", token.INT, 0)),\n\t\t\"SYS_RCTL_REMOVE_RULE\":              reflect.ValueOf(constant.MakeFromLiteral(\"529\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"500\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"501\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_RTPRIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_RTPRIO_THREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"466\", token.INT, 0)),\n\t\t\"SYS_SBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":        reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":        reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_RECVMSG\":          reflect.ValueOf(constant.MakeFromLiteral(\"474\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_SENDMSG\":          reflect.ValueOf(constant.MakeFromLiteral(\"472\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_SENDMSG_IOV\":      reflect.ValueOf(constant.MakeFromLiteral(\"473\", token.INT, 0)),\n\t\t\"SYS_SCTP_PEELOFF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"471\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"393\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"452\", token.INT, 0)),\n\t\t\"SYS_SETAUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"SYS_SETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETLOGINCLASS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"524\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SHM_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"482\", token.INT, 0)),\n\t\t\"SYS_SHM_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"483\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_SIGQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"456\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_SIGTIMEDWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_SIGWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_SIGWAITINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SSTK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"555\", token.INT, 0)),\n\t\t\"SYS_SWAPCONTEXT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"502\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_THR_CREATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_THR_EXIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS_THR_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"433\", token.INT, 0)),\n\t\t\"SYS_THR_KILL2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"481\", token.INT, 0)),\n\t\t\"SYS_THR_NEW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"455\", token.INT, 0)),\n\t\t\"SYS_THR_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"432\", token.INT, 0)),\n\t\t\"SYS_THR_SET_NAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"464\", token.INT, 0)),\n\t\t\"SYS_THR_SUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"442\", token.INT, 0)),\n\t\t\"SYS_THR_WAKE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"443\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"479\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"503\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"547\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_UUIDGEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"392\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WAIT6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"532\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_YIELD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS__UMTX_LOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS__UMTX_OP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"454\", token.INT, 0)),\n\t\t\"SYS__UMTX_UNLOCK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS___MAC_EXECVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"387\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"409\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PROC\":                reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"388\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"389\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_PROC\":                reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS___SETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"374\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                          reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                 reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofBpfZbuf\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofBpfZbufHeader\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CA_NAME_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TCP_INFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCP_KEEPINIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXHLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"TCP_MAXOLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOOPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_VENDOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033750\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033679\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033754\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMSDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147775579\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DCD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTMASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900636\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147775575\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"537162847\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCTIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074820185\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"Undelete\":                          reflect.ValueOf(syscall.Undelete),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VERASE2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"WLINUXCLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WTRAPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                        reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                       reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":                    reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                       reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfVersion\":                    reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"BpfZbuf\":                       reflect.ValueOf((*syscall.BpfZbuf)(nil)),\n\t\t\"BpfZbufHeader\":                 reflect.ValueOf((*syscall.BpfZbufHeader)(nil)),\n\t\t\"Cmsghdr\":                       reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":                    reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                         reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                       reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                          reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":                  reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                        reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":                       reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":                   reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                      reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":              reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                        reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                      reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                     reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"IfmaMsghdr\":                    reflect.ValueOf((*syscall.IfmaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":                  reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":          reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\":      reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":              reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"InterfaceMulticastAddrMessage\": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)),\n\t\t\"Iovec\":                         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                      reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                        reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":                        reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                   reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":                reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":           reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":              reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":              reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":               reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":                  reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":                reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                     reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                      reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":              reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":                 reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":                 reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":          reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                      reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":                   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                       reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":                    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_freebsd_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_ARP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_ATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_INET6_SDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_INET_SDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NETGRAPH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SCLUSTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SLOW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VENDOR00\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_VENDOR01\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_VENDOR02\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"AF_VENDOR03\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"AF_VENDOR04\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"AF_VENDOR05\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"AF_VENDOR06\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"AF_VENDOR07\":                       reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"AF_VENDOR08\":                       reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"AF_VENDOR09\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"AF_VENDOR10\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"AF_VENDOR11\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"AF_VENDOR12\":                       reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"AF_VENDOR13\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"AF_VENDOR14\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"AF_VENDOR15\":                       reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"AF_VENDOR16\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"AF_VENDOR17\":                       reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"AF_VENDOR18\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"AF_VENDOR19\":                       reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"AF_VENDOR20\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"AF_VENDOR21\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"AF_VENDOR22\":                       reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"AF_VENDOR23\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"AF_VENDOR24\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"AF_VENDOR25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"AF_VENDOR26\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"AF_VENDOR27\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"AF_VENDOR28\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"AF_VENDOR29\":                       reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"AF_VENDOR30\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"AF_VENDOR31\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"AF_VENDOR32\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"AF_VENDOR33\":                       reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"AF_VENDOR34\":                       reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"AF_VENDOR35\":                       reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"AF_VENDOR36\":                       reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"AF_VENDOR37\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"AF_VENDOR38\":                       reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"AF_VENDOR39\":                       reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"AF_VENDOR40\":                       reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"AF_VENDOR41\":                       reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"AF_VENDOR42\":                       reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"AF_VENDOR43\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"AF_VENDOR44\":                       reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"AF_VENDOR45\":                       reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"AF_VENDOR46\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"AF_VENDOR47\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B460800\":                           reflect.ValueOf(constant.MakeFromLiteral(\"460800\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B921600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"921600\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFEEDBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762812\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDIRECTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222291065\", token.INT, 0)),\n\t\t\"BIOCGETBUFMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074020989\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGETZMAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074283135\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020978\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCGTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020995\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887930\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCROTZBUF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1075331712\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDIRECTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762808\", token.INT, 0)),\n\t\t\"BIOCSETBUFMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147762814\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETFNR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148549250\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSETWF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148549243\", token.INT, 0)),\n\t\t\"BIOCSETZBUF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149073537\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147762803\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCSTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147762820\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_BUFMODE_BUFFER\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_BUFMODE_ZBUF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_FAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_MONOTONIC\":           reflect.ValueOf(constant.MakeFromLiteral(\"514\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_MONOTONIC_FAST\":      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"BPF_T_FAST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"BPF_T_FLAG_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_FORMAT_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_FAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_MONOTONIC\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_MONOTONIC_FAST\":    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_MONOTONIC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_T_MONOTONIC_FAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_FAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_MONOTONIC\":          reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_MONOTONIC_FAST\":     reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"BPF_T_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_T_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_A429\":                          reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"DLT_A653_ICM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"DLT_AIRONET_HEADER\":                reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_AOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_AX25_KISS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4\":              reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4_WITH_PHDR\":    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"DLT_CAN20B\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"DLT_CAN_SOCKETCAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"DLT_DBUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"DLT_DECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_DVB_CI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FC_2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"DLT_FC_2_WITH_FRAME_DELIMS\":        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FLEXRAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_FRELAY_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                         reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                         reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_ABIS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_UM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":          reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_LINUX\":            reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NOFCS\":            reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NONASK_PHY\":       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS_RADIO\":      reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"DLT_IPFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"DLT_IPMB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"DLT_IPMB_LINUX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPOIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"DLT_IPV4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"DLT_IPV6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM_CEMIC\":             reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FIBRECHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ISM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":               reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":              reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":             reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":              reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SRX_E2E\":               reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"DLT_LAPB_WITH_DIR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"DLT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"DLT_LIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"DLT_LINUX_EVDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_PPP_WITHDIRECTION\":       reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MATCHING_MAX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"DLT_MATCHING_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_MFR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"DLT_MOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"DLT_MPEG_2_TS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_MUX27010\":                      reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"DLT_NETANALYZER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"DLT_NETANALYZER_TRANSPARENT\":       reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"DLT_NFC_LLCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"DLT_NFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"DLT_NG40\":                          reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_PPI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIRECTION\":            reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAIF1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RIO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SITA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_STANAG_5066_D_PDU\":             reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":             reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"DLT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX_MMAPPED\":             reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"DLT_USER0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"DLT_USER1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"DLT_USER10\":                        reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"DLT_USER11\":                        reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"DLT_USER12\":                        reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"DLT_USER13\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"DLT_USER14\":                        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"DLT_USER15\":                        reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"DLT_USER2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"DLT_USER3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"DLT_USER4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"DLT_USER5\":                         reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"DLT_USER6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"DLT_USER7\":                         reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"DLT_USER8\":                         reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"DLT_USER9\":                         reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"DLT_WIHART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"DLT_X2E_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"DLT_X2E_XORAYA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECAPMODE\":                          reflect.ValueOf(syscall.ECAPMODE),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOOFUS\":                           reflect.ValueOf(syscall.EDOOFUS),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCAPABLE\":                       reflect.ValueOf(syscall.ENOTCAPABLE),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":                   reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                        reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-9\", token.INT, 0)),\n\t\t\"EVFILT_LIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_USER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-11\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_DISPATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EV_DROP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_RECEIPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_CANCEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_DUP2FD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUP2FD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_OGETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_OSETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_OSETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_RDAHEAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_READAHEAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLK_REMOTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_UNLCKSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatat\":                           reflect.ValueOf(syscall.Fstatat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getdtablesize\":                     reflect.ValueOf(syscall.Getdtablesize),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                         reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                 reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ALTPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2199410\", token.INT, 0)),\n\t\t\"IFF_CANTCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DRV_OACTIVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DRV_RUNNING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_DYING\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MONITOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PPROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RENAMING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SMART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_STATICARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_IPXIP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_RFC3021_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4294967294\", token.INT, 0)),\n\t\t\"IPPROTO_3PC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPPROTO_ADFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_AHIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPPROTO_APES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IPPROTO_ARGUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPPROTO_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IPPROTO_BHA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPPROTO_BLT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPPROTO_BRSATMON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_CFTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPPROTO_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPPROTO_CMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPPROTO_CPHB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPPROTO_CPNX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPPROTO_DDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPPROTO_DGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EMCON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IDPR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPPROTO_IDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IPPROTO_IGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IPPROTO_IL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPPROTO_INLSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_INP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPCV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IPPROTO_IPEIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IRTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPPROTO_KRYPTOLAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPPROTO_LARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MEAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPPROTO_MICP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_MUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_NSP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_NVPII\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPPROTO_OLD_DIVERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"IPPROTO_OSPFIGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PGM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IPPROTO_PIGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PRM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_PVP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_RCCMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPPROTO_RDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_RVD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPPROTO_SATEXPAK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPPROTO_SATMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IPPROTO_SCCSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_SDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPPROTO_SEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"IPPROTO_SEP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPPROTO_SPACER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32767\", token.INT, 0)),\n\t\t\"IPPROTO_SRPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IPPROTO_ST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPPROTO_SVMTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IPPROTO_SWIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPPROTO_TCF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TLSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_TPXX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPPROTO_TTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VINES\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_VISA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPPROTO_VMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IPPROTO_WBEXPAK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IPPROTO_WBMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPPROTO_WSN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPPROTO_XNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPPROTO_XTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_BINDANY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_BINDV6ONLY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_FW_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_FW_DEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_FW_FLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_FW_GET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_FW_ZERO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXOPTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MAX_GROUP_SRC_FILTER\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IPV6_MAX_MEMBERSHIPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IPV6_MAX_SOCK_SRC_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IPV6_MIN_MEMBERSHIPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MSFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PREFER_TEMPADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IP_BINDANY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DONTFRAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IP_DUMMYNET3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_CONFIGURE\":             reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IP_FAITH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_FW3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IP_FW_ADD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_FW_DEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IP_FW_FLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IP_FW_GET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IP_FW_NAT_CFG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IP_FW_NAT_DEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IP_FW_NAT_GET_CONFIG\":              reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IP_FW_NAT_GET_LOG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IP_FW_RESETLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_ADD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_GETSIZE\":               reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_LIST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IP_FW_ZERO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_GROUP_SRC_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_MUTE_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_SRC_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOURCE_FILTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_VIF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_ONESBCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RSVP_OFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_RSVP_ON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_OFF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_ON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_SENDSRCADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_AUTOSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_CORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_NOCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_NOSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_PROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_32BIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MAP_ALIGNED_SUPER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_SHIFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_NOCORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_NOSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_PREFAULT_READ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_RESERVED0080\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_RESERVED0100\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MSG_COMPAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_NBIO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MSG_NOTIFICATION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_IFLISTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NET_RT_IFMALIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FFAND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_FFCOPY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFCTRLMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFLAGSMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"NOTE_FFNOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NOTE_FFOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRIGGER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXEC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_TTY_INIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"268752904\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_GWFLAG_COMPAT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLDATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PRCLONING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_RNH_LOCKED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_STICKY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DELMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTV_WEIGHT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RT_CACHING_CONTEXT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RT_DEFAULT_FIB\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_NORTREF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_BINTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SCM_CREDS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGLIBRT\":                          reflect.ValueOf(syscall.SIGLIBRT),\n\t\t\"SIGLWP\":                            reflect.ValueOf(syscall.SIGLWP),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHR\":                            reflect.ValueOf(syscall.SIGTHR),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151707146\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCAIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132103\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860635\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151707147\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132105\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607753\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860637\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873915\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223351824\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223876111\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349535\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222300964\", token.INT, 0)),\n\t\t\"SIOCGIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349546\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349596\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFGMEMB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873930\", token.INT, 0)),\n\t\t\"SIOCGIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873928\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349536\", token.INT, 0)),\n\t\t\"SIOCGIFMAC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349542\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3224398136\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349555\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFSTATUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3274795323\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3239602460\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3239602507\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_0\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349584\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349585\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349626\", token.INT, 0)),\n\t\t\"SIOCIFCREATE2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222301048\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132091\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607710\", token.INT, 0)),\n\t\t\"SIOCSIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607721\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607773\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607740\", token.INT, 0)),\n\t\t\"SIOCSIFMAC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607719\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607732\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607720\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607734\", token.INT, 0)),\n\t\t\"SIOCSIFRVNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349595\", token.INT, 0)),\n\t\t\"SIOCSIFVNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349594\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2165860682\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_MAXADDRLEN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ACCEPTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BINTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LABEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LISTENINCQLEN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SO_LISTENQLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4114\", token.INT, 0)),\n\t\t\"SO_LISTENQLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_NO_DDP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SO_NO_OFFLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_PROTOTYPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SETFIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4116\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_USER_COOKIE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4117\", token.INT, 0)),\n\t\t\"SO_VENDOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"SYS_ABORT2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"463\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"541\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_AIO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_AIO_ERROR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_AIO_FSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"465\", token.INT, 0)),\n\t\t\"SYS_AIO_MLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"543\", token.INT, 0)),\n\t\t\"SYS_AIO_READ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_AIO_RETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_AIO_WAITCOMPLETE\":              reflect.ValueOf(constant.MakeFromLiteral(\"359\", token.INT, 0)),\n\t\t\"SYS_AIO_WRITE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_AUDIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"445\", token.INT, 0)),\n\t\t\"SYS_AUDITCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"453\", token.INT, 0)),\n\t\t\"SYS_AUDITON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"446\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BINDAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"538\", token.INT, 0)),\n\t\t\"SYS_CAP_ENTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"SYS_CAP_FCNTLS_GET\":                reflect.ValueOf(constant.MakeFromLiteral(\"537\", token.INT, 0)),\n\t\t\"SYS_CAP_FCNTLS_LIMIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"SYS_CAP_GETMODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"SYS_CAP_IOCTLS_GET\":                reflect.ValueOf(constant.MakeFromLiteral(\"535\", token.INT, 0)),\n\t\t\"SYS_CAP_IOCTLS_LIMIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"534\", token.INT, 0)),\n\t\t\"SYS_CAP_RIGHTS_LIMIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"533\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHFLAGSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"540\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETCPUCLOCKID2\":          reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":               reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSEFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"509\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_CONNECTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"539\", token.INT, 0)),\n\t\t\"SYS_CPUSET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"484\", token.INT, 0)),\n\t\t\"SYS_CPUSET_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"487\", token.INT, 0)),\n\t\t\"SYS_CPUSET_GETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"486\", token.INT, 0)),\n\t\t\"SYS_CPUSET_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"488\", token.INT, 0)),\n\t\t\"SYS_CPUSET_SETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"485\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXTATTRCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"373\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"437\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"438\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"489\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"490\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"491\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"550\", token.INT, 0)),\n\t\t\"SYS_FEXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"492\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_GETCOUNTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_GETESTIMATE\":           reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_SETESTIMATE\":           reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_FHSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"398\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"551\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"552\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"556\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"480\", token.INT, 0)),\n\t\t\"SYS_FUTIMENS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"546\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"494\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"449\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"SYS_GETAUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"447\", token.INT, 0)),\n\t\t\"SYS_GETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"554\", token.INT, 0)),\n\t\t\"SYS_GETDTABLESIZE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"557\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETLOGINCLASS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"523\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GSSD_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"505\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_JAIL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_JAIL_ATTACH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_JAIL_GET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"506\", token.INT, 0)),\n\t\t\"SYS_JAIL_REMOVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"508\", token.INT, 0)),\n\t\t\"SYS_JAIL_SET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"507\", token.INT, 0)),\n\t\t\"SYS_KENV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KLDFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_KLDFIRSTMOD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_KLDLOAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_KLDNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_KLDSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_KLDSYM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOADF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"444\", token.INT, 0)),\n\t\t\"SYS_KMQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"461\", token.INT, 0)),\n\t\t\"SYS_KMQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"457\", token.INT, 0)),\n\t\t\"SYS_KMQ_SETATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"458\", token.INT, 0)),\n\t\t\"SYS_KMQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"459\", token.INT, 0)),\n\t\t\"SYS_KMQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"460\", token.INT, 0)),\n\t\t\"SYS_KMQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"462\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_KSEM_CLOSE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"400\", token.INT, 0)),\n\t\t\"SYS_KSEM_DESTROY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"408\", token.INT, 0)),\n\t\t\"SYS_KSEM_GETVALUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"407\", token.INT, 0)),\n\t\t\"SYS_KSEM_INIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"404\", token.INT, 0)),\n\t\t\"SYS_KSEM_OPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"405\", token.INT, 0)),\n\t\t\"SYS_KSEM_POST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"401\", token.INT, 0)),\n\t\t\"SYS_KSEM_TIMEDWAIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"441\", token.INT, 0)),\n\t\t\"SYS_KSEM_TRYWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"403\", token.INT, 0)),\n\t\t\"SYS_KSEM_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"406\", token.INT, 0)),\n\t\t\"SYS_KSEM_WAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"402\", token.INT, 0)),\n\t\t\"SYS_KTIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_KTIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_KTIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_KTIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_KTIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"391\", token.INT, 0)),\n\t\t\"SYS_LCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_LGETFH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"495\", token.INT, 0)),\n\t\t\"SYS_LIO_LISTIO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"478\", token.INT, 0)),\n\t\t\"SYS_LUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_MAC_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"496\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"497\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"559\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"477\", token.INT, 0)),\n\t\t\"SYS_MODFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_MODFNEXT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_MODNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_MODSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"511\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MSGSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_NFSSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_NFSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_NLM_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_NLSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_NMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"378\", token.INT, 0)),\n\t\t\"SYS_NSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_NTP_ADJTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_NTP_GETTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_NUMA_GETAFFINITY\":              reflect.ValueOf(constant.MakeFromLiteral(\"548\", token.INT, 0)),\n\t\t\"SYS_NUMA_SETAFFINITY\":              reflect.ValueOf(constant.MakeFromLiteral(\"549\", token.INT, 0)),\n\t\t\"SYS_OBREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"499\", token.INT, 0)),\n\t\t\"SYS_OPENBSD_POLL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_OVADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PDFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"SYS_PDGETPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"520\", token.INT, 0)),\n\t\t\"SYS_PDKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"519\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"542\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_POSIX_FADVISE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"531\", token.INT, 0)),\n\t\t\"SYS_POSIX_FALLOCATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"530\", token.INT, 0)),\n\t\t\"SYS_POSIX_OPENPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"504\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"545\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"475\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_PROCCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"544\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"522\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"476\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_RCTL_ADD_RULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"528\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_LIMITS\":               reflect.ValueOf(constant.MakeFromLiteral(\"527\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_RACCT\":                reflect.ValueOf(constant.MakeFromLiteral(\"525\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_RULES\":                reflect.ValueOf(constant.MakeFromLiteral(\"526\", token.INT, 0)),\n\t\t\"SYS_RCTL_REMOVE_RULE\":              reflect.ValueOf(constant.MakeFromLiteral(\"529\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"500\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"501\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_RTPRIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_RTPRIO_THREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"466\", token.INT, 0)),\n\t\t\"SYS_SBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":        reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":        reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_RECVMSG\":          reflect.ValueOf(constant.MakeFromLiteral(\"474\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_SENDMSG\":          reflect.ValueOf(constant.MakeFromLiteral(\"472\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_SENDMSG_IOV\":      reflect.ValueOf(constant.MakeFromLiteral(\"473\", token.INT, 0)),\n\t\t\"SYS_SCTP_PEELOFF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"471\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_SEMSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"393\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"452\", token.INT, 0)),\n\t\t\"SYS_SETAUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"SYS_SETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETLOGINCLASS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"524\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_SHMSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_SHM_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"482\", token.INT, 0)),\n\t\t\"SYS_SHM_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"483\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_SIGQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"456\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_SIGTIMEDWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_SIGWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_SIGWAITINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SSTK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"555\", token.INT, 0)),\n\t\t\"SYS_SWAPCONTEXT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"502\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_THR_CREATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_THR_EXIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS_THR_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"433\", token.INT, 0)),\n\t\t\"SYS_THR_KILL2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"481\", token.INT, 0)),\n\t\t\"SYS_THR_NEW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"455\", token.INT, 0)),\n\t\t\"SYS_THR_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"432\", token.INT, 0)),\n\t\t\"SYS_THR_SET_NAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"464\", token.INT, 0)),\n\t\t\"SYS_THR_SUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"442\", token.INT, 0)),\n\t\t\"SYS_THR_WAKE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"443\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"479\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"503\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"547\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_UUIDGEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"392\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WAIT6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"532\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_YIELD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS__UMTX_OP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"454\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS___CAP_RIGHTS_GET\":              reflect.ValueOf(constant.MakeFromLiteral(\"515\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS___MAC_EXECVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"387\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"409\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PROC\":                reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"388\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"389\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_PROC\":                reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"510\", token.INT, 0)),\n\t\t\"SYS___SETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"374\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                          reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                 reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofBpfZbuf\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofBpfZbufHeader\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CA_NAME_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TCP_INFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCP_KEEPINIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXHLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"TCP_MAXOLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOOPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_VENDOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033750\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033679\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033754\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMSDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147775579\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DCD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTMASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900636\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147775575\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"537162847\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCTIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074820185\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"Undelete\":                          reflect.ValueOf(syscall.Undelete),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VERASE2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"WLINUXCLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WTRAPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                        reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                       reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":                    reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                       reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfVersion\":                    reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"BpfZbuf\":                       reflect.ValueOf((*syscall.BpfZbuf)(nil)),\n\t\t\"BpfZbufHeader\":                 reflect.ValueOf((*syscall.BpfZbufHeader)(nil)),\n\t\t\"Cmsghdr\":                       reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":                    reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                         reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                       reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                          reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":                  reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                        reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":                       reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":                   reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                      reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":              reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                        reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                      reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                     reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"IfmaMsghdr\":                    reflect.ValueOf((*syscall.IfmaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":                  reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":          reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\":      reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":              reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"InterfaceMulticastAddrMessage\": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)),\n\t\t\"Iovec\":                         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                      reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                        reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":                        reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                   reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":                reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":           reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":              reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":              reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":               reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":                  reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":                reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                     reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                      reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":              reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":                 reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":                 reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":          reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                      reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":                   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                       reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":                    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_freebsd_riscv64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_ARP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_ATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_INET6_SDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_INET_SDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NETGRAPH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SCLUSTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SLOW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VENDOR00\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_VENDOR01\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_VENDOR02\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"AF_VENDOR03\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"AF_VENDOR04\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"AF_VENDOR05\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"AF_VENDOR06\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"AF_VENDOR07\":                       reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"AF_VENDOR08\":                       reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"AF_VENDOR09\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"AF_VENDOR10\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"AF_VENDOR11\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"AF_VENDOR12\":                       reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"AF_VENDOR13\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"AF_VENDOR14\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"AF_VENDOR15\":                       reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"AF_VENDOR16\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"AF_VENDOR17\":                       reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"AF_VENDOR18\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"AF_VENDOR19\":                       reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"AF_VENDOR20\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"AF_VENDOR21\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"AF_VENDOR22\":                       reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"AF_VENDOR23\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"AF_VENDOR24\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"AF_VENDOR25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"AF_VENDOR26\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"AF_VENDOR27\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"AF_VENDOR28\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"AF_VENDOR29\":                       reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"AF_VENDOR30\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"AF_VENDOR31\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"AF_VENDOR32\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"AF_VENDOR33\":                       reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"AF_VENDOR34\":                       reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"AF_VENDOR35\":                       reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"AF_VENDOR36\":                       reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"AF_VENDOR37\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"AF_VENDOR38\":                       reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"AF_VENDOR39\":                       reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"AF_VENDOR40\":                       reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"AF_VENDOR41\":                       reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"AF_VENDOR42\":                       reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"AF_VENDOR43\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"AF_VENDOR44\":                       reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"AF_VENDOR45\":                       reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"AF_VENDOR46\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"AF_VENDOR47\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B460800\":                           reflect.ValueOf(constant.MakeFromLiteral(\"460800\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B921600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"921600\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFEEDBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762812\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDIRECTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222291065\", token.INT, 0)),\n\t\t\"BIOCGETBUFMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074020989\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGETZMAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074283135\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020978\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCGTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020995\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887930\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCROTZBUF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1075331712\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDIRECTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762808\", token.INT, 0)),\n\t\t\"BIOCSETBUFMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147762814\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETFNR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148549250\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSETWF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148549243\", token.INT, 0)),\n\t\t\"BIOCSETZBUF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149073537\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147762803\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCSTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147762820\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_BUFMODE_BUFFER\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_BUFMODE_ZBUF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_FAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_MONOTONIC\":           reflect.ValueOf(constant.MakeFromLiteral(\"514\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_MONOTONIC_FAST\":      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"BPF_T_FAST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"BPF_T_FLAG_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_FORMAT_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_FAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_MONOTONIC\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_MONOTONIC_FAST\":    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_MONOTONIC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_T_MONOTONIC_FAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_FAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_MONOTONIC\":          reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_MONOTONIC_FAST\":     reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"BPF_T_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_T_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_A429\":                          reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"DLT_A653_ICM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"DLT_AIRONET_HEADER\":                reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_AOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_AX25_KISS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4\":              reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4_WITH_PHDR\":    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"DLT_CAN20B\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"DLT_CAN_SOCKETCAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"DLT_DBUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"DLT_DECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_DVB_CI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FC_2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"DLT_FC_2_WITH_FRAME_DELIMS\":        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FLEXRAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_FRELAY_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                         reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                         reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_ABIS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_UM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":          reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_LINUX\":            reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NOFCS\":            reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NONASK_PHY\":       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS_RADIO\":      reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"DLT_IPFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"DLT_IPMB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"DLT_IPMB_LINUX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPOIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"DLT_IPV4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"DLT_IPV6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM_CEMIC\":             reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FIBRECHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ISM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":               reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":              reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":             reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":              reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SRX_E2E\":               reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"DLT_LAPB_WITH_DIR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"DLT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"DLT_LIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"DLT_LINUX_EVDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_PPP_WITHDIRECTION\":       reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MATCHING_MAX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"DLT_MATCHING_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_MFR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"DLT_MOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"DLT_MPEG_2_TS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_MUX27010\":                      reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"DLT_NETANALYZER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"DLT_NETANALYZER_TRANSPARENT\":       reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"DLT_NFC_LLCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"DLT_NFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"DLT_NG40\":                          reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_PPI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIRECTION\":            reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAIF1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RIO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SITA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_STANAG_5066_D_PDU\":             reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":             reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"DLT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX_MMAPPED\":             reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"DLT_USER0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"DLT_USER1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"DLT_USER10\":                        reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"DLT_USER11\":                        reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"DLT_USER12\":                        reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"DLT_USER13\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"DLT_USER14\":                        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"DLT_USER15\":                        reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"DLT_USER2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"DLT_USER3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"DLT_USER4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"DLT_USER5\":                         reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"DLT_USER6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"DLT_USER7\":                         reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"DLT_USER8\":                         reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"DLT_USER9\":                         reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"DLT_WIHART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"DLT_X2E_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"DLT_X2E_XORAYA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECAPMODE\":                          reflect.ValueOf(syscall.ECAPMODE),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOOFUS\":                           reflect.ValueOf(syscall.EDOOFUS),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCAPABLE\":                       reflect.ValueOf(syscall.ENOTCAPABLE),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":                   reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                        reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-9\", token.INT, 0)),\n\t\t\"EVFILT_LIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_USER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-11\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_DISPATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EV_DROP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_RECEIPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_CANCEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_DUP2FD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUP2FD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_OGETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_OSETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_OSETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_RDAHEAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_READAHEAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLK_REMOTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_UNLCKSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatat\":                           reflect.ValueOf(syscall.Fstatat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getdtablesize\":                     reflect.ValueOf(syscall.Getdtablesize),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                         reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                 reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ALTPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2199410\", token.INT, 0)),\n\t\t\"IFF_CANTCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DRV_OACTIVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DRV_RUNNING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_DYING\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MONITOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PPROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RENAMING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SMART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_STATICARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_IPXIP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_RFC3021_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4294967294\", token.INT, 0)),\n\t\t\"IPPROTO_3PC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPPROTO_ADFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_AHIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPPROTO_APES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IPPROTO_ARGUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPPROTO_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IPPROTO_BHA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPPROTO_BLT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPPROTO_BRSATMON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_CFTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPPROTO_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPPROTO_CMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPPROTO_CPHB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPPROTO_CPNX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPPROTO_DDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPPROTO_DGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EMCON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IDPR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPPROTO_IDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IPPROTO_IGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IPPROTO_IL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPPROTO_INLSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_INP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPCV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IPPROTO_IPEIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IRTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPPROTO_KRYPTOLAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPPROTO_LARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MEAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPPROTO_MICP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_MUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_NSP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_NVPII\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPPROTO_OLD_DIVERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"IPPROTO_OSPFIGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PGM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IPPROTO_PIGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PRM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_PVP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_RCCMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPPROTO_RDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_RVD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPPROTO_SATEXPAK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPPROTO_SATMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IPPROTO_SCCSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_SDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPPROTO_SEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"IPPROTO_SEP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPPROTO_SPACER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32767\", token.INT, 0)),\n\t\t\"IPPROTO_SRPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IPPROTO_ST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPPROTO_SVMTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IPPROTO_SWIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPPROTO_TCF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TLSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_TPXX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPPROTO_TTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VINES\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_VISA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPPROTO_VMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IPPROTO_WBEXPAK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IPPROTO_WBMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPPROTO_WSN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPPROTO_XNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPPROTO_XTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_BINDANY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_BINDV6ONLY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_FW_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_FW_DEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_FW_FLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_FW_GET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_FW_ZERO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXOPTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MAX_GROUP_SRC_FILTER\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IPV6_MAX_MEMBERSHIPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IPV6_MAX_SOCK_SRC_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IPV6_MIN_MEMBERSHIPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MSFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PREFER_TEMPADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IP_BINDANY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DONTFRAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IP_DUMMYNET3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_CONFIGURE\":             reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IP_FAITH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_FW3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IP_FW_ADD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_FW_DEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IP_FW_FLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IP_FW_GET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IP_FW_NAT_CFG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IP_FW_NAT_DEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IP_FW_NAT_GET_CONFIG\":              reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IP_FW_NAT_GET_LOG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IP_FW_RESETLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_ADD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_GETSIZE\":               reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_LIST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IP_FW_ZERO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_GROUP_SRC_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_MUTE_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_SRC_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOURCE_FILTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_VIF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_ONESBCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RSVP_OFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_RSVP_ON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_OFF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_ON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_SENDSRCADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_AUTOSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_CORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_NOCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_NOSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_PROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_32BIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MAP_ALIGNED_SUPER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_SHIFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_NOCORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_NOSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_PREFAULT_READ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_RESERVED0080\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_RESERVED0100\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MSG_COMPAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_NBIO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MSG_NOTIFICATION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_IFLISTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NET_RT_IFMALIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FFAND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_FFCOPY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFCTRLMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFLAGSMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"NOTE_FFNOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NOTE_FFOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRIGGER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXEC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_TTY_INIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"268752904\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_GWFLAG_COMPAT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLDATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PRCLONING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_RNH_LOCKED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_STICKY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DELMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTV_WEIGHT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RT_CACHING_CONTEXT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RT_DEFAULT_FIB\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_NORTREF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_BINTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SCM_CREDS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGLIBRT\":                          reflect.ValueOf(syscall.SIGLIBRT),\n\t\t\"SIGLWP\":                            reflect.ValueOf(syscall.SIGLWP),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHR\":                            reflect.ValueOf(syscall.SIGTHR),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151707146\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCAIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132103\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860635\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151707147\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132105\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607753\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860637\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873915\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223351824\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223876111\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349535\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222300964\", token.INT, 0)),\n\t\t\"SIOCGIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349546\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349596\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFGMEMB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873930\", token.INT, 0)),\n\t\t\"SIOCGIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873928\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349536\", token.INT, 0)),\n\t\t\"SIOCGIFMAC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349542\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3224398136\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349555\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFSTATUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3274795323\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3239602460\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3239602507\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_0\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349584\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349585\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349626\", token.INT, 0)),\n\t\t\"SIOCIFCREATE2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222301048\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132091\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607710\", token.INT, 0)),\n\t\t\"SIOCSIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607721\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607773\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607740\", token.INT, 0)),\n\t\t\"SIOCSIFMAC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607719\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607732\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607720\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607734\", token.INT, 0)),\n\t\t\"SIOCSIFRVNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349595\", token.INT, 0)),\n\t\t\"SIOCSIFVNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349594\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2165860682\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_MAXADDRLEN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ACCEPTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BINTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LABEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LISTENINCQLEN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SO_LISTENQLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4114\", token.INT, 0)),\n\t\t\"SO_LISTENQLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_NO_DDP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SO_NO_OFFLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_PROTOTYPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SETFIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4116\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_USER_COOKIE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4117\", token.INT, 0)),\n\t\t\"SO_VENDOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"SYS_ABORT2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"463\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"541\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_AIO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_AIO_ERROR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_AIO_FSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"465\", token.INT, 0)),\n\t\t\"SYS_AIO_MLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"543\", token.INT, 0)),\n\t\t\"SYS_AIO_READ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_AIO_RETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_AIO_WAITCOMPLETE\":              reflect.ValueOf(constant.MakeFromLiteral(\"359\", token.INT, 0)),\n\t\t\"SYS_AIO_WRITE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_AUDIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"445\", token.INT, 0)),\n\t\t\"SYS_AUDITCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"453\", token.INT, 0)),\n\t\t\"SYS_AUDITON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"446\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BINDAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"538\", token.INT, 0)),\n\t\t\"SYS_CAP_ENTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"SYS_CAP_FCNTLS_GET\":                reflect.ValueOf(constant.MakeFromLiteral(\"537\", token.INT, 0)),\n\t\t\"SYS_CAP_FCNTLS_LIMIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"SYS_CAP_GETMODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"SYS_CAP_IOCTLS_GET\":                reflect.ValueOf(constant.MakeFromLiteral(\"535\", token.INT, 0)),\n\t\t\"SYS_CAP_IOCTLS_LIMIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"534\", token.INT, 0)),\n\t\t\"SYS_CAP_RIGHTS_LIMIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"533\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHFLAGSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"540\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETCPUCLOCKID2\":          reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":               reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSEFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"509\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_CONNECTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"539\", token.INT, 0)),\n\t\t\"SYS_CPUSET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"484\", token.INT, 0)),\n\t\t\"SYS_CPUSET_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"487\", token.INT, 0)),\n\t\t\"SYS_CPUSET_GETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"486\", token.INT, 0)),\n\t\t\"SYS_CPUSET_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"488\", token.INT, 0)),\n\t\t\"SYS_CPUSET_SETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"485\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXTATTRCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"373\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"437\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"438\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"489\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"490\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"491\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"550\", token.INT, 0)),\n\t\t\"SYS_FEXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"492\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_GETCOUNTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_GETESTIMATE\":           reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_SETESTIMATE\":           reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_FHSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"398\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"551\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"552\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"556\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"480\", token.INT, 0)),\n\t\t\"SYS_FUTIMENS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"546\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"494\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"449\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"SYS_GETAUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"447\", token.INT, 0)),\n\t\t\"SYS_GETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"554\", token.INT, 0)),\n\t\t\"SYS_GETDTABLESIZE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"557\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETLOGINCLASS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"523\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GSSD_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"505\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_JAIL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_JAIL_ATTACH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_JAIL_GET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"506\", token.INT, 0)),\n\t\t\"SYS_JAIL_REMOVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"508\", token.INT, 0)),\n\t\t\"SYS_JAIL_SET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"507\", token.INT, 0)),\n\t\t\"SYS_KENV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KLDFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_KLDFIRSTMOD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_KLDLOAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_KLDNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_KLDSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_KLDSYM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOADF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"444\", token.INT, 0)),\n\t\t\"SYS_KMQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"461\", token.INT, 0)),\n\t\t\"SYS_KMQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"457\", token.INT, 0)),\n\t\t\"SYS_KMQ_SETATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"458\", token.INT, 0)),\n\t\t\"SYS_KMQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"459\", token.INT, 0)),\n\t\t\"SYS_KMQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"460\", token.INT, 0)),\n\t\t\"SYS_KMQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"462\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_KSEM_CLOSE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"400\", token.INT, 0)),\n\t\t\"SYS_KSEM_DESTROY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"408\", token.INT, 0)),\n\t\t\"SYS_KSEM_GETVALUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"407\", token.INT, 0)),\n\t\t\"SYS_KSEM_INIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"404\", token.INT, 0)),\n\t\t\"SYS_KSEM_OPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"405\", token.INT, 0)),\n\t\t\"SYS_KSEM_POST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"401\", token.INT, 0)),\n\t\t\"SYS_KSEM_TIMEDWAIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"441\", token.INT, 0)),\n\t\t\"SYS_KSEM_TRYWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"403\", token.INT, 0)),\n\t\t\"SYS_KSEM_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"406\", token.INT, 0)),\n\t\t\"SYS_KSEM_WAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"402\", token.INT, 0)),\n\t\t\"SYS_KTIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_KTIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_KTIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_KTIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_KTIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"391\", token.INT, 0)),\n\t\t\"SYS_LCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_LGETFH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"495\", token.INT, 0)),\n\t\t\"SYS_LIO_LISTIO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"478\", token.INT, 0)),\n\t\t\"SYS_LUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_MAC_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"496\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"497\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"559\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"477\", token.INT, 0)),\n\t\t\"SYS_MODFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_MODFNEXT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_MODNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_MODSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"511\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MSGSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_NFSSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_NFSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_NLM_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_NLSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_NMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"378\", token.INT, 0)),\n\t\t\"SYS_NSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_NTP_ADJTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_NTP_GETTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_NUMA_GETAFFINITY\":              reflect.ValueOf(constant.MakeFromLiteral(\"548\", token.INT, 0)),\n\t\t\"SYS_NUMA_SETAFFINITY\":              reflect.ValueOf(constant.MakeFromLiteral(\"549\", token.INT, 0)),\n\t\t\"SYS_OBREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"499\", token.INT, 0)),\n\t\t\"SYS_OPENBSD_POLL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_OVADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PDFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"SYS_PDGETPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"520\", token.INT, 0)),\n\t\t\"SYS_PDKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"519\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"542\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_POSIX_FADVISE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"531\", token.INT, 0)),\n\t\t\"SYS_POSIX_FALLOCATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"530\", token.INT, 0)),\n\t\t\"SYS_POSIX_OPENPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"504\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"545\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"475\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_PROCCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"544\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"522\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"476\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_RCTL_ADD_RULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"528\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_LIMITS\":               reflect.ValueOf(constant.MakeFromLiteral(\"527\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_RACCT\":                reflect.ValueOf(constant.MakeFromLiteral(\"525\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_RULES\":                reflect.ValueOf(constant.MakeFromLiteral(\"526\", token.INT, 0)),\n\t\t\"SYS_RCTL_REMOVE_RULE\":              reflect.ValueOf(constant.MakeFromLiteral(\"529\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"500\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"501\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_RTPRIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_RTPRIO_THREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"466\", token.INT, 0)),\n\t\t\"SYS_SBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":        reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":        reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_RECVMSG\":          reflect.ValueOf(constant.MakeFromLiteral(\"474\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_SENDMSG\":          reflect.ValueOf(constant.MakeFromLiteral(\"472\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_SENDMSG_IOV\":      reflect.ValueOf(constant.MakeFromLiteral(\"473\", token.INT, 0)),\n\t\t\"SYS_SCTP_PEELOFF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"471\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_SEMSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"393\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"452\", token.INT, 0)),\n\t\t\"SYS_SETAUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"SYS_SETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETLOGINCLASS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"524\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_SHMSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_SHM_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"482\", token.INT, 0)),\n\t\t\"SYS_SHM_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"483\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_SIGQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"456\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_SIGTIMEDWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_SIGWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_SIGWAITINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SSTK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"555\", token.INT, 0)),\n\t\t\"SYS_SWAPCONTEXT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"502\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_THR_CREATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_THR_EXIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS_THR_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"433\", token.INT, 0)),\n\t\t\"SYS_THR_KILL2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"481\", token.INT, 0)),\n\t\t\"SYS_THR_NEW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"455\", token.INT, 0)),\n\t\t\"SYS_THR_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"432\", token.INT, 0)),\n\t\t\"SYS_THR_SET_NAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"464\", token.INT, 0)),\n\t\t\"SYS_THR_SUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"442\", token.INT, 0)),\n\t\t\"SYS_THR_WAKE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"443\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"479\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"503\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"547\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_UUIDGEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"392\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WAIT6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"532\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_YIELD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS__UMTX_OP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"454\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS___CAP_RIGHTS_GET\":              reflect.ValueOf(constant.MakeFromLiteral(\"515\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS___MAC_EXECVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"387\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"409\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PROC\":                reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"388\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"389\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_PROC\":                reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"510\", token.INT, 0)),\n\t\t\"SYS___SETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"374\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                          reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                 reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofBpfZbuf\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofBpfZbufHeader\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CA_NAME_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TCP_INFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCP_KEEPINIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXHLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"TCP_MAXOLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOOPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_VENDOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033750\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033679\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033754\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMSDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147775579\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DCD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTMASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900636\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147775575\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"537162847\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCTIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074820185\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"Undelete\":                          reflect.ValueOf(syscall.Undelete),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VERASE2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"WLINUXCLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WTRAPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                        reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                       reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":                    reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                       reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfVersion\":                    reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"BpfZbuf\":                       reflect.ValueOf((*syscall.BpfZbuf)(nil)),\n\t\t\"BpfZbufHeader\":                 reflect.ValueOf((*syscall.BpfZbufHeader)(nil)),\n\t\t\"Cmsghdr\":                       reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":                    reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                         reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                       reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                          reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":                  reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                        reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":                       reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":                   reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                      reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":              reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                        reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                      reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                     reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"IfmaMsghdr\":                    reflect.ValueOf((*syscall.IfmaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":                  reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":          reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\":      reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":              reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"InterfaceMulticastAddrMessage\": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)),\n\t\t\"Iovec\":                         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                      reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                        reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":                        reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                   reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":                reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":           reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":              reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":              reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":               reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":                  reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":                reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                     reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                      reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":              reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":                 reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":                 reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":          reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                      reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":                   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                       reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":                    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_illumos_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22 && !solaris\n// +build go1.21,!go1.22,!solaris\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_802\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_CCITT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_ECMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_FILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_GOSIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_INET_OFFLOAD\":               reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_KEY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_NBS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_NCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_NIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_NS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_OSINET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_PACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_POLICY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SNA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_TRILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_UNIX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ARPHRD_FRAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ARPHRD_IB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IPATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":               reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"Accept\":                        reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                       reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                        reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                       reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"B1200\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B153600\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"B1800\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B230400\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"B2400\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B300\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B307200\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"B38400\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B460800\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"B4800\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B57600\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"B600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B76800\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"B921600\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"B9600\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1072676233\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST32\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1073200521\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGETLIF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1081623147\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1074807419\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT32\":               reflect.ValueOf(constant.MakeFromLiteral(\"1074283131\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074020984\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1082147439\", token.INT, 0)),\n\t\t\"BIOCGSTATSOLD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2147204496\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1073462682\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2147204490\", token.INT, 0)),\n\t\t\"BIOCSETF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2146418073\", token.INT, 0)),\n\t\t\"BIOCSETF32\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2146942361\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2145369492\", token.INT, 0)),\n\t\t\"BIOCSETLIF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2139602324\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2147204491\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2146418054\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT32\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2146942342\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2147204487\", token.INT, 0)),\n\t\t\"BIOCSTCPF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2146418062\", token.INT, 0)),\n\t\t\"BIOCSUDPF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2146418061\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DFLTBUFSIZE\":               reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"BPF_DIV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                          reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":             reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":           reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CSWTCH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                         reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                         reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                         reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                        reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                      reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                         reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                   reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                       reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                     reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                       reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_AIRONET_HEADER\":            reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":    reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":              reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":              reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                     reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                     reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":          reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":      reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPOIB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":              reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":              reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":             reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":             reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":            reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":              reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":              reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":             reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":           reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":          reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":               reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":             reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":          reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":            reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_NULL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":              reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RAWAF_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"35913728\", token.INT, 0)),\n\t\t\"DLT_RIO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":         reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Dup\":                           reflect.ValueOf(syscall.Dup),\n\t\t\"E2BIG\":                         reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                        reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                    reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                 reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                          reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                  reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                        reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                      reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                         reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                         reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                        reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                       reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                         reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                       reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                       reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                        reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                         reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                     reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                        reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                        reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                         reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                  reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                  reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                    reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                       reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                     reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                  reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                          reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                        reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                        reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                        reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                         reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                     reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                  reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                         reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                        reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                   reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                         reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                        reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                           reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                       reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                        reflect.ValueOf(syscall.EISDIR),\n\t\t\"EL2HLT\":                        reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                      reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                        reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                        reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                       reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                       reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                      reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                       reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                       reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                        reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOCKUNMAPPED\":                 reflect.ValueOf(syscall.ELOCKUNMAPPED),\n\t\t\"ELOOP\":                         reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                        reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                        reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMPTY_SET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EMSGSIZE\":                      reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMT_CPCOVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMULTIHOP\":                     reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                  reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENETDOWN\":                      reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                     reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                   reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                        reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                        reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                       reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                        reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                       reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                        reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                        reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                       reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                        reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                       reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                        reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                        reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                        reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                        reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                   reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                        reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                         reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                        reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                        reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTACTIVE\":                    reflect.ValueOf(syscall.ENOTACTIVE),\n\t\t\"ENOTBLK\":                       reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                      reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                       reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                     reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":               reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                      reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                       reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                        reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                      reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                         reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                    reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                     reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                    reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                         reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                  reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                         reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROTO\":                        reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":               reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                    reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"EQUALITY_CHECK\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ERANGE\":                        reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                       reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                       reflect.ValueOf(syscall.EREMOTE),\n\t\t\"ERESTART\":                      reflect.ValueOf(syscall.ERESTART),\n\t\t\"EROFS\":                         reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                     reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":               reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                        reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                         reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                        reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                        reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                      reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETIME\":                         reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                     reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                  reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                       reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUNATCH\":                       reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                        reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                   reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                         reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                        reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"Environ\":                       reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_NFDBITS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"FLUSHALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FLUSHDATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"FLUSHO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"F_ALLOCSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_ALLOCSP64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_BADFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"F_BLKSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"F_BLOCKS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"F_CHKFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_COMPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_DUP2FD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_DUP2FD_CLOEXEC\":              reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"F_DUPFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"F_FREESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_FREESP64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_GETFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_GETLK64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_GETOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"F_GETXFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"F_HASREMOTELOCKS\":              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"F_ISSTREAM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_MANDDNY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_MDACC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"F_NODNY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_NPRIV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_PRIV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_QUOTACTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"F_RDACC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_RDDNY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_RDLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_REVOKE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"F_RMACC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_RMDNY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_RWACC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_RWDNY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_SETFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64_NBMAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"F_SETLKW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLK_NBMAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"F_SETOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"F_SHARE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"F_SHARE_NBMAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"F_UNLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_UNLKSYS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_UNSHARE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"F_WRACC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRDNY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Fchdir\":                        reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                        reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                        reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                    reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                         reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                      reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                     reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                         reflect.ValueOf(syscall.Fstat),\n\t\t\"Fsync\":                         reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                     reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Getcwd\":                        reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                      reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                       reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                        reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                       reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getexecname\":                   reflect.ValueOf(syscall.Getexecname),\n\t\t\"Getgid\":                        reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                     reflect.ValueOf(syscall.Getgroups),\n\t\t\"Gethostname\":                   reflect.ValueOf(syscall.Gethostname),\n\t\t\"Getpagesize\":                   reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                   reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpid\":                        reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                       reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                   reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                     reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                     reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                   reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptInt\":                 reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                  reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                        reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                         reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICRNL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_ADDRCONF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8736013826906\", token.INT, 0)),\n\t\t\"IFF_COS_ENABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DEPRECATED\":                reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_DHCPRUNNING\":               reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_DUPLICATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"274877906944\", token.INT, 0)),\n\t\t\"IFF_FAILED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"IFF_FIXEDMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"68719476736\", token.INT, 0)),\n\t\t\"IFF_INACTIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IFF_INTELLIGENT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_IPMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"549755813888\", token.INT, 0)),\n\t\t\"IFF_IPMP_CANTCHANGE\":           reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"IFF_IPMP_INVALID\":              reflect.ValueOf(constant.MakeFromLiteral(\"8256487552\", token.INT, 0)),\n\t\t\"IFF_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IFF_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IFF_L3PROTECT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4398046511104\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_MULTI_BCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOACCEPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFAILOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"IFF_NOLINKLOCAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"2199023255552\", token.INT, 0)),\n\t\t\"IFF_NOLOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_NONUD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_NORTEXCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NOXMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_OFFLINE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PREFERRED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17179869184\", token.INT, 0)),\n\t\t\"IFF_PRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_ROUTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_STANDBY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IFF_TEMPORARY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34359738368\", token.INT, 0)),\n\t\t\"IFF_UNNUMBERED\":                reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_UP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"137438953472\", token.INT, 0)),\n\t\t\"IFF_VRRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1099511627776\", token.INT, 0)),\n\t\t\"IFF_XRESOLV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_6TO4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_DS3\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"IFT_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":               reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":               reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_RS232\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_T1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_V35\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_AUTOCONF_MASK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_AUTOCONF_NET\":               reflect.ValueOf(constant.MakeFromLiteral(\"2851995648\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_CLASSE_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_PRIVATE12_MASK\":             reflect.ValueOf(constant.MakeFromLiteral(\"4293918720\", token.INT, 0)),\n\t\t\"IN_PRIVATE12_NET\":              reflect.ValueOf(constant.MakeFromLiteral(\"2886729728\", token.INT, 0)),\n\t\t\"IN_PRIVATE16_MASK\":             reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_PRIVATE16_NET\":              reflect.ValueOf(constant.MakeFromLiteral(\"3232235520\", token.INT, 0)),\n\t\t\"IN_PRIVATE8_MASK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_PRIVATE8_NET\":               reflect.ValueOf(constant.MakeFromLiteral(\"167772160\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":               reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":              reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_OSPF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":               reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_BOUND_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_FLOWLABEL\":       reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_TCLASS\":          reflect.ValueOf(constant.MakeFromLiteral(\"61455\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_PAD1_OPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_CGA\":           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_CGADEFAULT\":    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_CGAMASK\":       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_COA\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_DEFAULT\":       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_HOME\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_MASK\":          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_MIPDEFAULT\":    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_MIPMASK\":       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_NONCGA\":        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_PUBLIC\":        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_TMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_TMPDEFAULT\":    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_TMPMASK\":       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":              reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":              reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDRDSTOPTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SEC_OPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_SRC_PREFERENCES\":          reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_UNSPEC_SRC\":               reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_BOUND_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_BROADCAST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"IP_BROADCAST_TTL\":              reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DHCPINIT_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IP_DONTFRAG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_DONTROUTE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":              reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_NEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVPKTINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVSLLA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_REUSEADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"IP_SEC_OPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_TOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":             reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_UNSPEC_SRC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"ISIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":               reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"LOCK_EX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                        reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                          reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                        reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                         reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_ACCESS_DEFAULT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_ACCESS_LWP\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_ACCESS_MANY\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_32BIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_ALIGN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_ANON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_FILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_INITDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_TEXT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_DUPCTRL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_EOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_MAXIOVLEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_NOTIFICATION\":              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_OOB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_XPG4_2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_OLDSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MS_SYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"M_FLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"Mkdir\":                         reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mknod\":                         reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                          reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                        reflect.ValueOf(syscall.Munmap),\n\t\t\"NOFLSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                     reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                 reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONLCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPENFAIL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"OPOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6291459\", token.INT, 0)),\n\t\t\"O_APPEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"O_CREAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_DSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_EXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_NDELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NOLINKS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_RDONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_SEARCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_SIOCGIFCONF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1073190636\", token.INT, 0)),\n\t\t\"O_SIOCGLIFCONF\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1072666248\", token.INT, 0)),\n\t\t\"O_SYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_TRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_XATTR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"Open\":                          reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PAREXT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PARMRK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ParseDirent\":                   reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseSocketControlMessage\":     reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":               reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"Pathconf\":                      reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                          reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                         reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                         reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                        reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_SRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_NUMBITS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_SRC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTIRT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_SETSRC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_ZONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTM_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_CHGADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_FREEADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RT_AWARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                          reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                    reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                      reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                      reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                       reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                        reflect.ValueOf(syscall.Rename),\n\t\t\"Rmdir\":                         reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_RIGHTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SCM_UCRED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4114\", token.INT, 0)),\n\t\t\"SHUT_RD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIG2STR_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SIGABRT\":                       reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                       reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                        reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCANCEL\":                     reflect.ValueOf(syscall.SIGCANCEL),\n\t\t\"SIGCHLD\":                       reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                        reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                       reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                        reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                        reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGFREEZE\":                     reflect.ValueOf(syscall.SIGFREEZE),\n\t\t\"SIGHUP\":                        reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                        reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                        reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                         reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                        reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGJVM1\":                       reflect.ValueOf(syscall.SIGJVM1),\n\t\t\"SIGJVM2\":                       reflect.ValueOf(syscall.SIGJVM2),\n\t\t\"SIGKILL\":                       reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGLOST\":                       reflect.ValueOf(syscall.SIGLOST),\n\t\t\"SIGLWP\":                        reflect.ValueOf(syscall.SIGLWP),\n\t\t\"SIGPIPE\":                       reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                       reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                       reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                        reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                       reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                       reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                       reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                        reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                       reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHAW\":                       reflect.ValueOf(syscall.SIGTHAW),\n\t\t\"SIGTRAP\":                       reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                       reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                       reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                       reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                        reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                       reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                       reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                     reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWAITING\":                    reflect.ValueOf(syscall.SIGWAITING),\n\t\t\"SIGWINCH\":                      reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                       reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                       reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIGXRES\":                       reflect.ValueOf(syscall.SIGXRES),\n\t\t\"SIOCADDMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359567\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2144308726\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2145097440\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359566\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2144308725\", token.INT, 0)),\n\t\t\"SIOCDIPSECONFIG\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147194473\", token.INT, 0)),\n\t\t\"SIOCDXARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2147456600\", token.INT, 0)),\n\t\t\"SIOCFIPSECONFIG\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147194475\", token.INT, 0)),\n\t\t\"SIOCGARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-1071355617\", token.INT, 0)),\n\t\t\"SIOCGDSTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1073714780\", token.INT, 0)),\n\t\t\"SIOCGENADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1071617707\", token.INT, 0)),\n\t\t\"SIOCGENPSTATS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1071617735\", token.INT, 0)),\n\t\t\"SIOCGETLSGCNT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1072664043\", token.INT, 0)),\n\t\t\"SIOCGETNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074819892\", token.INT, 0)),\n\t\t\"SIOCGETPEER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074819893\", token.INT, 0)),\n\t\t\"SIOCGETPROP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073712964\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1072401899\", token.INT, 0)),\n\t\t\"SIOCGETSYNC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1071617747\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1072401900\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1071617779\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1071617769\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073190564\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1071617777\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617775\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1071617607\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617702\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071617773\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1071617765\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071617770\", token.INT, 0)),\n\t\t\"SIOCGIFMUXID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617704\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1071617767\", token.INT, 0)),\n\t\t\"SIOCGIFNUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074030935\", token.INT, 0)),\n\t\t\"SIOCGIP6ADDRPOLICY\":            reflect.ValueOf(constant.MakeFromLiteral(\"-1073714782\", token.INT, 0)),\n\t\t\"SIOCGIPMSFILTER\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1073452620\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1065850511\", token.INT, 0)),\n\t\t\"SIOCGLIFBINDING\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1065850470\", token.INT, 0)),\n\t\t\"SIOCGLIFBRDADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1065850501\", token.INT, 0)),\n\t\t\"SIOCGLIFCONF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1072666203\", token.INT, 0)),\n\t\t\"SIOCGLIFDADSTATE\":              reflect.ValueOf(constant.MakeFromLiteral(\"-1065850434\", token.INT, 0)),\n\t\t\"SIOCGLIFDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1065850509\", token.INT, 0)),\n\t\t\"SIOCGLIFFLAGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1065850507\", token.INT, 0)),\n\t\t\"SIOCGLIFGROUPINFO\":             reflect.ValueOf(constant.MakeFromLiteral(\"-1061918307\", token.INT, 0)),\n\t\t\"SIOCGLIFGROUPNAME\":             reflect.ValueOf(constant.MakeFromLiteral(\"-1065850468\", token.INT, 0)),\n\t\t\"SIOCGLIFHWADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1065850432\", token.INT, 0)),\n\t\t\"SIOCGLIFINDEX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1065850491\", token.INT, 0)),\n\t\t\"SIOCGLIFLNKINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1065850484\", token.INT, 0)),\n\t\t\"SIOCGLIFMETRIC\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1065850497\", token.INT, 0)),\n\t\t\"SIOCGLIFMTU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1065850502\", token.INT, 0)),\n\t\t\"SIOCGLIFMUXID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1065850493\", token.INT, 0)),\n\t\t\"SIOCGLIFNETMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1065850499\", token.INT, 0)),\n\t\t\"SIOCGLIFNUM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1072928382\", token.INT, 0)),\n\t\t\"SIOCGLIFSRCOF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1072666191\", token.INT, 0)),\n\t\t\"SIOCGLIFSUBNET\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1065850486\", token.INT, 0)),\n\t\t\"SIOCGLIFTOKEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1065850488\", token.INT, 0)),\n\t\t\"SIOCGLIFUSESRC\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1065850449\", token.INT, 0)),\n\t\t\"SIOCGLIFZONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1065850454\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGMSFILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1073452622\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1072666182\", token.INT, 0)),\n\t\t\"SIOCGXARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1073714777\", token.INT, 0)),\n\t\t\"SIOCIFDETACH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359560\", token.INT, 0)),\n\t\t\"SIOCILB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1073452613\", token.INT, 0)),\n\t\t\"SIOCLIFADDIF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1065850513\", token.INT, 0)),\n\t\t\"SIOCLIFDELND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2139592307\", token.INT, 0)),\n\t\t\"SIOCLIFGETND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1065850482\", token.INT, 0)),\n\t\t\"SIOCLIFREMOVEIF\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2139592338\", token.INT, 0)),\n\t\t\"SIOCLIFSETND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2139592305\", token.INT, 0)),\n\t\t\"SIOCLIPSECONFIG\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147194472\", token.INT, 0)),\n\t\t\"SIOCLOWER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2145359575\", token.INT, 0)),\n\t\t\"SIOCSARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2145097442\", token.INT, 0)),\n\t\t\"SIOCSCTPGOPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1072666195\", token.INT, 0)),\n\t\t\"SIOCSCTPPEELOFF\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1073452626\", token.INT, 0)),\n\t\t\"SIOCSCTPSOPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2146408020\", token.INT, 0)),\n\t\t\"SIOCSENABLESDP\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1073452617\", token.INT, 0)),\n\t\t\"SIOCSETPROP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2147192643\", token.INT, 0)),\n\t\t\"SIOCSETSYNC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2145359572\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2147192064\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2145359604\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2145359592\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2145359602\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359600\", token.INT, 0)),\n\t\t\"SIOCSIFINDEX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359525\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2145359598\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2145359588\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2145359595\", token.INT, 0)),\n\t\t\"SIOCSIFMUXID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359527\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2145359543\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2145359590\", token.INT, 0)),\n\t\t\"SIOCSIP6ADDRPOLICY\":            reflect.ValueOf(constant.MakeFromLiteral(\"-2147456605\", token.INT, 0)),\n\t\t\"SIOCSIPMSFILTER\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147194443\", token.INT, 0)),\n\t\t\"SIOCSIPSECONFIG\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147194474\", token.INT, 0)),\n\t\t\"SIOCSLGETREQ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617721\", token.INT, 0)),\n\t\t\"SIOCSLIFADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2139592336\", token.INT, 0)),\n\t\t\"SIOCSLIFBRDADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2139592324\", token.INT, 0)),\n\t\t\"SIOCSLIFDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2139592334\", token.INT, 0)),\n\t\t\"SIOCSLIFFLAGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2139592332\", token.INT, 0)),\n\t\t\"SIOCSLIFGROUPNAME\":             reflect.ValueOf(constant.MakeFromLiteral(\"-2139592293\", token.INT, 0)),\n\t\t\"SIOCSLIFINDEX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2139592314\", token.INT, 0)),\n\t\t\"SIOCSLIFLNKINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2139592309\", token.INT, 0)),\n\t\t\"SIOCSLIFMETRIC\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2139592320\", token.INT, 0)),\n\t\t\"SIOCSLIFMTU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2139592327\", token.INT, 0)),\n\t\t\"SIOCSLIFMUXID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2139592316\", token.INT, 0)),\n\t\t\"SIOCSLIFNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1065850495\", token.INT, 0)),\n\t\t\"SIOCSLIFNETMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2139592322\", token.INT, 0)),\n\t\t\"SIOCSLIFPREFIX\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1065850433\", token.INT, 0)),\n\t\t\"SIOCSLIFSUBNET\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2139592311\", token.INT, 0)),\n\t\t\"SIOCSLIFTOKEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2139592313\", token.INT, 0)),\n\t\t\"SIOCSLIFUSESRC\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2139592272\", token.INT, 0)),\n\t\t\"SIOCSLIFZONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2139592277\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2147192062\", token.INT, 0)),\n\t\t\"SIOCSLSTAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2145359544\", token.INT, 0)),\n\t\t\"SIOCSMSFILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2147194445\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2147192056\", token.INT, 0)),\n\t\t\"SIOCSPROMISC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2147194576\", token.INT, 0)),\n\t\t\"SIOCSQPTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1073452616\", token.INT, 0)),\n\t\t\"SIOCSSDSTATS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617746\", token.INT, 0)),\n\t\t\"SIOCSSESTATS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617745\", token.INT, 0)),\n\t\t\"SIOCSXARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2147456602\", token.INT, 0)),\n\t\t\"SIOCTMYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073190512\", token.INT, 0)),\n\t\t\"SIOCTMYSITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073190510\", token.INT, 0)),\n\t\t\"SIOCTONLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073190511\", token.INT, 0)),\n\t\t\"SIOCUPPER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2145359576\", token.INT, 0)),\n\t\t\"SIOCX25RCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071617732\", token.INT, 0)),\n\t\t\"SIOCX25TBL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071617731\", token.INT, 0)),\n\t\t\"SIOCX25XMT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071617733\", token.INT, 0)),\n\t\t\"SIOCXPROTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536900407\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOCK_NDELAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_TYPE_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOL_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65532\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65533\", token.INT, 0)),\n\t\t\"SOL_ROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SO_ALLZONES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4116\", token.INT, 0)),\n\t\t\"SO_ANON_MLP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"1073741825\", token.INT, 0)),\n\t\t\"SO_BAND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_COPYOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DELIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"1073741826\", token.INT, 0)),\n\t\t\"SO_DGRAM_ERRIND\":               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"SO_DONTLINGER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-129\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"SO_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_EXCLBIND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4117\", token.INT, 0)),\n\t\t\"SO_HIWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ISNTTY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_ISTTY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_MAC_EXEMPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"SO_MAC_IMPLICIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_MAXBLK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"SO_MAXPSZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_MINPSZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_MREADOFF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_MREADON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_NDELOFF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_NDELON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_NODELIM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PROTOTYPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVPSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_READOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_RECVUCRED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_SECATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_STRHOLD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"SO_TAIL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SO_TONSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_TOSTOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_TYPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_VRRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4119\", token.INT, 0)),\n\t\t\"SO_WROFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"S_IFBLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                          reflect.ValueOf(syscall.Seek),\n\t\t\"Sendfile\":                      reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                       reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                      reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                        reflect.ValueOf(syscall.Sendto),\n\t\t\"SetNonblock\":                   reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                       reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                        reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                       reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                        reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                     reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setpgid\":                       reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                   reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                      reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                      reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                     reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                        reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":        reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":              reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":            reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":           reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                 reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":              reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":              reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":             reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Setuid\":                        reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                 reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":             reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfData\":                  reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":             reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":        reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":            reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":           reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                        reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":             reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                    reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                          reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":                        reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                         reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                        reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                 reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":               reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                       reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                          reflect.ValueOf(syscall.Sync),\n\t\t\"TCFLSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21511\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_ABORT_THRESHOLD\":           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_ANONPRIVBIND\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_CONN_ABORT_THRESHOLD\":      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_CONN_NOTIFY_THRESHOLD\":     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_CORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_EXCLBIND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"TCP_INIT_CWND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_KEEPALIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_KEEPALIVE_ABORT_THRESHOLD\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_KEEPALIVE_THRESHOLD\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MSS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOTIFY_THRESHOLD\":          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_RECVDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_RTO_INITIAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"TCP_RTO_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"TCP_RTO_MIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21504\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29818\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29816\", token.INT, 0)),\n\t\t\"TIOCCILOOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29804\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29709\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29712\", token.INT, 0)),\n\t\t\"TIOCGETC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29714\", token.INT, 0)),\n\t\t\"TIOCGETD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29696\", token.INT, 0)),\n\t\t\"TIOCGETP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29704\", token.INT, 0)),\n\t\t\"TIOCGLTC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29812\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29716\", token.INT, 0)),\n\t\t\"TIOCGPPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21629\", token.INT, 0)),\n\t\t\"TIOCGPPSEV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21631\", token.INT, 0)),\n\t\t\"TIOCGSID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29718\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21609\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21608\", token.INT, 0)),\n\t\t\"TIOCHPCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29698\", token.INT, 0)),\n\t\t\"TIOCKBOF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21513\", token.INT, 0)),\n\t\t\"TIOCKBON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21512\", token.INT, 0)),\n\t\t\"TIOCLBIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29822\", token.INT, 0)),\n\t\t\"TIOCLBIS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29823\", token.INT, 0)),\n\t\t\"TIOCLGET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29820\", token.INT, 0)),\n\t\t\"TIOCLSET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29821\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29724\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29723\", token.INT, 0)),\n\t\t\"TIOCMGET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29725\", token.INT, 0)),\n\t\t\"TIOCMSET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29722\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29809\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29710\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29811\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29726\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29819\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29828\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29817\", token.INT, 0)),\n\t\t\"TIOCSETC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29713\", token.INT, 0)),\n\t\t\"TIOCSETD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29697\", token.INT, 0)),\n\t\t\"TIOCSETN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29706\", token.INT, 0)),\n\t\t\"TIOCSETP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29705\", token.INT, 0)),\n\t\t\"TIOCSIGNAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29727\", token.INT, 0)),\n\t\t\"TIOCSILOOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29805\", token.INT, 0)),\n\t\t\"TIOCSLTC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29813\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29717\", token.INT, 0)),\n\t\t\"TIOCSPPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21630\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21610\", token.INT, 0)),\n\t\t\"TIOCSTART\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29806\", token.INT, 0)),\n\t\t\"TIOCSTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29719\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29807\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21607\", token.INT, 0)),\n\t\t\"TOSTOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                 reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                      reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                         reflect.ValueOf(syscall.Umask),\n\t\t\"UnixRights\":                    reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                        reflect.ValueOf(syscall.Unlink),\n\t\t\"Unsetenv\":                      reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                        reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                    reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VCEOF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VCEOL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VDISCARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VDSUSP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VEOL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VERASE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VQUIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTCH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WCONTFLG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"WCONTINUED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WCOREFLG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOHANG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WNOWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WOPTMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"WRAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"WSIGMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WSTOPFLG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WSTOPPED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WTRAPPED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Wait4\":                         reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                         reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":               reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":              reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":           reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":              reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfTimeval\":           reflect.ValueOf((*syscall.BpfTimeval)(nil)),\n\t\t\"BpfVersion\":           reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfData\":               reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":             reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":            reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":  reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtMetrics\":            reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":             reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":     reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timeval32\":            reflect.ValueOf((*syscall.Timeval32)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_ios_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_CCITT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_ECMA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_IPX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_ISO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_NATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_NDRV\":                            reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NS\":                              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PPP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_PUP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_RESERVED_36\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SIP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SNA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_SYSTEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_UNIX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Accept\":                             reflect.ValueOf(syscall.Accept),\n\t\t\"Access\":                             reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                            reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                               reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                               reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                               reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B4800\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                                reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                               reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                                reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B9600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222028921\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020978\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147762808\", token.INT, 0)),\n\t\t\"BIOCSETF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762803\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                            reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                               reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                          reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                        reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                      reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                       reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                            reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                           reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                            reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                         reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                  reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":                reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                                reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                                reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                              reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                    reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                            reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                              reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                              reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                             reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                           reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                              reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                        reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                            reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                          reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                            reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":         reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AX25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CHDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                     reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":               reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":           reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_NULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAW\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DT_BLK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                                reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                               reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                              reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                             reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                         reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                      reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                       reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                             reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                           reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                              reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADARCH\":                           reflect.ValueOf(syscall.EBADARCH),\n\t\t\"EBADEXEC\":                           reflect.ValueOf(syscall.EBADEXEC),\n\t\t\"EBADF\":                              reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMACHO\":                          reflect.ValueOf(syscall.EBADMACHO),\n\t\t\"EBADMSG\":                            reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                            reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                              reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                          reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                             reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                       reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                       reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                         reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                            reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                       reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDEVERR\":                            reflect.ValueOf(syscall.EDEVERR),\n\t\t\"EDOM\":                               reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                             reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                             reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                             reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                              reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                             reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                          reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                       reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                              reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                             reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                        reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                              reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                             reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                                reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                            reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                             reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                              reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                              reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                             reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                             reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                           reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                          reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                       reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                          reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                           reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                          reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                        reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                             reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                            reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                            reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODATA\":                            reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                             reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                             reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                            reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                             reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                            reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                             reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                             reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPOLICY\":                          reflect.ValueOf(syscall.ENOPOLICY),\n\t\t\"ENOPROTOOPT\":                        reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                             reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                              reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                             reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                             reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                            reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                           reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                            reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                          reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":                    reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                           reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                            reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                             reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                              reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                         reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                          reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                         reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                              reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                       reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                              reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                           reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                       reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                      reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                       reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                             reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                    reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                         reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"EPWROFF\":                            reflect.ValueOf(syscall.EPWROFF),\n\t\t\"ERANGE\":                             reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                            reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                              reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                       reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHLIBVERS\":                         reflect.ValueOf(syscall.ESHLIBVERS),\n\t\t\"ESHUTDOWN\":                          reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                    reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                             reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                              reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                             reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIME\":                              reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                          reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                       reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                            reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                             reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-9\", token.INT, 0)),\n\t\t\"EVFILT_MACHPORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-8\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"EVFILT_THREADMARKER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"EVFILT_VM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-12\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_DISPATCH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_OOBAND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_POLL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_RECEIPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                        reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                              reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                               reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                            reflect.ValueOf(syscall.Environ),\n\t\t\"Exchangedata\":                       reflect.ValueOf(syscall.Exchangedata),\n\t\t\"FD_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_ADDFILESIGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"F_ADDSIGS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"F_ALLOCATEALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_ALLOCATECONTIG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_CHKCLEAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"F_DUPFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"F_FLUSH_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"F_FREEZE_FS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"F_FULLFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"F_GETFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETLKPID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"F_GETNOSIGPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"F_GETOWN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETPATH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"F_GETPATH_MTMINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"F_GETPROTECTIONCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"F_GLOBAL_NOCACHE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"F_LOG2PHYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"F_LOG2PHYS_EXT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"F_MARKDEPENDENCY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"F_NOCACHE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"F_NODIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"F_OK\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_PATHPKG_CHECK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"F_PEOFPOSMODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_PREALLOCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"F_RDADVISE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"F_RDAHEAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"F_RDLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_READBOOTSTRAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"F_SETBACKINGSTORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"F_SETFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETNOSIGPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"F_SETOWN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETPROTECTIONCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"F_SETSIZE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"F_THAW_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"F_UNLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_VOLPOSMODE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRITEBOOTSTRAP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"F_WRLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                             reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                           reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                             reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                             reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                         reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                              reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                           reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                           reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                          reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                              reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                            reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                              reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                          reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                            reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                      reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getdtablesize\":                      reflect.ValueOf(syscall.Getdtablesize),\n\t\t\"Getegid\":                            reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                             reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                            reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                          reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                             reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                          reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                        reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                        reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                            reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                            reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                             reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                            reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                        reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                          reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                          reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                             reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                        reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                     reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":             reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                   reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":              reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                 reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":                reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                      reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                       reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                             reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                              reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ALTPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                           reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_CARP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CELLULAR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_DS3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_ENC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_GIF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                       reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                         reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PDP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PPP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_RS232\":                          reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_T1\":                             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_V35\":                            reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_X25\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LINKLOCALNETNUM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2851995648\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IPPROTO_3PC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPPROTO_ADFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_AHIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPPROTO_APES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IPPROTO_ARGUS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPPROTO_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IPPROTO_BHA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPPROTO_BLT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPPROTO_BRSATMON\":                   reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPPROTO_CFTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPPROTO_CHAOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPPROTO_CMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPPROTO_CPHB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPPROTO_CPNX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPPROTO_DDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPPROTO_DGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EMCON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HMP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IDPR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPPROTO_IDRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IPPROTO_IGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IPPROTO_IL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPPROTO_INLSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_INP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IPPROTO_IPEIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IRTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPPROTO_KRYPTOLAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPPROTO_LARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MEAS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPPROTO_MHRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPPROTO_MICP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_MUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NHRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_NSP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_NVPII\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPPROTO_OSPFIGP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PGM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IPPROTO_PIGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PRM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_PVP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_RCCMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPPROTO_RDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_RVD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPPROTO_SATEXPAK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPPROTO_SATMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IPPROTO_SCCSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_SDRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPPROTO_SEP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_SRPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IPPROTO_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPPROTO_SVMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IPPROTO_SWIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPPROTO_TCF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_TPXX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPPROTO_TTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VINES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_VISA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPPROTO_VMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IPPROTO_WBEXPAK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IPPROTO_WBMON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPPROTO_WSN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPPROTO_XNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPPROTO_XTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_2292NEXTHOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_BINDV6ONLY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_BOUND_IF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_FW_ADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_FW_DEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_FW_FLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_FW_GET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_FW_ZERO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXOPTHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MAX_GROUP_SRC_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IPV6_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IPV6_MAX_SOCK_SRC_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IPV6_MIN_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IP_BOUND_IF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_CONFIGURE\":              reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_FLUSH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_GET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IP_FAITH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_FW_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FW_DEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_FW_FLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IP_FW_GET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IP_FW_RESETLOG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IP_FW_ZERO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_GROUP_SRC_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_MUTE_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_SRC_FILTER\":             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IP_MSS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IFINDEX\":               reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_VIF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_NAT__XXX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OLD_FW_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_OLD_FW_DEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IP_OLD_FW_FLUSH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IP_OLD_FW_GET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IP_OLD_FW_RESETLOG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IP_OLD_FW_ZERO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVPKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RSVP_OFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_RSVP_ON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_OFF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_ON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_STRIPHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_TOS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TRAFFIC_MGT_BACKGROUND\":          reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_TTL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"ISIG\":                               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUTF8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                    reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                          reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                             reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                             reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                             reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                               reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                             reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                              reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_CAN_REUSE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_FREE_REUSABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_FREE_REUSE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MADV_ZERO_WIRED_PAGES\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MAP_ANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_JIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_NOCACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_NOEXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_RESERVED0080\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_EOR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_FLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_HAVEMORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_HOLD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_NEEDSA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MSG_OOB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_RCVMORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_SEND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_WAITSTREAM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_DEACTIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_KILLPAGES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"Mkdir\":                              reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                             reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                              reflect.ValueOf(syscall.Mknod),\n\t\t\"Mlock\":                              reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                           reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                               reflect.ValueOf(syscall.Mmap),\n\t\t\"Mprotect\":                           reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                            reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                         reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                             reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_DUMP2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NET_RT_STAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_TRASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NOFLSH\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ABSOLUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXITSTATUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FFAND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_FFCOPY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFLAGSMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"NOTE_FFNOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NOTE_FFOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_NONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"NOTE_NSECONDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1048576\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_REAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_RESOURCEEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_SECONDS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_SIGNAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRIGGER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"NOTE_USECONDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_VM_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE_SUDDEN_TERMINATE\":  reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE_TERMINATE\":         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NsecToTimespec\":                     reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                      reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OFDEL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"OFILL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ONLCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_ALERT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"O_APPEND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_CREAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_DSYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_EVTONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_EXCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_POPUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"O_RDONLY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYMLINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_SYNC\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                               reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_ATTACH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PT_ATTACHEXC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PT_CONTINUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PT_DENY_ATTACH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PT_DETACH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PT_FIRSTMACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PT_FORCEQUOTA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PT_KILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PT_READ_D\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PT_READ_I\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PT_READ_U\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PT_SIGEXC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PT_STEP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PT_THUPDATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PT_TRACE_ME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_WRITE_D\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PT_WRITE_I\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PT_WRITE_U\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ParseDirent\":                        reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":                reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":               reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":          reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                    reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                           reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                               reflect.ValueOf(syscall.Pipe),\n\t\t\"Pread\":                              reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                             reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_CONDEMNED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_DELCLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_DONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_IFREF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_IFSCOPE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PRCLONING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WASCLONED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DELMADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_GET2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_IFINFO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                               reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                         reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                           reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                           reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                            reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                             reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                             reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                              reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                           reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_CREDS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP_MONOTONIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SHUT_RD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                            reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                            reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                             reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                            reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                            reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                             reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                             reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                             reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                             reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                            reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                             reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                              reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                             reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                            reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                            reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                            reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                            reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                            reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                            reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                             reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                            reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                            reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                            reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                            reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                            reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                             reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                            reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                            reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                          reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                           reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                            reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                            reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2165860637\", token.INT, 0)),\n\t\t\"SIOCARPIPLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349544\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCAUTOADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349542\", token.INT, 0)),\n\t\t\"SIOCAUTONETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607719\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607745\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2165860639\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223873915\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222565404\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222565403\", token.INT, 0)),\n\t\t\"SIOCGETVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349631\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFALTMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFASYNCMAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCGIFBOND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349595\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3222038820\", token.INT, 0)),\n\t\t\"SIOCGIFDEVMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349572\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFKPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349639\", token.INT, 0)),\n\t\t\"SIOCGIFMAC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349634\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3224135992\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349555\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349568\", token.INT, 0)),\n\t\t\"SIOCGIFPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349567\", token.INT, 0)),\n\t\t\"SIOCGIFSTATUS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3274795325\", token.INT, 0)),\n\t\t\"SIOCGIFVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349631\", token.INT, 0)),\n\t\t\"SIOCGIFWAKEFLAGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349640\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3239602462\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3239602499\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349624\", token.INT, 0)),\n\t\t\"SIOCIFCREATE2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349626\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCRSLVMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222300987\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2150132091\", token.INT, 0)),\n\t\t\"SIOCSETVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607806\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFALTMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607749\", token.INT, 0)),\n\t\t\"SIOCSIFASYNCMAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607805\", token.INT, 0)),\n\t\t\"SIOCSIFBOND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607750\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607770\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFKPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607814\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607740\", token.INT, 0)),\n\t\t\"SIOCSIFMAC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607811\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607732\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2151704894\", token.INT, 0)),\n\t\t\"SIOCSIFPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607734\", token.INT, 0)),\n\t\t\"SIOCSIFVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607806\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2165860674\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_MAXADDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_DONTTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_ERROR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LABEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SO_LINGER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LINGER_SEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4224\", token.INT, 0)),\n\t\t\"SO_NKE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"SO_NOADDRERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4131\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"SO_NOTIFYCONFLICT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4134\", token.INT, 0)),\n\t\t\"SO_NP_EXTENSIONS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4227\", token.INT, 0)),\n\t\t\"SO_NREAD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4128\", token.INT, 0)),\n\t\t\"SO_NWRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4132\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERLABEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_RANDOMPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4226\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_RESTRICTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4225\", token.INT, 0)),\n\t\t\"SO_RESTRICT_DENYIN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_RESTRICT_DENYOUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_RESTRICT_DENYSET\":                reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_REUSESHAREUID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4133\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP_MONOTONIC\":             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_TYPE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_UPCALLCLOSEWAIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4135\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_WANTMORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_WANTOOBFLAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"404\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCESS_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADD_PROFIL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_AIO_CANCEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_AIO_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_AIO_FSYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_AIO_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_AIO_RETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND_NOCANCEL\":           reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_AIO_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_ATGETMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_ATPGETREQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_ATPGETRSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_ATPSNDREQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_ATPSNDRSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_ATPUTMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_ATSOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_AUDIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_AUDITCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"359\", token.INT, 0)),\n\t\t\"SYS_AUDITON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_JOIN\":             reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_PORT\":             reflect.ValueOf(constant.MakeFromLiteral(\"432\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_SELF\":             reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS_BIND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_REGISTER\":             reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_TERMINATE\":            reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHMOD_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CHUD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSE_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"399\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_CONNECT_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"409\", token.INT, 0)),\n\t\t\"SYS_COPYFILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_CSOPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_DUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EXCHANGEDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMOD_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FCNTL_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"406\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_FFSCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_FGETATTRLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_FILEPORT_MAKEFD\":                reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS_FILEPORT_MAKEPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_FSCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_FSETATTRLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_FSGETPATH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_FSTAT64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_FSTAT64_EXTENDED\":               reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_FSTATV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_FSTAT_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FSYNC_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"408\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_GETATTRLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT_ADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_GETAUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES64\":                reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIESATTR\":              reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_GETDTABLESIZE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETHOSTUUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_GETLCID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"395\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_GETSGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETWGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_IDENTITYSVC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_INITGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPOLICYSYS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_KDEBUG_TRACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_KEVENT64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_KILL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LIO_LISTIO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_LSTAT64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_LSTAT64_EXTENDED\":               reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_LSTATV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_LSTAT_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MAXSYSCALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKCOMPLEX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIR_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFO_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MODWATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_MSGRCV_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"419\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_MSGSND_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"418\", token.INT, 0)),\n\t\t\"SYS_MSGSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_MSYNC_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"405\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NFSCLNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_NFSSVC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPEN_EXTENDED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_OPEN_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"398\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PID_HIBERNATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS_PID_RESUME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS_PID_SHUTDOWN_SOCKETS\":           reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_PID_SUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"433\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_POLL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_POLL_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_POSIX_SPAWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_PREAD_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_PROCESS_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_PROC_INFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVBROAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVCLRPREPOST\":            reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVSIGNAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_MUTEXDROP\":               reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_MUTEXWAIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_DOWNGRADE\":            reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_LONGRDLOCK\":           reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_RDLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UNLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UNLOCK2\":              reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UPGRADE\":              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_WRLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_YIELDWRLOCK\":          reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_PWRITE_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_READ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_READV_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS_READ_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"396\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVFROM_NOCANCEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"403\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RECVMSG_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"401\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SEARCHFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_SELECT_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"407\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_SEMSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_SEM_CLOSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_SEM_DESTROY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_SEM_GETVALUE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_SEM_INIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_SEM_OPEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_SEM_POST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_SEM_TRYWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_SEM_UNLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_SEM_WAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_SEM_WAIT_NOCANCEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"420\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDMSG_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"402\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SENDTO_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_SETATTRLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT_ADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_SETAUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SETLCID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETPRIVEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_SETTID_WITH_PID\":                reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETWGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_SHARED_REGION_CHECK_NP\":         reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_SHARED_REGION_MAP_AND_SLIDE_NP\": reflect.ValueOf(constant.MakeFromLiteral(\"438\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_SHMSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_SHM_OPEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_SHM_UNLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND_NOCANCEL\":            reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_STACK_SNAPSHOT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_STAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_STAT64\":                         reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_STAT64_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_STATV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_STAT_EXTENDED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSCALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_THREAD_SELFID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMASK_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                         reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_VM_PRESSURE_MONITOR\":            reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WAIT4_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"400\", token.INT, 0)),\n\t\t\"SYS_WAITEVENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_WAITID_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_WATCHEVENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_WORKQ_KERNRETURN\":               reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_WORKQ_OPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_WRITEV_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_WRITE_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"397\", token.INT, 0)),\n\t\t\"SYS___DISABLE_THREADSIGNAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS___MAC_EXECVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"380\", token.INT, 0)),\n\t\t\"SYS___MAC_GETFSSTAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"388\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"382\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LCID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"391\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LCTX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"392\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_MOUNT\":                reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PROC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS___MAC_MOUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"389\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"383\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LCTX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"393\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_PROC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"387\", token.INT, 0)),\n\t\t\"SYS___MAC_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"381\", token.INT, 0)),\n\t\t\"SYS___OLD_SEMWAIT_SIGNAL\":           reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL\":  reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_CANCELED\":             reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_CHDIR\":                reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_FCHDIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_KILL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_MARKCANCEL\":           reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_SIGMASK\":              reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS___SEMWAIT_SIGNAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS___SEMWAIT_SIGNAL_NOCANCEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS___SIGWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS___SIGWAIT_NOCANCEL\":             reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_IEXEC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFWHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57344\", token.INT, 0)),\n\t\t\"S_IREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISTXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_ISUID\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                               reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                             reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                           reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                            reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                           reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                             reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                             reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                       reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                     reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                   reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                    reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                    reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                      reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                      reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                          reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                        reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                            reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                             reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                            reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                             reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                          reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                           reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                            reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                        reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setprivexec\":                        reflect.ValueOf(syscall.Setprivexec),\n\t\t\"Setregid\":                           reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                           reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                          reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                             reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                     reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":             reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                   reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                 reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":                reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                      reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                   reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                   reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                  reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                       reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                             reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfData\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                    reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                  reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":             reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                 reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":                reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                             reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                  reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                         reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                               reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                             reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                             reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                              reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                             reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                      reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                    reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                     reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                            reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                               reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                             reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                       reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CONNECTIONTIMEOUT\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MAXHLEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"TCP_MAXOLEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MINMSSOVERLOAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1000\", token.INT, 0)),\n\t\t\"TCP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOOPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_RXT_CONNDROPTIME\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TCP_RXT_FINDROP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDCDTIMESTAMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074820184\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCDSIMICROCODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536900693\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGDRAINWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033750\", token.INT, 0)),\n\t\t\"TIOCGETA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1078490131\", token.INT, 0)),\n\t\t\"TIOCGETD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCIXOFF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900736\", token.INT, 0)),\n\t\t\"TIOCIXON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900737\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGDTRWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074033754\", token.INT, 0)),\n\t\t\"TIOCMGET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033667\", token.INT, 0)),\n\t\t\"TIOCMODS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775492\", token.INT, 0)),\n\t\t\"TIOCMSDTRWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147775579\", token.INT, 0)),\n\t\t\"TIOCMSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTYGNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1082160211\", token.INT, 0)),\n\t\t\"TIOCPTYGRANT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536900692\", token.INT, 0)),\n\t\t\"TIOCPTYUNLK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536900690\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900707\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDRAINWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147775575\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2152231956\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2152231958\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2152231957\", token.INT, 0)),\n\t\t\"TIOCSETD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536900703\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCTIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074820185\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                     reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                      reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                           reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                              reflect.ValueOf(syscall.Umask),\n\t\t\"Undelete\":                           reflect.ValueOf(syscall.Undelete),\n\t\t\"UnixRights\":                         reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                             reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                            reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                           reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                             reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                         reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                             reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VT0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                                reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTDLY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTIME\":                              reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WORDSIZE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WUNTRACED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                              reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                              reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                        reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                       reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":                    reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                       reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfVersion\":                    reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                       reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":                    reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"Fbootstraptransfer_t\":          reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)),\n\t\t\"FdSet\":                         reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                       reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                          reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"Fstore_t\":                      reflect.ValueOf((*syscall.Fstore_t)(nil)),\n\t\t\"ICMPv6Filter\":                  reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                        reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":                   reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                      reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfData\":                        reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                      reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                     reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"IfmaMsghdr\":                    reflect.ValueOf((*syscall.IfmaMsghdr)(nil)),\n\t\t\"IfmaMsghdr2\":                   reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)),\n\t\t\"Inet4Pktinfo\":                  reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":                  reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":          reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceMessage\":              reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"InterfaceMulticastAddrMessage\": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)),\n\t\t\"Iovec\":                         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                      reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                        reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Log2phys_t\":                    reflect.ValueOf((*syscall.Log2phys_t)(nil)),\n\t\t\"Msghdr\":                        reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"Radvisory_t\":                   reflect.ValueOf((*syscall.Radvisory_t)(nil)),\n\t\t\"RawConn\":                       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                   reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":                reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":           reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":              reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":              reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":               reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":                  reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":                reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                     reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                      reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":              reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":                 reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":                 reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":          reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                      reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":                   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                       reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timeval32\":                     reflect.ValueOf((*syscall.Timeval32)(nil)),\n\t\t\"WaitStatus\":                    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_ios_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_CCITT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_ECMA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_IPX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_ISO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_NATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_NDRV\":                            reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NS\":                              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PPP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_PUP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_RESERVED_36\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SIP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SNA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_SYSTEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_UNIX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_UTUN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"Accept\":                             reflect.ValueOf(syscall.Accept),\n\t\t\"Access\":                             reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                            reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                               reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                               reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                               reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B4800\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                                reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                               reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                                reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B9600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222028921\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020978\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147762808\", token.INT, 0)),\n\t\t\"BIOCSETF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762803\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                            reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                               reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                          reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                        reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                      reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                       reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                            reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                           reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                            reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                         reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                  reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":                reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                                reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                                reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                              reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                    reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                            reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                              reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                              reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                             reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                           reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                              reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                        reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                            reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                          reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                            reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":         reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AX25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CHDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                     reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":               reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":           reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_NULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAW\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DT_BLK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                                reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                               reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                              reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                             reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                         reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                      reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                       reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                             reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                           reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                              reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADARCH\":                           reflect.ValueOf(syscall.EBADARCH),\n\t\t\"EBADEXEC\":                           reflect.ValueOf(syscall.EBADEXEC),\n\t\t\"EBADF\":                              reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMACHO\":                          reflect.ValueOf(syscall.EBADMACHO),\n\t\t\"EBADMSG\":                            reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                            reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                              reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                          reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                             reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                       reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                       reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                         reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                            reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                       reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDEVERR\":                            reflect.ValueOf(syscall.EDEVERR),\n\t\t\"EDOM\":                               reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                             reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                             reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                             reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                              reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                             reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                          reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                       reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                              reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                             reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                        reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                              reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                             reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                                reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                            reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                             reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                              reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                              reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                             reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                             reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                           reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                          reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                       reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                          reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                           reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                          reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                        reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                             reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                            reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                            reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODATA\":                            reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                             reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                             reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                            reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                             reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                            reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                             reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                             reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPOLICY\":                          reflect.ValueOf(syscall.ENOPOLICY),\n\t\t\"ENOPROTOOPT\":                        reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                             reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                              reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                             reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                             reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                            reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                           reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                            reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                          reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":                    reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                           reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                            reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                             reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                              reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                         reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                          reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                         reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                              reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                       reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                              reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                           reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                       reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                      reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                       reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                             reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                    reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                         reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"EPWROFF\":                            reflect.ValueOf(syscall.EPWROFF),\n\t\t\"EQFULL\":                             reflect.ValueOf(syscall.EQFULL),\n\t\t\"ERANGE\":                             reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                            reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                              reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                       reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHLIBVERS\":                         reflect.ValueOf(syscall.ESHLIBVERS),\n\t\t\"ESHUTDOWN\":                          reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                    reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                             reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                              reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                             reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIME\":                              reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                          reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                       reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                            reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                             reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-9\", token.INT, 0)),\n\t\t\"EVFILT_MACHPORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-8\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EVFILT_THREADMARKER\":                reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"EVFILT_VM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-12\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_DISPATCH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_OOBAND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_POLL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_RECEIPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                        reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                              reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                               reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                            reflect.ValueOf(syscall.Environ),\n\t\t\"Exchangedata\":                       reflect.ValueOf(syscall.Exchangedata),\n\t\t\"FD_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_ADDFILESIGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"F_ADDSIGS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"F_ALLOCATEALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_ALLOCATECONTIG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_CHKCLEAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"F_DUPFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"F_FINDSIGS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"F_FLUSH_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"F_FREEZE_FS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"F_FULLFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"F_GETCODEDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"F_GETFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETLKPID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"F_GETNOSIGPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"F_GETOWN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETPATH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"F_GETPATH_MTMINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"F_GETPROTECTIONCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"F_GETPROTECTIONLEVEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"F_GLOBAL_NOCACHE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"F_LOG2PHYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"F_LOG2PHYS_EXT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"F_NOCACHE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"F_NODIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"F_OK\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_PATHPKG_CHECK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"F_PEOFPOSMODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_PREALLOCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"F_RDADVISE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"F_RDAHEAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"F_RDLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETBACKINGSTORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"F_SETFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETLKWTIMEOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SETNOSIGPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"F_SETOWN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETPROTECTIONCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"F_SETSIZE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"F_SINGLE_WRITER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"F_THAW_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"F_TRANSCODEKEY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"F_UNLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_VOLPOSMODE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                             reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                           reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                             reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                             reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                         reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                              reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                           reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                           reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                          reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                              reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                            reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                              reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                          reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                            reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                      reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getdtablesize\":                      reflect.ValueOf(syscall.Getdtablesize),\n\t\t\"Getegid\":                            reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                             reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                            reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                          reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                             reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                          reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                        reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                        reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                            reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                            reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                             reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                            reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                        reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                          reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                          reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                             reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                        reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                     reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":             reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                   reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":              reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                 reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":                reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                      reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                       reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                             reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                              reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ALTPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                           reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_CARP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CELLULAR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_DS3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_ENC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_GIF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                       reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                         reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PDP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PPP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_RS232\":                          reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_T1\":                             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_V35\":                            reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_X25\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LINKLOCALNETNUM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2851995648\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IPPROTO_3PC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPPROTO_ADFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_AHIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPPROTO_APES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IPPROTO_ARGUS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPPROTO_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IPPROTO_BHA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPPROTO_BLT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPPROTO_BRSATMON\":                   reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPPROTO_CFTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPPROTO_CHAOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPPROTO_CMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPPROTO_CPHB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPPROTO_CPNX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPPROTO_DDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPPROTO_DGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EMCON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HMP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IDPR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPPROTO_IDRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IPPROTO_IGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IPPROTO_IL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPPROTO_INLSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_INP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IPPROTO_IPEIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IRTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPPROTO_KRYPTOLAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPPROTO_LARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MEAS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPPROTO_MHRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPPROTO_MICP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_MUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NHRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_NSP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_NVPII\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPPROTO_OSPFIGP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PGM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IPPROTO_PIGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PRM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_PVP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_RCCMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPPROTO_RDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_RVD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPPROTO_SATEXPAK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPPROTO_SATMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IPPROTO_SCCSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_SDRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPPROTO_SEP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_SRPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IPPROTO_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPPROTO_SVMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IPPROTO_SWIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPPROTO_TCF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_TPXX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPPROTO_TTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VINES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_VISA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPPROTO_VMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IPPROTO_WBEXPAK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IPPROTO_WBMON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPPROTO_WSN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPPROTO_XNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPPROTO_XTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_2292NEXTHOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_BINDV6ONLY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_BOUND_IF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_FW_ADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_FW_DEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_FW_FLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_FW_GET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_FW_ZERO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXOPTHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MAX_GROUP_SRC_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IPV6_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IPV6_MAX_SOCK_SRC_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IPV6_MIN_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IP_BOUND_IF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_CONFIGURE\":              reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_FLUSH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_GET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IP_FAITH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_FW_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FW_DEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_FW_FLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IP_FW_GET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IP_FW_RESETLOG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IP_FW_ZERO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_GROUP_SRC_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_MUTE_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_SRC_FILTER\":             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IP_MSS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IFINDEX\":               reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_VIF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_NAT__XXX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OLD_FW_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_OLD_FW_DEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IP_OLD_FW_FLUSH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IP_OLD_FW_GET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IP_OLD_FW_RESETLOG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IP_OLD_FW_ZERO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVPKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RSVP_OFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_RSVP_ON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_OFF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_ON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_STRIPHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_TOS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TRAFFIC_MGT_BACKGROUND\":          reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_TTL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"ISIG\":                               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUTF8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                    reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                          reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                             reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                             reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                             reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                               reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                             reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                              reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_CAN_REUSE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_FREE_REUSABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_FREE_REUSE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MADV_ZERO_WIRED_PAGES\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MAP_ANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_JIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_NOCACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_NOEXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_RESERVED0080\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_EOR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_FLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_HAVEMORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_HOLD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_NEEDSA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MSG_OOB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_RCVMORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_SEND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_WAITSTREAM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_DEACTIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_KILLPAGES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"Mkdir\":                              reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                             reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                              reflect.ValueOf(syscall.Mknod),\n\t\t\"Mlock\":                              reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                           reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                               reflect.ValueOf(syscall.Mmap),\n\t\t\"Mprotect\":                           reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                            reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                         reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                             reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_DUMP2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NET_RT_STAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_TRASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NOFLSH\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ABSOLUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_BACKGROUND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_CRITICAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXITSTATUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"NOTE_EXIT_CSERROR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"NOTE_EXIT_DECRYPTFAIL\":              reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"NOTE_EXIT_DETAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"NOTE_EXIT_DETAIL_MASK\":              reflect.ValueOf(constant.MakeFromLiteral(\"458752\", token.INT, 0)),\n\t\t\"NOTE_EXIT_MEMORY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"NOTE_EXIT_REPARENTED\":               reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FFAND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_FFCOPY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFLAGSMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"NOTE_FFNOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NOTE_FFOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LEEWAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_NONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"NOTE_NSECONDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1048576\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_REAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_SECONDS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_SIGNAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRIGGER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"NOTE_USECONDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_VM_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE_SUDDEN_TERMINATE\":  reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE_TERMINATE\":         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NsecToTimespec\":                     reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                      reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OFDEL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"OFILL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ONLCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_ALERT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"O_APPEND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_CREAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_DP_GETRAWENCRYPTED\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_DSYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_EVTONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_EXCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_POPUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"O_RDONLY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYMLINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_SYNC\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                               reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_ATTACH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PT_ATTACHEXC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PT_CONTINUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PT_DENY_ATTACH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PT_DETACH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PT_FIRSTMACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PT_FORCEQUOTA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PT_KILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PT_READ_D\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PT_READ_I\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PT_READ_U\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PT_SIGEXC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PT_STEP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PT_THUPDATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PT_TRACE_ME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_WRITE_D\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PT_WRITE_I\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PT_WRITE_U\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ParseDirent\":                        reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":                reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":               reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":          reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                    reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                           reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                               reflect.ValueOf(syscall.Pipe),\n\t\t\"Pread\":                              reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                             reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_CPU_USAGE_MONITOR\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_CONDEMNED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_DELCLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_DONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_IFREF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_IFSCOPE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PRCLONING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_PROXY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_ROUTER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WASCLONED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DELMADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_GET2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_IFINFO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                               reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                         reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                           reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                           reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                            reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                             reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                             reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                              reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                           reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_CREDS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP_MONOTONIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SHUT_RD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                            reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                            reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                             reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                            reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                            reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                             reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                             reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                             reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                             reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                            reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                             reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                              reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                             reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                            reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                            reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                            reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                            reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                            reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                            reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                             reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                            reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                            reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                            reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                            reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                            reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                             reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                            reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                            reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                          reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                           reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                            reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                            reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCARPIPLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349544\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCAUTOADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349542\", token.INT, 0)),\n\t\t\"SIOCAUTONETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607719\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607745\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223873915\", token.INT, 0)),\n\t\t\"SIOCGETVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349631\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFALTMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFASYNCMAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCGIFBOND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349595\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3222038820\", token.INT, 0)),\n\t\t\"SIOCGIFDEVMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349572\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFKPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349639\", token.INT, 0)),\n\t\t\"SIOCGIFMAC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349634\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3224135992\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349555\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349568\", token.INT, 0)),\n\t\t\"SIOCGIFPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349567\", token.INT, 0)),\n\t\t\"SIOCGIFSTATUS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3274795325\", token.INT, 0)),\n\t\t\"SIOCGIFVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349631\", token.INT, 0)),\n\t\t\"SIOCGIFWAKEFLAGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349640\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349624\", token.INT, 0)),\n\t\t\"SIOCIFCREATE2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349626\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222301057\", token.INT, 0)),\n\t\t\"SIOCRSLVMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222300987\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2150132091\", token.INT, 0)),\n\t\t\"SIOCSETVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607806\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFALTMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607749\", token.INT, 0)),\n\t\t\"SIOCSIFASYNCMAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607805\", token.INT, 0)),\n\t\t\"SIOCSIFBOND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607750\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607770\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFKPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607814\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607740\", token.INT, 0)),\n\t\t\"SIOCSIFMAC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607811\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607732\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2151704894\", token.INT, 0)),\n\t\t\"SIOCSIFPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607734\", token.INT, 0)),\n\t\t\"SIOCSIFVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607806\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_MAXADDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_DONTTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_ERROR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LABEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SO_LINGER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LINGER_SEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4224\", token.INT, 0)),\n\t\t\"SO_NKE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"SO_NOADDRERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4131\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"SO_NOTIFYCONFLICT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4134\", token.INT, 0)),\n\t\t\"SO_NP_EXTENSIONS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4227\", token.INT, 0)),\n\t\t\"SO_NREAD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4128\", token.INT, 0)),\n\t\t\"SO_NUMRCVPKT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4370\", token.INT, 0)),\n\t\t\"SO_NWRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4132\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERLABEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_RANDOMPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4226\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_REUSESHAREUID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4133\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP_MONOTONIC\":             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_TYPE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_UPCALLCLOSEWAIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4135\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_WANTMORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_WANTOOBFLAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"404\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCESS_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_AIO_CANCEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_AIO_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_AIO_FSYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_AIO_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_AIO_RETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND_NOCANCEL\":           reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_AIO_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_ATGETMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_ATPGETREQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_ATPGETRSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_ATPSNDREQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_ATPSNDRSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_ATPUTMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_ATSOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_AUDIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_AUDITCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"359\", token.INT, 0)),\n\t\t\"SYS_AUDITON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_JOIN\":             reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_PORT\":             reflect.ValueOf(constant.MakeFromLiteral(\"432\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_SELF\":             reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS_BIND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_REGISTER\":             reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_TERMINATE\":            reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHMOD_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CHUD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSE_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"399\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_CONNECT_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"409\", token.INT, 0)),\n\t\t\"SYS_COPYFILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_CSOPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_CSOPS_AUDITTOKEN\":               reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_DUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EXCHANGEDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMOD_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FCNTL_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"406\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_FFSCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_FGETATTRLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_FILEPORT_MAKEFD\":                reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS_FILEPORT_MAKEPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_FSCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_FSETATTRLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_FSGETPATH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_FSTAT64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_FSTAT64_EXTENDED\":               reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_FSTAT_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FSYNC_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"408\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_GETATTRLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT_ADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_GETAUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES64\":                reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIESATTR\":              reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_GETDTABLESIZE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETHOSTUUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_GETLCID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"395\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_GETSGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETWGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_IDENTITYSVC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_INITGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPOLICYSYS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_KAS_INFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_KDEBUG_TRACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_KEVENT64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_KILL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_LEDGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"373\", token.INT, 0)),\n\t\t\"SYS_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LIO_LISTIO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_LSTAT64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_LSTAT64_EXTENDED\":               reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_LSTAT_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MAXSYSCALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"440\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIR_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFO_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MODWATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_MSGRCV_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"419\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_MSGSND_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"418\", token.INT, 0)),\n\t\t\"SYS_MSGSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_MSYNC_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"405\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NFSCLNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_NFSSVC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPEN_DPROTECTED_NP\":             reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_OPEN_EXTENDED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_OPEN_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"398\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PID_HIBERNATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS_PID_RESUME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS_PID_SHUTDOWN_SOCKETS\":           reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_PID_SUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"433\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_POLL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_POLL_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_POSIX_SPAWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_PREAD_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_PROCESS_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_PROC_INFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVBROAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVCLRPREPOST\":            reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVSIGNAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_MUTEXDROP\":               reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_MUTEXWAIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_DOWNGRADE\":            reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_LONGRDLOCK\":           reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_RDLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UNLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UNLOCK2\":              reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UPGRADE\":              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_WRLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_YIELDWRLOCK\":          reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_PWRITE_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_READ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_READV_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS_READ_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"396\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVFROM_NOCANCEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"403\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RECVMSG_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"401\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SEARCHFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_SELECT_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"407\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_SEMSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_SEM_CLOSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_SEM_DESTROY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_SEM_GETVALUE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_SEM_INIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_SEM_OPEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_SEM_POST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_SEM_TRYWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_SEM_UNLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_SEM_WAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_SEM_WAIT_NOCANCEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"420\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDMSG_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"402\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SENDTO_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_SETATTRLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT_ADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_SETAUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SETLCID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETPRIVEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_SETTID_WITH_PID\":                reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETWGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_SHARED_REGION_CHECK_NP\":         reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_SHARED_REGION_MAP_AND_SLIDE_NP\": reflect.ValueOf(constant.MakeFromLiteral(\"438\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_SHMSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_SHM_OPEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_SHM_UNLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND_NOCANCEL\":            reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_STACK_SNAPSHOT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_STAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_STAT64\":                         reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_STAT64_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_STAT_EXTENDED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSCALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_THREAD_SELFID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMASK_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                         reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_VM_PRESSURE_MONITOR\":            reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WAIT4_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"400\", token.INT, 0)),\n\t\t\"SYS_WAITEVENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_WAITID_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_WATCHEVENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_WORKQ_KERNRETURN\":               reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_WORKQ_OPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_WRITEV_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_WRITE_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"397\", token.INT, 0)),\n\t\t\"SYS___DISABLE_THREADSIGNAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS___MAC_EXECVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"380\", token.INT, 0)),\n\t\t\"SYS___MAC_GETFSSTAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"388\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"382\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LCID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"391\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LCTX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"392\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_MOUNT\":                reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PROC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS___MAC_MOUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"389\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"383\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LCTX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"393\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_PROC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"387\", token.INT, 0)),\n\t\t\"SYS___MAC_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"381\", token.INT, 0)),\n\t\t\"SYS___OLD_SEMWAIT_SIGNAL\":           reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL\":  reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_CANCELED\":             reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_CHDIR\":                reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_FCHDIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_KILL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_MARKCANCEL\":           reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_SIGMASK\":              reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS___SEMWAIT_SIGNAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS___SEMWAIT_SIGNAL_NOCANCEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS___SIGWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS___SIGWAIT_NOCANCEL\":             reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_IEXEC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFWHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57344\", token.INT, 0)),\n\t\t\"S_IREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISTXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_ISUID\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                               reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                             reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                           reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                            reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                           reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                             reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                             reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                       reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                     reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                   reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                    reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                    reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                      reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                      reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                          reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                        reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                            reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                             reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                            reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                             reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                          reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                           reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                            reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                        reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setprivexec\":                        reflect.ValueOf(syscall.Setprivexec),\n\t\t\"Setregid\":                           reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                           reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                          reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                             reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                     reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":             reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                   reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                 reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":                reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                      reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                   reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                   reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                  reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                       reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                             reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfData\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                    reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                  reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":             reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                 reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":                reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                             reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                  reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                         reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                               reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                             reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                             reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                              reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                             reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                      reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                    reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                     reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                            reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                               reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                             reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                       reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CONNECTIONTIMEOUT\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_ENABLE_ECN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"TCP_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"TCP_MAXHLEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"TCP_MAXOLEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOOPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_NOTSENT_LOWAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"TCP_RXT_CONNDROPTIME\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TCP_RXT_FINDROP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCP_SENDMOREACKS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDCDTIMESTAMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074820184\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCDSIMICROCODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536900693\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGDRAINWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033750\", token.INT, 0)),\n\t\t\"TIOCGETA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1078490131\", token.INT, 0)),\n\t\t\"TIOCGETD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCIXOFF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900736\", token.INT, 0)),\n\t\t\"TIOCIXON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900737\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGDTRWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074033754\", token.INT, 0)),\n\t\t\"TIOCMGET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033667\", token.INT, 0)),\n\t\t\"TIOCMODS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775492\", token.INT, 0)),\n\t\t\"TIOCMSDTRWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147775579\", token.INT, 0)),\n\t\t\"TIOCMSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTYGNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1082160211\", token.INT, 0)),\n\t\t\"TIOCPTYGRANT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536900692\", token.INT, 0)),\n\t\t\"TIOCPTYUNLK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536900690\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900707\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDRAINWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147775575\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2152231956\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2152231958\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2152231957\", token.INT, 0)),\n\t\t\"TIOCSETD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536900703\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCTIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074820185\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                     reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                      reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                           reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                              reflect.ValueOf(syscall.Umask),\n\t\t\"Undelete\":                           reflect.ValueOf(syscall.Undelete),\n\t\t\"UnixRights\":                         reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                             reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                            reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                           reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                             reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                         reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                             reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VT0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                                reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTDLY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTIME\":                              reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WORDSIZE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WUNTRACED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                              reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                              reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                        reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                       reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":                    reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                       reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfVersion\":                    reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                       reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":                    reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"Fbootstraptransfer_t\":          reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)),\n\t\t\"FdSet\":                         reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                       reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                          reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"Fstore_t\":                      reflect.ValueOf((*syscall.Fstore_t)(nil)),\n\t\t\"ICMPv6Filter\":                  reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                        reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":                   reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                      reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfData\":                        reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                      reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                     reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"IfmaMsghdr\":                    reflect.ValueOf((*syscall.IfmaMsghdr)(nil)),\n\t\t\"IfmaMsghdr2\":                   reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)),\n\t\t\"Inet4Pktinfo\":                  reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":                  reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":          reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceMessage\":              reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"InterfaceMulticastAddrMessage\": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)),\n\t\t\"Iovec\":                         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                      reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                        reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Log2phys_t\":                    reflect.ValueOf((*syscall.Log2phys_t)(nil)),\n\t\t\"Msghdr\":                        reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"Radvisory_t\":                   reflect.ValueOf((*syscall.Radvisory_t)(nil)),\n\t\t\"RawConn\":                       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                   reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":                reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":           reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":              reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":              reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":               reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":                  reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":                reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                     reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                      reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":              reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":                 reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":                 reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":          reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                      reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":                   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                       reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timeval32\":                     reflect.ValueOf((*syscall.Timeval32)(nil)),\n\t\t\"WaitStatus\":                    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_js_wasm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_INET\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_UNIX\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Accept\":              reflect.ValueOf(syscall.Accept),\n\t\t\"Bind\":                reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":   reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\": reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"Chdir\":               reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":               reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":               reflect.ValueOf(syscall.Chown),\n\t\t\"Clearenv\":            reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":               reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":         reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"Connect\":             reflect.ValueOf(syscall.Connect),\n\t\t\"Dup\":                 reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":               reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":              reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":          reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":       reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":        reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":              reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":            reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":               reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":               reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":              reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":             reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":               reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":             reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":             reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":              reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":               reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":           reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECASECLASH\":          reflect.ValueOf(syscall.ECASECLASH),\n\t\t\"ECHILD\":              reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHRNG\":              reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":               reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":        reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":        reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":          reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":             reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":           reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":        reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":             reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":              reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":              reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":              reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":               reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":              reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":           reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":        reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":               reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":              reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":         reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":               reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":              reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                 reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":             reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":              reflect.ValueOf(syscall.EISDIR),\n\t\t\"EL2HLT\":              reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":            reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":              reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":              reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELBIN\":               reflect.ValueOf(syscall.ELBIN),\n\t\t\"ELIBACC\":             reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":             reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":            reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":             reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":             reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":              reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":               reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":              reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":              reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":            reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":           reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":        reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENETDOWN\":            reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":           reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":         reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":              reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENMFILE\":             reflect.ValueOf(syscall.ENMFILE),\n\t\t\"ENOANO\":              reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":             reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":              reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":             reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":              reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":              reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":             reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":              reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":             reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":           reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":              reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":              reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":              reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":              reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":         reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSHARE\":            reflect.ValueOf(syscall.ENOSHARE),\n\t\t\"ENOSPC\":              reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":               reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":              reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":              reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTCONN\":            reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":             reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":           reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTSOCK\":            reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":             reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":              reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":            reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":               reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":          reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":           reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EPERM\":               reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":        reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":               reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":            reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROTO\":              reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":     reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":          reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":              reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":             reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":             reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":               reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":           reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":     reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":              reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":               reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":              reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":              reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIME\":               reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":           reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":        reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"EUNATCH\":             reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":              reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":         reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":               reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":              reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":             reflect.ValueOf(syscall.Environ),\n\t\t\"F_CNVT\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_DUPFD\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFD\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETOWN\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_RDLCK\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_RGETLK\":            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_RSETLK\":            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_RSETLKW\":           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETFD\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETOWN\":            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_UNLKSYS\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRLCK\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Fchdir\":              reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":              reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":              reflect.ValueOf(syscall.Fchown),\n\t\t\"ForkLock\":            reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":               reflect.ValueOf(syscall.Fstat),\n\t\t\"Fsync\":               reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":           reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Getcwd\":              reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getegid\":             reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":              reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":             reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":              reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":           reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":         reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpid\":              reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":             reflect.ValueOf(syscall.Getppid),\n\t\t\"GetsockoptInt\":       reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":        reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":              reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":               reflect.ValueOf(syscall.Getwd),\n\t\t\"IPPROTO_IP\":          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":        reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":         reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":     reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Lchown\":              reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":              reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":               reflect.ValueOf(syscall.Lstat),\n\t\t\"Mkdir\":               reflect.ValueOf(syscall.Mkdir),\n\t\t\"NsecToTimespec\":      reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":       reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"O_APPEND\":            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_CREAT\":             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CREATE\":            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_EXCL\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_RDONLY\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SYNC\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_TRUNC\":             reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                reflect.ValueOf(syscall.Open),\n\t\t\"ParseDirent\":         reflect.ValueOf(syscall.ParseDirent),\n\t\t\"PathMax\":             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"Pipe\":                reflect.ValueOf(syscall.Pipe),\n\t\t\"Pread\":               reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":              reflect.ValueOf(syscall.Pwrite),\n\t\t\"Read\":                reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":          reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":            reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":            reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":             reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":              reflect.ValueOf(syscall.Rename),\n\t\t\"Rmdir\":               reflect.ValueOf(syscall.Rmdir),\n\t\t\"SIGCHLD\":             reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGINT\":              reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGKILL\":             reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGQUIT\":             reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGTERM\":             reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":             reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SOCK_DGRAM\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_RAW\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOMAXCONN\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ERROR\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":           reflect.ValueOf(constant.MakeFromLiteral(\"500\", token.INT, 0)),\n\t\t\"S_IEXEC\":             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":             reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFBOUNDSOCK\":       reflect.ValueOf(constant.MakeFromLiteral(\"77824\", token.INT, 0)),\n\t\t\"S_IFCHR\":             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFCOND\":            reflect.ValueOf(constant.MakeFromLiteral(\"90112\", token.INT, 0)),\n\t\t\"S_IFDIR\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFDSOCK\":           reflect.ValueOf(constant.MakeFromLiteral(\"69632\", token.INT, 0)),\n\t\t\"S_IFIFO\":             reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":             reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":              reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"S_IFMUTEX\":           reflect.ValueOf(constant.MakeFromLiteral(\"86016\", token.INT, 0)),\n\t\t\"S_IFREG\":             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSEMA\":            reflect.ValueOf(constant.MakeFromLiteral(\"94208\", token.INT, 0)),\n\t\t\"S_IFSHM\":             reflect.ValueOf(constant.MakeFromLiteral(\"81920\", token.INT, 0)),\n\t\t\"S_IFSHM_SYSV\":        reflect.ValueOf(constant.MakeFromLiteral(\"98304\", token.INT, 0)),\n\t\t\"S_IFSOCK\":            reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFSOCKADDR\":        reflect.ValueOf(constant.MakeFromLiteral(\"73728\", token.INT, 0)),\n\t\t\"S_IREAD\":             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":             reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":             reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":             reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_UNSUP\":             reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"Seek\":                reflect.ValueOf(syscall.Seek),\n\t\t\"Sendfile\":            reflect.ValueOf(syscall.Sendfile),\n\t\t\"SendmsgN\":            reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":              reflect.ValueOf(syscall.Sendto),\n\t\t\"SetNonblock\":         reflect.ValueOf(syscall.SetNonblock),\n\t\t\"SetReadDeadline\":     reflect.ValueOf(syscall.SetReadDeadline),\n\t\t\"SetWriteDeadline\":    reflect.ValueOf(syscall.SetWriteDeadline),\n\t\t\"Setenv\":              reflect.ValueOf(syscall.Setenv),\n\t\t\"SetsockoptInt\":       reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"Socket\":              reflect.ValueOf(syscall.Socket),\n\t\t\"Stat\":                reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Stdin\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Stdout\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"StopIO\":              reflect.ValueOf(syscall.StopIO),\n\t\t\"StringBytePtr\":       reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":     reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"Symlink\":             reflect.ValueOf(syscall.Symlink),\n\t\t\"Sysctl\":              reflect.ValueOf(syscall.Sysctl),\n\t\t\"TimespecToNsec\":      reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":       reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":            reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":               reflect.ValueOf(syscall.Umask),\n\t\t\"Unlink\":              reflect.ValueOf(syscall.Unlink),\n\t\t\"Unsetenv\":            reflect.ValueOf(syscall.Unsetenv),\n\t\t\"UtimesNano\":          reflect.ValueOf(syscall.UtimesNano),\n\t\t\"Wait4\":               reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":               reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"Conn\":          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Dirent\":        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"Iovec\":         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"ProcAttr\":      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"Rusage\":        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\": reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\": reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"Stat_t\":        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"SysProcAttr\":   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Timespec\":      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_linux_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_PHY\":            reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPOLL_NONBLOCK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Ioperm\":                           reflect.ValueOf(syscall.Ioperm),\n\t\t\"Iopl\":                             reflect.ValueOf(syscall.Iopl),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_32BIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETFPXREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETFPXREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SINGLEBLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_SYSEMU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PTRACE_SYSEMU_SINGLESTEP\":         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_BDFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_BREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_CHOWN32\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_FADVISE64_64\":                 reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FCHOWN32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FCNTL64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_FSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_FSTATAT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_FTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE64\":                  reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_GETEGID32\":                    reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETEUID32\":                    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_GETRESGID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_GETRESUID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETUID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_GET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_GTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_IDLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPERM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_IOPL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_IPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_LCHOWN32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_LOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_LSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_MADVISE1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_MMAP2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_MODIFY_LDT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_MPX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_NICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_OLDFSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_OLDLSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_OLDOLDUNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_OLDSTAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_OLDUNAME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_PROF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_READDIR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_SENDFILE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_SETFSGID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_SETFSUID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SETGID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SETREGID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_SETRESGID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETRESUID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_SETREUID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETUID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_SGETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_SIGNAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_SOCKETCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_SSETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_STAT64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_STIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_STTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_TIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_UGETRLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_ULIMIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_VM86\":                         reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_VM86OLD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_VSERVER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_WAITPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS__LLSEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS__NEWSELECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074287829\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074287830\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_linux_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_PHY\":            reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPOLL_NONBLOCK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Ioperm\":                           reflect.ValueOf(syscall.Ioperm),\n\t\t\"Iopl\":                             reflect.ValueOf(syscall.Iopl),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_32BIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ARCH_PRCTL\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETFPXREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETFPXREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SINGLEBLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_SYSEMU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PTRACE_SYSEMU_SINGLESTEP\":         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_ARCH_PRCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL_OLD\":                reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT_OLD\":               reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_GET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_IOPERM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_IOPL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_MODIFY_LDT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_NEWFSTATAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_SECURITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_SEMTIMEDOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_SET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_TIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_TUXCALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_VSERVER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812117\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812118\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_linux_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_PHY\":            reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELF_NGREG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ELF_PRARGSZ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPOLL_NONBLOCK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_CLEAR_SECCOMP_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SECCOMP_FILTER_EVENT\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SECCOMP_FILTER_SYSCALL\":        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETCRUNCHREGS\":             reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETHBPREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETVFPREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PTRACE_GETWMMXREGS\":               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SETCRUNCHREGS\":             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETHBPREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETVFPREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PTRACE_SETWMMXREGS\":               reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PTRACE_SET_SYSCALL\":               reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_DATA_ADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65540\", token.INT, 0)),\n\t\t\"PT_TEXT_ADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PT_TEXT_END_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65544\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_ARM_FADVISE64_64\":             reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_ARM_SYNC_FILE_RANGE\":          reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_BDFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_CHOWN32\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FCHOWN32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FCNTL64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_FSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_FSTATAT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE64\":                  reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_GETEGID32\":                    reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETEUID32\":                    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_GETRESGID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_GETRESUID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETUID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_IPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_LCHOWN32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_LSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_MMAP2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_NICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_OABI_SYSCALL_BASE\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_IOBASE\":             reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_READ\":               reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_WRITE\":              reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"359\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"377\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_READDIR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_RECV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_SEMTIMEDOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_SEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_SENDFILE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"374\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_SETFSGID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_SETFSUID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SETGID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"375\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SETREGID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_SETRESGID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETRESUID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_SETREUID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETUID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_SOCKETCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_STAT64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_STIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"373\", token.INT, 0)),\n\t\t\"SYS_SYSCALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_SYSCALL_BASE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_TIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_UGETRLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_VSERVER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS__LLSEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS__NEWSELECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074287829\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074287830\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_linux_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":        reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":               reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIGNAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35067\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatat\":                          reflect.ValueOf(syscall.Fstatat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_802_1Q_VLAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BONDING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_BRIDGE_PORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DISABLE_NETPOLL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_DONT_BRIDGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_EBRIDGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_ISATAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_LIVE_ADDR_CHANGE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MACVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_MACVLAN_PORT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MASTER_8023AD\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER_ALB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_MASTER_ARPMON\":                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_OVS_DATAPATH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SLAVE_INACTIVE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_SLAVE_NEEDARP\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SUPP_NOFCS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TEAM_PORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_TX_SKB_SHARING\":               reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_UNICAST_FLT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFF_WAN_HDLC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_XMIT_DST_RELEASE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_BEETPH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DODUMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_HUGE_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"MAP_HUGE_SHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_PATH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TMPFILE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4259840\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048831\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_MAX_PACING_RATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":              reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_ARCH_SPECIFIC_SYSCALL\":        reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_BPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_EXECVEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_FINIT_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETRANDOM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_KCMP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_MEMFD_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_SECCOMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_SEMTIMEDOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE2\":             reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21515\", token.INT, 0)),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_COOKIE_IN_ALWAYS\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_COOKIE_OUT_NEVER\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_COOKIE_PAIR_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_COOKIE_TRANSACTIONS\":          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MSS_DEFAULT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_MSS_DESIRED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1220\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUEUE_SEQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_REPAIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_REPAIR_OPTIONS\":               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_REPAIR_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_S_DATA_IN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_S_DATA_OUT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_THIN_DUPACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_THIN_LINEAR_TIMEOUTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_USER_TIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767360\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767352\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767353\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812117\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812118\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148553947\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025690\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025689\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_linux_loong64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KCM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_KEY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"AF_MCTP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"AF_MPLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_QIPCRTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_RDS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SMC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_XDP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"ARPHRD_6LOWPAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"825\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                  reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":            reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":         reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":         reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_MCTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":                reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_RAWIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"519\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_VSOCKMON\":                   reflect.ValueOf(constant.MakeFromLiteral(\"826\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                              reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                          reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                         reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LL_OFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2097152\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_NET_OFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1048576\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                      reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_ARGS_SIZE_VER0\":              reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CLONE_ARGS_SIZE_VER1\":              reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"CLONE_ARGS_SIZE_VER2\":              reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":                reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIGNAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                             reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                         reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup3\":                              reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                              reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                             reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                            reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                             reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                           reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                           reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                            reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                            reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                             reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                         reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                           reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                         reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                            reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                       reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                      reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                       reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                            reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                          reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                            reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                            reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                           reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                           reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                          reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                           reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                           reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                            reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                       reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                           reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                            reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                            reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                           reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                            reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                         reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                            reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                            reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                             reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                            reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                           reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                   reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                          reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                        reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLEXCLUSIVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                           reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                         reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                          reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                           reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                            reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                          reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_80221\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CFM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_DSA_8021Q\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56027\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_ERSPAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35006\", token.INT, 0)),\n\t\t\"ETH_P_ERSPAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8939\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_HSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35119\", token.INT, 0)),\n\t\t\"ETH_P_IBOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                  reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IFE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60734\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LLDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35020\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_LOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETH_P_MACSEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35045\", token.INT, 0)),\n\t\t\"ETH_P_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"ETH_P_MCTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35043\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_NCSI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35064\", token.INT, 0)),\n\t\t\"ETH_P_NSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35151\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PREAUTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35015\", token.INT, 0)),\n\t\t\"ETH_P_PRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35067\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_REALTEK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34969\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_TSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8944\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETH_P_XDSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"ETIME\":                             reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                           reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                           reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                            reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                       reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                      reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                          reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                         reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_ADD_SEALS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1033\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETLK64\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_GET_FILE_RW_HINT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1037\", token.INT, 0)),\n\t\t\"F_GET_RW_HINT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1035\", token.INT, 0)),\n\t\t\"F_GET_SEALS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1034\", token.INT, 0)),\n\t\t\"F_LOCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OFD_GETLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"F_OFD_SETLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"F_OFD_SETLKW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SEAL_FUTURE_WRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_SEAL_GROW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SEAL_SEAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SEAL_SHRINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SEAL_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SET_FILE_RW_HINT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1038\", token.INT, 0)),\n\t\t\"F_SET_RW_HINT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1036\", token.INT, 0)),\n\t\t\"F_SHLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                         reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                         reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                          reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                          reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                         reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatat\":                           reflect.ValueOf(syscall.Fstatat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                         reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                            reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                          reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                 reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                   reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                            reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                          reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_MANAGETEMPADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFA_F_MCAUTOJOIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_NOPREFIXROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_STABLE_PRIVACY\":              reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NAPI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_NAPI_FRAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MASK_CREATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_BEETPH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERNET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_MPTCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADDR_PREFERENCES\":             reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_FREEBIND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPV6_HDRINCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MINHOPCOUNT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_ALL\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_ORIGDSTADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_INTERFACE\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_OMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVERR_RFC4884\":              reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_RECVFRAGSIZE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVORIGDSTADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT_ISOLATE\":         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_TRANSPARENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BIND_ADDRESS_NO_PORT\":           reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_CHECKSUM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_NODEFRAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_INTERFACE\":             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_OMIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVERR_RFC4884\":                reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_RECVFRAGSIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                             reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                   reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                       reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                      reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                    reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Klogctl\":                           reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":           reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":             reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":            reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":        reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":          reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":         reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":       reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":               reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":               reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                         reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                           reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                         reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                           reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_COLD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"MADV_DODUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_KEEPONFORK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_PAGEOUT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"MADV_POPULATE_READ\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"MADV_POPULATE_WRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MADV_WIPEONFORK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_FIXED_NOREPLACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_HUGE_MASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"MAP_HUGE_SHIFT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_SHARED_VALIDATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MCL_ONFAULT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_BATCH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MSG_ZEROCOPY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_LAZYTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOSYMFOLLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41943121\", token.INT, 0)),\n\t\t\"MS_SHARED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                           reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                           reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                           reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                             reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                          reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                             reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                          reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                           reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                        reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CAP_ACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_EXT_ACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_GET_STRICT_CHK\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_LISTEN_ALL_NSID\":           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_LIST_MEMBERSHIPS\":          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":                reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SMC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":               reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK_TLVS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CAPPED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_FILTERED\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_NONREC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                        reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_PATH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TMPFILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4259840\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                            reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":                reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CBPF\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_DATA\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_EBPF\":                reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":       reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_UNIQUEID\":       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_QM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_IGNORE_OUTGOING\":            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PACKET_KERNEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_QDISC_BYPASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_ROLLOVER_STATS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_USER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                   reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_CAP_AMBIENT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"PR_CAP_AMBIENT_CLEAR_ALL\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_CAP_AMBIENT_IS_SET\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_CAP_AMBIENT_LOWER\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_CAP_AMBIENT_RAISE\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_FP_MODE_FR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_MODE_FRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":            reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_FP_MODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"PR_GET_IO_FLUSHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":               reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_SPECULATION_CTRL\":           reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"PR_GET_TAGGED_ADDR_CTRL\":           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"PR_GET_THP_DISABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MPX_DISABLE_MANAGEMENT\":         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"PR_MPX_ENABLE_MANAGEMENT\":          reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"PR_MTE_TAG_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"524280\", token.INT, 0)),\n\t\t\"PR_MTE_TAG_SHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_MTE_TCF_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_MTE_TCF_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_MTE_TCF_NONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MTE_TCF_SHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MTE_TCF_SYNC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_PAC_APDAKEY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_PAC_APDBKEY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_PAC_APGAKEY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_PAC_APIAKEY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_PAC_APIBKEY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_PAC_GET_ENABLED_KEYS\":           reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"PR_PAC_RESET_KEYS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"PR_PAC_SET_ENABLED_KEYS\":           reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"PR_SCHED_CORE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"PR_SCHED_CORE_CREATE\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SCHED_CORE_GET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_SCHED_CORE_MAX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SCHED_CORE_SCOPE_PROCESS_GROUP\": reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SCHED_CORE_SCOPE_THREAD\":        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_SCHED_CORE_SCOPE_THREAD_GROUP\":  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SCHED_CORE_SHARE_FROM\":          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SCHED_CORE_SHARE_TO\":            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":            reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_FP_MODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"PR_SET_IO_FLUSHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_MAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_MM_MAP_SIZE\":                reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":               reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":                reflect.ValueOf(constant.MakeFromLiteral(\"18446744073709551615\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_SPECULATION_CTRL\":           reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"PR_SET_SYSCALL_USER_DISPATCH\":      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"PR_SET_TAGGED_ADDR_CTRL\":           reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"PR_SET_THP_DISABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_VMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1398164801\", token.INT, 0)),\n\t\t\"PR_SET_VMA_ANON_NAME\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_SPEC_DISABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SPEC_DISABLE_NOEXEC\":            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_SPEC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SPEC_FORCE_DISABLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SPEC_INDIRECT_BRANCH\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SPEC_L1D_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SPEC_NOT_AFFECTED\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_SPEC_PRCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SPEC_STORE_BYPASS\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_SVE_GET_VL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"PR_SVE_SET_VL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"PR_SVE_SET_VL_ONEXEC\":              reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_SVE_VL_INHERIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_SVE_VL_LEN_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"PR_SYS_DISPATCH_OFF\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_SYS_DISPATCH_ON\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TAGGED_ADDR_ENABLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENTMSG_SYSCALL_ENTRY\":     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENTMSG_SYSCALL_EXIT\":      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":                reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_GET_RSEQ_CONFIGURATION\":     reflect.ValueOf(constant.MakeFromLiteral(\"16911\", token.INT, 0)),\n\t\t\"PTRACE_GET_SYSCALL_INFO\":           reflect.ValueOf(constant.MakeFromLiteral(\"16910\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3145983\", token.INT, 0)),\n\t\t\"PTRACE_O_SUSPEND_SECCOMP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SECCOMP_GET_FILTER\":         reflect.ValueOf(constant.MakeFromLiteral(\"16908\", token.INT, 0)),\n\t\t\"PTRACE_SECCOMP_GET_METADATA\":       reflect.ValueOf(constant.MakeFromLiteral(\"16909\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL_INFO_ENTRY\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL_INFO_EXIT\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL_INFO_NONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL_INFO_SECCOMP\":       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_SYSEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PTRACE_SYSEMU_SINGLESTEP\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":               reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":             reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":              reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                             reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                         reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18446744073709551615\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CC_ALGO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FASTOPEN_NO_COOKIE\":           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELCHAIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELLINKPROP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELNETCONF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"RTM_DELNEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"RTM_DELNEXTHOPBUCKET\":              reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"RTM_DELNSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_DELVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_FIB_MATCH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTM_F_LOOKUP_TABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_OFFLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTM_F_OFFLOAD_FAILED\":              reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_F_TRAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETCHAIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETLINKPROP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETNEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"RTM_GETNEXTHOPBUCKET\":              reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"RTM_GETNSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETSTATS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_GETVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"RTM_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWCACHEREPORT\":                reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"RTM_NEWCHAIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWLINKPROP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWNEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"RTM_NEWNEXTHOPBUCKET\":              reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"RTM_NEWNSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"RTM_NEWNVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWSTATS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_COMPARE_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_LINKDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTNH_F_OFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNH_F_TRAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTNH_F_UNRESOLVED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":                reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTPROT_BGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_EIGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_ISIS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"RTPROT_KEEPALIVED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_OPENR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"RTPROT_OSPF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_RIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                       reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                          reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING_OPT_STATS\":        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING_PKTINFO\":          reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_TXTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                            reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                           reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                            reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                         reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS_OLD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCGSTAMP_OLD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_BUF_LOCK_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RCVBUF_LOCK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_SNDBUF_LOCK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SOL_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SOL_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SOL_DCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SOL_KCM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SOL_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SOL_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SOL_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SOL_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_PNPIPE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SOL_PPPOL2TP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SOL_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SOL_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SOL_TLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SOL_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOL_XDP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_BPF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_ATTACH_REUSEPORT_CBPF\":          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SO_ATTACH_REUSEPORT_EBPF\":          reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BINDTOIFINDEX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SO_BPF_EXTENSIONS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUF_LOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL_BUDGET\":               reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SO_CNX_ADVICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SO_COOKIE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_BPF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DETACH_REUSEPORT_BPF\":           reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_INCOMING_CPU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SO_INCOMING_NAPI_ID\":               reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_MAX_PACING_RATE\":                reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SO_MEMINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SO_NETNS_COOKIE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PREFER_BUSY_POLL\":               reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO_NEW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO_OLD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_RESERVE_MEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":        reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\":  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":               reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO_NEW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO_OLD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING_NEW\":               reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING_OLD\":               reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS_NEW\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS_OLD\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP_NEW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP_OLD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TXTIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SO_ZEROCOPY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_ARCH_SPECIFIC_SYSCALL\":         reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_BPF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_BRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":               reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_CLOSE_RANGE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_COPY_FILE_RANGE\":               reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"441\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_EXECVEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_FINIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_FSCONFIG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_FSMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"432\", token.INT, 0)),\n\t\t\"SYS_FSOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_FSPICK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"433\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_FUTEX_WAITV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"449\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETRANDOM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":               reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_IO_PGETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_IO_URING_ENTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS_IO_URING_REGISTER\":             reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS_IO_URING_SETUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS_KCMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_KEXEC_FILE_LOAD\":               reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_LANDLOCK_ADD_RULE\":             reflect.ValueOf(constant.MakeFromLiteral(\"445\", token.INT, 0)),\n\t\t\"SYS_LANDLOCK_CREATE_RULESET\":       reflect.ValueOf(constant.MakeFromLiteral(\"444\", token.INT, 0)),\n\t\t\"SYS_LANDLOCK_RESTRICT_SELF\":        reflect.ValueOf(constant.MakeFromLiteral(\"446\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":                reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_MEMBARRIER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_MEMFD_CREATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_MLOCK2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_MOUNT_SETATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"442\", token.INT, 0)),\n\t\t\"SYS_MOVE_MOUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":               reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":             reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_OPENAT2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"437\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":             reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_OPEN_TREE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":               reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_PIDFD_GETFD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"438\", token.INT, 0)),\n\t\t\"SYS_PIDFD_OPEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS_PIDFD_SEND_SIGNAL\":             reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_PKEY_ALLOC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_PKEY_FREE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_PKEY_MPROTECT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_PREADV2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_PROCESS_MADVISE\":               reflect.ValueOf(constant.MakeFromLiteral(\"440\", token.INT, 0)),\n\t\t\"SYS_PROCESS_MRELEASE\":              reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":              reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":             reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_PWRITEV2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL_FD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"443\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":              reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RSEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":             reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":             reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":        reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":             reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_SECCOMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_SEMTIMEDOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY_HOME_NODE\":       reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":               reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_STATX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":               reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_TEE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":                reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":               reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":               reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":              reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                         reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_USERFAULTFD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                     reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                     reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                          reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                          reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                       reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                         reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                         reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                 reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                          reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":             reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                     reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                            reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                     reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                           reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21515\", token.INT, 0)),\n\t\t\"TCGETS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CC_INFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"TCP_CM_INQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_COOKIE_IN_ALWAYS\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_COOKIE_OUT_NEVER\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_COOKIE_PAIR_SIZE\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_COOKIE_TRANSACTIONS\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TCP_CORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN_CONNECT\":              reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN_NO_COOKIE\":            reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"TCP_INFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_INQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_EXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_FLAG_PREFIX\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MSS_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_MSS_DESIRED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1220\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOTSENT_LOWAT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"TCP_QUEUE_SEQ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_REPAIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_REPAIR_OFF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCP_REPAIR_OFF_NO_WP\":              reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"TCP_REPAIR_ON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_REPAIR_OPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_REPAIR_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_REPAIR_WINDOW\":                 reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"TCP_SAVED_SYN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"TCP_SAVE_SYN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_S_DATA_IN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_S_DATA_OUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_THIN_DUPACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_THIN_LINEAR_TIMEOUTS\":          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_TX_DELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"TCP_ULP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"TCP_USER_TIMEOUT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCP_ZEROCOPY_RECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCSETS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767360\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGISO7816\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150126658\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147767352\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767353\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGPTPEER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21569\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSISO7816\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223868483\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074812117\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074812118\", token.INT, 0)),\n\t\t\"TUNGETDEVNETNS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21731\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148553947\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETBE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767519\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNGETVNETLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767517\", token.INT, 0)),\n\t\t\"TUNSETCARRIER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025698\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETFILTEREBPF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767521\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025690\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025689\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETSTEERINGEBPF\":                reflect.ValueOf(constant.MakeFromLiteral(\"2147767520\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETBE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025694\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"TUNSETVNETLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025692\", token.INT, 0)),\n\t\t\"Tee\":                               reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                            reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                              reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                             reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                             reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                   reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                          reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                           reflect.ValueOf(syscall.Unshare),\n\t\t\"Utime\":                             reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                               reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_linux_mips.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_6LOWPAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"825\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":        reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":               reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIGNAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINIT\":                            reflect.ValueOf(syscall.EINIT),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMDEV\":                          reflect.ValueOf(syscall.EREMDEV),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_80221\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_LOOPBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35067\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_MANAGETEMPADDR\":             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_NOPREFIXROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_BEETPH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Ioperm\":                           reflect.ValueOf(syscall.Ioperm),\n\t\t\"Iopl\":                             reflect.ValueOf(syscall.Iopl),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DODUMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MAP_HUGE_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"MAP_HUGE_SHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_PATH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_TMPFILE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4259840\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_QM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_QDISC_BYPASS\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_USER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_THP_DISABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_THP_DISABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA_3264\":      reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"PTRACE_GET_WATCH_REGS\":            reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048831\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SET_WATCH_REGS\":            reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                           reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BPF_EXTENSIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4137\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_MAX_PACING_RATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4136\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":              reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_STYLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_64_LINUX_SYSCALLS\":            reflect.ValueOf(constant.MakeFromLiteral(\"4305\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4168\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4334\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4033\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4051\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4280\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4124\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4137\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4027\", token.INT, 0)),\n\t\t\"SYS_BDFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4134\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4169\", token.INT, 0)),\n\t\t\"SYS_BREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4017\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4045\", token.INT, 0)),\n\t\t\"SYS_CACHECTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4148\", token.INT, 0)),\n\t\t\"SYS_CACHEFLUSH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4147\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4204\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4205\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4012\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4015\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4202\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4061\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4341\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4264\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4263\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"4265\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4262\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4120\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4006\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4170\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4008\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4127\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4041\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4063\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4327\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4248\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"4326\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4249\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4313\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4250\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4319\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4325\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4011\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4001\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4246\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4300\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4254\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4320\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"4336\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4337\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4133\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4094\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4299\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4291\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4055\", token.INT, 0)),\n\t\t\"SYS_FCNTL64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4220\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4152\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4229\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4232\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4143\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4002\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4235\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4226\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"SYS_FSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4215\", token.INT, 0)),\n\t\t\"SYS_FSTATAT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4293\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4256\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SYS_FTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4035\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4093\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE64\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4212\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4238\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4292\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4312\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4203\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4141\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4219\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4050\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4049\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4047\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4080\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4171\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4132\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4065\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4020\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4208\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4064\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4191\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4186\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4076\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4077\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4151\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4172\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4173\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4222\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4078\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4024\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4227\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"4269\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"4310\", token.INT, 0)),\n\t\t\"SYS_GTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4032\", token.INT, 0)),\n\t\t\"SYS_IDLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4128\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"4285\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4284\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"4329\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"4286\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4054\", token.INT, 0)),\n\t\t\"SYS_IOPERM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SYS_IOPL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4315\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4314\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4245\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4242\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4243\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4241\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4244\", token.INT, 0)),\n\t\t\"SYS_IPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4117\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4311\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4282\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4037\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4016\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4228\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4009\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4296\", token.INT, 0)),\n\t\t\"SYS_LINUX_SYSCALLS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4346\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4174\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4230\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4231\", token.INT, 0)),\n\t\t\"SYS_LOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4053\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4247\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4234\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4019\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4225\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"SYS_LSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4214\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4218\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4268\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"4287\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4217\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4039\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4289\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4014\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4290\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4154\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4156\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4090\", token.INT, 0)),\n\t\t\"SYS_MMAP2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4210\", token.INT, 0)),\n\t\t\"SYS_MODIFY_LDT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4123\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4021\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4308\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4125\", token.INT, 0)),\n\t\t\"SYS_MPX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4056\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"4276\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4275\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4271\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"4274\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4273\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4272\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4167\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4144\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4155\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4157\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4091\", token.INT, 0)),\n\t\t\"SYS_N32_LINUX_SYSCALLS\":           reflect.ValueOf(constant.MakeFromLiteral(\"4310\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"4339\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4166\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4189\", token.INT, 0)),\n\t\t\"SYS_NICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4034\", token.INT, 0)),\n\t\t\"SYS_O32_LINUX_SYSCALLS\":           reflect.ValueOf(constant.MakeFromLiteral(\"4346\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4005\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4288\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"4340\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4029\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"4333\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4136\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4042\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4328\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4216\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4188\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4302\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4192\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4200\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4330\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4338\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"4345\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"4346\", token.INT, 0)),\n\t\t\"SYS_PROF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4044\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4301\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4026\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4209\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4201\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4331\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4187\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4131\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4003\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4223\", token.INT, 0)),\n\t\t\"SYS_READDIR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4089\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4085\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4298\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4145\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4088\", token.INT, 0)),\n\t\t\"SYS_RECV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4175\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4176\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4335\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4177\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"4251\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4233\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4038\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4295\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4281\", token.INT, 0)),\n\t\t\"SYS_RESERVED221\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4221\", token.INT, 0)),\n\t\t\"SYS_RESERVED82\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4082\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4253\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4040\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4194\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"4196\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4195\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"4198\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4193\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4199\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"4197\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"4332\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"4240\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"4159\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"4161\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"4163\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"4164\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"4165\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"4239\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"4158\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"4160\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4162\", token.INT, 0)),\n\t\t\"SYS_SEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4178\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4207\", token.INT, 0)),\n\t\t\"SYS_SENDFILE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4237\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4343\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4179\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4180\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4121\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4139\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4138\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4046\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4081\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4074\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4344\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4057\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4071\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4190\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4185\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4070\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4075\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4066\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4181\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4079\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4023\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4224\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"4270\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"4309\", token.INT, 0)),\n\t\t\"SYS_SET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"4283\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"4252\", token.INT, 0)),\n\t\t\"SYS_SGETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4068\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4182\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4067\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4206\", token.INT, 0)),\n\t\t\"SYS_SIGNAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4048\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4317\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4324\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4073\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4126\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4119\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4072\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4183\", token.INT, 0)),\n\t\t\"SYS_SOCKETCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4184\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4304\", token.INT, 0)),\n\t\t\"SYS_SSETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4069\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"SYS_STAT64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4213\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4255\", token.INT, 0)),\n\t\t\"SYS_STIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4025\", token.INT, 0)),\n\t\t\"SYS_STTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4031\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4087\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4083\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4297\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4036\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4342\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"4305\", token.INT, 0)),\n\t\t\"SYS_SYSCALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4000\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4135\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4116\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SYS_SYSMIPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4149\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4306\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4266\", token.INT, 0)),\n\t\t\"SYS_TIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4013\", token.INT, 0)),\n\t\t\"SYS_TIMERFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4318\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4321\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"4322\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"4323\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4257\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4261\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"4260\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4259\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4258\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4043\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4236\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4092\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4211\", token.INT, 0)),\n\t\t\"SYS_ULIMIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4058\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4060\", token.INT, 0)),\n\t\t\"SYS_UMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4022\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4052\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4122\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4010\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4303\", token.INT, 0)),\n\t\t\"SYS_UNUSED109\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"SYS_UNUSED150\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4150\", token.INT, 0)),\n\t\t\"SYS_UNUSED18\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4018\", token.INT, 0)),\n\t\t\"SYS_UNUSED28\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4028\", token.INT, 0)),\n\t\t\"SYS_UNUSED59\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4059\", token.INT, 0)),\n\t\t\"SYS_UNUSED84\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4084\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4086\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4062\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4030\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4316\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4267\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"SYS_VM86\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4307\", token.INT, 0)),\n\t\t\"SYS_VSERVER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4277\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4114\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4278\", token.INT, 0)),\n\t\t\"SYS_WAITPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4007\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4004\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4146\", token.INT, 0)),\n\t\t\"SYS__LLSEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4140\", token.INT, 0)),\n\t\t\"SYS__NEWSELECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4142\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4153\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21511\", token.INT, 0)),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_COOKIE_IN_ALWAYS\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_COOKIE_OUT_NEVER\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_COOKIE_PAIR_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_COOKIE_TRANSACTIONS\":          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MSS_DEFAULT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_MSS_DESIRED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1220\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUEUE_SEQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_REPAIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_REPAIR_OPTIONS\":               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_REPAIR_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_S_DATA_IN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_S_DATA_OUT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_THIN_DUPACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_THIN_LINEAR_TIMEOUTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_USER_TIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775608\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29709\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025522\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29696\", token.INT, 0)),\n\t\t\"TIOCGETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29704\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025536\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21650\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21643\", token.INT, 0)),\n\t\t\"TIOCGLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29812\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025528\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025529\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025520\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21636\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29718\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21633\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"18047\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21635\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29724\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29723\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29725\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21649\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29722\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21617\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29710\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29810\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21616\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21632\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21640\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21646\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21647\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21645\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21641\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21648\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21642\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29697\", token.INT, 0)),\n\t\t\"TIOCSETN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29706\", token.INT, 0)),\n\t\t\"TIOCSETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29705\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147767350\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21644\", token.INT, 0)),\n\t\t\"TIOCSLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29813\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767345\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21637\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21634\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21618\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148029653\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148029654\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025679\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074287835\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025682\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025683\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025687\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767497\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767502\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767498\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767514\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767501\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767496\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767504\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767500\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767499\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767513\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767508\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767505\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767512\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VSWTCH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_linux_mips64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":        reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":               reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIGNAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINIT\":                            reflect.ValueOf(syscall.EINIT),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPOLL_NONBLOCK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMDEV\":                          reflect.ValueOf(syscall.EREMDEV),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_802_1Q_VLAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BONDING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_BRIDGE_PORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DISABLE_NETPOLL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_DONT_BRIDGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_EBRIDGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_ISATAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_LIVE_ADDR_CHANGE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MACVLAN_PORT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MASTER_8023AD\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER_ALB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_MASTER_ARPMON\":                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_OVS_DATAPATH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SLAVE_INACTIVE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_SLAVE_NEEDARP\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SUPP_NOFCS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TEAM_PORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_TX_SKB_SHARING\":               reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_UNICAST_FLT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFF_WAN_HDLC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_XMIT_DST_RELEASE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Ioperm\":                           reflect.ValueOf(syscall.Ioperm),\n\t\t\"Iopl\":                             reflect.ValueOf(syscall.Iopl),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DODUMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_PATH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA_3264\":      reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"PTRACE_GET_WATCH_REGS\":            reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048831\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SET_WATCH_REGS\":            reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                           reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4137\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4136\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":              reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_STYLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5042\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5293\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5020\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5158\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5239\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5154\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5176\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5037\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5048\", token.INT, 0)),\n\t\t\"SYS_BPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5315\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5012\", token.INT, 0)),\n\t\t\"SYS_CACHECTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5198\", token.INT, 0)),\n\t\t\"SYS_CACHEFLUSH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5197\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5123\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5124\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5078\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5088\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5090\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5156\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5300\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5223\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5222\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"5224\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5221\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5055\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5003\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5041\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5083\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"5167\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"5169\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5031\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5032\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5286\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5207\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"5285\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5208\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5272\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5209\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5278\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5284\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5057\", token.INT, 0)),\n\t\t\"SYS_EXECVEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5316\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5058\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5205\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5259\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5215\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5279\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"5295\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"5296\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5079\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5089\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5258\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5091\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5250\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5070\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5073\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5185\", token.INT, 0)),\n\t\t\"SYS_FINIT_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5307\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5188\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5071\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5056\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5191\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5182\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5005\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5135\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5072\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5075\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5194\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5251\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5271\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5077\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5076\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5308\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5106\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5105\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5102\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5113\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5035\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5051\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5119\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5109\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5038\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5174\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5108\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5137\", token.INT, 0)),\n\t\t\"SYS_GETRANDOM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5313\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5118\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5116\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5095\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5096\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5122\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5050\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5054\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5178\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5094\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5100\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5183\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"5170\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"5228\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"5269\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5168\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"5244\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5243\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"5288\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"5245\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5015\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5274\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5273\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5204\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5201\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5202\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5200\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5203\", token.INT, 0)),\n\t\t\"SYS_KCMP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5306\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5270\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5241\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5060\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5092\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5184\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5084\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5255\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5049\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5186\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5187\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"5206\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5190\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5008\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5181\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5006\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5027\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5227\", token.INT, 0)),\n\t\t\"SYS_MEMFD_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5314\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"5246\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5026\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5081\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5248\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5131\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5249\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5146\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5148\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5009\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5160\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5267\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5010\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"5235\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5234\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5230\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"5233\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5232\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5231\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5024\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5069\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5066\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5068\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5067\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5025\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5147\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5149\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5011\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"5298\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5034\", token.INT, 0)),\n\t\t\"SYS_NEWFSTATAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5252\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5173\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5002\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5247\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"5299\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5033\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"5292\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5132\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5021\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5287\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5151\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5007\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5261\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5153\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5016\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5289\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5297\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"5304\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"5305\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5260\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5099\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5175\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5017\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5290\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5171\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5172\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5000\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5179\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5087\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5257\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5018\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5164\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5044\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5294\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5046\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"5210\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5189\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5080\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5254\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5311\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5240\", token.INT, 0)),\n\t\t\"SYS_RESERVED177\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5177\", token.INT, 0)),\n\t\t\"SYS_RESERVED193\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5193\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"5213\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5082\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5013\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"5125\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"5014\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"5127\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5211\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"5128\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"5126\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"5291\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"5196\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"5310\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"5140\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"5142\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"5143\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"5144\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"5145\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"5195\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"5309\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"5139\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"5141\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5023\", token.INT, 0)),\n\t\t\"SYS_SECCOMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5312\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5064\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5062\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5063\", token.INT, 0)),\n\t\t\"SYS_SEMTIMEDOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5214\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5039\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5302\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5045\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5043\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5166\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5121\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5120\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5104\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5114\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5165\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5036\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5303\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5107\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5138\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5112\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5117\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5115\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5111\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5155\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5110\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5053\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5159\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5103\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5180\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"5229\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"5268\", token.INT, 0)),\n\t\t\"SYS_SET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"5242\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"5212\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5029\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5030\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5065\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5028\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5047\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5129\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5276\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5283\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5040\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5052\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5263\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5004\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5134\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5163\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5162\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5086\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5256\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5157\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5301\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"5264\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5136\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5097\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5101\", token.INT, 0)),\n\t\t\"SYS_SYSMIPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5199\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5265\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5225\", token.INT, 0)),\n\t\t\"SYS_TIMERFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5277\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"5280\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"5281\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"5282\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5216\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5220\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"5219\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5218\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5217\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5098\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5192\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5074\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5093\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5161\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5061\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5085\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5253\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5262\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5133\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5130\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5275\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5226\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5150\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5266\", token.INT, 0)),\n\t\t\"SYS_VSERVER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5236\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5059\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5237\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5001\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5019\", token.INT, 0)),\n\t\t\"SYS__NEWSELECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5022\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5152\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21511\", token.INT, 0)),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775608\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29709\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025522\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29696\", token.INT, 0)),\n\t\t\"TIOCGETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29704\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025536\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21650\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21643\", token.INT, 0)),\n\t\t\"TIOCGLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29812\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025528\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025529\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025520\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21636\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29718\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21633\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"18047\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21635\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29724\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29723\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29725\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21649\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29722\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21617\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29710\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29810\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21616\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21632\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21640\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21646\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21647\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21645\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21641\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21648\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21642\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29697\", token.INT, 0)),\n\t\t\"TIOCSETN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29706\", token.INT, 0)),\n\t\t\"TIOCSETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29705\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147767350\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21644\", token.INT, 0)),\n\t\t\"TIOCSLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29813\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767345\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21637\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21634\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21618\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148553941\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148553942\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025679\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074812123\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025682\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025683\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025687\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767497\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767502\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767498\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767514\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767501\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767496\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767504\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767500\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767499\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767513\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767508\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767505\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767512\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VSWTCH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_linux_mips64le.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":        reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":               reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIGNAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINIT\":                            reflect.ValueOf(syscall.EINIT),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPOLL_NONBLOCK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMDEV\":                          reflect.ValueOf(syscall.EREMDEV),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_802_1Q_VLAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BONDING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_BRIDGE_PORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DISABLE_NETPOLL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_DONT_BRIDGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_EBRIDGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_ISATAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_LIVE_ADDR_CHANGE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MACVLAN_PORT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MASTER_8023AD\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER_ALB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_MASTER_ARPMON\":                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_OVS_DATAPATH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SLAVE_INACTIVE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_SLAVE_NEEDARP\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SUPP_NOFCS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TEAM_PORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_TX_SKB_SHARING\":               reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_UNICAST_FLT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFF_WAN_HDLC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_XMIT_DST_RELEASE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Ioperm\":                           reflect.ValueOf(syscall.Ioperm),\n\t\t\"Iopl\":                             reflect.ValueOf(syscall.Iopl),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DODUMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_PATH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA_3264\":      reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"PTRACE_GET_WATCH_REGS\":            reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048831\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SET_WATCH_REGS\":            reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                           reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4137\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4136\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":              reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_STYLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5042\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5293\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5020\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5158\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5239\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5154\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5176\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5037\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5048\", token.INT, 0)),\n\t\t\"SYS_BPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5315\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5012\", token.INT, 0)),\n\t\t\"SYS_CACHECTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5198\", token.INT, 0)),\n\t\t\"SYS_CACHEFLUSH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5197\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5123\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5124\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5078\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5088\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5090\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5156\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5300\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5223\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5222\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"5224\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5221\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5055\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5003\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5041\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5083\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"5167\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"5169\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5031\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5032\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5286\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5207\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"5285\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5208\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5272\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5209\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5278\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5284\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5057\", token.INT, 0)),\n\t\t\"SYS_EXECVEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5316\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5058\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5205\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5259\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5215\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5279\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"5295\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"5296\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5079\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5089\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5258\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5091\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5250\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5070\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5073\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5185\", token.INT, 0)),\n\t\t\"SYS_FINIT_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5307\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5188\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5071\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5056\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5191\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5182\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5005\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5135\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5072\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5075\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5194\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5251\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5271\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5077\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5076\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5308\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5106\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5105\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5102\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5113\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5035\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5051\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5119\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5109\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5038\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5174\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5108\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5137\", token.INT, 0)),\n\t\t\"SYS_GETRANDOM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5313\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5118\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5116\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5095\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5096\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5122\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5050\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5054\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5178\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5094\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5100\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5183\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"5170\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"5228\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"5269\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5168\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"5244\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5243\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"5288\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"5245\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5015\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5274\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5273\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5204\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5201\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5202\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5200\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5203\", token.INT, 0)),\n\t\t\"SYS_KCMP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5306\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5270\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5241\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5060\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5092\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5184\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5084\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5255\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5049\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5186\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5187\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"5206\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5190\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5008\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5181\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5006\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5027\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5227\", token.INT, 0)),\n\t\t\"SYS_MEMFD_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5314\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"5246\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5026\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5081\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5248\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5131\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5249\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5146\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5148\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5009\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5160\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5267\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5010\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"5235\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5234\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5230\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"5233\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5232\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5231\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5024\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5069\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5066\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5068\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5067\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5025\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5147\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5149\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5011\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"5298\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5034\", token.INT, 0)),\n\t\t\"SYS_NEWFSTATAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5252\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5173\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5002\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5247\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"5299\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5033\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"5292\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5132\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5021\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5287\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5151\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5007\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5261\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5153\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5016\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5289\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5297\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"5304\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"5305\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5260\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5099\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5175\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5017\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5290\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5171\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5172\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5000\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5179\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5087\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5257\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5018\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5164\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5044\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5294\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5046\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"5210\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5189\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5080\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5254\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5311\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5240\", token.INT, 0)),\n\t\t\"SYS_RESERVED177\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5177\", token.INT, 0)),\n\t\t\"SYS_RESERVED193\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5193\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"5213\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5082\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5013\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"5125\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"5014\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"5127\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5211\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"5128\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"5126\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"5291\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"5196\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"5310\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"5140\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"5142\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"5143\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"5144\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"5145\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"5195\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"5309\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"5139\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"5141\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5023\", token.INT, 0)),\n\t\t\"SYS_SECCOMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5312\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5064\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5062\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5063\", token.INT, 0)),\n\t\t\"SYS_SEMTIMEDOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5214\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5039\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5302\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5045\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5043\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5166\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5121\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5120\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5104\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5114\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5165\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5036\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5303\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5107\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5138\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5112\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5117\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5115\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5111\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5155\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5110\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5053\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5159\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5103\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5180\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"5229\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"5268\", token.INT, 0)),\n\t\t\"SYS_SET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"5242\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"5212\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5029\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5030\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5065\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5028\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5047\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5129\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5276\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5283\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5040\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5052\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5263\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5004\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5134\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5163\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5162\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5086\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5256\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5157\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5301\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"5264\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5136\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5097\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5101\", token.INT, 0)),\n\t\t\"SYS_SYSMIPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5199\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5265\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5225\", token.INT, 0)),\n\t\t\"SYS_TIMERFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5277\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"5280\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"5281\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"5282\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5216\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5220\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"5219\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5218\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5217\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5098\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5192\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5074\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5093\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5161\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5061\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5085\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5253\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5262\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5133\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5130\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5275\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5226\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5150\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5266\", token.INT, 0)),\n\t\t\"SYS_VSERVER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5236\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5059\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5237\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5001\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5019\", token.INT, 0)),\n\t\t\"SYS__NEWSELECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5022\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5152\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21511\", token.INT, 0)),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775608\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29709\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025522\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29696\", token.INT, 0)),\n\t\t\"TIOCGETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29704\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025536\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21650\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21643\", token.INT, 0)),\n\t\t\"TIOCGLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29812\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025528\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025529\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025520\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21636\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29718\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21633\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"18047\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21635\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29724\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29723\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29725\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21649\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29722\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21617\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29710\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29810\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21616\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21632\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21640\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21646\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21647\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21645\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21641\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21648\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21642\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29697\", token.INT, 0)),\n\t\t\"TIOCSETN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29706\", token.INT, 0)),\n\t\t\"TIOCSETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29705\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147767350\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21644\", token.INT, 0)),\n\t\t\"TIOCSLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29813\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767345\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21637\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21634\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21618\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148553941\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148553942\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025679\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074812123\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025682\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025683\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025687\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767497\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767502\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767498\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767514\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767501\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767496\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767504\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767500\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767499\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767513\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767508\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767505\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767512\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VSWTCH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_linux_mipsle.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_6LOWPAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"825\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":        reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":               reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIGNAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINIT\":                            reflect.ValueOf(syscall.EINIT),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMDEV\":                          reflect.ValueOf(syscall.EREMDEV),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_80221\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_LOOPBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35067\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_MANAGETEMPADDR\":             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_NOPREFIXROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_BEETPH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Ioperm\":                           reflect.ValueOf(syscall.Ioperm),\n\t\t\"Iopl\":                             reflect.ValueOf(syscall.Iopl),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DODUMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MAP_HUGE_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"MAP_HUGE_SHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_PATH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_TMPFILE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4259840\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_QM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_QDISC_BYPASS\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_USER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_THP_DISABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_THP_DISABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA_3264\":      reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"PTRACE_GET_WATCH_REGS\":            reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048831\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SET_WATCH_REGS\":            reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                           reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BPF_EXTENSIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4137\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_MAX_PACING_RATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4136\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":              reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_STYLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_64_LINUX_SYSCALLS\":            reflect.ValueOf(constant.MakeFromLiteral(\"4305\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4168\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4334\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4033\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4051\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4280\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4124\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4137\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4027\", token.INT, 0)),\n\t\t\"SYS_BDFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4134\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4169\", token.INT, 0)),\n\t\t\"SYS_BREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4017\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4045\", token.INT, 0)),\n\t\t\"SYS_CACHECTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4148\", token.INT, 0)),\n\t\t\"SYS_CACHEFLUSH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4147\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4204\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4205\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4012\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4015\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4202\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4061\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4341\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4264\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4263\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"4265\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4262\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4120\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4006\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4170\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4008\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4127\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4041\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4063\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4327\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4248\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"4326\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4249\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4313\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4250\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4319\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4325\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4011\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4001\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4246\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4300\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4254\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4320\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"4336\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4337\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4133\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4094\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4299\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4291\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4055\", token.INT, 0)),\n\t\t\"SYS_FCNTL64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4220\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4152\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4229\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4232\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4143\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4002\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4235\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4226\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"SYS_FSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4215\", token.INT, 0)),\n\t\t\"SYS_FSTATAT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4293\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4256\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SYS_FTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4035\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4093\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE64\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4212\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4238\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4292\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4312\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4203\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4141\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4219\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4050\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4049\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4047\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4080\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4171\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4132\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4065\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4020\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4208\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4064\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4191\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4186\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4076\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4077\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4151\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4172\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4173\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4222\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4078\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4024\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4227\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"4269\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"4310\", token.INT, 0)),\n\t\t\"SYS_GTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4032\", token.INT, 0)),\n\t\t\"SYS_IDLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4128\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"4285\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4284\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"4329\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"4286\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4054\", token.INT, 0)),\n\t\t\"SYS_IOPERM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SYS_IOPL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4315\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4314\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4245\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4242\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4243\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4241\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4244\", token.INT, 0)),\n\t\t\"SYS_IPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4117\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4311\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4282\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4037\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4016\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4228\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4009\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4296\", token.INT, 0)),\n\t\t\"SYS_LINUX_SYSCALLS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4346\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4174\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4230\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4231\", token.INT, 0)),\n\t\t\"SYS_LOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4053\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4247\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4234\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4019\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4225\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"SYS_LSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4214\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4218\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4268\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"4287\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4217\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4039\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4289\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4014\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4290\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4154\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4156\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4090\", token.INT, 0)),\n\t\t\"SYS_MMAP2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4210\", token.INT, 0)),\n\t\t\"SYS_MODIFY_LDT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4123\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4021\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4308\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4125\", token.INT, 0)),\n\t\t\"SYS_MPX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4056\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"4276\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4275\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4271\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"4274\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4273\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4272\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4167\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4144\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4155\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4157\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4091\", token.INT, 0)),\n\t\t\"SYS_N32_LINUX_SYSCALLS\":           reflect.ValueOf(constant.MakeFromLiteral(\"4310\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"4339\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4166\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4189\", token.INT, 0)),\n\t\t\"SYS_NICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4034\", token.INT, 0)),\n\t\t\"SYS_O32_LINUX_SYSCALLS\":           reflect.ValueOf(constant.MakeFromLiteral(\"4346\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4005\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4288\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"4340\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4029\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"4333\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4136\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4042\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4328\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4216\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4188\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4302\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4192\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4200\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4330\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4338\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"4345\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"4346\", token.INT, 0)),\n\t\t\"SYS_PROF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4044\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4301\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4026\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4209\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4201\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4331\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4187\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4131\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4003\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4223\", token.INT, 0)),\n\t\t\"SYS_READDIR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4089\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4085\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4298\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4145\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4088\", token.INT, 0)),\n\t\t\"SYS_RECV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4175\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4176\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4335\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4177\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"4251\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4233\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4038\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4295\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4281\", token.INT, 0)),\n\t\t\"SYS_RESERVED221\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4221\", token.INT, 0)),\n\t\t\"SYS_RESERVED82\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4082\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4253\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4040\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4194\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"4196\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4195\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"4198\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4193\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4199\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"4197\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"4332\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"4240\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"4159\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"4161\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"4163\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"4164\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"4165\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"4239\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"4158\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"4160\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4162\", token.INT, 0)),\n\t\t\"SYS_SEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4178\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4207\", token.INT, 0)),\n\t\t\"SYS_SENDFILE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4237\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4343\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4179\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4180\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4121\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4139\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4138\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4046\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4081\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4074\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4344\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4057\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4071\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4190\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4185\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4070\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4075\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4066\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4181\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4079\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4023\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4224\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"4270\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"4309\", token.INT, 0)),\n\t\t\"SYS_SET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"4283\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"4252\", token.INT, 0)),\n\t\t\"SYS_SGETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4068\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4182\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4067\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4206\", token.INT, 0)),\n\t\t\"SYS_SIGNAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4048\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4317\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4324\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4073\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4126\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4119\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4072\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4183\", token.INT, 0)),\n\t\t\"SYS_SOCKETCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4184\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4304\", token.INT, 0)),\n\t\t\"SYS_SSETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4069\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"SYS_STAT64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4213\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4255\", token.INT, 0)),\n\t\t\"SYS_STIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4025\", token.INT, 0)),\n\t\t\"SYS_STTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4031\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4087\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4083\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4297\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4036\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4342\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"4305\", token.INT, 0)),\n\t\t\"SYS_SYSCALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4000\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4135\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4116\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SYS_SYSMIPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4149\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4306\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4266\", token.INT, 0)),\n\t\t\"SYS_TIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4013\", token.INT, 0)),\n\t\t\"SYS_TIMERFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4318\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4321\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"4322\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"4323\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4257\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4261\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"4260\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4259\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4258\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4043\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4236\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4092\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4211\", token.INT, 0)),\n\t\t\"SYS_ULIMIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4058\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4060\", token.INT, 0)),\n\t\t\"SYS_UMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4022\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4052\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4122\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4010\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4303\", token.INT, 0)),\n\t\t\"SYS_UNUSED109\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"SYS_UNUSED150\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4150\", token.INT, 0)),\n\t\t\"SYS_UNUSED18\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4018\", token.INT, 0)),\n\t\t\"SYS_UNUSED28\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4028\", token.INT, 0)),\n\t\t\"SYS_UNUSED59\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4059\", token.INT, 0)),\n\t\t\"SYS_UNUSED84\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4084\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4086\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4062\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4030\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4316\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4267\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"SYS_VM86\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4307\", token.INT, 0)),\n\t\t\"SYS_VSERVER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4277\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4114\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4278\", token.INT, 0)),\n\t\t\"SYS_WAITPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4007\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4004\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4146\", token.INT, 0)),\n\t\t\"SYS__LLSEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4140\", token.INT, 0)),\n\t\t\"SYS__NEWSELECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4142\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4153\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21511\", token.INT, 0)),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_COOKIE_IN_ALWAYS\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_COOKIE_OUT_NEVER\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_COOKIE_PAIR_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_COOKIE_TRANSACTIONS\":          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MSS_DEFAULT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_MSS_DESIRED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1220\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUEUE_SEQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_REPAIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_REPAIR_OPTIONS\":               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_REPAIR_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_S_DATA_IN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_S_DATA_OUT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_THIN_DUPACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_THIN_LINEAR_TIMEOUTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_USER_TIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775608\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29709\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025522\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29696\", token.INT, 0)),\n\t\t\"TIOCGETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29704\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025536\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21650\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21643\", token.INT, 0)),\n\t\t\"TIOCGLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29812\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025528\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025529\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025520\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21636\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29718\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21633\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"18047\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21635\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29724\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29723\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29725\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21649\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29722\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21617\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29710\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29810\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21616\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21632\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21640\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21646\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21647\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21645\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21641\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21648\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21642\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29697\", token.INT, 0)),\n\t\t\"TIOCSETN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29706\", token.INT, 0)),\n\t\t\"TIOCSETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29705\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147767350\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21644\", token.INT, 0)),\n\t\t\"TIOCSLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29813\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767345\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21637\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21634\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21618\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148029653\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148029654\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025679\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074287835\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025682\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025683\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025687\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767497\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767502\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767498\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767514\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767501\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767496\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767504\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767500\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767499\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767513\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767508\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767505\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767512\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VSWTCH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_linux_ppc64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":        reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":               reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIGNAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPOLL_NONBLOCK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35067\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_802_1Q_VLAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BONDING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_BRIDGE_PORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DISABLE_NETPOLL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_DONT_BRIDGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_EBRIDGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_ISATAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_LIVE_ADDR_CHANGE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MACVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_MACVLAN_PORT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MASTER_8023AD\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER_ALB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_MASTER_ARPMON\":                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_OVS_DATAPATH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SLAVE_INACTIVE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_SLAVE_NEEDARP\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SUPP_NOFCS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TEAM_PORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_TX_SKB_SHARING\":               reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_UNICAST_FLT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFF_WAN_HDLC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_XMIT_DST_RELEASE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Ioperm\":                           reflect.ValueOf(syscall.Ioperm),\n\t\t\"Iopl\":                             reflect.ValueOf(syscall.Iopl),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DODUMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_PATH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_SAO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETEVRREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS64\":                 reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_GETVRREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PTRACE_GETVSRREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PTRACE_GET_DEBUGREG\":              reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048831\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETEVRREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS64\":                 reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SETVRREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PTRACE_SETVSRREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PTRACE_SET_DEBUGREG\":              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SINGLEBLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_CCR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PT_CTR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PT_DAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"PT_DSCR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"PT_DSISR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"PT_FPR0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"PT_FPSCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"PT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PT_MSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PT_NIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PT_ORIG_R3\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PT_R0\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_R1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PT_R10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PT_R11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PT_R12\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PT_R13\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PT_R14\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PT_R15\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PT_R16\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PT_R17\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PT_R18\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PT_R19\":                           reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PT_R2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PT_R20\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PT_R21\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PT_R22\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PT_R23\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PT_R24\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PT_R25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PT_R26\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PT_R27\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PT_R28\":                           reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PT_R29\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PT_R3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PT_R30\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PT_R31\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PT_R4\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PT_R5\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PT_R6\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PT_R7\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PT_R8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PT_R9\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PT_REGS_COUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"PT_RESULT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"PT_SOFTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PT_TRAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PT_VR0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"PT_VRSAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"PT_VSCR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"PT_VSR0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"PT_VSR31\":                         reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"PT_XER\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_MAX_PACING_RATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":              reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_BDFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_BREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_FINIT_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_FTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_GTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_IDLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPERM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_IOPL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_IPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_KCMP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_LOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_MODIFY_LDT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_MPX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_MULTIPLEXER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_NEWFSTATAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_NICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_OLDFSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_OLDLSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_OLDOLDUNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_OLDSTAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_OLDUNAME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_IOBASE\":             reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_READ\":               reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_WRITE\":              reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS_PROF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_READDIR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_RECV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_RTAS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_SGETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_SIGNAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS_SOCKETCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_SPU_CREATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_SPU_RUN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_SSETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_STIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_STTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_SUBPAGE_PROT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_SWAPCONTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE2\":             reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_SYS_DEBUG_SETCONTEXT\":         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_TIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_TUXCALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_UGETRLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_ULIMIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_VM86\":                         reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_WAITPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS__LLSEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS__NEWSELECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900639\", token.INT, 0)),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025522\", token.INT, 0)),\n\t\t\"TIOCGETC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074164754\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074164744\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025536\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074164852\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025528\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025529\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025520\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074030207\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"TIOCM_OUT1\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"TIOCM_OUT2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147906577\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSETN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147906570\", token.INT, 0)),\n\t\t\"TIOCSETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147906569\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147767350\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147906677\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767345\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148553941\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148553942\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025679\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074812123\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025682\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025683\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025687\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767497\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767502\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767498\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767514\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767501\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767496\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767504\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767500\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767499\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767513\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767508\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767505\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767512\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VT0\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                              reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTDLY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_linux_ppc64le.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":        reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":               reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIGNAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35067\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_802_1Q_VLAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BONDING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_BRIDGE_PORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DISABLE_NETPOLL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_DONT_BRIDGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_EBRIDGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_ISATAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_LIVE_ADDR_CHANGE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MACVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_MACVLAN_PORT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MASTER_8023AD\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER_ALB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_MASTER_ARPMON\":                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_OVS_DATAPATH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SLAVE_INACTIVE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_SLAVE_NEEDARP\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SUPP_NOFCS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TEAM_PORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_TX_SKB_SHARING\":               reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_UNICAST_FLT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFF_WAN_HDLC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_XMIT_DST_RELEASE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_BEETPH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Ioperm\":                           reflect.ValueOf(syscall.Ioperm),\n\t\t\"Iopl\":                             reflect.ValueOf(syscall.Iopl),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DODUMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_HUGE_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"MAP_HUGE_SHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_PATH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TMPFILE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4259840\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_SAO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETEVRREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS64\":                 reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_GETVRREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PTRACE_GETVSRREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PTRACE_GET_DEBUGREG\":              reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048831\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETEVRREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS64\":                 reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SETVRREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PTRACE_SETVSRREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PTRACE_SET_DEBUGREG\":              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SINGLEBLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_CCR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PT_CTR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PT_DAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"PT_DSCR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"PT_DSISR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"PT_FPR0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"PT_FPSCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"PT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PT_MSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PT_NIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PT_ORIG_R3\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PT_R0\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_R1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PT_R10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PT_R11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PT_R12\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PT_R13\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PT_R14\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PT_R15\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PT_R16\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PT_R17\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PT_R18\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PT_R19\":                           reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PT_R2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PT_R20\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PT_R21\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PT_R22\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PT_R23\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PT_R24\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PT_R25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PT_R26\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PT_R27\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PT_R28\":                           reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PT_R29\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PT_R3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PT_R30\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PT_R31\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PT_R4\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PT_R5\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PT_R6\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PT_R7\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PT_R8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PT_R9\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PT_REGS_COUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"PT_RESULT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"PT_SOFTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PT_TRAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PT_VR0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"PT_VRSAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"PT_VSCR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"PT_VSR0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"PT_VSR31\":                         reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"PT_XER\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_MAX_PACING_RATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":              reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_BDFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_BREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_FINIT_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_FTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_GTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_IDLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPERM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_IOPL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_IPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_KCMP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_LOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_MODIFY_LDT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_MPX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_MULTIPLEXER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_NEWFSTATAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_NICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_OLDFSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_OLDLSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_OLDOLDUNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_OLDSTAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_OLDUNAME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_IOBASE\":             reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_READ\":               reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_WRITE\":              reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS_PROF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_READDIR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_RECV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_RTAS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_SGETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_SIGNAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS_SOCKETCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_SPU_CREATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_SPU_RUN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_SSETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_STIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_STTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_SUBPAGE_PROT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_SWAPCONTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE2\":             reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_SYS_DEBUG_SETCONTEXT\":         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_TIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_TUXCALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_UGETRLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_ULIMIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_VM86\":                         reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_WAITPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS__LLSEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS__NEWSELECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900639\", token.INT, 0)),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_COOKIE_IN_ALWAYS\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_COOKIE_OUT_NEVER\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_COOKIE_PAIR_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_COOKIE_TRANSACTIONS\":          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MSS_DEFAULT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_MSS_DESIRED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1220\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUEUE_SEQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_REPAIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_REPAIR_OPTIONS\":               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_REPAIR_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_S_DATA_IN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_S_DATA_OUT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_THIN_DUPACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_THIN_LINEAR_TIMEOUTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_USER_TIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025522\", token.INT, 0)),\n\t\t\"TIOCGETC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074164754\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074164744\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025536\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074164852\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025528\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025529\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025520\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074030207\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"TIOCM_OUT1\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"TIOCM_OUT2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147906577\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSETN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147906570\", token.INT, 0)),\n\t\t\"TIOCSETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147906569\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147767350\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147906677\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767345\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148553941\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148553942\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025679\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074812123\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025682\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025683\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025687\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767497\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767502\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767498\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767514\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767501\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767496\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767504\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767500\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767499\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767513\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767508\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767505\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767512\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VT0\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                              reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTDLY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_linux_riscv64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KCM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_6LOWPAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"825\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":        reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":               reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LL_OFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-2097152\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_NET_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-1048576\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIGNAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLEXCLUSIVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_80221\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_LOOPBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35067\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETH_P_XDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OFD_GETLK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"F_OFD_SETLK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"F_OFD_SETLKW\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatat\":                          reflect.ValueOf(syscall.Fstatat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_MANAGETEMPADDR\":             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFA_F_MCAUTOJOIN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_NOPREFIXROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_STABLE_PRIVACY\":             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_BEETPH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HDRINCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_INTERFACE\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_OMIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                 reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BIND_ADDRESS_NO_PORT\":          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_CHECKSUM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_NODEFRAG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_INTERFACE\":            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_OMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DODUMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_HUGE_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"MAP_HUGE_SHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MCL_ONFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_BATCH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_LAZYTIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41943121\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_PATH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TMPFILE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4259840\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_QM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_QDISC_BYPASS\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_USER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_FP_MODE_FR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_MODE_FRE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_FP_MODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_THP_DISABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MPX_DISABLE_MANAGEMENT\":        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"PR_MPX_ENABLE_MANAGEMENT\":         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_FP_MODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_MAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_MM_MAP_SIZE\":               reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_THP_DISABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048831\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CC_ALGO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELNSID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETNSID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWNSID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_OFFLOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BABEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ALG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_BLUETOOTH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SOL_CAIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SOL_DCCP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_IUCV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SOL_KCM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SOL_LLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SOL_NETBEUI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SOL_NETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SOL_NFC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_PNPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SOL_PPPOL2TP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_RDS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SOL_RXRPC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_TIPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_BPF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BPF_EXTENSIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_BPF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_INCOMING_CPU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_MAX_PACING_RATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":              reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_ARCH_SPECIFIC_SYSCALL\":        reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_BPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_EXECVEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_FINIT_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETRANDOM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_KCMP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_MEMFD_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_SECCOMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_SEMTIMEDOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21515\", token.INT, 0)),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CC_INFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_COOKIE_IN_ALWAYS\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_COOKIE_OUT_NEVER\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_COOKIE_PAIR_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_COOKIE_TRANSACTIONS\":          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MSS_DEFAULT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_MSS_DESIRED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1220\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOTSENT_LOWAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"TCP_QUEUE_SEQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_REPAIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_REPAIR_OPTIONS\":               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_REPAIR_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_SAVED_SYN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"TCP_SAVE_SYN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_S_DATA_IN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_S_DATA_OUT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_THIN_DUPACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_THIN_LINEAR_TIMEOUTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_USER_TIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767360\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767352\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767353\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812117\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812118\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148553947\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNGETVNETLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767517\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025690\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025689\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"TUNSETVNETLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025692\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_linux_s390x.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_6LOWPAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"825\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":        reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":               reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LL_OFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-2097152\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_NET_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-1048576\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIGNAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_80221\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_LOOPBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35067\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_TSN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8944\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETH_P_XDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OFD_GETLK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"F_OFD_SETLK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"F_OFD_SETLKW\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_MANAGETEMPADDR\":             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFA_F_MCAUTOJOIN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_NOPREFIXROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_STABLE_PRIVACY\":             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_BEETPH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_INTERFACE\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_OMIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_NODEFRAG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_INTERFACE\":            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_OMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DODUMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_HUGE_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"MAP_HUGE_SHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CAP_ACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_LISTEN_ALL_NSID\":          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_LIST_MEMBERSHIPS\":         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_FILTERED\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_PATH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TMPFILE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4259840\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CBPF\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_EBPF\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_QM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_QDISC_BYPASS\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_ROLLOVER_STATS\":            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_USER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_CAP_AMBIENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"PR_CAP_AMBIENT_CLEAR_ALL\":         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_CAP_AMBIENT_IS_SET\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_CAP_AMBIENT_LOWER\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_CAP_AMBIENT_RAISE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_FP_MODE_FR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_MODE_FRE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_FP_MODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_THP_DISABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MPX_DISABLE_MANAGEMENT\":        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"PR_MPX_ENABLE_MANAGEMENT\":         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_FP_MODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_MAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_MM_MAP_SIZE\":               reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_THP_DISABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_DISABLE_TE\":                reflect.ValueOf(constant.MakeFromLiteral(\"20496\", token.INT, 0)),\n\t\t\"PTRACE_ENABLE_TE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20489\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_GET_LAST_BREAK\":            reflect.ValueOf(constant.MakeFromLiteral(\"20486\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3145983\", token.INT, 0)),\n\t\t\"PTRACE_O_SUSPEND_SECCOMP\":         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA_AREA\":             reflect.ValueOf(constant.MakeFromLiteral(\"20483\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT_AREA\":             reflect.ValueOf(constant.MakeFromLiteral(\"20482\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"20480\", token.INT, 0)),\n\t\t\"PTRACE_PEEK_SYSTEM_CALL\":          reflect.ValueOf(constant.MakeFromLiteral(\"20487\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA_AREA\":             reflect.ValueOf(constant.MakeFromLiteral(\"20485\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT_AREA\":             reflect.ValueOf(constant.MakeFromLiteral(\"20484\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"20481\", token.INT, 0)),\n\t\t\"PTRACE_POKE_SYSTEM_CALL\":          reflect.ValueOf(constant.MakeFromLiteral(\"20488\", token.INT, 0)),\n\t\t\"PTRACE_PROT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_SECCOMP_GET_FILTER\":        reflect.ValueOf(constant.MakeFromLiteral(\"16908\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SINGLEBLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TE_ABORT_RAND\":             reflect.ValueOf(constant.MakeFromLiteral(\"20497\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_ACR0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"PT_ACR1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"PT_ACR10\":                         reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"PT_ACR11\":                         reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"PT_ACR12\":                         reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"PT_ACR13\":                         reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"PT_ACR14\":                         reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"PT_ACR15\":                         reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"PT_ACR2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"PT_ACR3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"PT_ACR4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"PT_ACR5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"PT_ACR6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"PT_ACR7\":                          reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"PT_ACR8\":                          reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"PT_ACR9\":                          reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"PT_CR_10\":                         reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"PT_CR_11\":                         reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"PT_CR_9\":                          reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"PT_ENDREGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"PT_FPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"PT_FPR0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"PT_FPR1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"PT_FPR10\":                         reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"PT_FPR11\":                         reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"PT_FPR12\":                         reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"PT_FPR13\":                         reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"PT_FPR14\":                         reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"PT_FPR15\":                         reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"PT_FPR2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"PT_FPR3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"PT_FPR4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PT_FPR5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"PT_FPR6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"PT_FPR7\":                          reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"PT_FPR8\":                          reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"PT_FPR9\":                          reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"PT_GPR0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PT_GPR1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PT_GPR10\":                         reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"PT_GPR11\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"PT_GPR12\":                         reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"PT_GPR13\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"PT_GPR14\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PT_GPR15\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"PT_GPR2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PT_GPR3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PT_GPR4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"PT_GPR5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"PT_GPR6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PT_GPR7\":                          reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"PT_GPR8\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"PT_GPR9\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"PT_IEEE_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"PT_LASTOFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"PT_ORIGGPR2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"PT_PSWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PT_PSWMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CC_ALGO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELNSID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_LOOKUP_TABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETNSID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWNSID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_COMPARE_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_LINKDOWN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTNH_F_OFFLOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BABEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_BPF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BPF_EXTENSIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_BPF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_INCOMING_CPU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_MAX_PACING_RATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":              reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_BDFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_BPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_EXECVEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_FINIT_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_GETRANDOM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_IDLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_IPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_KCMP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_MEMBARRIER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_MEMFD_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_MLOCK2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"374\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_NEWFSTATAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_NICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_READDIR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_S390_PCI_MMIO_READ\":           reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS_S390_PCI_MMIO_WRITE\":          reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS_S390_RUNTIME_INSTR\":           reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_SECCOMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"373\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_SIGNAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"359\", token.INT, 0)),\n\t\t\"SYS_SOCKETCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_TIMERFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_USERFAULTFD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21515\", token.INT, 0)),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_COOKIE_IN_ALWAYS\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_COOKIE_OUT_NEVER\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_COOKIE_PAIR_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_COOKIE_TRANSACTIONS\":          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MSS_DEFAULT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_MSS_DESIRED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1220\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUEUE_SEQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_REPAIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_REPAIR_OPTIONS\":               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_REPAIR_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_S_DATA_IN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_S_DATA_OUT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_THIN_DUPACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_THIN_LINEAR_TIMEOUTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_USER_TIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767360\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767352\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767353\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812117\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812118\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148553947\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETBE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767519\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNGETVNETLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767517\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025690\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025689\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETBE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025694\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"TUNSETVNETLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025692\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_netbsd_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_ARP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_MPLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FRELAY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_STRIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B460800\":                           reflect.ValueOf(constant.MakeFromLiteral(\"460800\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B921600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"921600\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFEEDBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3221766775\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1083196011\", token.INT, 0)),\n\t\t\"BIOCGFEEDBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020988\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074545275\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020984\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1082147439\", token.INT, 0)),\n\t\t\"BIOCGSTATSOLD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762806\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148024935\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2156937836\", token.INT, 0)),\n\t\t\"BIOCSFEEDBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148287098\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762809\", token.INT, 0)),\n\t\t\"BIOCSTCPF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148024946\", token.INT, 0)),\n\t\t\"BIOCSUDPF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148024947\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DFLTBUFSIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_CSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_PID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CTL_QUERY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DIOCBSFLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536896632\", token.INT, 0)),\n\t\t\"DLT_A429\":                          reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"DLT_A653_ICM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"DLT_AIRONET_HEADER\":                reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_AOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_AX25_KISS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4\":              reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4_WITH_PHDR\":    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"DLT_CAN20B\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"DLT_CAN_SOCKETCAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"DLT_DECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FC_2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"DLT_FC_2_WITH_FRAME_DELIMS\":        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FLEXRAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_FRELAY_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                         reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                         reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_ABIS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_UM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"DLT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":          reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_LINUX\":            reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NONASK_PHY\":       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS_RADIO\":      reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"DLT_IPMB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"DLT_IPMB_LINUX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPV4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"DLT_IPV6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ISM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":               reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":              reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":             reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":              reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"DLT_LAPB_WITH_DIR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"DLT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"DLT_LIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"DLT_LINUX_EVDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MFR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"DLT_MOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAIF1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RAWAF_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35913728\", token.INT, 0)),\n\t\t\"DLT_RIO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SITA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":             reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"DLT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX_MMAPPED\":             reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"DLT_WIHART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"DLT_X2E_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"DLT_X2E_XORAYA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"EMUL_LINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_LINUX32\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"EMUL_MAXID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODATA\":                           reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                             reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                            reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EN_SW_CTL_INF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EN_SW_CTL_PREC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"EN_SW_CTL_ROUND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3072\", token.INT, 0)),\n\t\t\"EN_SW_DATACHAIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EN_SW_DENORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EN_SW_INVOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EN_SW_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EN_SW_PRECLOSS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EN_SW_UNDERFLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EN_SW_ZERODIV\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETHERCAP_JUMBO_MTU\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERCAP_VLAN_HWTAGGING\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHERCAP_VLAN_MTU\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETHERMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"ETHERMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1500\", token.INT, 0)),\n\t\t\"ETHERMTU_JUMBO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9000\", token.INT, 0)),\n\t\t\"ETHERTYPE_8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERTYPE_AARP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETHERTYPE_ACCTON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33680\", token.INT, 0)),\n\t\t\"ETHERTYPE_AEONIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32822\", token.INT, 0)),\n\t\t\"ETHERTYPE_ALPHA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33098\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMBER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24584\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMOEBA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33093\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33015\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLODOMAIN\":            reflect.ValueOf(constant.MakeFromLiteral(\"32793\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLETALK\":               reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLITEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"32967\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARGONAUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"32826\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETHERTYPE_AT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATALK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATOMIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34527\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32873\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATTSTANFORD\":             reflect.ValueOf(constant.MakeFromLiteral(\"32776\", token.INT, 0)),\n\t\t\"ETHERTYPE_AUTOPHON\":                reflect.ValueOf(constant.MakeFromLiteral(\"32874\", token.INT, 0)),\n\t\t\"ETHERTYPE_AXIS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34902\", token.INT, 0)),\n\t\t\"ETHERTYPE_BCLOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36867\", token.INT, 0)),\n\t\t\"ETHERTYPE_BOFL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33026\", token.INT, 0)),\n\t\t\"ETHERTYPE_CABLETRON\":               reflect.ValueOf(constant.MakeFromLiteral(\"28724\", token.INT, 0)),\n\t\t\"ETHERTYPE_CHAOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2052\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMDESIGN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32876\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMPUGRAPHIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"32877\", token.INT, 0)),\n\t\t\"ETHERTYPE_COUNTERPOINT\":            reflect.ValueOf(constant.MakeFromLiteral(\"32866\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32772\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUSVLN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32771\", token.INT, 0)),\n\t\t\"ETHERTYPE_DCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4660\", token.INT, 0)),\n\t\t\"ETHERTYPE_DDE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32891\", token.INT, 0)),\n\t\t\"ETHERTYPE_DEBNI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43690\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32840\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECCUST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32828\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32830\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECEXPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32833\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLTM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32831\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECMUMPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"24585\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECNETBIOS\":              reflect.ValueOf(constant.MakeFromLiteral(\"32832\", token.INT, 0)),\n\t\t\"ETHERTYPE_DELTACON\":                reflect.ValueOf(constant.MakeFromLiteral(\"34526\", token.INT, 0)),\n\t\t\"ETHERTYPE_DIDDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17185\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG1\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1632\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1633\", token.INT, 0)),\n\t\t\"ETHERTYPE_DN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETHERTYPE_DOGFIGHT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6537\", token.INT, 0)),\n\t\t\"ETHERTYPE_DSMD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32825\", token.INT, 0)),\n\t\t\"ETHERTYPE_ECMA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2051\", token.INT, 0)),\n\t\t\"ETHERTYPE_ENCRYPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32829\", token.INT, 0)),\n\t\t\"ETHERTYPE_ES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32861\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXCELAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32784\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXPERDATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"32841\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33094\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLOWCONTROL\":             reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETHERTYPE_FRARP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2056\", token.INT, 0)),\n\t\t\"ETHERTYPE_GENDYN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32872\", token.INT, 0)),\n\t\t\"ETHERTYPE_HAYES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_HIPPI_FP\":                reflect.ValueOf(constant.MakeFromLiteral(\"33152\", token.INT, 0)),\n\t\t\"ETHERTYPE_HITACHI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34848\", token.INT, 0)),\n\t\t\"ETHERTYPE_HP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32773\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUPAT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19522\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBLDIAG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16972\", token.INT, 0)),\n\t\t\"ETHERTYPE_IP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPAS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34668\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPXNEW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32823\", token.INT, 0)),\n\t\t\"ETHERTYPE_KALPANA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34178\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANBRIDGE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32824\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANPROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"34952\", token.INT, 0)),\n\t\t\"ETHERTYPE_LAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETHERTYPE_LBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LITTLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOGICRAFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"33096\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_MATRA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32890\", token.INT, 0)),\n\t\t\"ETHERTYPE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ETHERTYPE_MERIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32892\", token.INT, 0)),\n\t\t\"ETHERTYPE_MICP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34618\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPDL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOTOROLA\":                reflect.ValueOf(constant.MakeFromLiteral(\"33165\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS_MCAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETHERTYPE_MUMPS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33087\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15364\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLAIM\":                reflect.ValueOf(constant.MakeFromLiteral(\"15369\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLREQ\":                reflect.ValueOf(constant.MakeFromLiteral(\"15365\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLRSP\":                reflect.ValueOf(constant.MakeFromLiteral(\"15366\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCREQ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15362\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCRSP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15363\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15367\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDGB\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15368\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDLTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15370\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15372\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15371\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15373\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPSCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15361\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPVCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15360\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2050\", token.INT, 0)),\n\t\t\"ETHERTYPE_NCD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33097\", token.INT, 0)),\n\t\t\"ETHERTYPE_NESTAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32774\", token.INT, 0)),\n\t\t\"ETHERTYPE_NETBEUI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33169\", token.INT, 0)),\n\t\t\"ETHERTYPE_NOVELL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33080\", token.INT, 0)),\n\t\t\"ETHERTYPE_NS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1537\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSCOMPAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2055\", token.INT, 0)),\n\t\t\"ETHERTYPE_NTRAILER\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28679\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9NET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28681\", token.INT, 0)),\n\t\t\"ETHERTYPE_PACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32966\", token.INT, 0)),\n\t\t\"ETHERTYPE_PAE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETHERTYPE_PCS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16962\", token.INT, 0)),\n\t\t\"ETHERTYPE_PLANNING\":                reflect.ValueOf(constant.MakeFromLiteral(\"32836\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34827\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOEDISC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETHERTYPE_PRIMENTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28721\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUPAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_RACAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28720\", token.INT, 0)),\n\t\t\"ETHERTYPE_RATIONAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"33104\", token.INT, 0)),\n\t\t\"ETHERTYPE_RAWFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25945\", token.INT, 0)),\n\t\t\"ETHERTYPE_RCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6549\", token.INT, 0)),\n\t\t\"ETHERTYPE_RDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34617\", token.INT, 0)),\n\t\t\"ETHERTYPE_RETIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33010\", token.INT, 0)),\n\t\t\"ETHERTYPE_REVARP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETHERTYPE_SCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECTRA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34523\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECUREDATA\":              reflect.ValueOf(constant.MakeFromLiteral(\"34669\", token.INT, 0)),\n\t\t\"ETHERTYPE_SGITW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33150\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_BOUNCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32790\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_DIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32787\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_NETGAMES\":             reflect.ValueOf(constant.MakeFromLiteral(\"32788\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_RESV\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32789\", token.INT, 0)),\n\t\t\"ETHERTYPE_SIMNET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21000\", token.INT, 0)),\n\t\t\"ETHERTYPE_SLOWPROTOCOLS\":           reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32981\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33100\", token.INT, 0)),\n\t\t\"ETHERTYPE_SONIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64245\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPIDER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32927\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPRITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"ETHERTYPE_STP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33153\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARIS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33067\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARISMC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34091\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPCOMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34667\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36866\", token.INT, 0)),\n\t\t\"ETHERTYPE_TEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33103\", token.INT, 0)),\n\t\t\"ETHERTYPE_TIGAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32815\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRANSETHER\":              reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETHERTYPE_TYMSHARE\":                reflect.ValueOf(constant.MakeFromLiteral(\"32814\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBBST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28677\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDEBUG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2304\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDIAGLOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"28674\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28672\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNIU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28673\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNMC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28675\", token.INT, 0)),\n\t\t\"ETHERTYPE_VALID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5632\", token.INT, 0)),\n\t\t\"ETHERTYPE_VARIAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VAXELN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32827\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEECO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32871\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEXP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32859\", token.INT, 0)),\n\t\t\"ETHERTYPE_VGLAB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33073\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESECHO\":               reflect.ValueOf(constant.MakeFromLiteral(\"2991\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESLOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"2990\", token.INT, 0)),\n\t\t\"ETHERTYPE_VITAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65280\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLTLMAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32896\", token.INT, 0)),\n\t\t\"ETHERTYPE_VPROD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32860\", token.INT, 0)),\n\t\t\"ETHERTYPE_VURESERVED\":              reflect.ValueOf(constant.MakeFromLiteral(\"33095\", token.INT, 0)),\n\t\t\"ETHERTYPE_WATERLOO\":                reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_WELLFLEET\":               reflect.ValueOf(constant.MakeFromLiteral(\"33027\", token.INT, 0)),\n\t\t\"ETHERTYPE_X25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETHERTYPE_X75\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2049\", token.INT, 0)),\n\t\t\"ETHERTYPE_XNSSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36865\", token.INT, 0)),\n\t\t\"ETHERTYPE_XTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33149\", token.INT, 0)),\n\t\t\"ETHER_ADDR_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETHER_CRC_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_BE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79764918\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_LE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3988292384\", token.INT, 0)),\n\t\t\"ETHER_HDR_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1518\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN_JUMBO\":               reflect.ValueOf(constant.MakeFromLiteral(\"9018\", token.INT, 0)),\n\t\t\"ETHER_MIN_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ETHER_PPPOE_ENCAP_LEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETHER_TYPE_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_VLAN_ENCAP_LEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETIME\":                             reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_CLOSEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_FSCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"F_FSDIRMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1879048192\", token.INT, 0)),\n\t\t\"F_FSIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"F_FSINOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"805306368\", token.INT, 0)),\n\t\t\"F_FSOUT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"F_FSPRIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"F_FSVOID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETNOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_MAXFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_PARAM_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"F_PARAM_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETNOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36690\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAMCHANNEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LINEGROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_PON155\":                        reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"IFT_PON622\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_Q2931\":                         reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SIPSIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"IFT_SIPTG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TELINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VIRTUALTG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"IFT_VOICEDID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEEMFGD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFGDEANA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERCABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6_ICMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VRRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_EF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ERRORMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINFRAGSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_SPACEAVAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_16MB\":                reflect.ValueOf(constant.MakeFromLiteral(\"402653184\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_1TB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"671088640\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_256TB\":               reflect.ValueOf(constant.MakeFromLiteral(\"805306368\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_4GB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_64KB\":                reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_64PB\":                reflect.ValueOf(constant.MakeFromLiteral(\"939524096\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_SHIFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_INHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_INHERIT_COPY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_DEFAULT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_DONATE_COPY\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_INHERIT_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_INHERIT_SHARE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_TRYFIXED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_WIRED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_BCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CONTROLMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_IOVUSRSPACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"MSG_LENUSRSPACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"MSG_MCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_NAMEMBUF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MSG_NBIO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_USERFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"511\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_OIFLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_OOIFLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OFIOGETBMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221513850\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_ALT_IO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_DSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOSIGPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PRI_IOFLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_TAG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_TAG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_ANNOUNCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_CLONED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_MASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_SRC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_CHGADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_LLINFO_UPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_OIFINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_OOIFINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_SETGATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_CREDS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                            reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947761\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150658570\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860636\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947762\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150658571\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156947737\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947785\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860638\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223087483\", token.INT, 0)),\n\t\t\"SIOCGETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3230689784\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222566196\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222566195\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3230689569\", token.INT, 0)),\n\t\t\"SIOCGIFADDRPREF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3230951712\", token.INT, 0)),\n\t\t\"SIOCGIFALIAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3225446683\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689571\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349622\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221776678\", token.INT, 0)),\n\t\t\"SIOCGIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3230951813\", token.INT, 0)),\n\t\t\"SIOCGIFDLT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3230689655\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689570\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3230689553\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689594\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873846\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3230689559\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3230689662\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689573\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3230689608\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3230689607\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3239602461\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3239602507\", token.INT, 0)),\n\t\t\"SIOCGLINKSTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223087495\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3230689667\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947834\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947833\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222038904\", token.INT, 0)),\n\t\t\"SIOCINITIFADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3225708932\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149345659\", token.INT, 0)),\n\t\t\"SIOCSETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947959\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156947724\", token.INT, 0)),\n\t\t\"SIOCSIFADDRPREF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2157209887\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947731\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607797\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947726\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947728\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947769\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3230689589\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947736\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2156947839\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947734\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2165860682\", token.INT, 0)),\n\t\t\"SIOCSLINKSTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149345672\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3230689666\", token.INT, 0)),\n\t\t\"SIOCZIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3230951814\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_FLAGS_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"SOCK_NOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ACCEPTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_NOHEADER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_OVERFLOWED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYSCTL_VERSION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_0\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_MASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BREAK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"454\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXTATTRCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"462\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"463\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"464\", token.INT, 0)),\n\t\t\"SYS_FCHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FEXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"465\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"380\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"SYS_FKTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"383\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"377\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"440\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"466\", token.INT, 0)),\n\t\t\"SYS_FSTATVFS1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FSYNC_RANGE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMENS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"472\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS_GETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"395\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"445\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"418\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETVFSSTAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"378\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_KQUEUE1\":                       reflect.ValueOf(constant.MakeFromLiteral(\"455\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_LCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"379\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"457\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"381\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"382\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"441\", token.INT, 0)),\n\t\t\"SYS_LUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"461\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"459\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"460\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MODCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"444\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_NTP_ADJTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_NTP_GETTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"468\", token.INT, 0)),\n\t\t\"SYS_PACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"456\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"453\", token.INT, 0)),\n\t\t\"SYS_PMC_CONTROL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_PMC_GET_INFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_POLLTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"437\", token.INT, 0)),\n\t\t\"SYS_POSIX_FADVISE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_POSIX_SPAWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"474\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_PSET_ASSIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_PSET_CREATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_PSET_DESTROY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_RASCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"469\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"475\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"458\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_SEMCONFIG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"476\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"419\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"375\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"443\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGQUEUEINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SSTK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_STAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_STATVFS1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_SWAPCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"470\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":              reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"447\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"446\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"471\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"467\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"420\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_UUIDGEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_VADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"449\", token.INT, 0)),\n\t\t\"SYS_WAIT6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"481\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS__LWP_CONTINUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS__LWP_CREATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS__LWP_CTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS__LWP_DETACH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS__LWP_EXIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS__LWP_GETNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS__LWP_GETPRIVATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS__LWP_KILL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS__LWP_PARK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS__LWP_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS__LWP_SETNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS__LWP_SETPRIVATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS__LWP_SUSPEND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS__LWP_UNPARK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS__LWP_UNPARK_ALL\":               reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS__LWP_WAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS__LWP_WAKEUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS__PSET_BIND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS__SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS__SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS__SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS__SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS___CLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS___GETLOGIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS___POSIX_CHOWN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS___POSIX_FCHOWN\":                reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS___POSIX_LCHOWN\":                reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS___POSIX_RENAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS___QUOTACTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"473\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"442\", token.INT, 0)),\n\t\t\"SYS___SETLOGIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS___SIGACTION_SIGTRAMP\":          reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS___SIGTIMEDWAIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_ARCH1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"S_ARCH2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFWHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"57344\", token.INT, 0)),\n\t\t\"S_IREAD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISTXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_LOGIN_SET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CONGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_KEEPINIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDCDTIMESTAMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074558040\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLAG_CDTRCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCFLAG_CLOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCFLAG_CRTSCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCFLAG_MDMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCFLAG_SOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033757\", token.INT, 0)),\n\t\t\"TIOCGLINED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1075868738\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGQSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033793\", token.INT, 0)),\n\t\t\"TIOCGRANTPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536900679\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1076393030\", token.INT, 0)),\n\t\t\"TIOCPTSNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1076393032\", token.INT, 0)),\n\t\t\"TIOCRCVFRAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147775557\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775580\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900703\", token.INT, 0)),\n\t\t\"TIOCSLINED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149610563\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSQSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775616\", token.INT, 0)),\n\t\t\"TIOCSSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775589\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TIOCXMTFRAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147775556\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WALL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WALLSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WALTSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCLONE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"WNOZOMBIE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"WOPTSCHECKED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                   reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                  reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":               reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                  reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfTimeval\":               reflect.ValueOf((*syscall.BpfTimeval)(nil)),\n\t\t\"BpfVersion\":               reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                  reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                     reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":               reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                   reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                    reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                    reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                  reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                     reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":             reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                   reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":              reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                 reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":         reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                   reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                 reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":             reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":     reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":         reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"Iovec\":                    reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                 reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                   reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Mclpool\":                  reflect.ValueOf((*syscall.Mclpool)(nil)),\n\t\t\"Msghdr\":                   reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                 reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                  reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":              reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":           reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":      reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":         reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":         reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":          reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                   reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":             reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":           reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                 reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                   reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                   reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                 reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":         reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":            reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":            reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":             reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":     reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                   reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                 reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":              reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Sysctlnode\":               reflect.ValueOf((*syscall.Sysctlnode)(nil)),\n\t\t\"Termios\":                  reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                 reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                  reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":               reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_netbsd_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_ARP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_MPLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FRELAY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_STRIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B460800\":                           reflect.ValueOf(constant.MakeFromLiteral(\"460800\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B921600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"921600\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFEEDBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222291063\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1083196011\", token.INT, 0)),\n\t\t\"BIOCGFEEDBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020988\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074807419\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020984\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1082147439\", token.INT, 0)),\n\t\t\"BIOCGSTATSOLD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762806\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2156937836\", token.INT, 0)),\n\t\t\"BIOCSFEEDBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148549242\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762809\", token.INT, 0)),\n\t\t\"BIOCSTCPF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148549234\", token.INT, 0)),\n\t\t\"BIOCSUDPF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148549235\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DFLTBUFSIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_CSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_PID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CTL_QUERY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DIOCBSFLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536896632\", token.INT, 0)),\n\t\t\"DLT_A429\":                          reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"DLT_A653_ICM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"DLT_AIRONET_HEADER\":                reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_AOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_AX25_KISS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4\":              reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4_WITH_PHDR\":    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"DLT_CAN20B\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"DLT_CAN_SOCKETCAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"DLT_DECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FC_2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"DLT_FC_2_WITH_FRAME_DELIMS\":        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FLEXRAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_FRELAY_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                         reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                         reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_ABIS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_UM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"DLT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":          reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_LINUX\":            reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NONASK_PHY\":       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS_RADIO\":      reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"DLT_IPMB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"DLT_IPMB_LINUX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPV4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"DLT_IPV6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ISM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":               reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":              reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":             reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":              reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"DLT_LAPB_WITH_DIR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"DLT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"DLT_LIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"DLT_LINUX_EVDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MFR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"DLT_MOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAIF1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RAWAF_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35913728\", token.INT, 0)),\n\t\t\"DLT_RIO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SITA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":             reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"DLT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX_MMAPPED\":             reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"DLT_WIHART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"DLT_X2E_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"DLT_X2E_XORAYA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"EMUL_LINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_LINUX32\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"EMUL_MAXID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODATA\":                           reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                             reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                            reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETHERCAP_JUMBO_MTU\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERCAP_VLAN_HWTAGGING\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHERCAP_VLAN_MTU\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETHERMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"ETHERMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1500\", token.INT, 0)),\n\t\t\"ETHERMTU_JUMBO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9000\", token.INT, 0)),\n\t\t\"ETHERTYPE_8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERTYPE_AARP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETHERTYPE_ACCTON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33680\", token.INT, 0)),\n\t\t\"ETHERTYPE_AEONIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32822\", token.INT, 0)),\n\t\t\"ETHERTYPE_ALPHA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33098\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMBER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24584\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMOEBA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33093\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33015\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLODOMAIN\":            reflect.ValueOf(constant.MakeFromLiteral(\"32793\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLETALK\":               reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLITEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"32967\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARGONAUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"32826\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETHERTYPE_AT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATALK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATOMIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34527\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32873\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATTSTANFORD\":             reflect.ValueOf(constant.MakeFromLiteral(\"32776\", token.INT, 0)),\n\t\t\"ETHERTYPE_AUTOPHON\":                reflect.ValueOf(constant.MakeFromLiteral(\"32874\", token.INT, 0)),\n\t\t\"ETHERTYPE_AXIS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34902\", token.INT, 0)),\n\t\t\"ETHERTYPE_BCLOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36867\", token.INT, 0)),\n\t\t\"ETHERTYPE_BOFL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33026\", token.INT, 0)),\n\t\t\"ETHERTYPE_CABLETRON\":               reflect.ValueOf(constant.MakeFromLiteral(\"28724\", token.INT, 0)),\n\t\t\"ETHERTYPE_CHAOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2052\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMDESIGN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32876\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMPUGRAPHIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"32877\", token.INT, 0)),\n\t\t\"ETHERTYPE_COUNTERPOINT\":            reflect.ValueOf(constant.MakeFromLiteral(\"32866\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32772\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUSVLN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32771\", token.INT, 0)),\n\t\t\"ETHERTYPE_DCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4660\", token.INT, 0)),\n\t\t\"ETHERTYPE_DDE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32891\", token.INT, 0)),\n\t\t\"ETHERTYPE_DEBNI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43690\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32840\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECCUST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32828\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32830\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECEXPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32833\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLTM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32831\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECMUMPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"24585\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECNETBIOS\":              reflect.ValueOf(constant.MakeFromLiteral(\"32832\", token.INT, 0)),\n\t\t\"ETHERTYPE_DELTACON\":                reflect.ValueOf(constant.MakeFromLiteral(\"34526\", token.INT, 0)),\n\t\t\"ETHERTYPE_DIDDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17185\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG1\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1632\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1633\", token.INT, 0)),\n\t\t\"ETHERTYPE_DN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETHERTYPE_DOGFIGHT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6537\", token.INT, 0)),\n\t\t\"ETHERTYPE_DSMD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32825\", token.INT, 0)),\n\t\t\"ETHERTYPE_ECMA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2051\", token.INT, 0)),\n\t\t\"ETHERTYPE_ENCRYPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32829\", token.INT, 0)),\n\t\t\"ETHERTYPE_ES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32861\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXCELAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32784\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXPERDATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"32841\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33094\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLOWCONTROL\":             reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETHERTYPE_FRARP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2056\", token.INT, 0)),\n\t\t\"ETHERTYPE_GENDYN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32872\", token.INT, 0)),\n\t\t\"ETHERTYPE_HAYES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_HIPPI_FP\":                reflect.ValueOf(constant.MakeFromLiteral(\"33152\", token.INT, 0)),\n\t\t\"ETHERTYPE_HITACHI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34848\", token.INT, 0)),\n\t\t\"ETHERTYPE_HP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32773\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUPAT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19522\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBLDIAG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16972\", token.INT, 0)),\n\t\t\"ETHERTYPE_IP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPAS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34668\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPXNEW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32823\", token.INT, 0)),\n\t\t\"ETHERTYPE_KALPANA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34178\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANBRIDGE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32824\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANPROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"34952\", token.INT, 0)),\n\t\t\"ETHERTYPE_LAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETHERTYPE_LBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LITTLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOGICRAFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"33096\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_MATRA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32890\", token.INT, 0)),\n\t\t\"ETHERTYPE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ETHERTYPE_MERIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32892\", token.INT, 0)),\n\t\t\"ETHERTYPE_MICP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34618\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPDL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOTOROLA\":                reflect.ValueOf(constant.MakeFromLiteral(\"33165\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS_MCAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETHERTYPE_MUMPS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33087\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15364\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLAIM\":                reflect.ValueOf(constant.MakeFromLiteral(\"15369\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLREQ\":                reflect.ValueOf(constant.MakeFromLiteral(\"15365\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLRSP\":                reflect.ValueOf(constant.MakeFromLiteral(\"15366\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCREQ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15362\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCRSP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15363\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15367\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDGB\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15368\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDLTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15370\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15372\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15371\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15373\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPSCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15361\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPVCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15360\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2050\", token.INT, 0)),\n\t\t\"ETHERTYPE_NCD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33097\", token.INT, 0)),\n\t\t\"ETHERTYPE_NESTAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32774\", token.INT, 0)),\n\t\t\"ETHERTYPE_NETBEUI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33169\", token.INT, 0)),\n\t\t\"ETHERTYPE_NOVELL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33080\", token.INT, 0)),\n\t\t\"ETHERTYPE_NS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1537\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSCOMPAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2055\", token.INT, 0)),\n\t\t\"ETHERTYPE_NTRAILER\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28679\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9NET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28681\", token.INT, 0)),\n\t\t\"ETHERTYPE_PACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32966\", token.INT, 0)),\n\t\t\"ETHERTYPE_PAE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETHERTYPE_PCS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16962\", token.INT, 0)),\n\t\t\"ETHERTYPE_PLANNING\":                reflect.ValueOf(constant.MakeFromLiteral(\"32836\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34827\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOEDISC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETHERTYPE_PRIMENTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28721\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUPAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_RACAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28720\", token.INT, 0)),\n\t\t\"ETHERTYPE_RATIONAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"33104\", token.INT, 0)),\n\t\t\"ETHERTYPE_RAWFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25945\", token.INT, 0)),\n\t\t\"ETHERTYPE_RCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6549\", token.INT, 0)),\n\t\t\"ETHERTYPE_RDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34617\", token.INT, 0)),\n\t\t\"ETHERTYPE_RETIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33010\", token.INT, 0)),\n\t\t\"ETHERTYPE_REVARP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETHERTYPE_SCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECTRA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34523\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECUREDATA\":              reflect.ValueOf(constant.MakeFromLiteral(\"34669\", token.INT, 0)),\n\t\t\"ETHERTYPE_SGITW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33150\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_BOUNCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32790\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_DIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32787\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_NETGAMES\":             reflect.ValueOf(constant.MakeFromLiteral(\"32788\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_RESV\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32789\", token.INT, 0)),\n\t\t\"ETHERTYPE_SIMNET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21000\", token.INT, 0)),\n\t\t\"ETHERTYPE_SLOWPROTOCOLS\":           reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32981\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33100\", token.INT, 0)),\n\t\t\"ETHERTYPE_SONIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64245\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPIDER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32927\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPRITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"ETHERTYPE_STP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33153\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARIS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33067\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARISMC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34091\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPCOMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34667\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36866\", token.INT, 0)),\n\t\t\"ETHERTYPE_TEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33103\", token.INT, 0)),\n\t\t\"ETHERTYPE_TIGAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32815\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRANSETHER\":              reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETHERTYPE_TYMSHARE\":                reflect.ValueOf(constant.MakeFromLiteral(\"32814\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBBST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28677\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDEBUG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2304\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDIAGLOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"28674\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28672\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNIU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28673\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNMC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28675\", token.INT, 0)),\n\t\t\"ETHERTYPE_VALID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5632\", token.INT, 0)),\n\t\t\"ETHERTYPE_VARIAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VAXELN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32827\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEECO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32871\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEXP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32859\", token.INT, 0)),\n\t\t\"ETHERTYPE_VGLAB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33073\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESECHO\":               reflect.ValueOf(constant.MakeFromLiteral(\"2991\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESLOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"2990\", token.INT, 0)),\n\t\t\"ETHERTYPE_VITAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65280\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLTLMAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32896\", token.INT, 0)),\n\t\t\"ETHERTYPE_VPROD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32860\", token.INT, 0)),\n\t\t\"ETHERTYPE_VURESERVED\":              reflect.ValueOf(constant.MakeFromLiteral(\"33095\", token.INT, 0)),\n\t\t\"ETHERTYPE_WATERLOO\":                reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_WELLFLEET\":               reflect.ValueOf(constant.MakeFromLiteral(\"33027\", token.INT, 0)),\n\t\t\"ETHERTYPE_X25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETHERTYPE_X75\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2049\", token.INT, 0)),\n\t\t\"ETHERTYPE_XNSSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36865\", token.INT, 0)),\n\t\t\"ETHERTYPE_XTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33149\", token.INT, 0)),\n\t\t\"ETHER_ADDR_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETHER_CRC_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_BE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79764918\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_LE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3988292384\", token.INT, 0)),\n\t\t\"ETHER_HDR_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1518\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN_JUMBO\":               reflect.ValueOf(constant.MakeFromLiteral(\"9018\", token.INT, 0)),\n\t\t\"ETHER_MIN_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ETHER_PPPOE_ENCAP_LEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETHER_TYPE_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_VLAN_ENCAP_LEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETIME\":                             reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_CLOSEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_FSCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"F_FSDIRMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1879048192\", token.INT, 0)),\n\t\t\"F_FSIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"F_FSINOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"805306368\", token.INT, 0)),\n\t\t\"F_FSOUT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"F_FSPRIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"F_FSVOID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETNOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_MAXFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_PARAM_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"F_PARAM_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETNOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36690\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAMCHANNEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LINEGROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_PON155\":                        reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"IFT_PON622\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_Q2931\":                         reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SIPSIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"IFT_SIPTG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TELINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VIRTUALTG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"IFT_VOICEDID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEEMFGD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFGDEANA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERCABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6_ICMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VRRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_EF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ERRORMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINFRAGSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_SPACEAVAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_16MB\":                reflect.ValueOf(constant.MakeFromLiteral(\"402653184\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_1TB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"671088640\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_256TB\":               reflect.ValueOf(constant.MakeFromLiteral(\"805306368\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_4GB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_64KB\":                reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_64PB\":                reflect.ValueOf(constant.MakeFromLiteral(\"939524096\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_SHIFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_INHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_INHERIT_COPY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_DEFAULT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_DONATE_COPY\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_INHERIT_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_INHERIT_SHARE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_TRYFIXED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_WIRED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_BCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CONTROLMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_IOVUSRSPACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"MSG_LENUSRSPACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"MSG_MCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_NAMEMBUF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MSG_NBIO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_USERFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"511\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_OIFLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_OOIFLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OFIOGETBMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221513850\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_ALT_IO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_DSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOSIGPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PRI_IOFLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_TAG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_TAG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_ANNOUNCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_CLONED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_MASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_SRC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_CHGADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_LLINFO_UPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_OIFINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_OOIFINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_SETGATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_CREDS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                            reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947761\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151182858\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860636\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947762\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151182859\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156947737\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947785\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860638\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873915\", token.INT, 0)),\n\t\t\"SIOCGETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3230689784\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223352628\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223876915\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3230689569\", token.INT, 0)),\n\t\t\"SIOCGIFADDRPREF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3231213856\", token.INT, 0)),\n\t\t\"SIOCGIFALIAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3225446683\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689571\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349622\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222300966\", token.INT, 0)),\n\t\t\"SIOCGIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3231213957\", token.INT, 0)),\n\t\t\"SIOCGIFDLT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3230689655\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689570\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3230689553\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689594\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3224398134\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3230689559\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3230689662\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689573\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3230689608\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3230689607\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3239602461\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3239602507\", token.INT, 0)),\n\t\t\"SIOCGLINKSTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873927\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3230689667\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947834\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947833\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222301048\", token.INT, 0)),\n\t\t\"SIOCINITIFADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3228592516\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132091\", token.INT, 0)),\n\t\t\"SIOCSETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947959\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156947724\", token.INT, 0)),\n\t\t\"SIOCSIFADDRPREF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2157472031\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947731\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607797\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947726\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947728\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947769\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3230689589\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947736\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2156947839\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947734\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2165860682\", token.INT, 0)),\n\t\t\"SIOCSLINKSTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132104\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3230689666\", token.INT, 0)),\n\t\t\"SIOCZIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3231213958\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_FLAGS_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"SOCK_NOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ACCEPTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_NOHEADER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_OVERFLOWED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYSCTL_VERSION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_0\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_MASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BREAK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"454\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXTATTRCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"462\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"463\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"464\", token.INT, 0)),\n\t\t\"SYS_FCHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FEXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"465\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"380\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"SYS_FKTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"383\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"377\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"440\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"466\", token.INT, 0)),\n\t\t\"SYS_FSTATVFS1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FSYNC_RANGE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMENS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"472\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS_GETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"395\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"445\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"418\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETVFSSTAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"378\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_KQUEUE1\":                       reflect.ValueOf(constant.MakeFromLiteral(\"455\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_LCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"379\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"457\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"381\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"382\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"441\", token.INT, 0)),\n\t\t\"SYS_LUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"461\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"459\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"460\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MODCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"444\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_NTP_ADJTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_NTP_GETTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"468\", token.INT, 0)),\n\t\t\"SYS_PACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"456\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"453\", token.INT, 0)),\n\t\t\"SYS_PMC_CONTROL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_PMC_GET_INFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_POLLTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"437\", token.INT, 0)),\n\t\t\"SYS_POSIX_FADVISE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_POSIX_SPAWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"474\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_PSET_ASSIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_PSET_CREATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_PSET_DESTROY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_RASCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"469\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"475\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"458\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_SEMCONFIG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"476\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"419\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"375\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"443\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGQUEUEINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SSTK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_STAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_STATVFS1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_SWAPCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"470\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":              reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"447\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"446\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"471\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"467\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"420\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_UUIDGEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_VADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"449\", token.INT, 0)),\n\t\t\"SYS_WAIT6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"481\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS__LWP_CONTINUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS__LWP_CREATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS__LWP_CTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS__LWP_DETACH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS__LWP_EXIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS__LWP_GETNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS__LWP_GETPRIVATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS__LWP_KILL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS__LWP_PARK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS__LWP_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS__LWP_SETNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS__LWP_SETPRIVATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS__LWP_SUSPEND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS__LWP_UNPARK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS__LWP_UNPARK_ALL\":               reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS__LWP_WAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS__LWP_WAKEUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS__PSET_BIND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS__SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS__SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS__SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS__SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS___CLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS___GETLOGIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS___POSIX_CHOWN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS___POSIX_FCHOWN\":                reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS___POSIX_LCHOWN\":                reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS___POSIX_RENAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS___QUOTACTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"473\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"442\", token.INT, 0)),\n\t\t\"SYS___SETLOGIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS___SIGACTION_SIGTRAMP\":          reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS___SIGTIMEDWAIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_ARCH1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"S_ARCH2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFWHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"57344\", token.INT, 0)),\n\t\t\"S_IREAD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISTXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_LOGIN_SET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CONGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_KEEPINIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDCDTIMESTAMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074820184\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLAG_CDTRCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCFLAG_CLOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCFLAG_CRTSCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCFLAG_MDMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCFLAG_SOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033757\", token.INT, 0)),\n\t\t\"TIOCGLINED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1075868738\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGQSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033793\", token.INT, 0)),\n\t\t\"TIOCGRANTPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536900679\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1076393030\", token.INT, 0)),\n\t\t\"TIOCPTSNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1076393032\", token.INT, 0)),\n\t\t\"TIOCRCVFRAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148037701\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775580\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900703\", token.INT, 0)),\n\t\t\"TIOCSLINED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149610563\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSQSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775616\", token.INT, 0)),\n\t\t\"TIOCSSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775589\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TIOCXMTFRAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148037700\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WALL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WALLSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WALTSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCLONE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"WNOZOMBIE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"WOPTSCHECKED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                   reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                  reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":               reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                  reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfTimeval\":               reflect.ValueOf((*syscall.BpfTimeval)(nil)),\n\t\t\"BpfVersion\":               reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                  reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                     reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":               reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                   reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                    reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                    reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                  reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                     reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":             reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                   reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":              reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                 reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":         reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                   reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                 reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":             reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":     reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":         reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"Iovec\":                    reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                 reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                   reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Mclpool\":                  reflect.ValueOf((*syscall.Mclpool)(nil)),\n\t\t\"Msghdr\":                   reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                 reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                  reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":              reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":           reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":      reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":         reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":         reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":          reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                   reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":             reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":           reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                 reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                   reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                   reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                 reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":         reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":            reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":            reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":             reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":     reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                   reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                 reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":              reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Sysctlnode\":               reflect.ValueOf((*syscall.Sysctlnode)(nil)),\n\t\t\"Termios\":                  reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                 reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                  reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":               reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_netbsd_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_ARP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_MPLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FRELAY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_STRIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B460800\":                           reflect.ValueOf(constant.MakeFromLiteral(\"460800\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B921600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"921600\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFEEDBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3221766775\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1083196011\", token.INT, 0)),\n\t\t\"BIOCGFEEDBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020988\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074545275\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020984\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1082147439\", token.INT, 0)),\n\t\t\"BIOCGSTATSOLD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762806\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148024935\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2156937836\", token.INT, 0)),\n\t\t\"BIOCSFEEDBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148287098\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762809\", token.INT, 0)),\n\t\t\"BIOCSTCPF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148024946\", token.INT, 0)),\n\t\t\"BIOCSUDPF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148024947\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DFLTBUFSIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CTL_QUERY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DIOCBSFLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536896632\", token.INT, 0)),\n\t\t\"DLT_A429\":                          reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"DLT_A653_ICM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"DLT_AIRONET_HEADER\":                reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_AOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_AX25_KISS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4\":              reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4_WITH_PHDR\":    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"DLT_CAN20B\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"DLT_CAN_SOCKETCAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"DLT_DECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FC_2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"DLT_FC_2_WITH_FRAME_DELIMS\":        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FLEXRAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_FRELAY_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                         reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                         reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_ABIS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_UM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"DLT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":          reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_LINUX\":            reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NONASK_PHY\":       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS_RADIO\":      reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"DLT_IPMB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"DLT_IPMB_LINUX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPV4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"DLT_IPV6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ISM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":               reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":              reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":             reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":              reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"DLT_LAPB_WITH_DIR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"DLT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"DLT_LIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"DLT_LINUX_EVDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MFR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"DLT_MOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAIF1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RAWAF_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35913728\", token.INT, 0)),\n\t\t\"DLT_RIO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SITA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":             reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"DLT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX_MMAPPED\":             reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"DLT_WIHART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"DLT_X2E_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"DLT_X2E_XORAYA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"EMUL_LINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_LINUX32\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"EMUL_MAXID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODATA\":                           reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                             reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                            reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETHERCAP_JUMBO_MTU\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERCAP_VLAN_HWTAGGING\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHERCAP_VLAN_MTU\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETHERMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"ETHERMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1500\", token.INT, 0)),\n\t\t\"ETHERMTU_JUMBO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9000\", token.INT, 0)),\n\t\t\"ETHERTYPE_8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERTYPE_AARP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETHERTYPE_ACCTON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33680\", token.INT, 0)),\n\t\t\"ETHERTYPE_AEONIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32822\", token.INT, 0)),\n\t\t\"ETHERTYPE_ALPHA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33098\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMBER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24584\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMOEBA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33093\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33015\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLODOMAIN\":            reflect.ValueOf(constant.MakeFromLiteral(\"32793\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLETALK\":               reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLITEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"32967\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARGONAUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"32826\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETHERTYPE_AT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATALK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATOMIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34527\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32873\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATTSTANFORD\":             reflect.ValueOf(constant.MakeFromLiteral(\"32776\", token.INT, 0)),\n\t\t\"ETHERTYPE_AUTOPHON\":                reflect.ValueOf(constant.MakeFromLiteral(\"32874\", token.INT, 0)),\n\t\t\"ETHERTYPE_AXIS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34902\", token.INT, 0)),\n\t\t\"ETHERTYPE_BCLOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36867\", token.INT, 0)),\n\t\t\"ETHERTYPE_BOFL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33026\", token.INT, 0)),\n\t\t\"ETHERTYPE_CABLETRON\":               reflect.ValueOf(constant.MakeFromLiteral(\"28724\", token.INT, 0)),\n\t\t\"ETHERTYPE_CHAOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2052\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMDESIGN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32876\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMPUGRAPHIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"32877\", token.INT, 0)),\n\t\t\"ETHERTYPE_COUNTERPOINT\":            reflect.ValueOf(constant.MakeFromLiteral(\"32866\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32772\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUSVLN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32771\", token.INT, 0)),\n\t\t\"ETHERTYPE_DCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4660\", token.INT, 0)),\n\t\t\"ETHERTYPE_DDE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32891\", token.INT, 0)),\n\t\t\"ETHERTYPE_DEBNI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43690\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32840\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECCUST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32828\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32830\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECEXPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32833\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLTM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32831\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECMUMPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"24585\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECNETBIOS\":              reflect.ValueOf(constant.MakeFromLiteral(\"32832\", token.INT, 0)),\n\t\t\"ETHERTYPE_DELTACON\":                reflect.ValueOf(constant.MakeFromLiteral(\"34526\", token.INT, 0)),\n\t\t\"ETHERTYPE_DIDDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17185\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG1\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1632\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1633\", token.INT, 0)),\n\t\t\"ETHERTYPE_DN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETHERTYPE_DOGFIGHT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6537\", token.INT, 0)),\n\t\t\"ETHERTYPE_DSMD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32825\", token.INT, 0)),\n\t\t\"ETHERTYPE_ECMA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2051\", token.INT, 0)),\n\t\t\"ETHERTYPE_ENCRYPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32829\", token.INT, 0)),\n\t\t\"ETHERTYPE_ES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32861\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXCELAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32784\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXPERDATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"32841\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33094\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLOWCONTROL\":             reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETHERTYPE_FRARP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2056\", token.INT, 0)),\n\t\t\"ETHERTYPE_GENDYN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32872\", token.INT, 0)),\n\t\t\"ETHERTYPE_HAYES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_HIPPI_FP\":                reflect.ValueOf(constant.MakeFromLiteral(\"33152\", token.INT, 0)),\n\t\t\"ETHERTYPE_HITACHI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34848\", token.INT, 0)),\n\t\t\"ETHERTYPE_HP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32773\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUPAT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19522\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBLDIAG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16972\", token.INT, 0)),\n\t\t\"ETHERTYPE_IP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPAS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34668\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPXNEW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32823\", token.INT, 0)),\n\t\t\"ETHERTYPE_KALPANA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34178\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANBRIDGE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32824\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANPROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"34952\", token.INT, 0)),\n\t\t\"ETHERTYPE_LAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETHERTYPE_LBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LITTLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOGICRAFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"33096\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_MATRA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32890\", token.INT, 0)),\n\t\t\"ETHERTYPE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ETHERTYPE_MERIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32892\", token.INT, 0)),\n\t\t\"ETHERTYPE_MICP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34618\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPDL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOTOROLA\":                reflect.ValueOf(constant.MakeFromLiteral(\"33165\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS_MCAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETHERTYPE_MUMPS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33087\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15364\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLAIM\":                reflect.ValueOf(constant.MakeFromLiteral(\"15369\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLREQ\":                reflect.ValueOf(constant.MakeFromLiteral(\"15365\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLRSP\":                reflect.ValueOf(constant.MakeFromLiteral(\"15366\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCREQ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15362\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCRSP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15363\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15367\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDGB\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15368\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDLTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15370\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15372\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15371\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15373\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPSCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15361\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPVCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15360\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2050\", token.INT, 0)),\n\t\t\"ETHERTYPE_NCD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33097\", token.INT, 0)),\n\t\t\"ETHERTYPE_NESTAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32774\", token.INT, 0)),\n\t\t\"ETHERTYPE_NETBEUI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33169\", token.INT, 0)),\n\t\t\"ETHERTYPE_NOVELL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33080\", token.INT, 0)),\n\t\t\"ETHERTYPE_NS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1537\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSCOMPAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2055\", token.INT, 0)),\n\t\t\"ETHERTYPE_NTRAILER\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28679\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9NET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28681\", token.INT, 0)),\n\t\t\"ETHERTYPE_PACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32966\", token.INT, 0)),\n\t\t\"ETHERTYPE_PAE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETHERTYPE_PCS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16962\", token.INT, 0)),\n\t\t\"ETHERTYPE_PLANNING\":                reflect.ValueOf(constant.MakeFromLiteral(\"32836\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34827\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOEDISC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETHERTYPE_PRIMENTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28721\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUPAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_RACAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28720\", token.INT, 0)),\n\t\t\"ETHERTYPE_RATIONAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"33104\", token.INT, 0)),\n\t\t\"ETHERTYPE_RAWFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25945\", token.INT, 0)),\n\t\t\"ETHERTYPE_RCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6549\", token.INT, 0)),\n\t\t\"ETHERTYPE_RDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34617\", token.INT, 0)),\n\t\t\"ETHERTYPE_RETIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33010\", token.INT, 0)),\n\t\t\"ETHERTYPE_REVARP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETHERTYPE_SCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECTRA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34523\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECUREDATA\":              reflect.ValueOf(constant.MakeFromLiteral(\"34669\", token.INT, 0)),\n\t\t\"ETHERTYPE_SGITW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33150\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_BOUNCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32790\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_DIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32787\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_NETGAMES\":             reflect.ValueOf(constant.MakeFromLiteral(\"32788\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_RESV\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32789\", token.INT, 0)),\n\t\t\"ETHERTYPE_SIMNET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21000\", token.INT, 0)),\n\t\t\"ETHERTYPE_SLOWPROTOCOLS\":           reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32981\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33100\", token.INT, 0)),\n\t\t\"ETHERTYPE_SONIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64245\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPIDER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32927\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPRITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"ETHERTYPE_STP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33153\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARIS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33067\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARISMC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34091\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPCOMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34667\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36866\", token.INT, 0)),\n\t\t\"ETHERTYPE_TEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33103\", token.INT, 0)),\n\t\t\"ETHERTYPE_TIGAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32815\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRANSETHER\":              reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETHERTYPE_TYMSHARE\":                reflect.ValueOf(constant.MakeFromLiteral(\"32814\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBBST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28677\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDEBUG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2304\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDIAGLOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"28674\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28672\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNIU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28673\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNMC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28675\", token.INT, 0)),\n\t\t\"ETHERTYPE_VALID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5632\", token.INT, 0)),\n\t\t\"ETHERTYPE_VARIAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VAXELN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32827\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEECO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32871\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEXP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32859\", token.INT, 0)),\n\t\t\"ETHERTYPE_VGLAB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33073\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESECHO\":               reflect.ValueOf(constant.MakeFromLiteral(\"2991\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESLOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"2990\", token.INT, 0)),\n\t\t\"ETHERTYPE_VITAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65280\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLTLMAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32896\", token.INT, 0)),\n\t\t\"ETHERTYPE_VPROD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32860\", token.INT, 0)),\n\t\t\"ETHERTYPE_VURESERVED\":              reflect.ValueOf(constant.MakeFromLiteral(\"33095\", token.INT, 0)),\n\t\t\"ETHERTYPE_WATERLOO\":                reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_WELLFLEET\":               reflect.ValueOf(constant.MakeFromLiteral(\"33027\", token.INT, 0)),\n\t\t\"ETHERTYPE_X25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETHERTYPE_X75\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2049\", token.INT, 0)),\n\t\t\"ETHERTYPE_XNSSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36865\", token.INT, 0)),\n\t\t\"ETHERTYPE_XTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33149\", token.INT, 0)),\n\t\t\"ETHER_ADDR_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETHER_CRC_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_BE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79764918\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_LE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3988292384\", token.INT, 0)),\n\t\t\"ETHER_HDR_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1518\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN_JUMBO\":               reflect.ValueOf(constant.MakeFromLiteral(\"9018\", token.INT, 0)),\n\t\t\"ETHER_MIN_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ETHER_PPPOE_ENCAP_LEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETHER_TYPE_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_VLAN_ENCAP_LEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETIME\":                             reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_CLOSEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_FSCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"F_FSDIRMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1879048192\", token.INT, 0)),\n\t\t\"F_FSIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"F_FSINOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"805306368\", token.INT, 0)),\n\t\t\"F_FSOUT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"F_FSPRIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"F_FSVOID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETNOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_MAXFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_PARAM_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"F_PARAM_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETNOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36690\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAMCHANNEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LINEGROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_PON155\":                        reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"IFT_PON622\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_Q2931\":                         reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SIPSIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"IFT_SIPTG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TELINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VIRTUALTG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"IFT_VOICEDID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEEMFGD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFGDEANA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERCABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6_ICMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VRRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_EF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ERRORMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINFRAGSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_SPACEAVAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_16MB\":                reflect.ValueOf(constant.MakeFromLiteral(\"402653184\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_1TB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"671088640\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_256TB\":               reflect.ValueOf(constant.MakeFromLiteral(\"805306368\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_4GB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_64KB\":                reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_64PB\":                reflect.ValueOf(constant.MakeFromLiteral(\"939524096\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_SHIFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_INHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_INHERIT_COPY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_DEFAULT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_DONATE_COPY\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_INHERIT_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_INHERIT_SHARE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_TRYFIXED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_WIRED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_BCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CONTROLMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_IOVUSRSPACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"MSG_LENUSRSPACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"MSG_MCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_NAMEMBUF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MSG_NBIO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_USERFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"511\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_OIFLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_OOIFLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OFIOGETBMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221513850\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_ALT_IO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_DSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOSIGPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PRI_IOFLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_TAG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_TAG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_ANNOUNCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_CLONED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_MASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_SRC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_CHGADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_LLINFO_UPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_OIFINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_OOIFINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_SETGATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_CREDS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                            reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947761\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150658570\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860636\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947762\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150658571\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156947737\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947785\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860638\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223087483\", token.INT, 0)),\n\t\t\"SIOCGETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3230689784\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222566196\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222566195\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3230689569\", token.INT, 0)),\n\t\t\"SIOCGIFADDRPREF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3230951712\", token.INT, 0)),\n\t\t\"SIOCGIFALIAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3225446683\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689571\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349622\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221776678\", token.INT, 0)),\n\t\t\"SIOCGIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3230951813\", token.INT, 0)),\n\t\t\"SIOCGIFDLT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3230689655\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689570\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3230689553\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689594\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873846\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3230689559\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3230689662\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689573\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3230689608\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3230689607\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3239602461\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3239602507\", token.INT, 0)),\n\t\t\"SIOCGLINKSTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223087495\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3230689667\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947834\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947833\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222038904\", token.INT, 0)),\n\t\t\"SIOCINITIFADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3225708932\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149345659\", token.INT, 0)),\n\t\t\"SIOCSETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947959\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156947724\", token.INT, 0)),\n\t\t\"SIOCSIFADDRPREF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2157209887\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947731\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607797\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947726\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947728\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947769\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3230689589\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947736\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2156947839\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947734\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2165860682\", token.INT, 0)),\n\t\t\"SIOCSLINKSTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149345672\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3230689666\", token.INT, 0)),\n\t\t\"SIOCZIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3230951814\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_FLAGS_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"SOCK_NOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ACCEPTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_NOHEADER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_OVERFLOWED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYSCTL_VERSION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_0\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_MASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BREAK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"454\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXTATTRCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"462\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"463\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"464\", token.INT, 0)),\n\t\t\"SYS_FCHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FEXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"465\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"380\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"SYS_FKTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"383\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"377\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"440\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"466\", token.INT, 0)),\n\t\t\"SYS_FSTATVFS1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FSYNC_RANGE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMENS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"472\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS_GETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"395\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"445\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"418\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETVFSSTAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"378\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_KQUEUE1\":                       reflect.ValueOf(constant.MakeFromLiteral(\"455\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_LCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"379\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"457\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"381\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"382\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"441\", token.INT, 0)),\n\t\t\"SYS_LUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"461\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"459\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"460\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MODCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"444\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_NTP_ADJTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_NTP_GETTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"468\", token.INT, 0)),\n\t\t\"SYS_PACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"456\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"453\", token.INT, 0)),\n\t\t\"SYS_PMC_CONTROL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_PMC_GET_INFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_POLLTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"437\", token.INT, 0)),\n\t\t\"SYS_POSIX_FADVISE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_POSIX_SPAWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"474\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_PSET_ASSIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_PSET_CREATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_PSET_DESTROY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_RASCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"469\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"475\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"458\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_SEMCONFIG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"476\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"419\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"375\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"443\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGQUEUEINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SSTK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_STAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_STATVFS1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_SWAPCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"470\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":              reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"447\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"446\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"471\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"467\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"420\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_UUIDGEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_VADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"449\", token.INT, 0)),\n\t\t\"SYS_WAIT6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"481\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS__LWP_CONTINUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS__LWP_CREATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS__LWP_CTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS__LWP_DETACH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS__LWP_EXIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS__LWP_GETNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS__LWP_GETPRIVATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS__LWP_KILL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS__LWP_PARK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS__LWP_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS__LWP_SETNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS__LWP_SETPRIVATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS__LWP_SUSPEND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS__LWP_UNPARK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS__LWP_UNPARK_ALL\":               reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS__LWP_WAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS__LWP_WAKEUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS__PSET_BIND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS__SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS__SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS__SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS__SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS___CLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS___GETLOGIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS___POSIX_CHOWN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS___POSIX_FCHOWN\":                reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS___POSIX_LCHOWN\":                reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS___POSIX_RENAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS___QUOTACTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"473\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"442\", token.INT, 0)),\n\t\t\"SYS___SETLOGIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS___SIGACTION_SIGTRAMP\":          reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS___SIGTIMEDWAIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_ARCH1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"S_ARCH2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFWHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"57344\", token.INT, 0)),\n\t\t\"S_IREAD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISTXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CONGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_KEEPINIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDCDTIMESTAMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074558040\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLAG_CDTRCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCFLAG_CLOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCFLAG_CRTSCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCFLAG_MDMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCFLAG_SOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033757\", token.INT, 0)),\n\t\t\"TIOCGLINED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1075868738\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGQSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033793\", token.INT, 0)),\n\t\t\"TIOCGRANTPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536900679\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1208513606\", token.INT, 0)),\n\t\t\"TIOCPTSNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1208513608\", token.INT, 0)),\n\t\t\"TIOCRCVFRAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147775557\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775580\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900703\", token.INT, 0)),\n\t\t\"TIOCSLINED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149610563\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSQSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775616\", token.INT, 0)),\n\t\t\"TIOCSSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775589\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TIOCXMTFRAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147775556\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WALL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WALLSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WALTSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCLONE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"WNOZOMBIE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"WOPTSCHECKED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                   reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                  reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":               reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                  reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfTimeval\":               reflect.ValueOf((*syscall.BpfTimeval)(nil)),\n\t\t\"BpfVersion\":               reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                  reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                     reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":               reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                   reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                    reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                    reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                  reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                     reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":             reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                   reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":              reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                 reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":         reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                   reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                 reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":             reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":     reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":         reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"Iovec\":                    reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                 reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                   reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Mclpool\":                  reflect.ValueOf((*syscall.Mclpool)(nil)),\n\t\t\"Msghdr\":                   reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                 reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                  reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":              reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":           reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":      reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":         reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":         reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":          reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                   reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":             reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":           reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                 reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                   reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                   reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                 reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":         reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":            reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":            reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":             reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":     reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                   reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                 reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":              reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Sysctlnode\":               reflect.ValueOf((*syscall.Sysctlnode)(nil)),\n\t\t\"Termios\":                  reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                 reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                  reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":               reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_netbsd_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_ARP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_MPLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FRELAY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_STRIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B460800\":                           reflect.ValueOf(constant.MakeFromLiteral(\"460800\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B921600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"921600\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFEEDBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222291063\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1083196011\", token.INT, 0)),\n\t\t\"BIOCGFEEDBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020988\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074807419\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020984\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1082147439\", token.INT, 0)),\n\t\t\"BIOCGSTATSOLD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762806\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2156937836\", token.INT, 0)),\n\t\t\"BIOCSFEEDBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148549242\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762809\", token.INT, 0)),\n\t\t\"BIOCSTCPF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148549234\", token.INT, 0)),\n\t\t\"BIOCSUDPF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148549235\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DFLTBUFSIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_CSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_PID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CTL_QUERY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DIOCBSFLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536896632\", token.INT, 0)),\n\t\t\"DLT_A429\":                          reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"DLT_A653_ICM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"DLT_AIRONET_HEADER\":                reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_AOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_AX25_KISS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4\":              reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4_WITH_PHDR\":    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"DLT_CAN20B\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"DLT_CAN_SOCKETCAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"DLT_DECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FC_2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"DLT_FC_2_WITH_FRAME_DELIMS\":        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FLEXRAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_FRELAY_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                         reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                         reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_ABIS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_UM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"DLT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":          reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_LINUX\":            reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NONASK_PHY\":       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS_RADIO\":      reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"DLT_IPMB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"DLT_IPMB_LINUX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPV4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"DLT_IPV6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ISM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":               reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":              reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":             reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":              reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"DLT_LAPB_WITH_DIR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"DLT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"DLT_LIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"DLT_LINUX_EVDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MFR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"DLT_MOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAIF1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RAWAF_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35913728\", token.INT, 0)),\n\t\t\"DLT_RIO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SITA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":             reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"DLT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX_MMAPPED\":             reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"DLT_WIHART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"DLT_X2E_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"DLT_X2E_XORAYA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"EMUL_LINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_LINUX32\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"EMUL_MAXID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODATA\":                           reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                             reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                            reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETHERCAP_JUMBO_MTU\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERCAP_VLAN_HWTAGGING\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHERCAP_VLAN_MTU\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETHERMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"ETHERMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1500\", token.INT, 0)),\n\t\t\"ETHERMTU_JUMBO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9000\", token.INT, 0)),\n\t\t\"ETHERTYPE_8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERTYPE_AARP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETHERTYPE_ACCTON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33680\", token.INT, 0)),\n\t\t\"ETHERTYPE_AEONIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32822\", token.INT, 0)),\n\t\t\"ETHERTYPE_ALPHA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33098\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMBER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24584\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMOEBA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33093\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33015\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLODOMAIN\":            reflect.ValueOf(constant.MakeFromLiteral(\"32793\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLETALK\":               reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLITEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"32967\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARGONAUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"32826\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETHERTYPE_AT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATALK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATOMIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34527\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32873\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATTSTANFORD\":             reflect.ValueOf(constant.MakeFromLiteral(\"32776\", token.INT, 0)),\n\t\t\"ETHERTYPE_AUTOPHON\":                reflect.ValueOf(constant.MakeFromLiteral(\"32874\", token.INT, 0)),\n\t\t\"ETHERTYPE_AXIS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34902\", token.INT, 0)),\n\t\t\"ETHERTYPE_BCLOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36867\", token.INT, 0)),\n\t\t\"ETHERTYPE_BOFL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33026\", token.INT, 0)),\n\t\t\"ETHERTYPE_CABLETRON\":               reflect.ValueOf(constant.MakeFromLiteral(\"28724\", token.INT, 0)),\n\t\t\"ETHERTYPE_CHAOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2052\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMDESIGN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32876\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMPUGRAPHIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"32877\", token.INT, 0)),\n\t\t\"ETHERTYPE_COUNTERPOINT\":            reflect.ValueOf(constant.MakeFromLiteral(\"32866\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32772\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUSVLN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32771\", token.INT, 0)),\n\t\t\"ETHERTYPE_DCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4660\", token.INT, 0)),\n\t\t\"ETHERTYPE_DDE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32891\", token.INT, 0)),\n\t\t\"ETHERTYPE_DEBNI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43690\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32840\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECCUST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32828\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32830\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECEXPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32833\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLTM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32831\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECMUMPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"24585\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECNETBIOS\":              reflect.ValueOf(constant.MakeFromLiteral(\"32832\", token.INT, 0)),\n\t\t\"ETHERTYPE_DELTACON\":                reflect.ValueOf(constant.MakeFromLiteral(\"34526\", token.INT, 0)),\n\t\t\"ETHERTYPE_DIDDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17185\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG1\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1632\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1633\", token.INT, 0)),\n\t\t\"ETHERTYPE_DN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETHERTYPE_DOGFIGHT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6537\", token.INT, 0)),\n\t\t\"ETHERTYPE_DSMD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32825\", token.INT, 0)),\n\t\t\"ETHERTYPE_ECMA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2051\", token.INT, 0)),\n\t\t\"ETHERTYPE_ENCRYPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32829\", token.INT, 0)),\n\t\t\"ETHERTYPE_ES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32861\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXCELAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32784\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXPERDATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"32841\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33094\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLOWCONTROL\":             reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETHERTYPE_FRARP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2056\", token.INT, 0)),\n\t\t\"ETHERTYPE_GENDYN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32872\", token.INT, 0)),\n\t\t\"ETHERTYPE_HAYES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_HIPPI_FP\":                reflect.ValueOf(constant.MakeFromLiteral(\"33152\", token.INT, 0)),\n\t\t\"ETHERTYPE_HITACHI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34848\", token.INT, 0)),\n\t\t\"ETHERTYPE_HP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32773\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUPAT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19522\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBLDIAG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16972\", token.INT, 0)),\n\t\t\"ETHERTYPE_IP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPAS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34668\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPXNEW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32823\", token.INT, 0)),\n\t\t\"ETHERTYPE_KALPANA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34178\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANBRIDGE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32824\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANPROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"34952\", token.INT, 0)),\n\t\t\"ETHERTYPE_LAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETHERTYPE_LBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LITTLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOGICRAFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"33096\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_MATRA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32890\", token.INT, 0)),\n\t\t\"ETHERTYPE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ETHERTYPE_MERIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32892\", token.INT, 0)),\n\t\t\"ETHERTYPE_MICP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34618\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPDL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOTOROLA\":                reflect.ValueOf(constant.MakeFromLiteral(\"33165\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS_MCAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETHERTYPE_MUMPS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33087\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15364\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLAIM\":                reflect.ValueOf(constant.MakeFromLiteral(\"15369\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLREQ\":                reflect.ValueOf(constant.MakeFromLiteral(\"15365\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLRSP\":                reflect.ValueOf(constant.MakeFromLiteral(\"15366\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCREQ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15362\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCRSP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15363\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15367\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDGB\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15368\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDLTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15370\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15372\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15371\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15373\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPSCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15361\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPVCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15360\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2050\", token.INT, 0)),\n\t\t\"ETHERTYPE_NCD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33097\", token.INT, 0)),\n\t\t\"ETHERTYPE_NESTAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32774\", token.INT, 0)),\n\t\t\"ETHERTYPE_NETBEUI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33169\", token.INT, 0)),\n\t\t\"ETHERTYPE_NOVELL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33080\", token.INT, 0)),\n\t\t\"ETHERTYPE_NS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1537\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSCOMPAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2055\", token.INT, 0)),\n\t\t\"ETHERTYPE_NTRAILER\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28679\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9NET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28681\", token.INT, 0)),\n\t\t\"ETHERTYPE_PACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32966\", token.INT, 0)),\n\t\t\"ETHERTYPE_PAE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETHERTYPE_PCS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16962\", token.INT, 0)),\n\t\t\"ETHERTYPE_PLANNING\":                reflect.ValueOf(constant.MakeFromLiteral(\"32836\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34827\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOEDISC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETHERTYPE_PRIMENTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28721\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUPAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_RACAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28720\", token.INT, 0)),\n\t\t\"ETHERTYPE_RATIONAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"33104\", token.INT, 0)),\n\t\t\"ETHERTYPE_RAWFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25945\", token.INT, 0)),\n\t\t\"ETHERTYPE_RCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6549\", token.INT, 0)),\n\t\t\"ETHERTYPE_RDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34617\", token.INT, 0)),\n\t\t\"ETHERTYPE_RETIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33010\", token.INT, 0)),\n\t\t\"ETHERTYPE_REVARP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETHERTYPE_SCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECTRA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34523\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECUREDATA\":              reflect.ValueOf(constant.MakeFromLiteral(\"34669\", token.INT, 0)),\n\t\t\"ETHERTYPE_SGITW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33150\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_BOUNCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32790\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_DIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32787\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_NETGAMES\":             reflect.ValueOf(constant.MakeFromLiteral(\"32788\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_RESV\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32789\", token.INT, 0)),\n\t\t\"ETHERTYPE_SIMNET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21000\", token.INT, 0)),\n\t\t\"ETHERTYPE_SLOWPROTOCOLS\":           reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32981\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33100\", token.INT, 0)),\n\t\t\"ETHERTYPE_SONIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64245\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPIDER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32927\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPRITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"ETHERTYPE_STP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33153\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARIS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33067\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARISMC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34091\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPCOMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34667\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36866\", token.INT, 0)),\n\t\t\"ETHERTYPE_TEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33103\", token.INT, 0)),\n\t\t\"ETHERTYPE_TIGAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32815\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRANSETHER\":              reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETHERTYPE_TYMSHARE\":                reflect.ValueOf(constant.MakeFromLiteral(\"32814\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBBST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28677\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDEBUG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2304\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDIAGLOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"28674\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28672\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNIU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28673\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNMC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28675\", token.INT, 0)),\n\t\t\"ETHERTYPE_VALID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5632\", token.INT, 0)),\n\t\t\"ETHERTYPE_VARIAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VAXELN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32827\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEECO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32871\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEXP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32859\", token.INT, 0)),\n\t\t\"ETHERTYPE_VGLAB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33073\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESECHO\":               reflect.ValueOf(constant.MakeFromLiteral(\"2991\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESLOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"2990\", token.INT, 0)),\n\t\t\"ETHERTYPE_VITAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65280\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLTLMAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32896\", token.INT, 0)),\n\t\t\"ETHERTYPE_VPROD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32860\", token.INT, 0)),\n\t\t\"ETHERTYPE_VURESERVED\":              reflect.ValueOf(constant.MakeFromLiteral(\"33095\", token.INT, 0)),\n\t\t\"ETHERTYPE_WATERLOO\":                reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_WELLFLEET\":               reflect.ValueOf(constant.MakeFromLiteral(\"33027\", token.INT, 0)),\n\t\t\"ETHERTYPE_X25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETHERTYPE_X75\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2049\", token.INT, 0)),\n\t\t\"ETHERTYPE_XNSSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36865\", token.INT, 0)),\n\t\t\"ETHERTYPE_XTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33149\", token.INT, 0)),\n\t\t\"ETHER_ADDR_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETHER_CRC_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_BE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79764918\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_LE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3988292384\", token.INT, 0)),\n\t\t\"ETHER_HDR_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1518\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN_JUMBO\":               reflect.ValueOf(constant.MakeFromLiteral(\"9018\", token.INT, 0)),\n\t\t\"ETHER_MIN_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ETHER_PPPOE_ENCAP_LEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETHER_TYPE_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_VLAN_ENCAP_LEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETIME\":                             reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_CLOSEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_FSCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"F_FSDIRMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1879048192\", token.INT, 0)),\n\t\t\"F_FSIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"F_FSINOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"805306368\", token.INT, 0)),\n\t\t\"F_FSOUT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"F_FSPRIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"F_FSVOID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETNOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_MAXFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_PARAM_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"F_PARAM_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETNOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36690\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAMCHANNEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LINEGROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_PON155\":                        reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"IFT_PON622\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_Q2931\":                         reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SIPSIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"IFT_SIPTG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TELINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VIRTUALTG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"IFT_VOICEDID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEEMFGD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFGDEANA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERCABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6_ICMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VRRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_EF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ERRORMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINFRAGSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_SPACEAVAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_16MB\":                reflect.ValueOf(constant.MakeFromLiteral(\"402653184\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_1TB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"671088640\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_256TB\":               reflect.ValueOf(constant.MakeFromLiteral(\"805306368\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_4GB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_64KB\":                reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_64PB\":                reflect.ValueOf(constant.MakeFromLiteral(\"939524096\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_SHIFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_INHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_INHERIT_COPY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_DEFAULT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_DONATE_COPY\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_INHERIT_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_INHERIT_SHARE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_TRYFIXED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_WIRED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_BCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CONTROLMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_IOVUSRSPACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"MSG_LENUSRSPACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"MSG_MCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_NAMEMBUF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MSG_NBIO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_USERFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"511\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_OIFLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_OOIFLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OFIOGETBMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221513850\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_ALT_IO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_DSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOSIGPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PRI_IOFLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_TAG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_TAG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_ANNOUNCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_CLONED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_MASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_SRC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_CHGADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_LLINFO_UPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_OIFINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_OOIFINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_SETGATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_CREDS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                            reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947761\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151182858\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860636\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947762\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151182859\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156947737\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947785\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860638\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873915\", token.INT, 0)),\n\t\t\"SIOCGETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3230689784\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223352628\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223876915\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3230689569\", token.INT, 0)),\n\t\t\"SIOCGIFADDRPREF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3231213856\", token.INT, 0)),\n\t\t\"SIOCGIFALIAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3225446683\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689571\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349622\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222300966\", token.INT, 0)),\n\t\t\"SIOCGIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3231213957\", token.INT, 0)),\n\t\t\"SIOCGIFDLT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3230689655\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689570\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3230689553\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689594\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3224398134\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3230689559\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3230689662\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689573\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3230689608\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3230689607\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3239602461\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3239602507\", token.INT, 0)),\n\t\t\"SIOCGLINKSTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873927\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3230689667\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947834\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947833\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222301048\", token.INT, 0)),\n\t\t\"SIOCINITIFADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3228592516\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132091\", token.INT, 0)),\n\t\t\"SIOCSETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947959\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156947724\", token.INT, 0)),\n\t\t\"SIOCSIFADDRPREF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2157472031\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947731\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607797\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947726\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947728\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947769\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3230689589\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947736\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2156947839\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947734\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2165860682\", token.INT, 0)),\n\t\t\"SIOCSLINKSTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132104\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3230689666\", token.INT, 0)),\n\t\t\"SIOCZIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3231213958\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_FLAGS_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"SOCK_NOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ACCEPTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_NOHEADER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_OVERFLOWED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYSCTL_VERSION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_0\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_MASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BREAK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"454\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXTATTRCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"462\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"463\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"464\", token.INT, 0)),\n\t\t\"SYS_FCHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FEXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"465\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"380\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"SYS_FKTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"383\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"377\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"440\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"466\", token.INT, 0)),\n\t\t\"SYS_FSTATVFS1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FSYNC_RANGE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMENS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"472\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS_GETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"395\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"445\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"418\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETVFSSTAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"378\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_KQUEUE1\":                       reflect.ValueOf(constant.MakeFromLiteral(\"455\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_LCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"379\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"457\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"381\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"382\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"441\", token.INT, 0)),\n\t\t\"SYS_LUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"461\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"459\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"460\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MODCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"444\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_NTP_ADJTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_NTP_GETTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"468\", token.INT, 0)),\n\t\t\"SYS_PACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"456\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"453\", token.INT, 0)),\n\t\t\"SYS_PMC_CONTROL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_PMC_GET_INFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_POLLTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"437\", token.INT, 0)),\n\t\t\"SYS_POSIX_FADVISE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_POSIX_SPAWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"474\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_PSET_ASSIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_PSET_CREATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_PSET_DESTROY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_RASCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"469\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"475\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"458\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_SEMCONFIG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"476\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"419\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"375\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"443\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGQUEUEINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SSTK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_STAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_STATVFS1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_SWAPCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"470\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":              reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"447\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"446\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"471\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"467\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"420\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_UUIDGEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_VADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"449\", token.INT, 0)),\n\t\t\"SYS_WAIT6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"481\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS__LWP_CONTINUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS__LWP_CREATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS__LWP_CTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS__LWP_DETACH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS__LWP_EXIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS__LWP_GETNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS__LWP_GETPRIVATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS__LWP_KILL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS__LWP_PARK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS__LWP_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS__LWP_SETNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS__LWP_SETPRIVATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS__LWP_SUSPEND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS__LWP_UNPARK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS__LWP_UNPARK_ALL\":               reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS__LWP_WAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS__LWP_WAKEUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS__PSET_BIND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS__SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS__SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS__SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS__SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS___CLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS___GETLOGIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS___POSIX_CHOWN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS___POSIX_FCHOWN\":                reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS___POSIX_LCHOWN\":                reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS___POSIX_RENAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS___QUOTACTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"473\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"442\", token.INT, 0)),\n\t\t\"SYS___SETLOGIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS___SIGACTION_SIGTRAMP\":          reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS___SIGTIMEDWAIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_ARCH1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"S_ARCH2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFWHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"57344\", token.INT, 0)),\n\t\t\"S_IREAD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISTXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_LOGIN_SET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CONGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_KEEPINIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDCDTIMESTAMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074820184\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLAG_CDTRCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCFLAG_CLOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCFLAG_CRTSCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCFLAG_MDMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCFLAG_SOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033757\", token.INT, 0)),\n\t\t\"TIOCGLINED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1075868738\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGQSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033793\", token.INT, 0)),\n\t\t\"TIOCGRANTPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536900679\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1076393030\", token.INT, 0)),\n\t\t\"TIOCPTSNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1076393032\", token.INT, 0)),\n\t\t\"TIOCRCVFRAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148037701\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775580\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900703\", token.INT, 0)),\n\t\t\"TIOCSLINED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149610563\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSQSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775616\", token.INT, 0)),\n\t\t\"TIOCSSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775589\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TIOCXMTFRAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148037700\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WALL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WALLSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WALTSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCLONE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"WNOZOMBIE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"WOPTSCHECKED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                   reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                  reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":               reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                  reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfTimeval\":               reflect.ValueOf((*syscall.BpfTimeval)(nil)),\n\t\t\"BpfVersion\":               reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                  reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                     reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":               reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                   reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                    reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                    reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                  reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                     reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":             reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                   reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":              reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                 reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":         reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                   reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                 reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":             reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":     reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":         reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"Iovec\":                    reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                 reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                   reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Mclpool\":                  reflect.ValueOf((*syscall.Mclpool)(nil)),\n\t\t\"Msghdr\":                   reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                 reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                  reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":              reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":           reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":      reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":         reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":         reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":          reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                   reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":             reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":           reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                 reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                   reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                   reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                 reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":         reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":            reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":            reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":             reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":     reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                   reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                 reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":              reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Sysctlnode\":               reflect.ValueOf((*syscall.Sysctlnode)(nil)),\n\t\t\"Termios\":                  reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                 reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                  reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":               reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_openbsd_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ENCAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_KEY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_MPLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FRELAY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDIRFILT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020988\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3221766779\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGFILDROP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020984\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020979\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074545262\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887926\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDIRFILT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762810\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148024935\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSETWF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148024951\", token.INT, 0)),\n\t\t\"BIOCSFILDROP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762809\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147762802\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148287085\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIRECTION_IN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_DIRECTION_OUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DIOCOSFPFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536888398\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EIPSEC\":                            reflect.ValueOf(syscall.EIPSEC),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                       reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMT_TAGOVF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_ENABLED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_NATIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENDRUNDISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOMEDIUM\":                         reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETHERMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"ETHERMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1500\", token.INT, 0)),\n\t\t\"ETHERTYPE_8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERTYPE_AARP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETHERTYPE_ACCTON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33680\", token.INT, 0)),\n\t\t\"ETHERTYPE_AEONIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32822\", token.INT, 0)),\n\t\t\"ETHERTYPE_ALPHA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33098\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMBER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24584\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMOEBA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33093\", token.INT, 0)),\n\t\t\"ETHERTYPE_AOE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33015\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLODOMAIN\":            reflect.ValueOf(constant.MakeFromLiteral(\"32793\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLETALK\":               reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLITEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"32967\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARGONAUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"32826\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETHERTYPE_AT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATALK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATOMIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34527\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32873\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATTSTANFORD\":             reflect.ValueOf(constant.MakeFromLiteral(\"32776\", token.INT, 0)),\n\t\t\"ETHERTYPE_AUTOPHON\":                reflect.ValueOf(constant.MakeFromLiteral(\"32874\", token.INT, 0)),\n\t\t\"ETHERTYPE_AXIS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34902\", token.INT, 0)),\n\t\t\"ETHERTYPE_BCLOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36867\", token.INT, 0)),\n\t\t\"ETHERTYPE_BOFL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33026\", token.INT, 0)),\n\t\t\"ETHERTYPE_CABLETRON\":               reflect.ValueOf(constant.MakeFromLiteral(\"28724\", token.INT, 0)),\n\t\t\"ETHERTYPE_CHAOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2052\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMDESIGN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32876\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMPUGRAPHIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"32877\", token.INT, 0)),\n\t\t\"ETHERTYPE_COUNTERPOINT\":            reflect.ValueOf(constant.MakeFromLiteral(\"32866\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32772\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUSVLN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32771\", token.INT, 0)),\n\t\t\"ETHERTYPE_DCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4660\", token.INT, 0)),\n\t\t\"ETHERTYPE_DDE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32891\", token.INT, 0)),\n\t\t\"ETHERTYPE_DEBNI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43690\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32840\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECCUST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32828\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32830\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECEXPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32833\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLTM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32831\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECMUMPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"24585\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECNETBIOS\":              reflect.ValueOf(constant.MakeFromLiteral(\"32832\", token.INT, 0)),\n\t\t\"ETHERTYPE_DELTACON\":                reflect.ValueOf(constant.MakeFromLiteral(\"34526\", token.INT, 0)),\n\t\t\"ETHERTYPE_DIDDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17185\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG1\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1632\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1633\", token.INT, 0)),\n\t\t\"ETHERTYPE_DN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETHERTYPE_DOGFIGHT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6537\", token.INT, 0)),\n\t\t\"ETHERTYPE_DSMD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32825\", token.INT, 0)),\n\t\t\"ETHERTYPE_ECMA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2051\", token.INT, 0)),\n\t\t\"ETHERTYPE_ENCRYPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32829\", token.INT, 0)),\n\t\t\"ETHERTYPE_ES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32861\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXCELAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32784\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXPERDATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"32841\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33094\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLOWCONTROL\":             reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETHERTYPE_FRARP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2056\", token.INT, 0)),\n\t\t\"ETHERTYPE_GENDYN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32872\", token.INT, 0)),\n\t\t\"ETHERTYPE_HAYES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_HIPPI_FP\":                reflect.ValueOf(constant.MakeFromLiteral(\"33152\", token.INT, 0)),\n\t\t\"ETHERTYPE_HITACHI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34848\", token.INT, 0)),\n\t\t\"ETHERTYPE_HP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32773\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUPAT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19522\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBLDIAG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16972\", token.INT, 0)),\n\t\t\"ETHERTYPE_IP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPAS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34668\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPXNEW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32823\", token.INT, 0)),\n\t\t\"ETHERTYPE_KALPANA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34178\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANBRIDGE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32824\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANPROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"34952\", token.INT, 0)),\n\t\t\"ETHERTYPE_LAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETHERTYPE_LBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LITTLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LLDP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35020\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOGICRAFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"33096\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_MATRA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32890\", token.INT, 0)),\n\t\t\"ETHERTYPE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ETHERTYPE_MERIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32892\", token.INT, 0)),\n\t\t\"ETHERTYPE_MICP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34618\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPDL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOTOROLA\":                reflect.ValueOf(constant.MakeFromLiteral(\"33165\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS_MCAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETHERTYPE_MUMPS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33087\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15364\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLAIM\":                reflect.ValueOf(constant.MakeFromLiteral(\"15369\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLREQ\":                reflect.ValueOf(constant.MakeFromLiteral(\"15365\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLRSP\":                reflect.ValueOf(constant.MakeFromLiteral(\"15366\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCREQ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15362\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCRSP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15363\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15367\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDGB\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15368\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDLTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15370\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15372\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15371\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15373\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPSCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15361\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPVCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15360\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2050\", token.INT, 0)),\n\t\t\"ETHERTYPE_NCD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33097\", token.INT, 0)),\n\t\t\"ETHERTYPE_NESTAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32774\", token.INT, 0)),\n\t\t\"ETHERTYPE_NETBEUI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33169\", token.INT, 0)),\n\t\t\"ETHERTYPE_NOVELL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33080\", token.INT, 0)),\n\t\t\"ETHERTYPE_NS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1537\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSCOMPAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2055\", token.INT, 0)),\n\t\t\"ETHERTYPE_NTRAILER\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28679\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9NET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28681\", token.INT, 0)),\n\t\t\"ETHERTYPE_PACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32966\", token.INT, 0)),\n\t\t\"ETHERTYPE_PAE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETHERTYPE_PCS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16962\", token.INT, 0)),\n\t\t\"ETHERTYPE_PLANNING\":                reflect.ValueOf(constant.MakeFromLiteral(\"32836\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34827\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOEDISC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETHERTYPE_PRIMENTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28721\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUPAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_QINQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETHERTYPE_RACAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28720\", token.INT, 0)),\n\t\t\"ETHERTYPE_RATIONAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"33104\", token.INT, 0)),\n\t\t\"ETHERTYPE_RAWFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25945\", token.INT, 0)),\n\t\t\"ETHERTYPE_RCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6549\", token.INT, 0)),\n\t\t\"ETHERTYPE_RDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34617\", token.INT, 0)),\n\t\t\"ETHERTYPE_RETIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33010\", token.INT, 0)),\n\t\t\"ETHERTYPE_REVARP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETHERTYPE_SCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECTRA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34523\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECUREDATA\":              reflect.ValueOf(constant.MakeFromLiteral(\"34669\", token.INT, 0)),\n\t\t\"ETHERTYPE_SGITW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33150\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_BOUNCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32790\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_DIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32787\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_NETGAMES\":             reflect.ValueOf(constant.MakeFromLiteral(\"32788\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_RESV\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32789\", token.INT, 0)),\n\t\t\"ETHERTYPE_SIMNET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21000\", token.INT, 0)),\n\t\t\"ETHERTYPE_SLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32981\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33100\", token.INT, 0)),\n\t\t\"ETHERTYPE_SONIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64245\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPIDER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32927\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPRITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"ETHERTYPE_STP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33153\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARIS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33067\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARISMC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34091\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPCOMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34667\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36866\", token.INT, 0)),\n\t\t\"ETHERTYPE_TEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33103\", token.INT, 0)),\n\t\t\"ETHERTYPE_TIGAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32815\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRANSETHER\":              reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETHERTYPE_TYMSHARE\":                reflect.ValueOf(constant.MakeFromLiteral(\"32814\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBBST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28677\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDEBUG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2304\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDIAGLOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"28674\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28672\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNIU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28673\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNMC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28675\", token.INT, 0)),\n\t\t\"ETHERTYPE_VALID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5632\", token.INT, 0)),\n\t\t\"ETHERTYPE_VARIAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VAXELN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32827\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEECO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32871\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEXP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32859\", token.INT, 0)),\n\t\t\"ETHERTYPE_VGLAB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33073\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESECHO\":               reflect.ValueOf(constant.MakeFromLiteral(\"2991\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESLOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"2990\", token.INT, 0)),\n\t\t\"ETHERTYPE_VITAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65280\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLTLMAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32896\", token.INT, 0)),\n\t\t\"ETHERTYPE_VPROD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32860\", token.INT, 0)),\n\t\t\"ETHERTYPE_VURESERVED\":              reflect.ValueOf(constant.MakeFromLiteral(\"33095\", token.INT, 0)),\n\t\t\"ETHERTYPE_WATERLOO\":                reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_WELLFLEET\":               reflect.ValueOf(constant.MakeFromLiteral(\"33027\", token.INT, 0)),\n\t\t\"ETHERTYPE_X25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETHERTYPE_X75\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2049\", token.INT, 0)),\n\t\t\"ETHERTYPE_XNSSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36865\", token.INT, 0)),\n\t\t\"ETHERTYPE_XTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33149\", token.INT, 0)),\n\t\t\"ETHER_ADDR_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETHER_ALIGN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_CRC_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_BE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79764918\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_LE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3988292384\", token.INT, 0)),\n\t\t\"ETHER_HDR_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"ETHER_MAX_DIX_LEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1518\", token.INT, 0)),\n\t\t\"ETHER_MIN_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ETHER_TYPE_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_VLAN_ENCAP_LEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                         reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36434\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAMCHANNEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DUMMY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"IFT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LINEGROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_PON155\":                        reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"IFT_PON622\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_Q2931\":                         reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SIPSIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"IFT_SIPTG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TELINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VIRTUALTG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"IFT_VOICEDID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEEMFGD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFGDEANA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERCABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_RFC3021_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_RFC3021_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967294\", token.INT, 0)),\n\t\t\"IN_RFC3021_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT_INIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT_RESP\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_AUTH_LEVEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_ESP_NETWORK_LEVEL\":            reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_ESP_TRANS_LEVEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPCOMP_LEVEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_OPTIONS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PIPEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTPORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTABLE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_AUTH_LEVEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DIVERTFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_ESP_NETWORK_LEVEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_ESP_TRANS_LEVEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPCOMP_LEVEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IP_IPSECFLOWINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_AUTH\":               reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_CRED\":               reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_ID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_AUTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_CRED\":              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_ID\":                reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PIPEX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVDSTPORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RTABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LCNT_OVERLOAD_FLUSH\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_SPACEAVAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_FLAGMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8183\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_INHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_INHERIT_COPY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_DONATE_COPY\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_INHERIT_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_INHERIT_SHARE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_NOEXTEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_TRYFIXED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_BCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_MCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_STATS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_TABLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EOF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_DSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PF_FLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_MASK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4190208\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_SRCMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_LABEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_SRC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTA_SRCMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_ANNOUNCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_CLONED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1112072\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_MASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MPATH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PERMANENT_ARP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_SOURCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_USETRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DESYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MAXSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RT_TABLEID_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHR\":                            reflect.ValueOf(syscall.SIGTHR),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCAIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149869959\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2182637852\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCBRDGADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2153015612\", token.INT, 0)),\n\t\t\"SIOCBRDGADDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2153015617\", token.INT, 0)),\n\t\t\"SIOCBRDGARL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2154719565\", token.INT, 0)),\n\t\t\"SIOCBRDGDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2166909255\", token.INT, 0)),\n\t\t\"SIOCBRDGDEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2153015613\", token.INT, 0)),\n\t\t\"SIOCBRDGDELS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2153015618\", token.INT, 0)),\n\t\t\"SIOCBRDGFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2153015624\", token.INT, 0)),\n\t\t\"SIOCBRDGFRL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2154719566\", token.INT, 0)),\n\t\t\"SIOCBRDGGCACHE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222563137\", token.INT, 0)),\n\t\t\"SIOCBRDGGFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563154\", token.INT, 0)),\n\t\t\"SIOCBRDGGHT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563153\", token.INT, 0)),\n\t\t\"SIOCBRDGGIFFLGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3226757438\", token.INT, 0)),\n\t\t\"SIOCBRDGGMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563155\", token.INT, 0)),\n\t\t\"SIOCBRDGGPARAM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3225184600\", token.INT, 0)),\n\t\t\"SIOCBRDGGPRI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222563152\", token.INT, 0)),\n\t\t\"SIOCBRDGGRL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223873871\", token.INT, 0)),\n\t\t\"SIOCBRDGGSIFS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3226757436\", token.INT, 0)),\n\t\t\"SIOCBRDGGTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563142\", token.INT, 0)),\n\t\t\"SIOCBRDGIFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3226757442\", token.INT, 0)),\n\t\t\"SIOCBRDGRTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222825283\", token.INT, 0)),\n\t\t\"SIOCBRDGSADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3240651076\", token.INT, 0)),\n\t\t\"SIOCBRDGSCACHE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2148821312\", token.INT, 0)),\n\t\t\"SIOCBRDGSFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821330\", token.INT, 0)),\n\t\t\"SIOCBRDGSHT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821329\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFCOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153015637\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFFLGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153015615\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFPRIO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153015636\", token.INT, 0)),\n\t\t\"SIOCBRDGSMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821331\", token.INT, 0)),\n\t\t\"SIOCBRDGSPRI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148821328\", token.INT, 0)),\n\t\t\"SIOCBRDGSPROTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2148821338\", token.INT, 0)),\n\t\t\"SIOCBRDGSTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821317\", token.INT, 0)),\n\t\t\"SIOCBRDGSTXHC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148821337\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149869961\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607753\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2182637854\", token.INT, 0)),\n\t\t\"SIOCGETKALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222825380\", token.INT, 0)),\n\t\t\"SIOCGETLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607834\", token.INT, 0)),\n\t\t\"SIOCGETPFLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349758\", token.INT, 0)),\n\t\t\"SIOCGETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349752\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222566196\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222566195\", token.INT, 0)),\n\t\t\"SIOCGETVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349648\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFASYNCMAP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221776676\", token.INT, 0)),\n\t\t\"SIOCGIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349531\", token.INT, 0)),\n\t\t\"SIOCGIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349633\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223611787\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFGMEMB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223611786\", token.INT, 0)),\n\t\t\"SIOCGIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223611784\", token.INT, 0)),\n\t\t\"SIOCGIFHARDMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349669\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873846\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349630\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349660\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFRDOMAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349664\", token.INT, 0)),\n\t\t\"SIOCGIFRTLABEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349635\", token.INT, 0)),\n\t\t\"SIOCGIFTIMESLOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349638\", token.INT, 0)),\n\t\t\"SIOCGIFXFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349662\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3256379677\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3256379723\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYRTABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3223349666\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349673\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGSPPPPARAMS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349652\", token.INT, 0)),\n\t\t\"SIOCGVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3223349750\", token.INT, 0)),\n\t\t\"SIOCGVNETID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349671\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607802\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222038904\", token.INT, 0)),\n\t\t\"SIOCSETKALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149083555\", token.INT, 0)),\n\t\t\"SIOCSETLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607833\", token.INT, 0)),\n\t\t\"SIOCSETPFLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607933\", token.INT, 0)),\n\t\t\"SIOCSETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607927\", token.INT, 0)),\n\t\t\"SIOCSETVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607823\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFASYNCMAP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607805\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607808\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149869964\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607711\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607807\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSIFPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607835\", token.INT, 0)),\n\t\t\"SIOCSIFRDOMAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607839\", token.INT, 0)),\n\t\t\"SIOCSIFRTLABEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607810\", token.INT, 0)),\n\t\t\"SIOCSIFTIMESLOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607813\", token.INT, 0)),\n\t\t\"SIOCSIFXFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607837\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2182637898\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYRTABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2149607841\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607848\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSSPPPPARAMS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607827\", token.INT, 0)),\n\t\t\"SIOCSVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3223349749\", token.INT, 0)),\n\t\t\"SIOCSVNETID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607846\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_BINDANY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_NETPROC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4128\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_RTABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_SPLICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4131\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJFREQ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSEFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_FHSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMENS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_GETDTABLECOUNT\":                reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTHRID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MQUERY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NFSSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_OBREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_STAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_SWAPCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS___GET_TCB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS___SET_TCB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS___TFORK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS___THREXIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS___THRSIGDIVERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS___THRSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS___THRWAKEUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                          reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_NSTATES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_SACK_ENABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLAG_CLOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCFLAG_CRTSCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCFLAG_MDMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCFLAG_PPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCFLAG_SOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033757\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074558043\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775580\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775583\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775589\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148037722\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WALTSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                   reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                  reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":               reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                  reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfTimeval\":               reflect.ValueOf((*syscall.BpfTimeval)(nil)),\n\t\t\"BpfVersion\":               reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                  reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                     reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":               reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                   reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                    reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                    reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                  reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                     reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":             reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                   reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":              reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                 reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":         reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                   reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                 reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":             reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":     reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":         reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"Iovec\":                    reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                 reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                   reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Mclpool\":                  reflect.ValueOf((*syscall.Mclpool)(nil)),\n\t\t\"Msghdr\":                   reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                 reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                  reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":              reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":           reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":      reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":         reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":         reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":          reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                   reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":             reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":           reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                 reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                   reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                   reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                 reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":         reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":            reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":            reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":             reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":     reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                   reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                 reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":              reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                  reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                 reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                  reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":               reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_openbsd_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ENCAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_KEY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_MPLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FRELAY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDIRFILT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020988\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222291067\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGFILDROP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020984\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020979\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887926\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDIRFILT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762810\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSETWF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148549239\", token.INT, 0)),\n\t\t\"BIOCSFILDROP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762809\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147762802\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIRECTION_IN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_DIRECTION_OUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DIOCOSFPFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536888398\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EIPSEC\":                            reflect.ValueOf(syscall.EIPSEC),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                       reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMT_TAGOVF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_ENABLED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_NATIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENDRUNDISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOMEDIUM\":                         reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETHERMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"ETHERMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1500\", token.INT, 0)),\n\t\t\"ETHERTYPE_8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERTYPE_AARP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETHERTYPE_ACCTON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33680\", token.INT, 0)),\n\t\t\"ETHERTYPE_AEONIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32822\", token.INT, 0)),\n\t\t\"ETHERTYPE_ALPHA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33098\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMBER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24584\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMOEBA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33093\", token.INT, 0)),\n\t\t\"ETHERTYPE_AOE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33015\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLODOMAIN\":            reflect.ValueOf(constant.MakeFromLiteral(\"32793\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLETALK\":               reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLITEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"32967\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARGONAUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"32826\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETHERTYPE_AT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATALK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATOMIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34527\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32873\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATTSTANFORD\":             reflect.ValueOf(constant.MakeFromLiteral(\"32776\", token.INT, 0)),\n\t\t\"ETHERTYPE_AUTOPHON\":                reflect.ValueOf(constant.MakeFromLiteral(\"32874\", token.INT, 0)),\n\t\t\"ETHERTYPE_AXIS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34902\", token.INT, 0)),\n\t\t\"ETHERTYPE_BCLOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36867\", token.INT, 0)),\n\t\t\"ETHERTYPE_BOFL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33026\", token.INT, 0)),\n\t\t\"ETHERTYPE_CABLETRON\":               reflect.ValueOf(constant.MakeFromLiteral(\"28724\", token.INT, 0)),\n\t\t\"ETHERTYPE_CHAOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2052\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMDESIGN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32876\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMPUGRAPHIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"32877\", token.INT, 0)),\n\t\t\"ETHERTYPE_COUNTERPOINT\":            reflect.ValueOf(constant.MakeFromLiteral(\"32866\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32772\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUSVLN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32771\", token.INT, 0)),\n\t\t\"ETHERTYPE_DCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4660\", token.INT, 0)),\n\t\t\"ETHERTYPE_DDE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32891\", token.INT, 0)),\n\t\t\"ETHERTYPE_DEBNI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43690\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32840\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECCUST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32828\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32830\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECEXPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32833\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLTM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32831\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECMUMPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"24585\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECNETBIOS\":              reflect.ValueOf(constant.MakeFromLiteral(\"32832\", token.INT, 0)),\n\t\t\"ETHERTYPE_DELTACON\":                reflect.ValueOf(constant.MakeFromLiteral(\"34526\", token.INT, 0)),\n\t\t\"ETHERTYPE_DIDDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17185\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG1\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1632\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1633\", token.INT, 0)),\n\t\t\"ETHERTYPE_DN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETHERTYPE_DOGFIGHT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6537\", token.INT, 0)),\n\t\t\"ETHERTYPE_DSMD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32825\", token.INT, 0)),\n\t\t\"ETHERTYPE_ECMA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2051\", token.INT, 0)),\n\t\t\"ETHERTYPE_ENCRYPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32829\", token.INT, 0)),\n\t\t\"ETHERTYPE_ES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32861\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXCELAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32784\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXPERDATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"32841\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33094\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLOWCONTROL\":             reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETHERTYPE_FRARP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2056\", token.INT, 0)),\n\t\t\"ETHERTYPE_GENDYN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32872\", token.INT, 0)),\n\t\t\"ETHERTYPE_HAYES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_HIPPI_FP\":                reflect.ValueOf(constant.MakeFromLiteral(\"33152\", token.INT, 0)),\n\t\t\"ETHERTYPE_HITACHI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34848\", token.INT, 0)),\n\t\t\"ETHERTYPE_HP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32773\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUPAT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19522\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBLDIAG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16972\", token.INT, 0)),\n\t\t\"ETHERTYPE_IP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPAS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34668\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPXNEW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32823\", token.INT, 0)),\n\t\t\"ETHERTYPE_KALPANA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34178\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANBRIDGE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32824\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANPROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"34952\", token.INT, 0)),\n\t\t\"ETHERTYPE_LAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETHERTYPE_LBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LITTLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LLDP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35020\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOGICRAFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"33096\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_MATRA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32890\", token.INT, 0)),\n\t\t\"ETHERTYPE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ETHERTYPE_MERIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32892\", token.INT, 0)),\n\t\t\"ETHERTYPE_MICP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34618\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPDL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOTOROLA\":                reflect.ValueOf(constant.MakeFromLiteral(\"33165\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS_MCAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETHERTYPE_MUMPS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33087\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15364\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLAIM\":                reflect.ValueOf(constant.MakeFromLiteral(\"15369\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLREQ\":                reflect.ValueOf(constant.MakeFromLiteral(\"15365\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLRSP\":                reflect.ValueOf(constant.MakeFromLiteral(\"15366\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCREQ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15362\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCRSP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15363\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15367\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDGB\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15368\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDLTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15370\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15372\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15371\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15373\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPSCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15361\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPVCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15360\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2050\", token.INT, 0)),\n\t\t\"ETHERTYPE_NCD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33097\", token.INT, 0)),\n\t\t\"ETHERTYPE_NESTAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32774\", token.INT, 0)),\n\t\t\"ETHERTYPE_NETBEUI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33169\", token.INT, 0)),\n\t\t\"ETHERTYPE_NOVELL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33080\", token.INT, 0)),\n\t\t\"ETHERTYPE_NS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1537\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSCOMPAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2055\", token.INT, 0)),\n\t\t\"ETHERTYPE_NTRAILER\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28679\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9NET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28681\", token.INT, 0)),\n\t\t\"ETHERTYPE_PACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32966\", token.INT, 0)),\n\t\t\"ETHERTYPE_PAE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETHERTYPE_PCS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16962\", token.INT, 0)),\n\t\t\"ETHERTYPE_PLANNING\":                reflect.ValueOf(constant.MakeFromLiteral(\"32836\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34827\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOEDISC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETHERTYPE_PRIMENTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28721\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUPAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_QINQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETHERTYPE_RACAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28720\", token.INT, 0)),\n\t\t\"ETHERTYPE_RATIONAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"33104\", token.INT, 0)),\n\t\t\"ETHERTYPE_RAWFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25945\", token.INT, 0)),\n\t\t\"ETHERTYPE_RCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6549\", token.INT, 0)),\n\t\t\"ETHERTYPE_RDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34617\", token.INT, 0)),\n\t\t\"ETHERTYPE_RETIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33010\", token.INT, 0)),\n\t\t\"ETHERTYPE_REVARP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETHERTYPE_SCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECTRA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34523\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECUREDATA\":              reflect.ValueOf(constant.MakeFromLiteral(\"34669\", token.INT, 0)),\n\t\t\"ETHERTYPE_SGITW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33150\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_BOUNCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32790\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_DIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32787\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_NETGAMES\":             reflect.ValueOf(constant.MakeFromLiteral(\"32788\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_RESV\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32789\", token.INT, 0)),\n\t\t\"ETHERTYPE_SIMNET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21000\", token.INT, 0)),\n\t\t\"ETHERTYPE_SLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32981\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33100\", token.INT, 0)),\n\t\t\"ETHERTYPE_SONIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64245\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPIDER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32927\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPRITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"ETHERTYPE_STP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33153\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARIS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33067\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARISMC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34091\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPCOMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34667\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36866\", token.INT, 0)),\n\t\t\"ETHERTYPE_TEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33103\", token.INT, 0)),\n\t\t\"ETHERTYPE_TIGAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32815\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRANSETHER\":              reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETHERTYPE_TYMSHARE\":                reflect.ValueOf(constant.MakeFromLiteral(\"32814\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBBST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28677\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDEBUG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2304\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDIAGLOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"28674\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28672\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNIU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28673\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNMC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28675\", token.INT, 0)),\n\t\t\"ETHERTYPE_VALID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5632\", token.INT, 0)),\n\t\t\"ETHERTYPE_VARIAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VAXELN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32827\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEECO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32871\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEXP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32859\", token.INT, 0)),\n\t\t\"ETHERTYPE_VGLAB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33073\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESECHO\":               reflect.ValueOf(constant.MakeFromLiteral(\"2991\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESLOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"2990\", token.INT, 0)),\n\t\t\"ETHERTYPE_VITAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65280\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLTLMAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32896\", token.INT, 0)),\n\t\t\"ETHERTYPE_VPROD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32860\", token.INT, 0)),\n\t\t\"ETHERTYPE_VURESERVED\":              reflect.ValueOf(constant.MakeFromLiteral(\"33095\", token.INT, 0)),\n\t\t\"ETHERTYPE_WATERLOO\":                reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_WELLFLEET\":               reflect.ValueOf(constant.MakeFromLiteral(\"33027\", token.INT, 0)),\n\t\t\"ETHERTYPE_X25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETHERTYPE_X75\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2049\", token.INT, 0)),\n\t\t\"ETHERTYPE_XNSSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36865\", token.INT, 0)),\n\t\t\"ETHERTYPE_XTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33149\", token.INT, 0)),\n\t\t\"ETHER_ADDR_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETHER_ALIGN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_CRC_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_BE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79764918\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_LE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3988292384\", token.INT, 0)),\n\t\t\"ETHER_HDR_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"ETHER_MAX_DIX_LEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1518\", token.INT, 0)),\n\t\t\"ETHER_MIN_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ETHER_TYPE_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_VLAN_ENCAP_LEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                         reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36434\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAMCHANNEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DUMMY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"IFT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LINEGROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_PON155\":                        reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"IFT_PON622\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_Q2931\":                         reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SIPSIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"IFT_SIPTG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TELINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VIRTUALTG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"IFT_VOICEDID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEEMFGD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFGDEANA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERCABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_RFC3021_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_RFC3021_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967294\", token.INT, 0)),\n\t\t\"IN_RFC3021_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT_INIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT_RESP\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_AUTH_LEVEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_ESP_NETWORK_LEVEL\":            reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_ESP_TRANS_LEVEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPCOMP_LEVEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_OPTIONS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PIPEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTPORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTABLE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_AUTH_LEVEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DIVERTFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_ESP_NETWORK_LEVEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_ESP_TRANS_LEVEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPCOMP_LEVEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IP_IPSECFLOWINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_AUTH\":               reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_CRED\":               reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_ID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_AUTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_CRED\":              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_ID\":                reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PIPEX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVDSTPORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RTABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LCNT_OVERLOAD_FLUSH\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_SPACEAVAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_FLAGMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8183\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_INHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_INHERIT_COPY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_DONATE_COPY\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_INHERIT_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_INHERIT_SHARE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_NOEXTEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_TRYFIXED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_BCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_MCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_STATS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_TABLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EOF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_DSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PF_FLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_SRCMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_LABEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_SRC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTA_SRCMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_ANNOUNCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_CLONED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1112072\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_MASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MPATH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PERMANENT_ARP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_SOURCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_USETRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DESYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MAXSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RT_TABLEID_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHR\":                            reflect.ValueOf(syscall.SIGTHR),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCAIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132103\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2182637852\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCBRDGADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2153277756\", token.INT, 0)),\n\t\t\"SIOCBRDGADDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2153277761\", token.INT, 0)),\n\t\t\"SIOCBRDGARL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2154719565\", token.INT, 0)),\n\t\t\"SIOCBRDGDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2166909255\", token.INT, 0)),\n\t\t\"SIOCBRDGDEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2153277757\", token.INT, 0)),\n\t\t\"SIOCBRDGDELS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2153277762\", token.INT, 0)),\n\t\t\"SIOCBRDGFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2153277768\", token.INT, 0)),\n\t\t\"SIOCBRDGFRL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2154719566\", token.INT, 0)),\n\t\t\"SIOCBRDGGCACHE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222563137\", token.INT, 0)),\n\t\t\"SIOCBRDGGFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563154\", token.INT, 0)),\n\t\t\"SIOCBRDGGHT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563153\", token.INT, 0)),\n\t\t\"SIOCBRDGGIFFLGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3227019582\", token.INT, 0)),\n\t\t\"SIOCBRDGGMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563155\", token.INT, 0)),\n\t\t\"SIOCBRDGGPARAM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3225446744\", token.INT, 0)),\n\t\t\"SIOCBRDGGPRI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222563152\", token.INT, 0)),\n\t\t\"SIOCBRDGGRL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3224398159\", token.INT, 0)),\n\t\t\"SIOCBRDGGSIFS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3227019580\", token.INT, 0)),\n\t\t\"SIOCBRDGGTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563142\", token.INT, 0)),\n\t\t\"SIOCBRDGIFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3227019586\", token.INT, 0)),\n\t\t\"SIOCBRDGRTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349571\", token.INT, 0)),\n\t\t\"SIOCBRDGSADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3240651076\", token.INT, 0)),\n\t\t\"SIOCBRDGSCACHE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2148821312\", token.INT, 0)),\n\t\t\"SIOCBRDGSFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821330\", token.INT, 0)),\n\t\t\"SIOCBRDGSHT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821329\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFCOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153277781\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFFLGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153277759\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFPRIO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153277780\", token.INT, 0)),\n\t\t\"SIOCBRDGSMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821331\", token.INT, 0)),\n\t\t\"SIOCBRDGSPRI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148821328\", token.INT, 0)),\n\t\t\"SIOCBRDGSPROTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2148821338\", token.INT, 0)),\n\t\t\"SIOCBRDGSTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821317\", token.INT, 0)),\n\t\t\"SIOCBRDGSTXHC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148821337\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132105\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607753\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2182637854\", token.INT, 0)),\n\t\t\"SIOCGETKALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222825380\", token.INT, 0)),\n\t\t\"SIOCGETLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607834\", token.INT, 0)),\n\t\t\"SIOCGETPFLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349758\", token.INT, 0)),\n\t\t\"SIOCGETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349752\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223352628\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223876915\", token.INT, 0)),\n\t\t\"SIOCGETVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349648\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFASYNCMAP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222300964\", token.INT, 0)),\n\t\t\"SIOCGIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349531\", token.INT, 0)),\n\t\t\"SIOCGIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349633\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873931\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFGMEMB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873930\", token.INT, 0)),\n\t\t\"SIOCGIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873928\", token.INT, 0)),\n\t\t\"SIOCGIFHARDMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349669\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3224398134\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349630\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349660\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFRDOMAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349664\", token.INT, 0)),\n\t\t\"SIOCGIFRTLABEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349635\", token.INT, 0)),\n\t\t\"SIOCGIFTIMESLOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349638\", token.INT, 0)),\n\t\t\"SIOCGIFXFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349662\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3256379677\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3256379723\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYRTABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3223349666\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349673\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGSPPPPARAMS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349652\", token.INT, 0)),\n\t\t\"SIOCGVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3223349750\", token.INT, 0)),\n\t\t\"SIOCGVNETID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349671\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607802\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222301048\", token.INT, 0)),\n\t\t\"SIOCSETKALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149083555\", token.INT, 0)),\n\t\t\"SIOCSETLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607833\", token.INT, 0)),\n\t\t\"SIOCSETPFLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607933\", token.INT, 0)),\n\t\t\"SIOCSETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607927\", token.INT, 0)),\n\t\t\"SIOCSETVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607823\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFASYNCMAP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607805\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607808\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132108\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607711\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607807\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSIFPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607835\", token.INT, 0)),\n\t\t\"SIOCSIFRDOMAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607839\", token.INT, 0)),\n\t\t\"SIOCSIFRTLABEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607810\", token.INT, 0)),\n\t\t\"SIOCSIFTIMESLOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607813\", token.INT, 0)),\n\t\t\"SIOCSIFXFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607837\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2182637898\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYRTABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2149607841\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607848\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSSPPPPARAMS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607827\", token.INT, 0)),\n\t\t\"SIOCSVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3223349749\", token.INT, 0)),\n\t\t\"SIOCSVNETID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607846\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_BINDANY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_NETPROC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4128\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_RTABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_SPLICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4131\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJFREQ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSEFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_FHSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMENS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_GETDTABLECOUNT\":                reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTHRID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MQUERY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NFSSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_OBREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_STAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_SWAPCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS___GET_TCB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS___SET_TCB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS___TFORK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS___THREXIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS___THRSIGDIVERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS___THRSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS___THRWAKEUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                          reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_NSTATES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_SACK_ENABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLAG_CLOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCFLAG_CRTSCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCFLAG_MDMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCFLAG_PPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCFLAG_SOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033757\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074820187\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775580\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775583\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775589\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148037722\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WALTSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                   reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                  reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":               reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                  reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfTimeval\":               reflect.ValueOf((*syscall.BpfTimeval)(nil)),\n\t\t\"BpfVersion\":               reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                  reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                     reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":               reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                   reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                    reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                    reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                  reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                     reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":             reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                   reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":              reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                 reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":         reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                   reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                 reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":             reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":     reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":         reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"Iovec\":                    reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                 reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                   reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Mclpool\":                  reflect.ValueOf((*syscall.Mclpool)(nil)),\n\t\t\"Msghdr\":                   reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                 reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                  reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":              reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":           reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":      reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":         reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":         reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":          reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                   reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":             reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":           reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                 reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                   reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                   reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                 reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":         reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":            reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":            reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":             reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":     reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                   reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                 reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":              reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                  reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                 reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                  reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":               reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_openbsd_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ENCAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_KEY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_MPLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FRELAY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDIRFILT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020988\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3221766779\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGFILDROP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020984\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020979\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074545262\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887926\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDIRFILT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762810\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148024935\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSETWF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148024951\", token.INT, 0)),\n\t\t\"BIOCSFILDROP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762809\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147762802\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148287085\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIRECTION_IN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_DIRECTION_OUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DIOCOSFPFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536888398\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EIPSEC\":                            reflect.ValueOf(syscall.EIPSEC),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                       reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMT_TAGOVF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_ENABLED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_NATIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENDRUNDISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOMEDIUM\":                         reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETHERMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"ETHERMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1500\", token.INT, 0)),\n\t\t\"ETHERTYPE_8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERTYPE_AARP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETHERTYPE_ACCTON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33680\", token.INT, 0)),\n\t\t\"ETHERTYPE_AEONIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32822\", token.INT, 0)),\n\t\t\"ETHERTYPE_ALPHA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33098\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMBER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24584\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMOEBA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33093\", token.INT, 0)),\n\t\t\"ETHERTYPE_AOE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33015\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLODOMAIN\":            reflect.ValueOf(constant.MakeFromLiteral(\"32793\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLETALK\":               reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLITEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"32967\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARGONAUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"32826\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETHERTYPE_AT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATALK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATOMIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34527\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32873\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATTSTANFORD\":             reflect.ValueOf(constant.MakeFromLiteral(\"32776\", token.INT, 0)),\n\t\t\"ETHERTYPE_AUTOPHON\":                reflect.ValueOf(constant.MakeFromLiteral(\"32874\", token.INT, 0)),\n\t\t\"ETHERTYPE_AXIS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34902\", token.INT, 0)),\n\t\t\"ETHERTYPE_BCLOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36867\", token.INT, 0)),\n\t\t\"ETHERTYPE_BOFL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33026\", token.INT, 0)),\n\t\t\"ETHERTYPE_CABLETRON\":               reflect.ValueOf(constant.MakeFromLiteral(\"28724\", token.INT, 0)),\n\t\t\"ETHERTYPE_CHAOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2052\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMDESIGN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32876\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMPUGRAPHIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"32877\", token.INT, 0)),\n\t\t\"ETHERTYPE_COUNTERPOINT\":            reflect.ValueOf(constant.MakeFromLiteral(\"32866\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32772\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUSVLN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32771\", token.INT, 0)),\n\t\t\"ETHERTYPE_DCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4660\", token.INT, 0)),\n\t\t\"ETHERTYPE_DDE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32891\", token.INT, 0)),\n\t\t\"ETHERTYPE_DEBNI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43690\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32840\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECCUST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32828\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32830\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECEXPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32833\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLTM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32831\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECMUMPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"24585\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECNETBIOS\":              reflect.ValueOf(constant.MakeFromLiteral(\"32832\", token.INT, 0)),\n\t\t\"ETHERTYPE_DELTACON\":                reflect.ValueOf(constant.MakeFromLiteral(\"34526\", token.INT, 0)),\n\t\t\"ETHERTYPE_DIDDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17185\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG1\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1632\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1633\", token.INT, 0)),\n\t\t\"ETHERTYPE_DN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETHERTYPE_DOGFIGHT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6537\", token.INT, 0)),\n\t\t\"ETHERTYPE_DSMD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32825\", token.INT, 0)),\n\t\t\"ETHERTYPE_ECMA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2051\", token.INT, 0)),\n\t\t\"ETHERTYPE_ENCRYPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32829\", token.INT, 0)),\n\t\t\"ETHERTYPE_ES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32861\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXCELAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32784\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXPERDATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"32841\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33094\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLOWCONTROL\":             reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETHERTYPE_FRARP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2056\", token.INT, 0)),\n\t\t\"ETHERTYPE_GENDYN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32872\", token.INT, 0)),\n\t\t\"ETHERTYPE_HAYES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_HIPPI_FP\":                reflect.ValueOf(constant.MakeFromLiteral(\"33152\", token.INT, 0)),\n\t\t\"ETHERTYPE_HITACHI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34848\", token.INT, 0)),\n\t\t\"ETHERTYPE_HP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32773\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUPAT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19522\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBLDIAG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16972\", token.INT, 0)),\n\t\t\"ETHERTYPE_IP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPAS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34668\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPXNEW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32823\", token.INT, 0)),\n\t\t\"ETHERTYPE_KALPANA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34178\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANBRIDGE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32824\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANPROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"34952\", token.INT, 0)),\n\t\t\"ETHERTYPE_LAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETHERTYPE_LBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LITTLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LLDP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35020\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOGICRAFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"33096\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_MATRA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32890\", token.INT, 0)),\n\t\t\"ETHERTYPE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ETHERTYPE_MERIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32892\", token.INT, 0)),\n\t\t\"ETHERTYPE_MICP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34618\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPDL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOTOROLA\":                reflect.ValueOf(constant.MakeFromLiteral(\"33165\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS_MCAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETHERTYPE_MUMPS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33087\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15364\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLAIM\":                reflect.ValueOf(constant.MakeFromLiteral(\"15369\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLREQ\":                reflect.ValueOf(constant.MakeFromLiteral(\"15365\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLRSP\":                reflect.ValueOf(constant.MakeFromLiteral(\"15366\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCREQ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15362\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCRSP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15363\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15367\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDGB\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15368\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDLTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15370\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15372\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15371\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15373\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPSCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15361\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPVCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15360\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2050\", token.INT, 0)),\n\t\t\"ETHERTYPE_NCD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33097\", token.INT, 0)),\n\t\t\"ETHERTYPE_NESTAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32774\", token.INT, 0)),\n\t\t\"ETHERTYPE_NETBEUI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33169\", token.INT, 0)),\n\t\t\"ETHERTYPE_NOVELL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33080\", token.INT, 0)),\n\t\t\"ETHERTYPE_NS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1537\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSCOMPAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2055\", token.INT, 0)),\n\t\t\"ETHERTYPE_NTRAILER\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28679\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9NET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28681\", token.INT, 0)),\n\t\t\"ETHERTYPE_PACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32966\", token.INT, 0)),\n\t\t\"ETHERTYPE_PAE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETHERTYPE_PCS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16962\", token.INT, 0)),\n\t\t\"ETHERTYPE_PLANNING\":                reflect.ValueOf(constant.MakeFromLiteral(\"32836\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34827\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOEDISC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETHERTYPE_PRIMENTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28721\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUPAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_QINQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETHERTYPE_RACAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28720\", token.INT, 0)),\n\t\t\"ETHERTYPE_RATIONAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"33104\", token.INT, 0)),\n\t\t\"ETHERTYPE_RAWFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25945\", token.INT, 0)),\n\t\t\"ETHERTYPE_RCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6549\", token.INT, 0)),\n\t\t\"ETHERTYPE_RDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34617\", token.INT, 0)),\n\t\t\"ETHERTYPE_RETIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33010\", token.INT, 0)),\n\t\t\"ETHERTYPE_REVARP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETHERTYPE_SCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECTRA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34523\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECUREDATA\":              reflect.ValueOf(constant.MakeFromLiteral(\"34669\", token.INT, 0)),\n\t\t\"ETHERTYPE_SGITW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33150\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_BOUNCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32790\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_DIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32787\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_NETGAMES\":             reflect.ValueOf(constant.MakeFromLiteral(\"32788\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_RESV\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32789\", token.INT, 0)),\n\t\t\"ETHERTYPE_SIMNET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21000\", token.INT, 0)),\n\t\t\"ETHERTYPE_SLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32981\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33100\", token.INT, 0)),\n\t\t\"ETHERTYPE_SONIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64245\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPIDER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32927\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPRITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"ETHERTYPE_STP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33153\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARIS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33067\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARISMC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34091\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPCOMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34667\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36866\", token.INT, 0)),\n\t\t\"ETHERTYPE_TEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33103\", token.INT, 0)),\n\t\t\"ETHERTYPE_TIGAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32815\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRANSETHER\":              reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETHERTYPE_TYMSHARE\":                reflect.ValueOf(constant.MakeFromLiteral(\"32814\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBBST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28677\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDEBUG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2304\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDIAGLOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"28674\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28672\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNIU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28673\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNMC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28675\", token.INT, 0)),\n\t\t\"ETHERTYPE_VALID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5632\", token.INT, 0)),\n\t\t\"ETHERTYPE_VARIAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VAXELN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32827\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEECO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32871\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEXP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32859\", token.INT, 0)),\n\t\t\"ETHERTYPE_VGLAB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33073\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESECHO\":               reflect.ValueOf(constant.MakeFromLiteral(\"2991\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESLOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"2990\", token.INT, 0)),\n\t\t\"ETHERTYPE_VITAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65280\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLTLMAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32896\", token.INT, 0)),\n\t\t\"ETHERTYPE_VPROD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32860\", token.INT, 0)),\n\t\t\"ETHERTYPE_VURESERVED\":              reflect.ValueOf(constant.MakeFromLiteral(\"33095\", token.INT, 0)),\n\t\t\"ETHERTYPE_WATERLOO\":                reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_WELLFLEET\":               reflect.ValueOf(constant.MakeFromLiteral(\"33027\", token.INT, 0)),\n\t\t\"ETHERTYPE_X25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETHERTYPE_X75\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2049\", token.INT, 0)),\n\t\t\"ETHERTYPE_XNSSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36865\", token.INT, 0)),\n\t\t\"ETHERTYPE_XTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33149\", token.INT, 0)),\n\t\t\"ETHER_ADDR_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETHER_ALIGN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_CRC_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_BE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79764918\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_LE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3988292384\", token.INT, 0)),\n\t\t\"ETHER_HDR_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"ETHER_MAX_DIX_LEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1518\", token.INT, 0)),\n\t\t\"ETHER_MIN_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ETHER_TYPE_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_VLAN_ENCAP_LEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                         reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36434\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAMCHANNEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DUMMY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"IFT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LINEGROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_PON155\":                        reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"IFT_PON622\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_Q2931\":                         reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SIPSIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"IFT_SIPTG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TELINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VIRTUALTG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"IFT_VOICEDID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEEMFGD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFGDEANA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERCABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_RFC3021_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_RFC3021_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967294\", token.INT, 0)),\n\t\t\"IN_RFC3021_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT_INIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT_RESP\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_AUTH_LEVEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_ESP_NETWORK_LEVEL\":            reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_ESP_TRANS_LEVEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPCOMP_LEVEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_OPTIONS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PIPEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTPORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTABLE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_AUTH_LEVEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DIVERTFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_ESP_NETWORK_LEVEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_ESP_TRANS_LEVEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPCOMP_LEVEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IP_IPSECFLOWINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_AUTH\":               reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_CRED\":               reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_ID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_AUTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_CRED\":              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_ID\":                reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PIPEX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVDSTPORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RTABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LCNT_OVERLOAD_FLUSH\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_SPACEAVAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_FLAGMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16375\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_INHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_INHERIT_COPY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_INHERIT_SHARE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_INHERIT_ZERO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_NOEXTEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_TRYFIXED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_BCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_MCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_STATS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_TABLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EOF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_DSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PF_FLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_SRCMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_LABEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_SRC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTA_SRCMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_ANNOUNCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_CLONED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7403528\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MPATH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PERMANENT_ARP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_USETRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DESYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MAXSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RT_TABLEID_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHR\":                            reflect.ValueOf(syscall.SIGTHR),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCAIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149869959\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2182637852\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCBRDGADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2153015612\", token.INT, 0)),\n\t\t\"SIOCBRDGADDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2153015617\", token.INT, 0)),\n\t\t\"SIOCBRDGARL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2154719565\", token.INT, 0)),\n\t\t\"SIOCBRDGDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2166909255\", token.INT, 0)),\n\t\t\"SIOCBRDGDEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2153015613\", token.INT, 0)),\n\t\t\"SIOCBRDGDELS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2153015618\", token.INT, 0)),\n\t\t\"SIOCBRDGFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2153015624\", token.INT, 0)),\n\t\t\"SIOCBRDGFRL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2154719566\", token.INT, 0)),\n\t\t\"SIOCBRDGGCACHE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222563137\", token.INT, 0)),\n\t\t\"SIOCBRDGGFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563154\", token.INT, 0)),\n\t\t\"SIOCBRDGGHT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563153\", token.INT, 0)),\n\t\t\"SIOCBRDGGIFFLGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3226757438\", token.INT, 0)),\n\t\t\"SIOCBRDGGMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563155\", token.INT, 0)),\n\t\t\"SIOCBRDGGPARAM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3225184600\", token.INT, 0)),\n\t\t\"SIOCBRDGGPRI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222563152\", token.INT, 0)),\n\t\t\"SIOCBRDGGRL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223873871\", token.INT, 0)),\n\t\t\"SIOCBRDGGSIFS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3226757436\", token.INT, 0)),\n\t\t\"SIOCBRDGGTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563142\", token.INT, 0)),\n\t\t\"SIOCBRDGIFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3226757442\", token.INT, 0)),\n\t\t\"SIOCBRDGRTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222825283\", token.INT, 0)),\n\t\t\"SIOCBRDGSADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3240651076\", token.INT, 0)),\n\t\t\"SIOCBRDGSCACHE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2148821312\", token.INT, 0)),\n\t\t\"SIOCBRDGSFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821330\", token.INT, 0)),\n\t\t\"SIOCBRDGSHT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821329\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFCOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153015637\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFFLGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153015615\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFPRIO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153015636\", token.INT, 0)),\n\t\t\"SIOCBRDGSMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821331\", token.INT, 0)),\n\t\t\"SIOCBRDGSPRI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148821328\", token.INT, 0)),\n\t\t\"SIOCBRDGSPROTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2148821338\", token.INT, 0)),\n\t\t\"SIOCBRDGSTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821317\", token.INT, 0)),\n\t\t\"SIOCBRDGSTXHC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148821337\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149869961\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607753\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2182637854\", token.INT, 0)),\n\t\t\"SIOCGETKALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222825380\", token.INT, 0)),\n\t\t\"SIOCGETLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607834\", token.INT, 0)),\n\t\t\"SIOCGETPFLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349758\", token.INT, 0)),\n\t\t\"SIOCGETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349752\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222566196\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222566195\", token.INT, 0)),\n\t\t\"SIOCGETVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349648\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFASYNCMAP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221776676\", token.INT, 0)),\n\t\t\"SIOCGIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349531\", token.INT, 0)),\n\t\t\"SIOCGIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349633\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223611787\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFGMEMB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223611786\", token.INT, 0)),\n\t\t\"SIOCGIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223611784\", token.INT, 0)),\n\t\t\"SIOCGIFHARDMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349669\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873846\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349630\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349660\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFRDOMAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349664\", token.INT, 0)),\n\t\t\"SIOCGIFRTLABEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349635\", token.INT, 0)),\n\t\t\"SIOCGIFRXR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607850\", token.INT, 0)),\n\t\t\"SIOCGIFTIMESLOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349638\", token.INT, 0)),\n\t\t\"SIOCGIFXFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349662\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3256379677\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3256379723\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYRTABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3223349666\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349673\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGSPPPPARAMS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349652\", token.INT, 0)),\n\t\t\"SIOCGVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3223349750\", token.INT, 0)),\n\t\t\"SIOCGVNETID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349671\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607802\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222038904\", token.INT, 0)),\n\t\t\"SIOCSETKALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149083555\", token.INT, 0)),\n\t\t\"SIOCSETLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607833\", token.INT, 0)),\n\t\t\"SIOCSETPFLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607933\", token.INT, 0)),\n\t\t\"SIOCSETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607927\", token.INT, 0)),\n\t\t\"SIOCSETVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607823\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFASYNCMAP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607805\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607808\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149869964\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607711\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607807\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSIFPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607835\", token.INT, 0)),\n\t\t\"SIOCSIFRDOMAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607839\", token.INT, 0)),\n\t\t\"SIOCSIFRTLABEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607810\", token.INT, 0)),\n\t\t\"SIOCSIFTIMESLOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607813\", token.INT, 0)),\n\t\t\"SIOCSIFXFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607837\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2182637898\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYRTABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2149607841\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607848\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSSPPPPARAMS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607827\", token.INT, 0)),\n\t\t\"SIOCSVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3223349749\", token.INT, 0)),\n\t\t\"SIOCSVNETID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607846\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_BINDANY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_NETPROC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4128\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_RTABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_SPLICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4131\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJFREQ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHFLAGSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSEFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_FHSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMENS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_GETDTABLECOUNT\":                reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETENTROPY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTHRID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MQUERY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NFSSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_OBREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDSYSLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_STAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_SWAPCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS___GET_TCB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS___SET_TCB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS___TFORK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS___THREXIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS___THRSIGDIVERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS___THRSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS___THRWAKEUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                          reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_NSTATES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_SACK_ENABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLAG_CLOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCFLAG_CRTSCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCFLAG_MDMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCFLAG_PPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCFLAG_SOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033757\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074558043\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775580\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775583\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775589\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148037722\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WALTSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                   reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                  reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":               reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                  reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfTimeval\":               reflect.ValueOf((*syscall.BpfTimeval)(nil)),\n\t\t\"BpfVersion\":               reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                  reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                     reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":               reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                   reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                    reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                    reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                  reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                     reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":             reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                   reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":              reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                 reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":         reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                   reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                 reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":             reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":     reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":         reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"Iovec\":                    reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                 reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                   reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Mclpool\":                  reflect.ValueOf((*syscall.Mclpool)(nil)),\n\t\t\"Msghdr\":                   reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                 reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                  reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":              reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":           reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":      reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":         reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":         reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":          reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                   reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":             reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":           reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                 reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                   reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                   reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                 reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":         reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":            reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":            reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":             reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":     reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                   reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                 reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":              reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                  reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                 reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                  reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":               reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_openbsd_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ENCAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_KEY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_MPLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FRELAY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDIRFILT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020988\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222291067\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGFILDROP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020984\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020979\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887926\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDIRFILT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762810\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSETWF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148549239\", token.INT, 0)),\n\t\t\"BIOCSFILDROP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762809\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147762802\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIRECTION_IN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_DIRECTION_OUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_FILDROP_CAPTURE\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_FILDROP_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_FILDROP_PASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DIOCOSFPFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536888398\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_OPENFLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_USBPCAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"DLT_USER0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"DLT_USER1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"DLT_USER10\":                        reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"DLT_USER11\":                        reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"DLT_USER12\":                        reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"DLT_USER13\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"DLT_USER14\":                        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"DLT_USER15\":                        reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"DLT_USER2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"DLT_USER3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"DLT_USER4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"DLT_USER5\":                         reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"DLT_USER6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"DLT_USER7\":                         reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"DLT_USER8\":                         reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"DLT_USER9\":                         reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EIPSEC\":                            reflect.ValueOf(syscall.EIPSEC),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                       reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMT_TAGOVF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_ENABLED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_NATIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENDRUNDISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOMEDIUM\":                         reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":                   reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                        reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETHERMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"ETHERMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1500\", token.INT, 0)),\n\t\t\"ETHERTYPE_8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERTYPE_AARP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETHERTYPE_ACCTON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33680\", token.INT, 0)),\n\t\t\"ETHERTYPE_AEONIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32822\", token.INT, 0)),\n\t\t\"ETHERTYPE_ALPHA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33098\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMBER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24584\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMOEBA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33093\", token.INT, 0)),\n\t\t\"ETHERTYPE_AOE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33015\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLODOMAIN\":            reflect.ValueOf(constant.MakeFromLiteral(\"32793\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLETALK\":               reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLITEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"32967\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARGONAUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"32826\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETHERTYPE_AT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATALK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATOMIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34527\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32873\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATTSTANFORD\":             reflect.ValueOf(constant.MakeFromLiteral(\"32776\", token.INT, 0)),\n\t\t\"ETHERTYPE_AUTOPHON\":                reflect.ValueOf(constant.MakeFromLiteral(\"32874\", token.INT, 0)),\n\t\t\"ETHERTYPE_AXIS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34902\", token.INT, 0)),\n\t\t\"ETHERTYPE_BCLOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36867\", token.INT, 0)),\n\t\t\"ETHERTYPE_BOFL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33026\", token.INT, 0)),\n\t\t\"ETHERTYPE_CABLETRON\":               reflect.ValueOf(constant.MakeFromLiteral(\"28724\", token.INT, 0)),\n\t\t\"ETHERTYPE_CHAOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2052\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMDESIGN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32876\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMPUGRAPHIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"32877\", token.INT, 0)),\n\t\t\"ETHERTYPE_COUNTERPOINT\":            reflect.ValueOf(constant.MakeFromLiteral(\"32866\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32772\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUSVLN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32771\", token.INT, 0)),\n\t\t\"ETHERTYPE_DCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4660\", token.INT, 0)),\n\t\t\"ETHERTYPE_DDE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32891\", token.INT, 0)),\n\t\t\"ETHERTYPE_DEBNI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43690\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32840\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECCUST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32828\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32830\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECEXPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32833\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLTM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32831\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECMUMPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"24585\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECNETBIOS\":              reflect.ValueOf(constant.MakeFromLiteral(\"32832\", token.INT, 0)),\n\t\t\"ETHERTYPE_DELTACON\":                reflect.ValueOf(constant.MakeFromLiteral(\"34526\", token.INT, 0)),\n\t\t\"ETHERTYPE_DIDDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17185\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG1\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1632\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1633\", token.INT, 0)),\n\t\t\"ETHERTYPE_DN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETHERTYPE_DOGFIGHT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6537\", token.INT, 0)),\n\t\t\"ETHERTYPE_DSMD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32825\", token.INT, 0)),\n\t\t\"ETHERTYPE_ECMA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2051\", token.INT, 0)),\n\t\t\"ETHERTYPE_ENCRYPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32829\", token.INT, 0)),\n\t\t\"ETHERTYPE_ES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32861\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXCELAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32784\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXPERDATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"32841\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33094\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLOWCONTROL\":             reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETHERTYPE_FRARP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2056\", token.INT, 0)),\n\t\t\"ETHERTYPE_GENDYN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32872\", token.INT, 0)),\n\t\t\"ETHERTYPE_HAYES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_HIPPI_FP\":                reflect.ValueOf(constant.MakeFromLiteral(\"33152\", token.INT, 0)),\n\t\t\"ETHERTYPE_HITACHI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34848\", token.INT, 0)),\n\t\t\"ETHERTYPE_HP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32773\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUPAT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19522\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBLDIAG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16972\", token.INT, 0)),\n\t\t\"ETHERTYPE_IP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPAS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34668\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPXNEW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32823\", token.INT, 0)),\n\t\t\"ETHERTYPE_KALPANA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34178\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANBRIDGE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32824\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANPROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"34952\", token.INT, 0)),\n\t\t\"ETHERTYPE_LAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETHERTYPE_LBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LITTLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LLDP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35020\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOGICRAFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"33096\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_MATRA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32890\", token.INT, 0)),\n\t\t\"ETHERTYPE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ETHERTYPE_MERIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32892\", token.INT, 0)),\n\t\t\"ETHERTYPE_MICP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34618\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPDL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOTOROLA\":                reflect.ValueOf(constant.MakeFromLiteral(\"33165\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS_MCAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETHERTYPE_MUMPS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33087\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15364\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLAIM\":                reflect.ValueOf(constant.MakeFromLiteral(\"15369\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLREQ\":                reflect.ValueOf(constant.MakeFromLiteral(\"15365\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLRSP\":                reflect.ValueOf(constant.MakeFromLiteral(\"15366\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCREQ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15362\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCRSP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15363\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15367\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDGB\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15368\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDLTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15370\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15372\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15371\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15373\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPSCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15361\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPVCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15360\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2050\", token.INT, 0)),\n\t\t\"ETHERTYPE_NCD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33097\", token.INT, 0)),\n\t\t\"ETHERTYPE_NESTAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32774\", token.INT, 0)),\n\t\t\"ETHERTYPE_NETBEUI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33169\", token.INT, 0)),\n\t\t\"ETHERTYPE_NOVELL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33080\", token.INT, 0)),\n\t\t\"ETHERTYPE_NS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1537\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSCOMPAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2055\", token.INT, 0)),\n\t\t\"ETHERTYPE_NTRAILER\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28679\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9NET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28681\", token.INT, 0)),\n\t\t\"ETHERTYPE_PACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32966\", token.INT, 0)),\n\t\t\"ETHERTYPE_PAE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETHERTYPE_PBB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETHERTYPE_PCS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16962\", token.INT, 0)),\n\t\t\"ETHERTYPE_PLANNING\":                reflect.ValueOf(constant.MakeFromLiteral(\"32836\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34827\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOEDISC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETHERTYPE_PRIMENTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28721\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUPAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_QINQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETHERTYPE_RACAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28720\", token.INT, 0)),\n\t\t\"ETHERTYPE_RATIONAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"33104\", token.INT, 0)),\n\t\t\"ETHERTYPE_RAWFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25945\", token.INT, 0)),\n\t\t\"ETHERTYPE_RCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6549\", token.INT, 0)),\n\t\t\"ETHERTYPE_RDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34617\", token.INT, 0)),\n\t\t\"ETHERTYPE_RETIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33010\", token.INT, 0)),\n\t\t\"ETHERTYPE_REVARP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETHERTYPE_SCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECTRA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34523\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECUREDATA\":              reflect.ValueOf(constant.MakeFromLiteral(\"34669\", token.INT, 0)),\n\t\t\"ETHERTYPE_SGITW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33150\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_BOUNCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32790\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_DIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32787\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_NETGAMES\":             reflect.ValueOf(constant.MakeFromLiteral(\"32788\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_RESV\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32789\", token.INT, 0)),\n\t\t\"ETHERTYPE_SIMNET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21000\", token.INT, 0)),\n\t\t\"ETHERTYPE_SLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32981\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33100\", token.INT, 0)),\n\t\t\"ETHERTYPE_SONIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64245\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPIDER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32927\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPRITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"ETHERTYPE_STP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33153\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARIS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33067\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARISMC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34091\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPCOMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34667\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36866\", token.INT, 0)),\n\t\t\"ETHERTYPE_TEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33103\", token.INT, 0)),\n\t\t\"ETHERTYPE_TIGAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32815\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRANSETHER\":              reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETHERTYPE_TYMSHARE\":                reflect.ValueOf(constant.MakeFromLiteral(\"32814\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBBST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28677\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDEBUG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2304\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDIAGLOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"28674\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28672\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNIU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28673\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNMC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28675\", token.INT, 0)),\n\t\t\"ETHERTYPE_VALID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5632\", token.INT, 0)),\n\t\t\"ETHERTYPE_VARIAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VAXELN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32827\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEECO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32871\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEXP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32859\", token.INT, 0)),\n\t\t\"ETHERTYPE_VGLAB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33073\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESECHO\":               reflect.ValueOf(constant.MakeFromLiteral(\"2991\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESLOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"2990\", token.INT, 0)),\n\t\t\"ETHERTYPE_VITAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65280\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLTLMAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32896\", token.INT, 0)),\n\t\t\"ETHERTYPE_VPROD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32860\", token.INT, 0)),\n\t\t\"ETHERTYPE_VURESERVED\":              reflect.ValueOf(constant.MakeFromLiteral(\"33095\", token.INT, 0)),\n\t\t\"ETHERTYPE_WATERLOO\":                reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_WELLFLEET\":               reflect.ValueOf(constant.MakeFromLiteral(\"33027\", token.INT, 0)),\n\t\t\"ETHERTYPE_X25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETHERTYPE_X75\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2049\", token.INT, 0)),\n\t\t\"ETHERTYPE_XNSSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36865\", token.INT, 0)),\n\t\t\"ETHERTYPE_XTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33149\", token.INT, 0)),\n\t\t\"ETHER_ADDR_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETHER_ALIGN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_CRC_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_BE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79764918\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_LE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3988292384\", token.INT, 0)),\n\t\t\"ETHER_HDR_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"ETHER_MAX_DIX_LEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHER_MAX_HARDMTU_LEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"65435\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1518\", token.INT, 0)),\n\t\t\"ETHER_MIN_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ETHER_TYPE_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_VLAN_ENCAP_LEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_DEVICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-8\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EVL_ENCAPLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EVL_PRIO_BITS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"EVL_PRIO_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"EVL_VLID_MASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"EVL_VLID_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4094\", token.INT, 0)),\n\t\t\"EVL_VLID_MIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EVL_VLID_NULL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_DISPATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_RECEIPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_ISATTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                         reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36434\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_STATICARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAMCHANNEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DUMMY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"IFT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LINEGROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MBIM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_PON155\":                        reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"IFT_PON622\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_Q2931\":                         reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SIPSIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"IFT_SIPTG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TELINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VIRTUALTG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"IFT_VOICEDID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEEMFGD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFGDEANA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERCABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_RFC3021_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_RFC3021_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967294\", token.INT, 0)),\n\t\t\"IN_RFC3021_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_AUTH_LEVEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_ESP_NETWORK_LEVEL\":            reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_ESP_TRANS_LEVEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPCOMP_LEVEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MINHOPCOUNT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_OPTIONS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PIPEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTPORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTABLE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_AUTH_LEVEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_ESP_NETWORK_LEVEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_ESP_TRANS_LEVEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPCOMP_LEVEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IP_IPDEFTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_IPSECFLOWINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_AUTH\":               reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_CRED\":               reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_ID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_AUTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_CRED\":              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_ID\":                reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PIPEX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVDSTPORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RTABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"IP_SENDSRCADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LCNT_OVERLOAD_FLUSH\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_SPACEAVAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_CONCEAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_COPY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_FLAGMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65527\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_INHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_INHERIT_COPY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_INHERIT_SHARE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_INHERIT_ZERO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_NOEXTEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_TRYFIXED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_BCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_MCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_IFNAMES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NET_RT_STATS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_TABLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHANGE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EOF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_DSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PF_FLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DNS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_SEARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_SRCMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DNS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_LABEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_SEARCH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTA_SRC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTA_SRCMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTA_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_ANNOUNCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_BFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_CACHED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_CLONED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_CONNECTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"17890312\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MPATH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_PERMANENT_ARP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_USETRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTM_80211INFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_BFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_CHGADDRATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DESYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MAXSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_PROPOSAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RT_TABLEID_BITS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RT_TABLEID_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLEID_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHR\":                            reflect.ValueOf(syscall.SIGTHR),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCAIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132103\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCBRDGADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2153802044\", token.INT, 0)),\n\t\t\"SIOCBRDGADDL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2153802057\", token.INT, 0)),\n\t\t\"SIOCBRDGADDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2153802049\", token.INT, 0)),\n\t\t\"SIOCBRDGARL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156685645\", token.INT, 0)),\n\t\t\"SIOCBRDGDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2166909255\", token.INT, 0)),\n\t\t\"SIOCBRDGDEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2153802045\", token.INT, 0)),\n\t\t\"SIOCBRDGDELS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2153802050\", token.INT, 0)),\n\t\t\"SIOCBRDGFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2153802056\", token.INT, 0)),\n\t\t\"SIOCBRDGFRL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156685646\", token.INT, 0)),\n\t\t\"SIOCBRDGGCACHE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222825281\", token.INT, 0)),\n\t\t\"SIOCBRDGGFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222825298\", token.INT, 0)),\n\t\t\"SIOCBRDGGHT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222825297\", token.INT, 0)),\n\t\t\"SIOCBRDGGIFFLGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3227543870\", token.INT, 0)),\n\t\t\"SIOCBRDGGMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222825299\", token.INT, 0)),\n\t\t\"SIOCBRDGGPARAM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3225446744\", token.INT, 0)),\n\t\t\"SIOCBRDGGPRI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222825296\", token.INT, 0)),\n\t\t\"SIOCBRDGGRL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3224398159\", token.INT, 0)),\n\t\t\"SIOCBRDGGTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222825286\", token.INT, 0)),\n\t\t\"SIOCBRDGIFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3227543874\", token.INT, 0)),\n\t\t\"SIOCBRDGRTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349571\", token.INT, 0)),\n\t\t\"SIOCBRDGSADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3240651076\", token.INT, 0)),\n\t\t\"SIOCBRDGSCACHE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149083456\", token.INT, 0)),\n\t\t\"SIOCBRDGSFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149083474\", token.INT, 0)),\n\t\t\"SIOCBRDGSHT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149083473\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFCOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153802069\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFFLGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153802047\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFPRIO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153802068\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFPROT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153802058\", token.INT, 0)),\n\t\t\"SIOCBRDGSMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149083475\", token.INT, 0)),\n\t\t\"SIOCBRDGSPRI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149083472\", token.INT, 0)),\n\t\t\"SIOCBRDGSPROTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149083482\", token.INT, 0)),\n\t\t\"SIOCBRDGSTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149083461\", token.INT, 0)),\n\t\t\"SIOCBRDGSTXHC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149083481\", token.INT, 0)),\n\t\t\"SIOCDELLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607831\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132105\", token.INT, 0)),\n\t\t\"SIOCDIFPARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607860\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607753\", token.INT, 0)),\n\t\t\"SIOCDPWE3NEIGHBOR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2149607902\", token.INT, 0)),\n\t\t\"SIOCDVNETID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607855\", token.INT, 0)),\n\t\t\"SIOCGETKALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222825380\", token.INT, 0)),\n\t\t\"SIOCGETLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607834\", token.INT, 0)),\n\t\t\"SIOCGETMPWCFG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349678\", token.INT, 0)),\n\t\t\"SIOCGETPFLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349758\", token.INT, 0)),\n\t\t\"SIOCGETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349752\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223352628\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223876915\", token.INT, 0)),\n\t\t\"SIOCGETVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349648\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222300964\", token.INT, 0)),\n\t\t\"SIOCGIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349531\", token.INT, 0)),\n\t\t\"SIOCGIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349633\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873931\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFGLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873933\", token.INT, 0)),\n\t\t\"SIOCGIFGMEMB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873930\", token.INT, 0)),\n\t\t\"SIOCGIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873928\", token.INT, 0)),\n\t\t\"SIOCGIFHARDMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349669\", token.INT, 0)),\n\t\t\"SIOCGIFLLPRIO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349686\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3225446712\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349630\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPAIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349681\", token.INT, 0)),\n\t\t\"SIOCGIFPARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349683\", token.INT, 0)),\n\t\t\"SIOCGIFPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349660\", token.INT, 0)),\n\t\t\"SIOCGIFRDOMAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349664\", token.INT, 0)),\n\t\t\"SIOCGIFRTLABEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349635\", token.INT, 0)),\n\t\t\"SIOCGIFRXR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607850\", token.INT, 0)),\n\t\t\"SIOCGIFSFFPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3239209273\", token.INT, 0)),\n\t\t\"SIOCGIFXFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349662\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3256379723\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYDF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349698\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYECN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349704\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYRTABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3223349666\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349673\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGPWE3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349656\", token.INT, 0)),\n\t\t\"SIOCGPWE3CTRLWORD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3223349724\", token.INT, 0)),\n\t\t\"SIOCGPWE3FAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349725\", token.INT, 0)),\n\t\t\"SIOCGPWE3NEIGHBOR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3256379870\", token.INT, 0)),\n\t\t\"SIOCGSPPPPARAMS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349652\", token.INT, 0)),\n\t\t\"SIOCGTXHPRIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349702\", token.INT, 0)),\n\t\t\"SIOCGUMBINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349694\", token.INT, 0)),\n\t\t\"SIOCGUMBPARAM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349696\", token.INT, 0)),\n\t\t\"SIOCGVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3223349750\", token.INT, 0)),\n\t\t\"SIOCGVNETFLOWID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349700\", token.INT, 0)),\n\t\t\"SIOCGVNETID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349671\", token.INT, 0)),\n\t\t\"SIOCIFAFATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2148624811\", token.INT, 0)),\n\t\t\"SIOCIFAFDETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2148624812\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607802\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222301048\", token.INT, 0)),\n\t\t\"SIOCSETKALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149083555\", token.INT, 0)),\n\t\t\"SIOCSETLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607833\", token.INT, 0)),\n\t\t\"SIOCSETMPWCFG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607853\", token.INT, 0)),\n\t\t\"SIOCSETPFLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607933\", token.INT, 0)),\n\t\t\"SIOCSETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607927\", token.INT, 0)),\n\t\t\"SIOCSETVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607823\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607808\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132108\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607711\", token.INT, 0)),\n\t\t\"SIOCSIFLLPRIO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607861\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607807\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPAIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607856\", token.INT, 0)),\n\t\t\"SIOCSIFPARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607858\", token.INT, 0)),\n\t\t\"SIOCSIFPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607835\", token.INT, 0)),\n\t\t\"SIOCSIFRDOMAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607839\", token.INT, 0)),\n\t\t\"SIOCSIFRTLABEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607810\", token.INT, 0)),\n\t\t\"SIOCSIFXFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607837\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2182637898\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYDF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607873\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYECN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607879\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYRTABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2149607841\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607848\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSPWE3CTRLWORD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2149607900\", token.INT, 0)),\n\t\t\"SIOCSPWE3FAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607901\", token.INT, 0)),\n\t\t\"SIOCSPWE3NEIGHBOR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2182638046\", token.INT, 0)),\n\t\t\"SIOCSSPPPPARAMS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607827\", token.INT, 0)),\n\t\t\"SIOCSTXHPRIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607877\", token.INT, 0)),\n\t\t\"SIOCSUMBPARAM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607871\", token.INT, 0)),\n\t\t\"SIOCSVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3223349749\", token.INT, 0)),\n\t\t\"SIOCSVNETFLOWID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607875\", token.INT, 0)),\n\t\t\"SIOCSVNETID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607846\", token.INT, 0)),\n\t\t\"SIOCSWGDPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222825307\", token.INT, 0)),\n\t\t\"SIOCSWGMAXFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222825312\", token.INT, 0)),\n\t\t\"SIOCSWGMAXGROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3222825309\", token.INT, 0)),\n\t\t\"SIOCSWSDPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149083484\", token.INT, 0)),\n\t\t\"SIOCSWSPORTNO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3227543903\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_DNS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_BINDANY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_NETPROC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4128\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_RTABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_SPLICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4131\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_ZEROIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJFREQ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHFLAGSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSEFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_FHSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_FUTIMENS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_GETDTABLECOUNT\":                reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETENTROPY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN_R\":                    reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTHRID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_KBIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MQUERY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NFSSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_OBREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_PLEDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDSYSLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_STAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_SWAPCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_SYSCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_THRKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UNVEIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS___GET_TCB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS___SET_TCB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS___TFORK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS___THREXIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS___THRSIGDIVERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS___THRSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS___THRWAKEUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                          reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_SACK_ENABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCHKVERAUTH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536900638\", token.INT, 0)),\n\t\t\"TIOCCLRVERAUTH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536900637\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLAG_CLOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCFLAG_CRTSCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCFLAG_MDMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCFLAG_PPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCFLAG_SOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033757\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074820187\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSETVERAUTH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147775516\", token.INT, 0)),\n\t\t\"TIOCSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775580\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775583\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148037722\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TIOCUCNTL_CBRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"TIOCUCNTL_SBRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WALTSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                   reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                  reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":               reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                  reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfTimeval\":               reflect.ValueOf((*syscall.BpfTimeval)(nil)),\n\t\t\"BpfVersion\":               reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                  reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                     reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":               reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                   reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                    reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                    reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                  reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                     reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":             reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                   reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":              reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                 reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":         reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                   reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                 reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":             reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":     reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":         reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"Iovec\":                    reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                 reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                   reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Mclpool\":                  reflect.ValueOf((*syscall.Mclpool)(nil)),\n\t\t\"Msghdr\":                   reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                 reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                  reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":              reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":           reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":      reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":         reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":         reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":          reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                   reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":             reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":           reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                 reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                   reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                   reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                 reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":         reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":            reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":            reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":             reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":     reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                   reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                 reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":              reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                  reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                 reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                  reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":               reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_plan9_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Await\":               reflect.ValueOf(syscall.Await),\n\t\t\"Bind\":                reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":   reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\": reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"Chdir\":               reflect.ValueOf(syscall.Chdir),\n\t\t\"Clearenv\":            reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":               reflect.ValueOf(syscall.Close),\n\t\t\"Create\":              reflect.ValueOf(syscall.Create),\n\t\t\"DMAPPEND\":            reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"DMAUTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"DMDIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"DMEXCL\":              reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"DMEXEC\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DMMOUNT\":             reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"DMREAD\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DMTMP\":               reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"DMWRITE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Dup\":                 reflect.ValueOf(syscall.Dup),\n\t\t\"EACCES\":              reflect.ValueOf(&syscall.EACCES).Elem(),\n\t\t\"EAFNOSUPPORT\":        reflect.ValueOf(&syscall.EAFNOSUPPORT).Elem(),\n\t\t\"EBUSY\":               reflect.ValueOf(&syscall.EBUSY).Elem(),\n\t\t\"EEXIST\":              reflect.ValueOf(&syscall.EEXIST).Elem(),\n\t\t\"EINTR\":               reflect.ValueOf(&syscall.EINTR).Elem(),\n\t\t\"EINVAL\":              reflect.ValueOf(&syscall.EINVAL).Elem(),\n\t\t\"EIO\":                 reflect.ValueOf(&syscall.EIO).Elem(),\n\t\t\"EISDIR\":              reflect.ValueOf(&syscall.EISDIR).Elem(),\n\t\t\"EMFILE\":              reflect.ValueOf(&syscall.EMFILE).Elem(),\n\t\t\"ENAMETOOLONG\":        reflect.ValueOf(&syscall.ENAMETOOLONG).Elem(),\n\t\t\"ENOENT\":              reflect.ValueOf(&syscall.ENOENT).Elem(),\n\t\t\"ENOTDIR\":             reflect.ValueOf(&syscall.ENOTDIR).Elem(),\n\t\t\"EPERM\":               reflect.ValueOf(&syscall.EPERM).Elem(),\n\t\t\"EPLAN9\":              reflect.ValueOf(&syscall.EPLAN9).Elem(),\n\t\t\"ERRMAX\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ESPIPE\":              reflect.ValueOf(&syscall.ESPIPE).Elem(),\n\t\t\"ETIMEDOUT\":           reflect.ValueOf(&syscall.ETIMEDOUT).Elem(),\n\t\t\"Environ\":             reflect.ValueOf(syscall.Environ),\n\t\t\"ErrBadName\":          reflect.ValueOf(&syscall.ErrBadName).Elem(),\n\t\t\"ErrBadStat\":          reflect.ValueOf(&syscall.ErrBadStat).Elem(),\n\t\t\"ErrShortStat\":        reflect.ValueOf(&syscall.ErrShortStat).Elem(),\n\t\t\"Fchdir\":              reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fd2path\":             reflect.ValueOf(syscall.Fd2path),\n\t\t\"Fixwd\":               reflect.ValueOf(syscall.Fixwd),\n\t\t\"ForkLock\":            reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":               reflect.ValueOf(syscall.Fstat),\n\t\t\"Fwstat\":              reflect.ValueOf(syscall.Fwstat),\n\t\t\"Getegid\":             reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":              reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":             reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":              reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":           reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":         reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpid\":              reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":             reflect.ValueOf(syscall.Getppid),\n\t\t\"Gettimeofday\":        reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":              reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":               reflect.ValueOf(syscall.Getwd),\n\t\t\"ImplementsGetwd\":     reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"MAFTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MBEFORE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCACHE\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MCREATE\":             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"MORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MREPL\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Mkdir\":               reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mount\":               reflect.ValueOf(syscall.Mount),\n\t\t\"NewError\":            reflect.ValueOf(syscall.NewError),\n\t\t\"NsecToTimeval\":       reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"O_APPEND\":            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_CREAT\":             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_EXCL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_NOCTTY\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDONLY\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SYNC\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_TRUNC\":             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_WRONLY\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                reflect.ValueOf(syscall.Open),\n\t\t\"Pipe\":                reflect.ValueOf(syscall.Pipe),\n\t\t\"Pread\":               reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":              reflect.ValueOf(syscall.Pwrite),\n\t\t\"QTAPPEND\":            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"QTAUTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"QTDIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"QTEXCL\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"QTFILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"QTMOUNT\":             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"QTTMP\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RFCENVG\":             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RFCFDG\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RFCNAMEG\":            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RFENVG\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RFFDG\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RFMEM\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RFNAMEG\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RFNOMNT\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RFNOTEG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RFNOWAIT\":            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RFPROC\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RFREND\":              reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"Read\":                reflect.ValueOf(syscall.Read),\n\t\t\"Remove\":              reflect.ValueOf(syscall.Remove),\n\t\t\"SIGABRT\":             reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":             reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGHUP\":              reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGINT\":              reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGKILL\":             reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGTERM\":             reflect.ValueOf(syscall.SIGTERM),\n\t\t\"STATFIXLEN\":          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"STATMAX\":             reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SYS_ALARM\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_AWAIT\":           reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_BIND\":            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_BRK_\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_CREATE\":          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_DUP\":             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_ERRSTR\":          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_EXEC\":            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_EXITS\":           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_FAUTH\":           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_FD2PATH\":         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":           reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_FVERSION\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_FWSTAT\":          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":           reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_NOTED\":           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_NOTIFY\":          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_NSEC\":            reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_OPEN\":            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_OSEEK\":           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_PIPE\":            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_PREAD\":           reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_REMOVE\":          reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_RENDEZVOUS\":      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_RFORK\":           reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_SEEK\":            reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_SEGATTACH\":       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_SEGBRK\":          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_SEGDETACH\":       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_SEGFLUSH\":        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_SEGFREE\":         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_SEMACQUIRE\":      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_SEMRELEASE\":      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_SLEEP\":           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_STAT\":            reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_SYSR1\":           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_TSEMACQUIRE\":     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_WSTAT\":           reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"S_IFBLK\":             reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":             reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":             reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":              reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"S_IFREG\":             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":            reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"Seek\":                reflect.ValueOf(syscall.Seek),\n\t\t\"Setenv\":              reflect.ValueOf(syscall.Setenv),\n\t\t\"SlicePtrFromStrings\": reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"SocketDisableIPv6\":   reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Stat\":                reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":              reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":               reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":              reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":       reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":     reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":      reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"UnmarshalDir\":        reflect.ValueOf(syscall.UnmarshalDir),\n\t\t\"Unmount\":             reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":            reflect.ValueOf(syscall.Unsetenv),\n\t\t\"WaitProcess\":         reflect.ValueOf(syscall.WaitProcess),\n\t\t\"Write\":               reflect.ValueOf(syscall.Write),\n\t\t\"Wstat\":               reflect.ValueOf(syscall.Wstat),\n\n\t\t// type definitions\n\t\t\"Conn\":        reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Dir\":         reflect.ValueOf((*syscall.Dir)(nil)),\n\t\t\"ErrorString\": reflect.ValueOf((*syscall.ErrorString)(nil)),\n\t\t\"Note\":        reflect.ValueOf((*syscall.Note)(nil)),\n\t\t\"ProcAttr\":    reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"Qid\":         reflect.ValueOf((*syscall.Qid)(nil)),\n\t\t\"RawConn\":     reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"SysProcAttr\": reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Timespec\":    reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":     reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Waitmsg\":     reflect.ValueOf((*syscall.Waitmsg)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":    reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\": reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_plan9_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Await\":               reflect.ValueOf(syscall.Await),\n\t\t\"Bind\":                reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":   reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\": reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"Chdir\":               reflect.ValueOf(syscall.Chdir),\n\t\t\"Clearenv\":            reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":               reflect.ValueOf(syscall.Close),\n\t\t\"Create\":              reflect.ValueOf(syscall.Create),\n\t\t\"DMAPPEND\":            reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"DMAUTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"DMDIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"DMEXCL\":              reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"DMEXEC\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DMMOUNT\":             reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"DMREAD\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DMTMP\":               reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"DMWRITE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Dup\":                 reflect.ValueOf(syscall.Dup),\n\t\t\"EACCES\":              reflect.ValueOf(&syscall.EACCES).Elem(),\n\t\t\"EAFNOSUPPORT\":        reflect.ValueOf(&syscall.EAFNOSUPPORT).Elem(),\n\t\t\"EBUSY\":               reflect.ValueOf(&syscall.EBUSY).Elem(),\n\t\t\"EEXIST\":              reflect.ValueOf(&syscall.EEXIST).Elem(),\n\t\t\"EINTR\":               reflect.ValueOf(&syscall.EINTR).Elem(),\n\t\t\"EINVAL\":              reflect.ValueOf(&syscall.EINVAL).Elem(),\n\t\t\"EIO\":                 reflect.ValueOf(&syscall.EIO).Elem(),\n\t\t\"EISDIR\":              reflect.ValueOf(&syscall.EISDIR).Elem(),\n\t\t\"EMFILE\":              reflect.ValueOf(&syscall.EMFILE).Elem(),\n\t\t\"ENAMETOOLONG\":        reflect.ValueOf(&syscall.ENAMETOOLONG).Elem(),\n\t\t\"ENOENT\":              reflect.ValueOf(&syscall.ENOENT).Elem(),\n\t\t\"ENOTDIR\":             reflect.ValueOf(&syscall.ENOTDIR).Elem(),\n\t\t\"EPERM\":               reflect.ValueOf(&syscall.EPERM).Elem(),\n\t\t\"EPLAN9\":              reflect.ValueOf(&syscall.EPLAN9).Elem(),\n\t\t\"ERRMAX\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ESPIPE\":              reflect.ValueOf(&syscall.ESPIPE).Elem(),\n\t\t\"ETIMEDOUT\":           reflect.ValueOf(&syscall.ETIMEDOUT).Elem(),\n\t\t\"Environ\":             reflect.ValueOf(syscall.Environ),\n\t\t\"ErrBadName\":          reflect.ValueOf(&syscall.ErrBadName).Elem(),\n\t\t\"ErrBadStat\":          reflect.ValueOf(&syscall.ErrBadStat).Elem(),\n\t\t\"ErrShortStat\":        reflect.ValueOf(&syscall.ErrShortStat).Elem(),\n\t\t\"Fchdir\":              reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fd2path\":             reflect.ValueOf(syscall.Fd2path),\n\t\t\"Fixwd\":               reflect.ValueOf(syscall.Fixwd),\n\t\t\"ForkLock\":            reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":               reflect.ValueOf(syscall.Fstat),\n\t\t\"Fwstat\":              reflect.ValueOf(syscall.Fwstat),\n\t\t\"Getegid\":             reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":              reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":             reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":              reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":           reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":         reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpid\":              reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":             reflect.ValueOf(syscall.Getppid),\n\t\t\"Gettimeofday\":        reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":              reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":               reflect.ValueOf(syscall.Getwd),\n\t\t\"ImplementsGetwd\":     reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"MAFTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MBEFORE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCACHE\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MCREATE\":             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"MORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MREPL\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Mkdir\":               reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mount\":               reflect.ValueOf(syscall.Mount),\n\t\t\"NewError\":            reflect.ValueOf(syscall.NewError),\n\t\t\"NsecToTimeval\":       reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"O_APPEND\":            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_CREAT\":             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_EXCL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_NOCTTY\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDONLY\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SYNC\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_TRUNC\":             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_WRONLY\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                reflect.ValueOf(syscall.Open),\n\t\t\"Pipe\":                reflect.ValueOf(syscall.Pipe),\n\t\t\"Pread\":               reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":              reflect.ValueOf(syscall.Pwrite),\n\t\t\"QTAPPEND\":            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"QTAUTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"QTDIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"QTEXCL\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"QTFILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"QTMOUNT\":             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"QTTMP\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RFCENVG\":             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RFCFDG\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RFCNAMEG\":            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RFENVG\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RFFDG\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RFMEM\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RFNAMEG\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RFNOMNT\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RFNOTEG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RFNOWAIT\":            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RFPROC\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RFREND\":              reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"Read\":                reflect.ValueOf(syscall.Read),\n\t\t\"Remove\":              reflect.ValueOf(syscall.Remove),\n\t\t\"SIGABRT\":             reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":             reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGHUP\":              reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGINT\":              reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGKILL\":             reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGTERM\":             reflect.ValueOf(syscall.SIGTERM),\n\t\t\"STATFIXLEN\":          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"STATMAX\":             reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SYS_ALARM\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_AWAIT\":           reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_BIND\":            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_BRK_\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_CREATE\":          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_DUP\":             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_ERRSTR\":          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_EXEC\":            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_EXITS\":           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_FAUTH\":           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_FD2PATH\":         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":           reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_FVERSION\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_FWSTAT\":          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":           reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_NOTED\":           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_NOTIFY\":          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_NSEC\":            reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_OPEN\":            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_OSEEK\":           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_PIPE\":            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_PREAD\":           reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_REMOVE\":          reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_RENDEZVOUS\":      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_RFORK\":           reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_SEEK\":            reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_SEGATTACH\":       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_SEGBRK\":          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_SEGDETACH\":       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_SEGFLUSH\":        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_SEGFREE\":         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_SEMACQUIRE\":      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_SEMRELEASE\":      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_SLEEP\":           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_STAT\":            reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_SYSR1\":           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_TSEMACQUIRE\":     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_WSTAT\":           reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"S_IFBLK\":             reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":             reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":             reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":              reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"S_IFREG\":             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":            reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"Seek\":                reflect.ValueOf(syscall.Seek),\n\t\t\"Setenv\":              reflect.ValueOf(syscall.Setenv),\n\t\t\"SlicePtrFromStrings\": reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"SocketDisableIPv6\":   reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Stat\":                reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":              reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":               reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":              reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":       reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":     reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":      reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"UnmarshalDir\":        reflect.ValueOf(syscall.UnmarshalDir),\n\t\t\"Unmount\":             reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":            reflect.ValueOf(syscall.Unsetenv),\n\t\t\"WaitProcess\":         reflect.ValueOf(syscall.WaitProcess),\n\t\t\"Write\":               reflect.ValueOf(syscall.Write),\n\t\t\"Wstat\":               reflect.ValueOf(syscall.Wstat),\n\n\t\t// type definitions\n\t\t\"Conn\":        reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Dir\":         reflect.ValueOf((*syscall.Dir)(nil)),\n\t\t\"ErrorString\": reflect.ValueOf((*syscall.ErrorString)(nil)),\n\t\t\"Note\":        reflect.ValueOf((*syscall.Note)(nil)),\n\t\t\"ProcAttr\":    reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"Qid\":         reflect.ValueOf((*syscall.Qid)(nil)),\n\t\t\"RawConn\":     reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"SysProcAttr\": reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Timespec\":    reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":     reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Waitmsg\":     reflect.ValueOf((*syscall.Waitmsg)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":    reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\": reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_plan9_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Await\":               reflect.ValueOf(syscall.Await),\n\t\t\"Bind\":                reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":   reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\": reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"Chdir\":               reflect.ValueOf(syscall.Chdir),\n\t\t\"Clearenv\":            reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":               reflect.ValueOf(syscall.Close),\n\t\t\"Create\":              reflect.ValueOf(syscall.Create),\n\t\t\"DMAPPEND\":            reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"DMAUTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"DMDIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"DMEXCL\":              reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"DMEXEC\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DMMOUNT\":             reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"DMREAD\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DMTMP\":               reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"DMWRITE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Dup\":                 reflect.ValueOf(syscall.Dup),\n\t\t\"EACCES\":              reflect.ValueOf(&syscall.EACCES).Elem(),\n\t\t\"EAFNOSUPPORT\":        reflect.ValueOf(&syscall.EAFNOSUPPORT).Elem(),\n\t\t\"EBUSY\":               reflect.ValueOf(&syscall.EBUSY).Elem(),\n\t\t\"EEXIST\":              reflect.ValueOf(&syscall.EEXIST).Elem(),\n\t\t\"EINTR\":               reflect.ValueOf(&syscall.EINTR).Elem(),\n\t\t\"EINVAL\":              reflect.ValueOf(&syscall.EINVAL).Elem(),\n\t\t\"EIO\":                 reflect.ValueOf(&syscall.EIO).Elem(),\n\t\t\"EISDIR\":              reflect.ValueOf(&syscall.EISDIR).Elem(),\n\t\t\"EMFILE\":              reflect.ValueOf(&syscall.EMFILE).Elem(),\n\t\t\"ENAMETOOLONG\":        reflect.ValueOf(&syscall.ENAMETOOLONG).Elem(),\n\t\t\"ENOENT\":              reflect.ValueOf(&syscall.ENOENT).Elem(),\n\t\t\"ENOTDIR\":             reflect.ValueOf(&syscall.ENOTDIR).Elem(),\n\t\t\"EPERM\":               reflect.ValueOf(&syscall.EPERM).Elem(),\n\t\t\"EPLAN9\":              reflect.ValueOf(&syscall.EPLAN9).Elem(),\n\t\t\"ERRMAX\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ESPIPE\":              reflect.ValueOf(&syscall.ESPIPE).Elem(),\n\t\t\"ETIMEDOUT\":           reflect.ValueOf(&syscall.ETIMEDOUT).Elem(),\n\t\t\"Environ\":             reflect.ValueOf(syscall.Environ),\n\t\t\"ErrBadName\":          reflect.ValueOf(&syscall.ErrBadName).Elem(),\n\t\t\"ErrBadStat\":          reflect.ValueOf(&syscall.ErrBadStat).Elem(),\n\t\t\"ErrShortStat\":        reflect.ValueOf(&syscall.ErrShortStat).Elem(),\n\t\t\"Fchdir\":              reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fd2path\":             reflect.ValueOf(syscall.Fd2path),\n\t\t\"Fixwd\":               reflect.ValueOf(syscall.Fixwd),\n\t\t\"ForkLock\":            reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":               reflect.ValueOf(syscall.Fstat),\n\t\t\"Fwstat\":              reflect.ValueOf(syscall.Fwstat),\n\t\t\"Getegid\":             reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":              reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":             reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":              reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":           reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":         reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpid\":              reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":             reflect.ValueOf(syscall.Getppid),\n\t\t\"Gettimeofday\":        reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":              reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":               reflect.ValueOf(syscall.Getwd),\n\t\t\"ImplementsGetwd\":     reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"MAFTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MBEFORE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCACHE\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MCREATE\":             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"MORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MREPL\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Mkdir\":               reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mount\":               reflect.ValueOf(syscall.Mount),\n\t\t\"NewError\":            reflect.ValueOf(syscall.NewError),\n\t\t\"NsecToTimeval\":       reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"O_APPEND\":            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_CREAT\":             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_EXCL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_NOCTTY\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDONLY\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SYNC\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_TRUNC\":             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_WRONLY\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                reflect.ValueOf(syscall.Open),\n\t\t\"Pipe\":                reflect.ValueOf(syscall.Pipe),\n\t\t\"Pread\":               reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":              reflect.ValueOf(syscall.Pwrite),\n\t\t\"QTAPPEND\":            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"QTAUTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"QTDIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"QTEXCL\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"QTFILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"QTMOUNT\":             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"QTTMP\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RFCENVG\":             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RFCFDG\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RFCNAMEG\":            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RFENVG\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RFFDG\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RFMEM\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RFNAMEG\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RFNOMNT\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RFNOTEG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RFNOWAIT\":            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RFPROC\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RFREND\":              reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"Read\":                reflect.ValueOf(syscall.Read),\n\t\t\"Remove\":              reflect.ValueOf(syscall.Remove),\n\t\t\"SIGABRT\":             reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":             reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGHUP\":              reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGINT\":              reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGKILL\":             reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGTERM\":             reflect.ValueOf(syscall.SIGTERM),\n\t\t\"STATFIXLEN\":          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"STATMAX\":             reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SYS_ALARM\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_AWAIT\":           reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_BIND\":            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_BRK_\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_CREATE\":          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_DUP\":             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_ERRSTR\":          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_EXEC\":            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_EXITS\":           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_FAUTH\":           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_FD2PATH\":         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":           reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_FVERSION\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_FWSTAT\":          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":           reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_NOTED\":           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_NOTIFY\":          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_NSEC\":            reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_OPEN\":            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_OSEEK\":           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_PIPE\":            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_PREAD\":           reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_REMOVE\":          reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_RENDEZVOUS\":      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_RFORK\":           reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_SEEK\":            reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_SEGATTACH\":       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_SEGBRK\":          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_SEGDETACH\":       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_SEGFLUSH\":        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_SEGFREE\":         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_SEMACQUIRE\":      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_SEMRELEASE\":      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_SLEEP\":           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_STAT\":            reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_SYSR1\":           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_TSEMACQUIRE\":     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_WSTAT\":           reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"S_IFBLK\":             reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":             reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":             reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":              reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"S_IFREG\":             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":            reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"Seek\":                reflect.ValueOf(syscall.Seek),\n\t\t\"Setenv\":              reflect.ValueOf(syscall.Setenv),\n\t\t\"SlicePtrFromStrings\": reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"SocketDisableIPv6\":   reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Stat\":                reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":              reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":               reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":              reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":       reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":     reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":      reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"UnmarshalDir\":        reflect.ValueOf(syscall.UnmarshalDir),\n\t\t\"Unmount\":             reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":            reflect.ValueOf(syscall.Unsetenv),\n\t\t\"WaitProcess\":         reflect.ValueOf(syscall.WaitProcess),\n\t\t\"Write\":               reflect.ValueOf(syscall.Write),\n\t\t\"Wstat\":               reflect.ValueOf(syscall.Wstat),\n\n\t\t// type definitions\n\t\t\"Conn\":        reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Dir\":         reflect.ValueOf((*syscall.Dir)(nil)),\n\t\t\"ErrorString\": reflect.ValueOf((*syscall.ErrorString)(nil)),\n\t\t\"Note\":        reflect.ValueOf((*syscall.Note)(nil)),\n\t\t\"ProcAttr\":    reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"Qid\":         reflect.ValueOf((*syscall.Qid)(nil)),\n\t\t\"RawConn\":     reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"SysProcAttr\": reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Timespec\":    reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":     reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Waitmsg\":     reflect.ValueOf((*syscall.Waitmsg)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":    reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\": reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_solaris_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_802\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_CCITT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_ECMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_FILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_GOSIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_INET_OFFLOAD\":               reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_KEY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_NBS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_NCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_NIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_NS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_OSINET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_PACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_POLICY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SNA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_TRILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_UNIX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ARPHRD_FRAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ARPHRD_IB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IPATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":               reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"Accept\":                        reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                       reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                        reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                       reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"B1200\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B153600\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"B1800\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B230400\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"B2400\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B300\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B307200\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"B38400\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B460800\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"B4800\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B57600\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"B600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B76800\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"B921600\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"B9600\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1072676233\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST32\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1073200521\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGETLIF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1081623147\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1074807419\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT32\":               reflect.ValueOf(constant.MakeFromLiteral(\"1074283131\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074020984\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1082147439\", token.INT, 0)),\n\t\t\"BIOCGSTATSOLD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2147204496\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1073462682\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2147204490\", token.INT, 0)),\n\t\t\"BIOCSETF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2146418073\", token.INT, 0)),\n\t\t\"BIOCSETF32\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2146942361\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2145369492\", token.INT, 0)),\n\t\t\"BIOCSETLIF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2139602324\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2147204491\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2146418054\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT32\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2146942342\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2147204487\", token.INT, 0)),\n\t\t\"BIOCSTCPF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2146418062\", token.INT, 0)),\n\t\t\"BIOCSUDPF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2146418061\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DFLTBUFSIZE\":               reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"BPF_DIV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                          reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":             reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":           reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CSWTCH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                         reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                         reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                         reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                        reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                      reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                         reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                   reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                       reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                     reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                       reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_AIRONET_HEADER\":            reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":    reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":              reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":              reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                     reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                     reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":          reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":      reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPOIB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":              reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":              reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":             reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":             reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":            reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":              reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":              reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":             reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":           reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":          reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":               reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":             reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":          reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":            reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_NULL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":              reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RAWAF_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"35913728\", token.INT, 0)),\n\t\t\"DLT_RIO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":         reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Dup\":                           reflect.ValueOf(syscall.Dup),\n\t\t\"E2BIG\":                         reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                        reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                    reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                 reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                          reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                  reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                        reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                      reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                         reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                         reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                        reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                       reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                         reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                       reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                       reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                        reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                         reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                     reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                        reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                        reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                         reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                  reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                  reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                    reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                       reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                     reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                  reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                          reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                        reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                        reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                        reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                         reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                     reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                  reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                         reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                        reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                   reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                         reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                        reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                           reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                       reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                        reflect.ValueOf(syscall.EISDIR),\n\t\t\"EL2HLT\":                        reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                      reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                        reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                        reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                       reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                       reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                      reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                       reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                       reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                        reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOCKUNMAPPED\":                 reflect.ValueOf(syscall.ELOCKUNMAPPED),\n\t\t\"ELOOP\":                         reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                        reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                        reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMPTY_SET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EMSGSIZE\":                      reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMT_CPCOVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMULTIHOP\":                     reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                  reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENETDOWN\":                      reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                     reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                   reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                        reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                        reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                       reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                        reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                       reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                        reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                        reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                       reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                        reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                       reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                        reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                        reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                        reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                        reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                   reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                        reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                         reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                        reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                        reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTACTIVE\":                    reflect.ValueOf(syscall.ENOTACTIVE),\n\t\t\"ENOTBLK\":                       reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                      reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                       reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                     reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":               reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                      reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                       reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                        reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                      reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                         reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                    reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                     reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                    reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                         reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                  reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                         reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROTO\":                        reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":               reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                    reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"EQUALITY_CHECK\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ERANGE\":                        reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                       reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                       reflect.ValueOf(syscall.EREMOTE),\n\t\t\"ERESTART\":                      reflect.ValueOf(syscall.ERESTART),\n\t\t\"EROFS\":                         reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                     reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":               reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                        reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                         reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                        reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                        reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                      reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETIME\":                         reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                     reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                  reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                       reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUNATCH\":                       reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                        reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                   reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                         reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                        reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"Environ\":                       reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_NFDBITS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"FLUSHALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FLUSHDATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"FLUSHO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"F_ALLOCSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_ALLOCSP64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_BADFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"F_BLKSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"F_BLOCKS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"F_CHKFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_COMPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_DUP2FD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_DUP2FD_CLOEXEC\":              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"F_DUPFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"F_FREESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_FREESP64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_GETFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_GETLK64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_GETOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"F_GETXFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"F_HASREMOTELOCKS\":              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"F_ISSTREAM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_MANDDNY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_MDACC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"F_NODNY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_NPRIV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_PRIV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_QUOTACTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"F_RDACC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_RDDNY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_RDLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_REVOKE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"F_RMACC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_RMDNY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_RWACC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_RWDNY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_SETFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64_NBMAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"F_SETLKW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLK_NBMAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"F_SETOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"F_SHARE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"F_SHARE_NBMAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"F_UNLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_UNLKSYS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_UNSHARE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"F_WRACC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRDNY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Fchdir\":                        reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                        reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                        reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                    reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"ForkLock\":                      reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                     reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                         reflect.ValueOf(syscall.Fstat),\n\t\t\"Fsync\":                         reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                     reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Getcwd\":                        reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                      reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                       reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                        reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                       reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getexecname\":                   reflect.ValueOf(syscall.Getexecname),\n\t\t\"Getgid\":                        reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                     reflect.ValueOf(syscall.Getgroups),\n\t\t\"Gethostname\":                   reflect.ValueOf(syscall.Gethostname),\n\t\t\"Getpagesize\":                   reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                   reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpid\":                        reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                       reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                   reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                     reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                     reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                   reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptInt\":                 reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                  reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                        reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                         reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICRNL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_ADDRCONF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8736013826906\", token.INT, 0)),\n\t\t\"IFF_COS_ENABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DEPRECATED\":                reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_DHCPRUNNING\":               reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_DUPLICATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"274877906944\", token.INT, 0)),\n\t\t\"IFF_FAILED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"IFF_FIXEDMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"68719476736\", token.INT, 0)),\n\t\t\"IFF_INACTIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IFF_INTELLIGENT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_IPMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"549755813888\", token.INT, 0)),\n\t\t\"IFF_IPMP_CANTCHANGE\":           reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"IFF_IPMP_INVALID\":              reflect.ValueOf(constant.MakeFromLiteral(\"8256487552\", token.INT, 0)),\n\t\t\"IFF_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IFF_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IFF_L3PROTECT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4398046511104\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_MULTI_BCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOACCEPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFAILOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"IFF_NOLINKLOCAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"2199023255552\", token.INT, 0)),\n\t\t\"IFF_NOLOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_NONUD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_NORTEXCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NOXMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_OFFLINE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PREFERRED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17179869184\", token.INT, 0)),\n\t\t\"IFF_PRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_ROUTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_STANDBY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IFF_TEMPORARY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34359738368\", token.INT, 0)),\n\t\t\"IFF_UNNUMBERED\":                reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_UP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"137438953472\", token.INT, 0)),\n\t\t\"IFF_VRRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1099511627776\", token.INT, 0)),\n\t\t\"IFF_XRESOLV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_6TO4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_DS3\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"IFT_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":               reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":               reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_RS232\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_T1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_V35\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_AUTOCONF_MASK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_AUTOCONF_NET\":               reflect.ValueOf(constant.MakeFromLiteral(\"2851995648\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_CLASSE_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_PRIVATE12_MASK\":             reflect.ValueOf(constant.MakeFromLiteral(\"4293918720\", token.INT, 0)),\n\t\t\"IN_PRIVATE12_NET\":              reflect.ValueOf(constant.MakeFromLiteral(\"2886729728\", token.INT, 0)),\n\t\t\"IN_PRIVATE16_MASK\":             reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_PRIVATE16_NET\":              reflect.ValueOf(constant.MakeFromLiteral(\"3232235520\", token.INT, 0)),\n\t\t\"IN_PRIVATE8_MASK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_PRIVATE8_NET\":               reflect.ValueOf(constant.MakeFromLiteral(\"167772160\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":               reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":              reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_OSPF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":               reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_BOUND_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_FLOWLABEL\":       reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_TCLASS\":          reflect.ValueOf(constant.MakeFromLiteral(\"61455\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_PAD1_OPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_CGA\":           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_CGADEFAULT\":    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_CGAMASK\":       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_COA\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_DEFAULT\":       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_HOME\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_MASK\":          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_MIPDEFAULT\":    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_MIPMASK\":       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_NONCGA\":        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_PUBLIC\":        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_TMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_TMPDEFAULT\":    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_TMPMASK\":       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":              reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":              reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDRDSTOPTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SEC_OPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_SRC_PREFERENCES\":          reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_UNSPEC_SRC\":               reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_BOUND_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_BROADCAST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"IP_BROADCAST_TTL\":              reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DHCPINIT_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IP_DONTFRAG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_DONTROUTE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":              reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_NEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVPKTINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVSLLA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_REUSEADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"IP_SEC_OPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_TOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":             reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_UNSPEC_SRC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"ISIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":               reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Lchown\":                        reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                          reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                        reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                         reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_ACCESS_DEFAULT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_ACCESS_LWP\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_ACCESS_MANY\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_32BIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_ALIGN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_ANON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_FILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_INITDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_TEXT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_DUPCTRL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_EOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_MAXIOVLEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_NOTIFICATION\":              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_OOB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_XPG4_2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_OLDSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MS_SYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"M_FLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"Mkdir\":                         reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mknod\":                         reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                          reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                        reflect.ValueOf(syscall.Munmap),\n\t\t\"NOFLSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                     reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                 reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONLCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPENFAIL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"OPOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6291459\", token.INT, 0)),\n\t\t\"O_APPEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"O_CREAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_DSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_EXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_NDELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NOLINKS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_RDONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_SEARCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_SIOCGIFCONF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1073190636\", token.INT, 0)),\n\t\t\"O_SIOCGLIFCONF\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1072666248\", token.INT, 0)),\n\t\t\"O_SYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_TRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_XATTR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"Open\":                          reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PAREXT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PARMRK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ParseDirent\":                   reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseSocketControlMessage\":     reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":               reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"Pathconf\":                      reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                          reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                         reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                         reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                        reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_SRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_NUMBITS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_SRC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTIRT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_SETSRC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_ZONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTM_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_CHGADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_FREEADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RT_AWARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                          reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                    reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                      reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                      reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                       reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                        reflect.ValueOf(syscall.Rename),\n\t\t\"Rmdir\":                         reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_RIGHTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SCM_UCRED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4114\", token.INT, 0)),\n\t\t\"SHUT_RD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIG2STR_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SIGABRT\":                       reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                       reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                        reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCANCEL\":                     reflect.ValueOf(syscall.SIGCANCEL),\n\t\t\"SIGCHLD\":                       reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                        reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                       reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                        reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                        reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGFREEZE\":                     reflect.ValueOf(syscall.SIGFREEZE),\n\t\t\"SIGHUP\":                        reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                        reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                        reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                         reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                        reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGJVM1\":                       reflect.ValueOf(syscall.SIGJVM1),\n\t\t\"SIGJVM2\":                       reflect.ValueOf(syscall.SIGJVM2),\n\t\t\"SIGKILL\":                       reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGLOST\":                       reflect.ValueOf(syscall.SIGLOST),\n\t\t\"SIGLWP\":                        reflect.ValueOf(syscall.SIGLWP),\n\t\t\"SIGPIPE\":                       reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                       reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                       reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                        reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                       reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                       reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                       reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                        reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                       reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHAW\":                       reflect.ValueOf(syscall.SIGTHAW),\n\t\t\"SIGTRAP\":                       reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                       reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                       reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                       reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                        reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                       reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                       reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                     reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWAITING\":                    reflect.ValueOf(syscall.SIGWAITING),\n\t\t\"SIGWINCH\":                      reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                       reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                       reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIGXRES\":                       reflect.ValueOf(syscall.SIGXRES),\n\t\t\"SIOCADDMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359567\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2144308726\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2145097440\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359566\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2144308725\", token.INT, 0)),\n\t\t\"SIOCDIPSECONFIG\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147194473\", token.INT, 0)),\n\t\t\"SIOCDXARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2147456600\", token.INT, 0)),\n\t\t\"SIOCFIPSECONFIG\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147194475\", token.INT, 0)),\n\t\t\"SIOCGARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-1071355617\", token.INT, 0)),\n\t\t\"SIOCGDSTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1073714780\", token.INT, 0)),\n\t\t\"SIOCGENADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1071617707\", token.INT, 0)),\n\t\t\"SIOCGENPSTATS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1071617735\", token.INT, 0)),\n\t\t\"SIOCGETLSGCNT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1072664043\", token.INT, 0)),\n\t\t\"SIOCGETNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074819892\", token.INT, 0)),\n\t\t\"SIOCGETPEER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074819893\", token.INT, 0)),\n\t\t\"SIOCGETPROP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073712964\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1072401899\", token.INT, 0)),\n\t\t\"SIOCGETSYNC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1071617747\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1072401900\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1071617779\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1071617769\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073190564\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1071617777\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617775\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1071617607\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617702\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071617773\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1071617765\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071617770\", token.INT, 0)),\n\t\t\"SIOCGIFMUXID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617704\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1071617767\", token.INT, 0)),\n\t\t\"SIOCGIFNUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074030935\", token.INT, 0)),\n\t\t\"SIOCGIP6ADDRPOLICY\":            reflect.ValueOf(constant.MakeFromLiteral(\"-1073714782\", token.INT, 0)),\n\t\t\"SIOCGIPMSFILTER\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1073452620\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1065850511\", token.INT, 0)),\n\t\t\"SIOCGLIFBINDING\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1065850470\", token.INT, 0)),\n\t\t\"SIOCGLIFBRDADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1065850501\", token.INT, 0)),\n\t\t\"SIOCGLIFCONF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1072666203\", token.INT, 0)),\n\t\t\"SIOCGLIFDADSTATE\":              reflect.ValueOf(constant.MakeFromLiteral(\"-1065850434\", token.INT, 0)),\n\t\t\"SIOCGLIFDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1065850509\", token.INT, 0)),\n\t\t\"SIOCGLIFFLAGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1065850507\", token.INT, 0)),\n\t\t\"SIOCGLIFGROUPINFO\":             reflect.ValueOf(constant.MakeFromLiteral(\"-1061918307\", token.INT, 0)),\n\t\t\"SIOCGLIFGROUPNAME\":             reflect.ValueOf(constant.MakeFromLiteral(\"-1065850468\", token.INT, 0)),\n\t\t\"SIOCGLIFHWADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1065850432\", token.INT, 0)),\n\t\t\"SIOCGLIFINDEX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1065850491\", token.INT, 0)),\n\t\t\"SIOCGLIFLNKINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1065850484\", token.INT, 0)),\n\t\t\"SIOCGLIFMETRIC\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1065850497\", token.INT, 0)),\n\t\t\"SIOCGLIFMTU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1065850502\", token.INT, 0)),\n\t\t\"SIOCGLIFMUXID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1065850493\", token.INT, 0)),\n\t\t\"SIOCGLIFNETMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1065850499\", token.INT, 0)),\n\t\t\"SIOCGLIFNUM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1072928382\", token.INT, 0)),\n\t\t\"SIOCGLIFSRCOF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1072666191\", token.INT, 0)),\n\t\t\"SIOCGLIFSUBNET\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1065850486\", token.INT, 0)),\n\t\t\"SIOCGLIFTOKEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1065850488\", token.INT, 0)),\n\t\t\"SIOCGLIFUSESRC\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1065850449\", token.INT, 0)),\n\t\t\"SIOCGLIFZONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1065850454\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGMSFILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1073452622\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1072666182\", token.INT, 0)),\n\t\t\"SIOCGXARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1073714777\", token.INT, 0)),\n\t\t\"SIOCIFDETACH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359560\", token.INT, 0)),\n\t\t\"SIOCILB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1073452613\", token.INT, 0)),\n\t\t\"SIOCLIFADDIF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1065850513\", token.INT, 0)),\n\t\t\"SIOCLIFDELND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2139592307\", token.INT, 0)),\n\t\t\"SIOCLIFGETND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1065850482\", token.INT, 0)),\n\t\t\"SIOCLIFREMOVEIF\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2139592338\", token.INT, 0)),\n\t\t\"SIOCLIFSETND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2139592305\", token.INT, 0)),\n\t\t\"SIOCLIPSECONFIG\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147194472\", token.INT, 0)),\n\t\t\"SIOCLOWER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2145359575\", token.INT, 0)),\n\t\t\"SIOCSARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2145097442\", token.INT, 0)),\n\t\t\"SIOCSCTPGOPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1072666195\", token.INT, 0)),\n\t\t\"SIOCSCTPPEELOFF\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1073452626\", token.INT, 0)),\n\t\t\"SIOCSCTPSOPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2146408020\", token.INT, 0)),\n\t\t\"SIOCSENABLESDP\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1073452617\", token.INT, 0)),\n\t\t\"SIOCSETPROP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2147192643\", token.INT, 0)),\n\t\t\"SIOCSETSYNC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2145359572\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2147192064\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2145359604\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2145359592\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2145359602\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359600\", token.INT, 0)),\n\t\t\"SIOCSIFINDEX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359525\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2145359598\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2145359588\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2145359595\", token.INT, 0)),\n\t\t\"SIOCSIFMUXID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359527\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2145359543\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2145359590\", token.INT, 0)),\n\t\t\"SIOCSIP6ADDRPOLICY\":            reflect.ValueOf(constant.MakeFromLiteral(\"-2147456605\", token.INT, 0)),\n\t\t\"SIOCSIPMSFILTER\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147194443\", token.INT, 0)),\n\t\t\"SIOCSIPSECONFIG\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147194474\", token.INT, 0)),\n\t\t\"SIOCSLGETREQ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617721\", token.INT, 0)),\n\t\t\"SIOCSLIFADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2139592336\", token.INT, 0)),\n\t\t\"SIOCSLIFBRDADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2139592324\", token.INT, 0)),\n\t\t\"SIOCSLIFDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2139592334\", token.INT, 0)),\n\t\t\"SIOCSLIFFLAGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2139592332\", token.INT, 0)),\n\t\t\"SIOCSLIFGROUPNAME\":             reflect.ValueOf(constant.MakeFromLiteral(\"-2139592293\", token.INT, 0)),\n\t\t\"SIOCSLIFINDEX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2139592314\", token.INT, 0)),\n\t\t\"SIOCSLIFLNKINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2139592309\", token.INT, 0)),\n\t\t\"SIOCSLIFMETRIC\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2139592320\", token.INT, 0)),\n\t\t\"SIOCSLIFMTU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2139592327\", token.INT, 0)),\n\t\t\"SIOCSLIFMUXID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2139592316\", token.INT, 0)),\n\t\t\"SIOCSLIFNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1065850495\", token.INT, 0)),\n\t\t\"SIOCSLIFNETMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2139592322\", token.INT, 0)),\n\t\t\"SIOCSLIFPREFIX\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1065850433\", token.INT, 0)),\n\t\t\"SIOCSLIFSUBNET\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2139592311\", token.INT, 0)),\n\t\t\"SIOCSLIFTOKEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2139592313\", token.INT, 0)),\n\t\t\"SIOCSLIFUSESRC\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2139592272\", token.INT, 0)),\n\t\t\"SIOCSLIFZONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2139592277\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2147192062\", token.INT, 0)),\n\t\t\"SIOCSLSTAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2145359544\", token.INT, 0)),\n\t\t\"SIOCSMSFILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2147194445\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2147192056\", token.INT, 0)),\n\t\t\"SIOCSPROMISC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2147194576\", token.INT, 0)),\n\t\t\"SIOCSQPTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1073452616\", token.INT, 0)),\n\t\t\"SIOCSSDSTATS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617746\", token.INT, 0)),\n\t\t\"SIOCSSESTATS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617745\", token.INT, 0)),\n\t\t\"SIOCSXARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2147456602\", token.INT, 0)),\n\t\t\"SIOCTMYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073190512\", token.INT, 0)),\n\t\t\"SIOCTMYSITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073190510\", token.INT, 0)),\n\t\t\"SIOCTONLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073190511\", token.INT, 0)),\n\t\t\"SIOCUPPER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2145359576\", token.INT, 0)),\n\t\t\"SIOCX25RCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071617732\", token.INT, 0)),\n\t\t\"SIOCX25TBL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071617731\", token.INT, 0)),\n\t\t\"SIOCX25XMT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071617733\", token.INT, 0)),\n\t\t\"SIOCXPROTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536900407\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOCK_NDELAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_TYPE_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOL_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65532\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65533\", token.INT, 0)),\n\t\t\"SOL_ROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SO_ALLZONES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4116\", token.INT, 0)),\n\t\t\"SO_ANON_MLP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"1073741825\", token.INT, 0)),\n\t\t\"SO_BAND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_COPYOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DELIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"1073741826\", token.INT, 0)),\n\t\t\"SO_DGRAM_ERRIND\":               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"SO_DONTLINGER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-129\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"SO_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_EXCLBIND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4117\", token.INT, 0)),\n\t\t\"SO_HIWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ISNTTY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_ISTTY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_MAC_EXEMPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"SO_MAC_IMPLICIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_MAXBLK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"SO_MAXPSZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_MINPSZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_MREADOFF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_MREADON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_NDELOFF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_NDELON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_NODELIM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PROTOTYPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVPSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_READOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_RECVUCRED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_SECATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_STRHOLD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"SO_TAIL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SO_TONSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_TOSTOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_TYPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_VRRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4119\", token.INT, 0)),\n\t\t\"SO_WROFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"S_IFBLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                          reflect.ValueOf(syscall.Seek),\n\t\t\"Sendfile\":                      reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                       reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                      reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                        reflect.ValueOf(syscall.Sendto),\n\t\t\"SetNonblock\":                   reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                       reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                        reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                       reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                        reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                     reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setpgid\":                       reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                   reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                      reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                      reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                     reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                        reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":        reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":              reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":            reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":           reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                 reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":              reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":              reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":             reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Setuid\":                        reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                 reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":             reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfData\":                  reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":             reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":        reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":            reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":           reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                        reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":             reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                    reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                          reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":                        reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                         reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                        reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                 reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":               reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                       reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                          reflect.ValueOf(syscall.Sync),\n\t\t\"TCFLSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21511\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_ABORT_THRESHOLD\":           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_ANONPRIVBIND\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_CONN_ABORT_THRESHOLD\":      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_CONN_NOTIFY_THRESHOLD\":     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_CORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_EXCLBIND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"TCP_INIT_CWND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_KEEPALIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_KEEPALIVE_ABORT_THRESHOLD\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_KEEPALIVE_THRESHOLD\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MSS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOTIFY_THRESHOLD\":          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_RECVDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_RTO_INITIAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"TCP_RTO_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"TCP_RTO_MIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21504\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29818\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29816\", token.INT, 0)),\n\t\t\"TIOCCILOOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29804\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29709\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29712\", token.INT, 0)),\n\t\t\"TIOCGETC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29714\", token.INT, 0)),\n\t\t\"TIOCGETD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29696\", token.INT, 0)),\n\t\t\"TIOCGETP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29704\", token.INT, 0)),\n\t\t\"TIOCGLTC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29812\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29716\", token.INT, 0)),\n\t\t\"TIOCGPPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21629\", token.INT, 0)),\n\t\t\"TIOCGPPSEV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21631\", token.INT, 0)),\n\t\t\"TIOCGSID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29718\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21609\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21608\", token.INT, 0)),\n\t\t\"TIOCHPCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29698\", token.INT, 0)),\n\t\t\"TIOCKBOF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21513\", token.INT, 0)),\n\t\t\"TIOCKBON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21512\", token.INT, 0)),\n\t\t\"TIOCLBIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29822\", token.INT, 0)),\n\t\t\"TIOCLBIS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29823\", token.INT, 0)),\n\t\t\"TIOCLGET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29820\", token.INT, 0)),\n\t\t\"TIOCLSET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29821\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29724\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29723\", token.INT, 0)),\n\t\t\"TIOCMGET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29725\", token.INT, 0)),\n\t\t\"TIOCMSET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29722\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29809\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29710\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29811\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29726\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29819\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29828\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29817\", token.INT, 0)),\n\t\t\"TIOCSETC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29713\", token.INT, 0)),\n\t\t\"TIOCSETD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29697\", token.INT, 0)),\n\t\t\"TIOCSETN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29706\", token.INT, 0)),\n\t\t\"TIOCSETP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29705\", token.INT, 0)),\n\t\t\"TIOCSIGNAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29727\", token.INT, 0)),\n\t\t\"TIOCSILOOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29805\", token.INT, 0)),\n\t\t\"TIOCSLTC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29813\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29717\", token.INT, 0)),\n\t\t\"TIOCSPPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21630\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21610\", token.INT, 0)),\n\t\t\"TIOCSTART\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29806\", token.INT, 0)),\n\t\t\"TIOCSTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29719\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29807\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21607\", token.INT, 0)),\n\t\t\"TOSTOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                 reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                      reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                         reflect.ValueOf(syscall.Umask),\n\t\t\"UnixRights\":                    reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                        reflect.ValueOf(syscall.Unlink),\n\t\t\"Unsetenv\":                      reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                        reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                    reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VCEOF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VCEOL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VDISCARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VDSUSP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VEOL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VERASE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VQUIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTCH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WCONTFLG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"WCONTINUED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WCOREFLG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOHANG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WNOWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WOPTMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"WRAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"WSIGMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WSTOPFLG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WSTOPPED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WTRAPPED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Wait4\":                         reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                         reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":               reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":              reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":           reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":              reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfTimeval\":           reflect.ValueOf((*syscall.BpfTimeval)(nil)),\n\t\t\"BpfVersion\":           reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfData\":               reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":             reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":            reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":  reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtMetrics\":            reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":             reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":     reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timeval32\":            reflect.ValueOf((*syscall.Timeval32)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_wasip1_wasm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_INET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_UNIX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Accept\":                        reflect.ValueOf(syscall.Accept),\n\t\t\"Bind\":                          reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":             reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":           reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"Chdir\":                         reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                         reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                         reflect.ValueOf(syscall.Chown),\n\t\t\"Clearenv\":                      reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                         reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                   reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"Connect\":                       reflect.ValueOf(syscall.Connect),\n\t\t\"Dup\":                           reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                          reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                         reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                        reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                    reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                 reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                  reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                        reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                      reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADF\":                         reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                       reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBUSY\":                         reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                     reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                        reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECONNABORTED\":                  reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                  reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                    reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                       reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                  reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                          reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                        reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                        reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                        reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                         reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTUNREACH\":                  reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                         reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                        reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                   reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                         reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                        reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                           reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                       reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                        reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELOOP\":                         reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                        reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                        reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                      reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                     reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                  reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENETDOWN\":                      reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                     reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                   reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                        reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOBUFS\":                       reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                        reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                        reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                       reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                        reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                       reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                        reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                        reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                   reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                        reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                        reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTCAPABLE\":                   reflect.ValueOf(syscall.ENOTCAPABLE),\n\t\t\"ENOTCONN\":                      reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                       reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                     reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":               reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                      reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                       reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                        reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                         reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                    reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                     reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                    reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                         reflect.ValueOf(syscall.EPERM),\n\t\t\"EPIPE\":                         reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROTO\":                        reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":               reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                    reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                        reflect.ValueOf(syscall.ERANGE),\n\t\t\"EROFS\":                         reflect.ValueOf(syscall.EROFS),\n\t\t\"ESPIPE\":                        reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                         reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                        reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIMEDOUT\":                     reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETXTBSY\":                       reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EXDEV\":                         reflect.ValueOf(syscall.EXDEV),\n\t\t\"Environ\":                       reflect.ValueOf(syscall.Environ),\n\t\t\"FDFLAG_APPEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FDFLAG_DSYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FDFLAG_NONBLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FDFLAG_RSYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"FDFLAG_SYNC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"FILESTAT_SET_ATIM\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILESTAT_SET_ATIM_NOW\":         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILESTAT_SET_MTIM\":             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILESTAT_SET_MTIM_NOW\":         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"FILETYPE_BLOCK_DEVICE\":         reflect.ValueOf(syscall.FILETYPE_BLOCK_DEVICE),\n\t\t\"FILETYPE_CHARACTER_DEVICE\":     reflect.ValueOf(syscall.FILETYPE_CHARACTER_DEVICE),\n\t\t\"FILETYPE_DIRECTORY\":            reflect.ValueOf(syscall.FILETYPE_DIRECTORY),\n\t\t\"FILETYPE_REGULAR_FILE\":         reflect.ValueOf(syscall.FILETYPE_REGULAR_FILE),\n\t\t\"FILETYPE_SOCKET_DGRAM\":         reflect.ValueOf(syscall.FILETYPE_SOCKET_DGRAM),\n\t\t\"FILETYPE_SOCKET_STREAM\":        reflect.ValueOf(syscall.FILETYPE_SOCKET_STREAM),\n\t\t\"FILETYPE_SYMBOLIC_LINK\":        reflect.ValueOf(syscall.FILETYPE_SYMBOLIC_LINK),\n\t\t\"FILETYPE_UNKNOWN\":              reflect.ValueOf(syscall.FILETYPE_UNKNOWN),\n\t\t\"F_CNVT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_DUPFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_RDLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_RGETLK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_RSETLK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_RSETLKW\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_UNLKSYS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Fchmod\":                        reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                        reflect.ValueOf(syscall.Fchown),\n\t\t\"Fstat\":                         reflect.ValueOf(syscall.Fstat),\n\t\t\"Fsync\":                         reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                     reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Getegid\":                       reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                        reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                       reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                        reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                     reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                   reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpid\":                        reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                       reflect.ValueOf(syscall.Getppid),\n\t\t\"Getrlimit\":                     reflect.ValueOf(syscall.Getrlimit),\n\t\t\"GetsockoptInt\":                 reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                  reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                        reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                         reflect.ValueOf(syscall.Getwd),\n\t\t\"IPPROTO_IP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":               reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"LOOKUP_SYMLINK_FOLLOW\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Lchown\":                        reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                          reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                        reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                         reflect.ValueOf(syscall.Lstat),\n\t\t\"Mkdir\":                         reflect.ValueOf(syscall.Mkdir),\n\t\t\"NsecToTimespec\":                reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                 reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OFLAG_CREATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"OFLAG_DIRECTORY\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"OFLAG_EXCL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"OFLAG_TRUNC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_APPEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_CREAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_EXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_RDONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_TRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                          reflect.ValueOf(syscall.Open),\n\t\t\"ParseDirent\":                   reflect.ValueOf(syscall.ParseDirent),\n\t\t\"Pipe\":                          reflect.ValueOf(syscall.Pipe),\n\t\t\"Pread\":                         reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                        reflect.ValueOf(syscall.Pwrite),\n\t\t\"RIGHT_FDSTAT_SET_FLAGS\":        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RIGHT_FD_ADVISE\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RIGHT_FD_ALLOCATE\":             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RIGHT_FD_DATASYNC\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RIGHT_FD_FILESTAT_GET\":         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RIGHT_FD_FILESTAT_SET_SIZE\":    reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RIGHT_FD_FILESTAT_SET_TIMES\":   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RIGHT_FD_READ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RIGHT_FD_READDIR\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RIGHT_FD_SEEK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RIGHT_FD_SYNC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RIGHT_FD_TELL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RIGHT_FD_WRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RIGHT_PATH_CREATE_DIRECTORY\":   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RIGHT_PATH_CREATE_FILE\":        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RIGHT_PATH_FILESTAT_GET\":       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RIGHT_PATH_FILESTAT_SET_SIZE\":  reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"RIGHT_PATH_FILESTAT_SET_TIMES\": reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RIGHT_PATH_LINK_SOURCE\":        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RIGHT_PATH_LINK_TARGET\":        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RIGHT_PATH_OPEN\":               reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RIGHT_PATH_READLINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RIGHT_PATH_REMOVE_DIRECTORY\":   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RIGHT_PATH_RENAME_SOURCE\":      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RIGHT_PATH_RENAME_TARGET\":      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RIGHT_PATH_SYMLINK\":            reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RIGHT_PATH_UNLINK_FILE\":        reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RIGHT_POLL_FD_READWRITE\":       reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RIGHT_SOCK_ACCEPT\":             reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RIGHT_SOCK_SHUTDOWN\":           reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RandomGet\":                     reflect.ValueOf(syscall.RandomGet),\n\t\t\"Read\":                          reflect.ValueOf(syscall.Read),\n\t\t\"ReadDir\":                       reflect.ValueOf(syscall.ReadDir),\n\t\t\"Readlink\":                      reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                      reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                       reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                        reflect.ValueOf(syscall.Rename),\n\t\t\"Rmdir\":                         reflect.ValueOf(syscall.Rmdir),\n\t\t\"SHUT_RD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SHUT_WR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SIGABRT\":                       reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                       reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                        reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                       reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                       reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                        reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                        reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                        reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                        reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGKILL\":                       reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGNONE\":                       reflect.ValueOf(syscall.SIGNONE),\n\t\t\"SIGPIPE\":                       reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                       reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                       reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                        reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                       reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                       reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                       reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                        reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                       reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                       reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                       reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                       reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                       reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                        reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                       reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                       reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTARLM\":                     reflect.ValueOf(syscall.SIGVTARLM),\n\t\t\"SIGWINCH\":                      reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                       reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                       reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SOCK_DGRAM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"500\", token.INT, 0)),\n\t\t\"S_IEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFBOUNDSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"77824\", token.INT, 0)),\n\t\t\"S_IFCHR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFCOND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"90112\", token.INT, 0)),\n\t\t\"S_IFDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFDSOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69632\", token.INT, 0)),\n\t\t\"S_IFIFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"S_IFMUTEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"86016\", token.INT, 0)),\n\t\t\"S_IFREG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSEMA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"94208\", token.INT, 0)),\n\t\t\"S_IFSHM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81920\", token.INT, 0)),\n\t\t\"S_IFSHM_SYSV\":                  reflect.ValueOf(constant.MakeFromLiteral(\"98304\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFSOCKADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"73728\", token.INT, 0)),\n\t\t\"S_IREAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_UNSUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"Seek\":                          reflect.ValueOf(syscall.Seek),\n\t\t\"Sendfile\":                      reflect.ValueOf(syscall.Sendfile),\n\t\t\"SendmsgN\":                      reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                        reflect.ValueOf(syscall.Sendto),\n\t\t\"SetNonblock\":                   reflect.ValueOf(syscall.SetNonblock),\n\t\t\"SetReadDeadline\":               reflect.ValueOf(syscall.SetReadDeadline),\n\t\t\"SetWriteDeadline\":              reflect.ValueOf(syscall.SetWriteDeadline),\n\t\t\"Setenv\":                        reflect.ValueOf(syscall.Setenv),\n\t\t\"SetsockoptInt\":                 reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"Socket\":                        reflect.ValueOf(syscall.Socket),\n\t\t\"Stat\":                          reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Stdin\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Stdout\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"StopIO\":                        reflect.ValueOf(syscall.StopIO),\n\t\t\"StringBytePtr\":                 reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":               reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"Symlink\":                       reflect.ValueOf(syscall.Symlink),\n\t\t\"Sysctl\":                        reflect.ValueOf(syscall.Sysctl),\n\t\t\"TimespecToNsec\":                reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                 reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                      reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                         reflect.ValueOf(syscall.Umask),\n\t\t\"Unlink\":                        reflect.ValueOf(syscall.Unlink),\n\t\t\"Unsetenv\":                      reflect.ValueOf(syscall.Unsetenv),\n\t\t\"UtimesNano\":                    reflect.ValueOf(syscall.UtimesNano),\n\t\t\"WHENCE_CUR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WHENCE_END\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WHENCE_SET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Wait4\":                         reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                         reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"Conn\":          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Dircookie\":     reflect.ValueOf((*syscall.Dircookie)(nil)),\n\t\t\"Dirent\":        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"Filetype\":      reflect.ValueOf((*syscall.Filetype)(nil)),\n\t\t\"ProcAttr\":      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"Rlimit\":        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"Rusage\":        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\": reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\": reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"Stat_t\":        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"SysProcAttr\":   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Timespec\":      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_windows_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_INET\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_UNIX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AI_CANONNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AI_NUMERICHOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AI_PASSIVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"APPLICATION_ERROR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"AUTHTYPE_CLIENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AUTHTYPE_SERVER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Accept\":                              reflect.ValueOf(syscall.Accept),\n\t\t\"AcceptEx\":                            reflect.ValueOf(syscall.AcceptEx),\n\t\t\"BASE_PROTOCOL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Bind\":                                reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":                   reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":                 reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CERT_CHAIN_POLICY_AUTHENTICODE\":      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_AUTHENTICODE_TS\":   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_BASE\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_BASIC_CONSTRAINTS\": reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_EV\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_MICROSOFT_ROOT\":    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_NT_AUTH\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_SSL\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_E_CN_NO_MATCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148204815\", token.INT, 0)),\n\t\t\"CERT_E_EXPIRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148204801\", token.INT, 0)),\n\t\t\"CERT_E_PURPOSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148204806\", token.INT, 0)),\n\t\t\"CERT_E_ROLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148204803\", token.INT, 0)),\n\t\t\"CERT_E_UNTRUSTEDROOT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2148204809\", token.INT, 0)),\n\t\t\"CERT_STORE_ADD_ALWAYS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG\":  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_STORE_PROV_MEMORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT\":      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT\":   reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT\": reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT\":    reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT\": reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_BASIC_CONSTRAINTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_EXTENSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_NAME_CONSTRAINTS\":          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_POLICY_CONSTRAINTS\":        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_CYCLIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_EXPLICIT_DISTRUST\":              reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_SIGNATURE_VALID\":            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_TIME_VALID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_VALID_FOR_USAGE\":            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_OFFLINE_REVOCATION\":             reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_REVOKED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_UNTRUSTED_ROOT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CERT_TRUST_NO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY\":          reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CERT_TRUST_REVOCATION_STATUS_UNKNOWN\":         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CREATE_ALWAYS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CREATE_NEW\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CREATE_NEW_PROCESS_GROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CREATE_UNICODE_ENVIRONMENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CRYPT_DEFAULT_CONTAINER_OPTIONAL\":             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CRYPT_DELETEKEYSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CRYPT_MACHINE_KEYSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CRYPT_NEWKEYSET\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CRYPT_SILENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CRYPT_VERIFYCONTEXT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"CTRL_BREAK_EVENT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CTRL_CLOSE_EVENT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CTRL_C_EVENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CTRL_LOGOFF_EVENT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"CTRL_SHUTDOWN_EVENT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"CancelIo\":                                     reflect.ValueOf(syscall.CancelIo),\n\t\t\"CancelIoEx\":                                   reflect.ValueOf(syscall.CancelIoEx),\n\t\t\"CertAddCertificateContextToStore\":             reflect.ValueOf(syscall.CertAddCertificateContextToStore),\n\t\t\"CertCloseStore\":                               reflect.ValueOf(syscall.CertCloseStore),\n\t\t\"CertCreateCertificateContext\":                 reflect.ValueOf(syscall.CertCreateCertificateContext),\n\t\t\"CertEnumCertificatesInStore\":                  reflect.ValueOf(syscall.CertEnumCertificatesInStore),\n\t\t\"CertFreeCertificateChain\":                     reflect.ValueOf(syscall.CertFreeCertificateChain),\n\t\t\"CertFreeCertificateContext\":                   reflect.ValueOf(syscall.CertFreeCertificateContext),\n\t\t\"CertGetCertificateChain\":                      reflect.ValueOf(syscall.CertGetCertificateChain),\n\t\t\"CertOpenStore\":                                reflect.ValueOf(syscall.CertOpenStore),\n\t\t\"CertOpenSystemStore\":                          reflect.ValueOf(syscall.CertOpenSystemStore),\n\t\t\"CertVerifyCertificateChainPolicy\":             reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy),\n\t\t\"Chdir\":                                        reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                                        reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                                        reflect.ValueOf(syscall.Chown),\n\t\t\"Clearenv\":                                     reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                                        reflect.ValueOf(syscall.Close),\n\t\t\"CloseHandle\":                                  reflect.ValueOf(syscall.CloseHandle),\n\t\t\"CloseOnExec\":                                  reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"Closesocket\":                                  reflect.ValueOf(syscall.Closesocket),\n\t\t\"CommandLineToArgv\":                            reflect.ValueOf(syscall.CommandLineToArgv),\n\t\t\"ComputerName\":                                 reflect.ValueOf(syscall.ComputerName),\n\t\t\"Connect\":                                      reflect.ValueOf(syscall.Connect),\n\t\t\"ConnectEx\":                                    reflect.ValueOf(syscall.ConnectEx),\n\t\t\"ConvertSidToStringSid\":                        reflect.ValueOf(syscall.ConvertSidToStringSid),\n\t\t\"ConvertStringSidToSid\":                        reflect.ValueOf(syscall.ConvertStringSidToSid),\n\t\t\"CopySid\":                                      reflect.ValueOf(syscall.CopySid),\n\t\t\"CreateDirectory\":                              reflect.ValueOf(syscall.CreateDirectory),\n\t\t\"CreateFile\":                                   reflect.ValueOf(syscall.CreateFile),\n\t\t\"CreateFileMapping\":                            reflect.ValueOf(syscall.CreateFileMapping),\n\t\t\"CreateHardLink\":                               reflect.ValueOf(syscall.CreateHardLink),\n\t\t\"CreateIoCompletionPort\":                       reflect.ValueOf(syscall.CreateIoCompletionPort),\n\t\t\"CreatePipe\":                                   reflect.ValueOf(syscall.CreatePipe),\n\t\t\"CreateProcess\":                                reflect.ValueOf(syscall.CreateProcess),\n\t\t\"CreateProcessAsUser\":                          reflect.ValueOf(syscall.CreateProcessAsUser),\n\t\t\"CreateSymbolicLink\":                           reflect.ValueOf(syscall.CreateSymbolicLink),\n\t\t\"CreateToolhelp32Snapshot\":                     reflect.ValueOf(syscall.CreateToolhelp32Snapshot),\n\t\t\"CryptAcquireContext\":                          reflect.ValueOf(syscall.CryptAcquireContext),\n\t\t\"CryptGenRandom\":                               reflect.ValueOf(syscall.CryptGenRandom),\n\t\t\"CryptReleaseContext\":                          reflect.ValueOf(syscall.CryptReleaseContext),\n\t\t\"DNS_INFO_NO_RECORDS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9501\", token.INT, 0)),\n\t\t\"DNS_TYPE_A\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DNS_TYPE_A6\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"DNS_TYPE_AAAA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"DNS_TYPE_ADDRS\":                               reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"DNS_TYPE_AFSDB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DNS_TYPE_ALL\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"DNS_TYPE_ANY\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"DNS_TYPE_ATMA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"DNS_TYPE_AXFR\":                                reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"DNS_TYPE_CERT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"DNS_TYPE_CNAME\":                               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DNS_TYPE_DHCID\":                               reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"DNS_TYPE_DNAME\":                               reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"DNS_TYPE_DNSKEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"DNS_TYPE_DS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"DNS_TYPE_EID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"DNS_TYPE_GID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"DNS_TYPE_GPOS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"DNS_TYPE_HINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DNS_TYPE_ISDN\":                                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"DNS_TYPE_IXFR\":                                reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"DNS_TYPE_KEY\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"DNS_TYPE_KX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"DNS_TYPE_LOC\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"DNS_TYPE_MAILA\":                               reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"DNS_TYPE_MAILB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"DNS_TYPE_MB\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DNS_TYPE_MD\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DNS_TYPE_MF\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DNS_TYPE_MG\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DNS_TYPE_MINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DNS_TYPE_MR\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DNS_TYPE_MX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DNS_TYPE_NAPTR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"DNS_TYPE_NBSTAT\":                              reflect.ValueOf(constant.MakeFromLiteral(\"65281\", token.INT, 0)),\n\t\t\"DNS_TYPE_NIMLOC\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"DNS_TYPE_NS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSAP\":                                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSAPPTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSEC\":                                reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"DNS_TYPE_NULL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DNS_TYPE_NXT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"DNS_TYPE_OPT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"DNS_TYPE_PTR\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DNS_TYPE_PX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"DNS_TYPE_RP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"DNS_TYPE_RRSIG\":                               reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"DNS_TYPE_RT\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"DNS_TYPE_SIG\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"DNS_TYPE_SINK\":                                reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"DNS_TYPE_SOA\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DNS_TYPE_SRV\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"DNS_TYPE_TEXT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DNS_TYPE_TKEY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"DNS_TYPE_TSIG\":                                reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"DNS_TYPE_UID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"DNS_TYPE_UINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"DNS_TYPE_UNSPEC\":                              reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"DNS_TYPE_WINS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"65281\", token.INT, 0)),\n\t\t\"DNS_TYPE_WINSR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"65282\", token.INT, 0)),\n\t\t\"DNS_TYPE_WKS\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DNS_TYPE_X25\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DUPLICATE_CLOSE_SOURCE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DUPLICATE_SAME_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DeleteFile\":                                   reflect.ValueOf(syscall.DeleteFile),\n\t\t\"DeviceIoControl\":                              reflect.ValueOf(syscall.DeviceIoControl),\n\t\t\"DnsNameCompare\":                               reflect.ValueOf(syscall.DnsNameCompare),\n\t\t\"DnsQuery\":                                     reflect.ValueOf(syscall.DnsQuery),\n\t\t\"DnsRecordListFree\":                            reflect.ValueOf(syscall.DnsRecordListFree),\n\t\t\"DnsSectionAdditional\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DnsSectionAnswer\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DnsSectionAuthority\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DnsSectionQuestion\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DuplicateHandle\":                              reflect.ValueOf(syscall.DuplicateHandle),\n\t\t\"E2BIG\":                                        reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                                       reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                                   reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                                reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                                         reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                                 reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                                       reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                                     reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                                        reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                                        reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                                       reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                                      reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                                        reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                                      reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                                      reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                                       reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                                        reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                                    reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                                       reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHRNG\":                                       reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                                        reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                                 reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                                 reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                                   reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                                      reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                                    reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                                 reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                                         reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                                      reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                                       reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                                       reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                                       reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                                        reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                                    reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                                 reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                                        reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                                       reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                                  reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                                        reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                                       reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                                          reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                                      reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                                       reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                                       reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                                  reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                                 reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                                  reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                                       reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                                     reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                                       reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                                       reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                                      reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                                      reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                                     reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                                      reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                                      reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                                       reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                                        reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                                  reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                                       reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                                       reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                                     reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                                    reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                                 reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                                      reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENETDOWN\":                                     reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                                    reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                                  reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                                       reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                                       reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                                      reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                                       reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                                      reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                                       reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                                       reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                                      reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                                       reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                                       reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                                      reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                                    reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                                       reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                                       reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                                       reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                                       reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                                  reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                                       reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                                        reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                                       reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                                       reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                                      reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                                     reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                                      reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                                    reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                                      reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                              reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                                     reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                                      reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                                       reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                                     reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                                        reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                                   reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                                    reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                                   reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                                        reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                                 reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                                        reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROTO\":                                       reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                              reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                                   reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                                       reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                                      reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                                      reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                                    reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                                     reflect.ValueOf(syscall.ERESTART),\n\t\t\"EROFS\":                                        reflect.ValueOf(syscall.EROFS),\n\t\t\"ERROR_ACCESS_DENIED\":                          reflect.ValueOf(syscall.ERROR_ACCESS_DENIED),\n\t\t\"ERROR_ALREADY_EXISTS\":                         reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS),\n\t\t\"ERROR_BROKEN_PIPE\":                            reflect.ValueOf(syscall.ERROR_BROKEN_PIPE),\n\t\t\"ERROR_BUFFER_OVERFLOW\":                        reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW),\n\t\t\"ERROR_DIR_NOT_EMPTY\":                          reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY),\n\t\t\"ERROR_ENVVAR_NOT_FOUND\":                       reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND),\n\t\t\"ERROR_FILE_EXISTS\":                            reflect.ValueOf(syscall.ERROR_FILE_EXISTS),\n\t\t\"ERROR_FILE_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND),\n\t\t\"ERROR_HANDLE_EOF\":                             reflect.ValueOf(syscall.ERROR_HANDLE_EOF),\n\t\t\"ERROR_INSUFFICIENT_BUFFER\":                    reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER),\n\t\t\"ERROR_IO_PENDING\":                             reflect.ValueOf(syscall.ERROR_IO_PENDING),\n\t\t\"ERROR_MOD_NOT_FOUND\":                          reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND),\n\t\t\"ERROR_MORE_DATA\":                              reflect.ValueOf(syscall.ERROR_MORE_DATA),\n\t\t\"ERROR_NETNAME_DELETED\":                        reflect.ValueOf(syscall.ERROR_NETNAME_DELETED),\n\t\t\"ERROR_NOT_FOUND\":                              reflect.ValueOf(syscall.ERROR_NOT_FOUND),\n\t\t\"ERROR_NO_MORE_FILES\":                          reflect.ValueOf(syscall.ERROR_NO_MORE_FILES),\n\t\t\"ERROR_OPERATION_ABORTED\":                      reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED),\n\t\t\"ERROR_PATH_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND),\n\t\t\"ERROR_PRIVILEGE_NOT_HELD\":                     reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD),\n\t\t\"ERROR_PROC_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND),\n\t\t\"ESHUTDOWN\":                                    reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                              reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                                       reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                                        reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                                       reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                                       reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                                     reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETIME\":                                        reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                                    reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                                 reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                                      reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                                      reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                                      reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                                       reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWINDOWS\":                                     reflect.ValueOf(syscall.EWINDOWS),\n\t\t\"EWOULDBLOCK\":                                  reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                                        reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                                       reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":                                      reflect.ValueOf(syscall.Environ),\n\t\t\"EscapeArg\":                                    reflect.ValueOf(syscall.EscapeArg),\n\t\t\"FILE_ACTION_ADDED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_ACTION_MODIFIED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"FILE_ACTION_REMOVED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_ACTION_RENAMED_NEW_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"FILE_ACTION_RENAMED_OLD_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_APPEND_DATA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_ARCHIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_DIRECTORY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_HIDDEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_NORMAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_READONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_REPARSE_POINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_SYSTEM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_BEGIN\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"FILE_CURRENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_END\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_FLAG_BACKUP_SEMANTICS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"FILE_FLAG_OPEN_REPARSE_POINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"FILE_FLAG_OVERLAPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"FILE_LIST_DIRECTORY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_MAP_COPY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_MAP_EXECUTE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_MAP_READ\":                                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_MAP_WRITE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_ATTRIBUTES\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_CREATION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_DIR_NAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_FILE_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_LAST_ACCESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_LAST_WRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_SIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"FILE_SHARE_DELETE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_SHARE_READ\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_SHARE_WRITE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_SKIP_COMPLETION_PORT_ON_SUCCESS\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_SKIP_SET_EVENT_ON_HANDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_TYPE_CHAR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_TYPE_DISK\":                               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_TYPE_PIPE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"FILE_TYPE_REMOTE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"FILE_TYPE_UNKNOWN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"FILE_WRITE_ATTRIBUTES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_ALLOCATE_BUFFER\":               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_ARGUMENT_ARRAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_HMODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_STRING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_SYSTEM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_IGNORE_INSERTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_MAX_WIDTH_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"FSCTL_GET_REPARSE_POINT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"589992\", token.INT, 0)),\n\t\t\"Fchdir\":                                       reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                                       reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                                       reflect.ValueOf(syscall.Fchown),\n\t\t\"FindClose\":                                    reflect.ValueOf(syscall.FindClose),\n\t\t\"FindFirstFile\":                                reflect.ValueOf(syscall.FindFirstFile),\n\t\t\"FindNextFile\":                                 reflect.ValueOf(syscall.FindNextFile),\n\t\t\"FlushFileBuffers\":                             reflect.ValueOf(syscall.FlushFileBuffers),\n\t\t\"FlushViewOfFile\":                              reflect.ValueOf(syscall.FlushViewOfFile),\n\t\t\"ForkLock\":                                     reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"FormatMessage\":                                reflect.ValueOf(syscall.FormatMessage),\n\t\t\"FreeAddrInfoW\":                                reflect.ValueOf(syscall.FreeAddrInfoW),\n\t\t\"FreeEnvironmentStrings\":                       reflect.ValueOf(syscall.FreeEnvironmentStrings),\n\t\t\"FreeLibrary\":                                  reflect.ValueOf(syscall.FreeLibrary),\n\t\t\"Fsync\":                                        reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                                    reflect.ValueOf(syscall.Ftruncate),\n\t\t\"FullPath\":                                     reflect.ValueOf(syscall.FullPath),\n\t\t\"GENERIC_ALL\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"GENERIC_EXECUTE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"GENERIC_READ\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"GENERIC_WRITE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"GetAcceptExSockaddrs\":                         reflect.ValueOf(syscall.GetAcceptExSockaddrs),\n\t\t\"GetAdaptersInfo\":                              reflect.ValueOf(syscall.GetAdaptersInfo),\n\t\t\"GetAddrInfoW\":                                 reflect.ValueOf(syscall.GetAddrInfoW),\n\t\t\"GetCommandLine\":                               reflect.ValueOf(syscall.GetCommandLine),\n\t\t\"GetComputerName\":                              reflect.ValueOf(syscall.GetComputerName),\n\t\t\"GetConsoleMode\":                               reflect.ValueOf(syscall.GetConsoleMode),\n\t\t\"GetCurrentDirectory\":                          reflect.ValueOf(syscall.GetCurrentDirectory),\n\t\t\"GetCurrentProcess\":                            reflect.ValueOf(syscall.GetCurrentProcess),\n\t\t\"GetEnvironmentStrings\":                        reflect.ValueOf(syscall.GetEnvironmentStrings),\n\t\t\"GetEnvironmentVariable\":                       reflect.ValueOf(syscall.GetEnvironmentVariable),\n\t\t\"GetFileAttributes\":                            reflect.ValueOf(syscall.GetFileAttributes),\n\t\t\"GetFileAttributesEx\":                          reflect.ValueOf(syscall.GetFileAttributesEx),\n\t\t\"GetFileExInfoStandard\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"GetFileExMaxInfoLevel\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"GetFileInformationByHandle\":                   reflect.ValueOf(syscall.GetFileInformationByHandle),\n\t\t\"GetFileType\":                                  reflect.ValueOf(syscall.GetFileType),\n\t\t\"GetFullPathName\":                              reflect.ValueOf(syscall.GetFullPathName),\n\t\t\"GetHostByName\":                                reflect.ValueOf(syscall.GetHostByName),\n\t\t\"GetIfEntry\":                                   reflect.ValueOf(syscall.GetIfEntry),\n\t\t\"GetLastError\":                                 reflect.ValueOf(syscall.GetLastError),\n\t\t\"GetLengthSid\":                                 reflect.ValueOf(syscall.GetLengthSid),\n\t\t\"GetLongPathName\":                              reflect.ValueOf(syscall.GetLongPathName),\n\t\t\"GetProcAddress\":                               reflect.ValueOf(syscall.GetProcAddress),\n\t\t\"GetProcessTimes\":                              reflect.ValueOf(syscall.GetProcessTimes),\n\t\t\"GetProtoByName\":                               reflect.ValueOf(syscall.GetProtoByName),\n\t\t\"GetQueuedCompletionStatus\":                    reflect.ValueOf(syscall.GetQueuedCompletionStatus),\n\t\t\"GetServByName\":                                reflect.ValueOf(syscall.GetServByName),\n\t\t\"GetShortPathName\":                             reflect.ValueOf(syscall.GetShortPathName),\n\t\t\"GetStartupInfo\":                               reflect.ValueOf(syscall.GetStartupInfo),\n\t\t\"GetStdHandle\":                                 reflect.ValueOf(syscall.GetStdHandle),\n\t\t\"GetSystemTimeAsFileTime\":                      reflect.ValueOf(syscall.GetSystemTimeAsFileTime),\n\t\t\"GetTempPath\":                                  reflect.ValueOf(syscall.GetTempPath),\n\t\t\"GetTimeZoneInformation\":                       reflect.ValueOf(syscall.GetTimeZoneInformation),\n\t\t\"GetTokenInformation\":                          reflect.ValueOf(syscall.GetTokenInformation),\n\t\t\"GetUserNameEx\":                                reflect.ValueOf(syscall.GetUserNameEx),\n\t\t\"GetUserProfileDirectory\":                      reflect.ValueOf(syscall.GetUserProfileDirectory),\n\t\t\"GetVersion\":                                   reflect.ValueOf(syscall.GetVersion),\n\t\t\"Getegid\":                                      reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                                       reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                                      reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                                       reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                                    reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                                  reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                                  reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpid\":                                       reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                                      reflect.ValueOf(syscall.Getppid),\n\t\t\"Getsockname\":                                  reflect.ValueOf(syscall.Getsockname),\n\t\t\"Getsockopt\":                                   reflect.ValueOf(syscall.Getsockopt),\n\t\t\"GetsockoptInt\":                                reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                                 reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                                       reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                                        reflect.ValueOf(syscall.Getwd),\n\t\t\"HANDLE_FLAG_INHERIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"HKEY_CLASSES_ROOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"HKEY_CURRENT_CONFIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483653\", token.INT, 0)),\n\t\t\"HKEY_CURRENT_USER\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483649\", token.INT, 0)),\n\t\t\"HKEY_DYN_DATA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2147483654\", token.INT, 0)),\n\t\t\"HKEY_LOCAL_MACHINE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483650\", token.INT, 0)),\n\t\t\"HKEY_PERFORMANCE_DATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483652\", token.INT, 0)),\n\t\t\"HKEY_USERS\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483651\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_POINTTOPOINT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_UP\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNORE\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"INFINITE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"INVALID_FILE_ATTRIBUTES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"IOC_IN\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IOC_INOUT\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"IOC_OUT\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IOC_VENDOR\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"402653184\", token.INT, 0)),\n\t\t\"IOC_WS2\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"IO_REPARSE_TAG_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2684354572\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_TOS\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                              reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InvalidHandle\":                                reflect.ValueOf(syscall.InvalidHandle),\n\t\t\"KEY_ALL_ACCESS\":                               reflect.ValueOf(constant.MakeFromLiteral(\"983103\", token.INT, 0)),\n\t\t\"KEY_CREATE_LINK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"KEY_CREATE_SUB_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"KEY_ENUMERATE_SUB_KEYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"KEY_EXECUTE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"131097\", token.INT, 0)),\n\t\t\"KEY_NOTIFY\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"KEY_QUERY_VALUE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"KEY_READ\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"131097\", token.INT, 0)),\n\t\t\"KEY_SET_VALUE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"KEY_WOW64_32KEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"KEY_WOW64_64KEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"KEY_WRITE\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"131078\", token.INT, 0)),\n\t\t\"LANG_ENGLISH\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"LAYERED_PROTOCOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Lchown\":                                       reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                                         reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                                       reflect.ValueOf(syscall.Listen),\n\t\t\"LoadCancelIoEx\":                               reflect.ValueOf(syscall.LoadCancelIoEx),\n\t\t\"LoadConnectEx\":                                reflect.ValueOf(syscall.LoadConnectEx),\n\t\t\"LoadCreateSymbolicLink\":                       reflect.ValueOf(syscall.LoadCreateSymbolicLink),\n\t\t\"LoadDLL\":                                      reflect.ValueOf(syscall.LoadDLL),\n\t\t\"LoadGetAddrInfo\":                              reflect.ValueOf(syscall.LoadGetAddrInfo),\n\t\t\"LoadLibrary\":                                  reflect.ValueOf(syscall.LoadLibrary),\n\t\t\"LoadSetFileCompletionNotificationModes\":       reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes),\n\t\t\"LocalFree\":                                    reflect.ValueOf(syscall.LocalFree),\n\t\t\"LookupAccountName\":                            reflect.ValueOf(syscall.LookupAccountName),\n\t\t\"LookupAccountSid\":                             reflect.ValueOf(syscall.LookupAccountSid),\n\t\t\"LookupSID\":                                    reflect.ValueOf(syscall.LookupSID),\n\t\t\"MAXIMUM_REPARSE_DATA_BUFFER_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAXLEN_IFDESCR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAXLEN_PHYSADDR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_ADDRESS_LENGTH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_DESCRIPTION_LENGTH\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_NAME_LENGTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAX_COMPUTERNAME_LENGTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MAX_INTERFACE_NAME_LEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAX_LONG_PATH\":                                reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAX_PATH\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"MAX_PROTOCOL_CHAIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MapViewOfFile\":                                reflect.ValueOf(syscall.MapViewOfFile),\n\t\t\"MaxTokenInfoClass\":                            reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"Mkdir\":                                        reflect.ValueOf(syscall.Mkdir),\n\t\t\"MoveFile\":                                     reflect.ValueOf(syscall.MoveFile),\n\t\t\"MustLoadDLL\":                                  reflect.ValueOf(syscall.MustLoadDLL),\n\t\t\"NameCanonical\":                                reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NameCanonicalEx\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NameDisplay\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NameDnsDomain\":                                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NameFullyQualifiedDN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NameSamCompatible\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NameServicePrincipal\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NameUniqueId\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NameUnknown\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NameUserPrincipal\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NetApiBufferFree\":                             reflect.ValueOf(syscall.NetApiBufferFree),\n\t\t\"NetGetJoinInformation\":                        reflect.ValueOf(syscall.NetGetJoinInformation),\n\t\t\"NetSetupDomainName\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NetSetupUnjoined\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NetSetupUnknownStatus\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NetSetupWorkgroupName\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NetUserGetInfo\":                               reflect.ValueOf(syscall.NetUserGetInfo),\n\t\t\"NewCallback\":                                  reflect.ValueOf(syscall.NewCallback),\n\t\t\"NewCallbackCDecl\":                             reflect.ValueOf(syscall.NewCallbackCDecl),\n\t\t\"NewLazyDLL\":                                   reflect.ValueOf(syscall.NewLazyDLL),\n\t\t\"NsecToFiletime\":                               reflect.ValueOf(syscall.NsecToFiletime),\n\t\t\"NsecToTimespec\":                               reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                                reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"Ntohs\":                                        reflect.ValueOf(syscall.Ntohs),\n\t\t\"OID_PKIX_KP_SERVER_AUTH\":                      reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(),\n\t\t\"OID_SERVER_GATED_CRYPTO\":                      reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(),\n\t\t\"OID_SGC_NETSCAPE\":                             reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(),\n\t\t\"OPEN_ALWAYS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"OPEN_EXISTING\":                                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_EXCL\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_RDONLY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SYNC\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_TRUNC\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                                         reflect.ValueOf(syscall.Open),\n\t\t\"OpenCurrentProcessToken\":                      reflect.ValueOf(syscall.OpenCurrentProcessToken),\n\t\t\"OpenProcess\":                                  reflect.ValueOf(syscall.OpenProcess),\n\t\t\"OpenProcessToken\":                             reflect.ValueOf(syscall.OpenProcessToken),\n\t\t\"PAGE_EXECUTE_READ\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PAGE_EXECUTE_READWRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PAGE_EXECUTE_WRITECOPY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PAGE_READONLY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PAGE_READWRITE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PAGE_WRITECOPY\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PFL_HIDDEN\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PFL_MATCHES_PROTOCOL_ZERO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PFL_MULTIPLE_PROTO_ENTRIES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PFL_NETWORKDIRECT_PROVIDER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PFL_RECOMMENDED_PROTO_ENTRY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PKCS_7_ASN_ENCODING\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PROCESS_QUERY_INFORMATION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"PROCESS_TERMINATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROV_DH_SCHANNEL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PROV_DSS\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PROV_DSS_DH\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PROV_EC_ECDSA_FULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PROV_EC_ECDSA_SIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PROV_EC_ECNRA_FULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PROV_EC_ECNRA_SIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PROV_FORTEZZA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROV_INTEL_SEC\":                               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PROV_MS_EXCHANGE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PROV_REPLACE_OWF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PROV_RNG\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PROV_RSA_AES\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PROV_RSA_FULL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROV_RSA_SCHANNEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PROV_RSA_SIG\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROV_SPYRUS_LYNKS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PROV_SSL\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"Pipe\":                                         reflect.ValueOf(syscall.Pipe),\n\t\t\"PostQueuedCompletionStatus\":                   reflect.ValueOf(syscall.PostQueuedCompletionStatus),\n\t\t\"Process32First\":                               reflect.ValueOf(syscall.Process32First),\n\t\t\"Process32Next\":                                reflect.ValueOf(syscall.Process32Next),\n\t\t\"REG_BINARY\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"REG_DWORD\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"REG_DWORD_BIG_ENDIAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"REG_DWORD_LITTLE_ENDIAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"REG_EXPAND_SZ\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"REG_FULL_RESOURCE_DESCRIPTOR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"REG_LINK\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"REG_MULTI_SZ\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"REG_NONE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"REG_QWORD\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"REG_QWORD_LITTLE_ENDIAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"REG_RESOURCE_LIST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"REG_RESOURCE_REQUIREMENTS_LIST\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"REG_SZ\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                                         reflect.ValueOf(syscall.Read),\n\t\t\"ReadConsole\":                                  reflect.ValueOf(syscall.ReadConsole),\n\t\t\"ReadDirectoryChanges\":                         reflect.ValueOf(syscall.ReadDirectoryChanges),\n\t\t\"ReadFile\":                                     reflect.ValueOf(syscall.ReadFile),\n\t\t\"Readlink\":                                     reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                                     reflect.ValueOf(syscall.Recvfrom),\n\t\t\"RegCloseKey\":                                  reflect.ValueOf(syscall.RegCloseKey),\n\t\t\"RegEnumKeyEx\":                                 reflect.ValueOf(syscall.RegEnumKeyEx),\n\t\t\"RegOpenKeyEx\":                                 reflect.ValueOf(syscall.RegOpenKeyEx),\n\t\t\"RegQueryInfoKey\":                              reflect.ValueOf(syscall.RegQueryInfoKey),\n\t\t\"RegQueryValueEx\":                              reflect.ValueOf(syscall.RegQueryValueEx),\n\t\t\"RemoveDirectory\":                              reflect.ValueOf(syscall.RemoveDirectory),\n\t\t\"Rename\":                                       reflect.ValueOf(syscall.Rename),\n\t\t\"Rmdir\":                                        reflect.ValueOf(syscall.Rmdir),\n\t\t\"SHUT_RD\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                                      reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                                      reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                                       reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGFPE\":                                       reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                                       reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                                       reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                                       reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGKILL\":                                      reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                                      reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGQUIT\":                                      reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                                      reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGTERM\":                                      reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                                      reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIO_GET_EXTENSION_FUNCTION_POINTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3355443206\", token.INT, 0)),\n\t\t\"SIO_GET_INTERFACE_LIST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074033791\", token.INT, 0)),\n\t\t\"SIO_KEEPALIVE_VALS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2550136836\", token.INT, 0)),\n\t\t\"SIO_UDP_CONNRESET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2550136844\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"2147483647\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_UPDATE_ACCEPT_CONTEXT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28683\", token.INT, 0)),\n\t\t\"SO_UPDATE_CONNECT_CONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28688\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_ALL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2031616\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_EXECUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_REQUIRED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"983040\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STARTF_USESHOWWINDOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"STARTF_USESTDHANDLES\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"STD_ERROR_HANDLE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"-12\", token.INT, 0)),\n\t\t\"STD_INPUT_HANDLE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"STD_OUTPUT_HANDLE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"-11\", token.INT, 0)),\n\t\t\"SUBLANG_ENGLISH_US\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SW_FORCEMINIMIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SW_HIDE\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SW_MAXIMIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SW_MINIMIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SW_NORMAL\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SW_RESTORE\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SW_SHOW\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SW_SHOWDEFAULT\":                               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SW_SHOWMAXIMIZED\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SW_SHOWMINIMIZED\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SW_SHOWMINNOACTIVE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SW_SHOWNA\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SW_SHOWNOACTIVATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SW_SHOWNORMAL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYMBOLIC_LINK_FLAG_DIRECTORY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYNCHRONIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"S_IFBLK\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"S_IFREG\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_ISGID\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWRITE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                                         reflect.ValueOf(syscall.Seek),\n\t\t\"Sendto\":                                       reflect.ValueOf(syscall.Sendto),\n\t\t\"SetCurrentDirectory\":                          reflect.ValueOf(syscall.SetCurrentDirectory),\n\t\t\"SetEndOfFile\":                                 reflect.ValueOf(syscall.SetEndOfFile),\n\t\t\"SetEnvironmentVariable\":                       reflect.ValueOf(syscall.SetEnvironmentVariable),\n\t\t\"SetFileAttributes\":                            reflect.ValueOf(syscall.SetFileAttributes),\n\t\t\"SetFileCompletionNotificationModes\":           reflect.ValueOf(syscall.SetFileCompletionNotificationModes),\n\t\t\"SetFilePointer\":                               reflect.ValueOf(syscall.SetFilePointer),\n\t\t\"SetFileTime\":                                  reflect.ValueOf(syscall.SetFileTime),\n\t\t\"SetHandleInformation\":                         reflect.ValueOf(syscall.SetHandleInformation),\n\t\t\"SetNonblock\":                                  reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setenv\":                                       reflect.ValueOf(syscall.Setenv),\n\t\t\"Setsockopt\":                                   reflect.ValueOf(syscall.Setsockopt),\n\t\t\"SetsockoptIPMreq\":                             reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                           reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":                          reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                                reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                             reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptTimeval\":                            reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"SidTypeAlias\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SidTypeComputer\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SidTypeDeletedAccount\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SidTypeDomain\":                                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SidTypeGroup\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SidTypeInvalid\":                               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SidTypeLabel\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SidTypeUnknown\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SidTypeUser\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SidTypeWellKnownGroup\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"Socket\":                                       reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                            reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Stderr\":                                       reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                                        reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                                       reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                                reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                              reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringToSid\":                                  reflect.ValueOf(syscall.StringToSid),\n\t\t\"StringToUTF16\":                                reflect.ValueOf(syscall.StringToUTF16),\n\t\t\"StringToUTF16Ptr\":                             reflect.ValueOf(syscall.StringToUTF16Ptr),\n\t\t\"Symlink\":                                      reflect.ValueOf(syscall.Symlink),\n\t\t\"TCP_NODELAY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TF_DISCONNECT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TF_REUSE_SOCKET\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TF_USE_DEFAULT_WORKER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TF_USE_KERNEL_APC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TF_USE_SYSTEM_THREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TF_WRITE_BEHIND\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TH32CS_INHERIT\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"TH32CS_SNAPALL\":                               reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TH32CS_SNAPHEAPLIST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TH32CS_SNAPMODULE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TH32CS_SNAPMODULE32\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TH32CS_SNAPPROCESS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TH32CS_SNAPTHREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_DAYLIGHT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_STANDARD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_UNKNOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_DEFAULT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_GROUPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_PRIVILEGES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_SESSIONID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TOKEN_ALL_ACCESS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"983551\", token.INT, 0)),\n\t\t\"TOKEN_ASSIGN_PRIMARY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TOKEN_DUPLICATE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TOKEN_EXECUTE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"TOKEN_IMPERSONATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TOKEN_QUERY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TOKEN_QUERY_SOURCE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TOKEN_READ\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"131080\", token.INT, 0)),\n\t\t\"TOKEN_WRITE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"131296\", token.INT, 0)),\n\t\t\"TRUNCATE_EXISTING\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TerminateProcess\":                             reflect.ValueOf(syscall.TerminateProcess),\n\t\t\"TimespecToNsec\":                               reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TokenAccessInformation\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TokenAuditPolicy\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TokenDefaultDacl\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TokenElevation\":                               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TokenElevationType\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TokenGroups\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TokenGroupsAndPrivileges\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TokenHasRestrictions\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TokenImpersonationLevel\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TokenIntegrityLevel\":                          reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"TokenLinkedToken\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TokenLogonSid\":                                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"TokenMandatoryPolicy\":                         reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"TokenOrigin\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TokenOwner\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TokenPrimaryGroup\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TokenPrivileges\":                              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TokenRestrictedSids\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TokenSandBoxInert\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TokenSessionId\":                               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TokenSessionReference\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TokenSource\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TokenStatistics\":                              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TokenType\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TokenUIAccess\":                                reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"TokenUser\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TokenVirtualizationAllowed\":                   reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TokenVirtualizationEnabled\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TranslateAccountName\":                         reflect.ValueOf(syscall.TranslateAccountName),\n\t\t\"TranslateName\":                                reflect.ValueOf(syscall.TranslateName),\n\t\t\"TransmitFile\":                                 reflect.ValueOf(syscall.TransmitFile),\n\t\t\"UNIX_PATH_MAX\":                                reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"USAGE_MATCH_TYPE_AND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"USAGE_MATCH_TYPE_OR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"UTF16FromString\":                              reflect.ValueOf(syscall.UTF16FromString),\n\t\t\"UTF16PtrFromString\":                           reflect.ValueOf(syscall.UTF16PtrFromString),\n\t\t\"UTF16ToString\":                                reflect.ValueOf(syscall.UTF16ToString),\n\t\t\"Unlink\":                                       reflect.ValueOf(syscall.Unlink),\n\t\t\"UnmapViewOfFile\":                              reflect.ValueOf(syscall.UnmapViewOfFile),\n\t\t\"Unsetenv\":                                     reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                                       reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                                   reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VirtualLock\":                                  reflect.ValueOf(syscall.VirtualLock),\n\t\t\"VirtualUnlock\":                                reflect.ValueOf(syscall.VirtualUnlock),\n\t\t\"WAIT_ABANDONED\":                               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WAIT_FAILED\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"WAIT_OBJECT_0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"WAIT_TIMEOUT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"WSACleanup\":                                   reflect.ValueOf(syscall.WSACleanup),\n\t\t\"WSADESCRIPTION_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"WSAEACCES\":                                    reflect.ValueOf(syscall.WSAEACCES),\n\t\t\"WSAECONNABORTED\":                              reflect.ValueOf(syscall.WSAECONNABORTED),\n\t\t\"WSAECONNRESET\":                                reflect.ValueOf(syscall.WSAECONNRESET),\n\t\t\"WSAEnumProtocols\":                             reflect.ValueOf(syscall.WSAEnumProtocols),\n\t\t\"WSAID_CONNECTEX\":                              reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(),\n\t\t\"WSAIoctl\":                                     reflect.ValueOf(syscall.WSAIoctl),\n\t\t\"WSAPROTOCOL_LEN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"WSARecv\":                                      reflect.ValueOf(syscall.WSARecv),\n\t\t\"WSARecvFrom\":                                  reflect.ValueOf(syscall.WSARecvFrom),\n\t\t\"WSASYS_STATUS_LEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WSASend\":                                      reflect.ValueOf(syscall.WSASend),\n\t\t\"WSASendTo\":                                    reflect.ValueOf(syscall.WSASendTo),\n\t\t\"WSASendto\":                                    reflect.ValueOf(syscall.WSASendto),\n\t\t\"WSAStartup\":                                   reflect.ValueOf(syscall.WSAStartup),\n\t\t\"WaitForSingleObject\":                          reflect.ValueOf(syscall.WaitForSingleObject),\n\t\t\"Write\":                                        reflect.ValueOf(syscall.Write),\n\t\t\"WriteConsole\":                                 reflect.ValueOf(syscall.WriteConsole),\n\t\t\"WriteFile\":                                    reflect.ValueOf(syscall.WriteFile),\n\t\t\"X509_ASN_ENCODING\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"XP1_CONNECTIONLESS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"XP1_CONNECT_DATA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"XP1_DISCONNECT_DATA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"XP1_EXPEDITED_DATA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"XP1_GRACEFUL_CLOSE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"XP1_GUARANTEED_DELIVERY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"XP1_GUARANTEED_ORDER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"XP1_IFS_HANDLES\":                              reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"XP1_MESSAGE_ORIENTED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"XP1_MULTIPOINT_CONTROL_PLANE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"XP1_MULTIPOINT_DATA_PLANE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"XP1_PARTIAL_MESSAGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"XP1_PSEUDO_STREAM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"XP1_QOS_SUPPORTED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"XP1_SAN_SUPPORT_SDP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"XP1_SUPPORT_BROADCAST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"XP1_SUPPORT_MULTIPOINT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"XP1_UNI_RECV\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"XP1_UNI_SEND\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"AddrinfoW\":                   reflect.ValueOf((*syscall.AddrinfoW)(nil)),\n\t\t\"ByHandleFileInformation\":     reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)),\n\t\t\"CertChainContext\":            reflect.ValueOf((*syscall.CertChainContext)(nil)),\n\t\t\"CertChainElement\":            reflect.ValueOf((*syscall.CertChainElement)(nil)),\n\t\t\"CertChainPara\":               reflect.ValueOf((*syscall.CertChainPara)(nil)),\n\t\t\"CertChainPolicyPara\":         reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)),\n\t\t\"CertChainPolicyStatus\":       reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)),\n\t\t\"CertContext\":                 reflect.ValueOf((*syscall.CertContext)(nil)),\n\t\t\"CertEnhKeyUsage\":             reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)),\n\t\t\"CertInfo\":                    reflect.ValueOf((*syscall.CertInfo)(nil)),\n\t\t\"CertRevocationCrlInfo\":       reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)),\n\t\t\"CertRevocationInfo\":          reflect.ValueOf((*syscall.CertRevocationInfo)(nil)),\n\t\t\"CertSimpleChain\":             reflect.ValueOf((*syscall.CertSimpleChain)(nil)),\n\t\t\"CertTrustListInfo\":           reflect.ValueOf((*syscall.CertTrustListInfo)(nil)),\n\t\t\"CertTrustStatus\":             reflect.ValueOf((*syscall.CertTrustStatus)(nil)),\n\t\t\"CertUsageMatch\":              reflect.ValueOf((*syscall.CertUsageMatch)(nil)),\n\t\t\"Conn\":                        reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"DLL\":                         reflect.ValueOf((*syscall.DLL)(nil)),\n\t\t\"DLLError\":                    reflect.ValueOf((*syscall.DLLError)(nil)),\n\t\t\"DNSMXData\":                   reflect.ValueOf((*syscall.DNSMXData)(nil)),\n\t\t\"DNSPTRData\":                  reflect.ValueOf((*syscall.DNSPTRData)(nil)),\n\t\t\"DNSRecord\":                   reflect.ValueOf((*syscall.DNSRecord)(nil)),\n\t\t\"DNSSRVData\":                  reflect.ValueOf((*syscall.DNSSRVData)(nil)),\n\t\t\"DNSTXTData\":                  reflect.ValueOf((*syscall.DNSTXTData)(nil)),\n\t\t\"Errno\":                       reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FileNotifyInformation\":       reflect.ValueOf((*syscall.FileNotifyInformation)(nil)),\n\t\t\"Filetime\":                    reflect.ValueOf((*syscall.Filetime)(nil)),\n\t\t\"GUID\":                        reflect.ValueOf((*syscall.GUID)(nil)),\n\t\t\"Handle\":                      reflect.ValueOf((*syscall.Handle)(nil)),\n\t\t\"Hostent\":                     reflect.ValueOf((*syscall.Hostent)(nil)),\n\t\t\"IPMreq\":                      reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6Mreq\":                    reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"InterfaceInfo\":               reflect.ValueOf((*syscall.InterfaceInfo)(nil)),\n\t\t\"IpAdapterInfo\":               reflect.ValueOf((*syscall.IpAdapterInfo)(nil)),\n\t\t\"IpAddrString\":                reflect.ValueOf((*syscall.IpAddrString)(nil)),\n\t\t\"IpAddressString\":             reflect.ValueOf((*syscall.IpAddressString)(nil)),\n\t\t\"IpMaskString\":                reflect.ValueOf((*syscall.IpMaskString)(nil)),\n\t\t\"LazyDLL\":                     reflect.ValueOf((*syscall.LazyDLL)(nil)),\n\t\t\"LazyProc\":                    reflect.ValueOf((*syscall.LazyProc)(nil)),\n\t\t\"Linger\":                      reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"MibIfRow\":                    reflect.ValueOf((*syscall.MibIfRow)(nil)),\n\t\t\"Overlapped\":                  reflect.ValueOf((*syscall.Overlapped)(nil)),\n\t\t\"Pointer\":                     reflect.ValueOf((*syscall.Pointer)(nil)),\n\t\t\"Proc\":                        reflect.ValueOf((*syscall.Proc)(nil)),\n\t\t\"ProcAttr\":                    reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"ProcessEntry32\":              reflect.ValueOf((*syscall.ProcessEntry32)(nil)),\n\t\t\"ProcessInformation\":          reflect.ValueOf((*syscall.ProcessInformation)(nil)),\n\t\t\"Protoent\":                    reflect.ValueOf((*syscall.Protoent)(nil)),\n\t\t\"RawConn\":                     reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                 reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":              reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":            reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":            reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":             reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rusage\":                      reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"SID\":                         reflect.ValueOf((*syscall.SID)(nil)),\n\t\t\"SIDAndAttributes\":            reflect.ValueOf((*syscall.SIDAndAttributes)(nil)),\n\t\t\"SSLExtraCertChainPolicyPara\": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)),\n\t\t\"SecurityAttributes\":          reflect.ValueOf((*syscall.SecurityAttributes)(nil)),\n\t\t\"Servent\":                     reflect.ValueOf((*syscall.Servent)(nil)),\n\t\t\"Signal\":                      reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                    reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrGen\":                 reflect.ValueOf((*syscall.SockaddrGen)(nil)),\n\t\t\"SockaddrInet4\":               reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":               reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"StartupInfo\":                 reflect.ValueOf((*syscall.StartupInfo)(nil)),\n\t\t\"SysProcAttr\":                 reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Systemtime\":                  reflect.ValueOf((*syscall.Systemtime)(nil)),\n\t\t\"TCPKeepalive\":                reflect.ValueOf((*syscall.TCPKeepalive)(nil)),\n\t\t\"Timespec\":                    reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                     reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timezoneinformation\":         reflect.ValueOf((*syscall.Timezoneinformation)(nil)),\n\t\t\"Token\":                       reflect.ValueOf((*syscall.Token)(nil)),\n\t\t\"Tokenprimarygroup\":           reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)),\n\t\t\"Tokenuser\":                   reflect.ValueOf((*syscall.Tokenuser)(nil)),\n\t\t\"TransmitFileBuffers\":         reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)),\n\t\t\"UserInfo10\":                  reflect.ValueOf((*syscall.UserInfo10)(nil)),\n\t\t\"WSABuf\":                      reflect.ValueOf((*syscall.WSABuf)(nil)),\n\t\t\"WSAData\":                     reflect.ValueOf((*syscall.WSAData)(nil)),\n\t\t\"WSAProtocolChain\":            reflect.ValueOf((*syscall.WSAProtocolChain)(nil)),\n\t\t\"WSAProtocolInfo\":             reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)),\n\t\t\"WaitStatus\":                  reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\t\t\"Win32FileAttributeData\":      reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)),\n\t\t\"Win32finddata\":               reflect.ValueOf((*syscall.Win32finddata)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_windows_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_INET\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_UNIX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AI_CANONNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AI_NUMERICHOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AI_PASSIVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"APPLICATION_ERROR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"AUTHTYPE_CLIENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AUTHTYPE_SERVER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Accept\":                              reflect.ValueOf(syscall.Accept),\n\t\t\"AcceptEx\":                            reflect.ValueOf(syscall.AcceptEx),\n\t\t\"BASE_PROTOCOL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Bind\":                                reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":                   reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":                 reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CERT_CHAIN_POLICY_AUTHENTICODE\":      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_AUTHENTICODE_TS\":   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_BASE\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_BASIC_CONSTRAINTS\": reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_EV\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_MICROSOFT_ROOT\":    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_NT_AUTH\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_SSL\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_E_CN_NO_MATCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148204815\", token.INT, 0)),\n\t\t\"CERT_E_EXPIRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148204801\", token.INT, 0)),\n\t\t\"CERT_E_PURPOSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148204806\", token.INT, 0)),\n\t\t\"CERT_E_ROLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148204803\", token.INT, 0)),\n\t\t\"CERT_E_UNTRUSTEDROOT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2148204809\", token.INT, 0)),\n\t\t\"CERT_STORE_ADD_ALWAYS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG\":  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_STORE_PROV_MEMORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT\":      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT\":   reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT\": reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT\":    reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT\": reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_BASIC_CONSTRAINTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_EXTENSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_NAME_CONSTRAINTS\":          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_POLICY_CONSTRAINTS\":        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_CYCLIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_EXPLICIT_DISTRUST\":              reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_SIGNATURE_VALID\":            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_TIME_VALID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_VALID_FOR_USAGE\":            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_OFFLINE_REVOCATION\":             reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_REVOKED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_UNTRUSTED_ROOT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CERT_TRUST_NO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY\":          reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CERT_TRUST_REVOCATION_STATUS_UNKNOWN\":         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CREATE_ALWAYS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CREATE_NEW\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CREATE_NEW_PROCESS_GROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CREATE_UNICODE_ENVIRONMENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CRYPT_DEFAULT_CONTAINER_OPTIONAL\":             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CRYPT_DELETEKEYSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CRYPT_MACHINE_KEYSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CRYPT_NEWKEYSET\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CRYPT_SILENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CRYPT_VERIFYCONTEXT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"CTRL_BREAK_EVENT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CTRL_CLOSE_EVENT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CTRL_C_EVENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CTRL_LOGOFF_EVENT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"CTRL_SHUTDOWN_EVENT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"CancelIo\":                                     reflect.ValueOf(syscall.CancelIo),\n\t\t\"CancelIoEx\":                                   reflect.ValueOf(syscall.CancelIoEx),\n\t\t\"CertAddCertificateContextToStore\":             reflect.ValueOf(syscall.CertAddCertificateContextToStore),\n\t\t\"CertCloseStore\":                               reflect.ValueOf(syscall.CertCloseStore),\n\t\t\"CertCreateCertificateContext\":                 reflect.ValueOf(syscall.CertCreateCertificateContext),\n\t\t\"CertEnumCertificatesInStore\":                  reflect.ValueOf(syscall.CertEnumCertificatesInStore),\n\t\t\"CertFreeCertificateChain\":                     reflect.ValueOf(syscall.CertFreeCertificateChain),\n\t\t\"CertFreeCertificateContext\":                   reflect.ValueOf(syscall.CertFreeCertificateContext),\n\t\t\"CertGetCertificateChain\":                      reflect.ValueOf(syscall.CertGetCertificateChain),\n\t\t\"CertOpenStore\":                                reflect.ValueOf(syscall.CertOpenStore),\n\t\t\"CertOpenSystemStore\":                          reflect.ValueOf(syscall.CertOpenSystemStore),\n\t\t\"CertVerifyCertificateChainPolicy\":             reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy),\n\t\t\"Chdir\":                                        reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                                        reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                                        reflect.ValueOf(syscall.Chown),\n\t\t\"Clearenv\":                                     reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                                        reflect.ValueOf(syscall.Close),\n\t\t\"CloseHandle\":                                  reflect.ValueOf(syscall.CloseHandle),\n\t\t\"CloseOnExec\":                                  reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"Closesocket\":                                  reflect.ValueOf(syscall.Closesocket),\n\t\t\"CommandLineToArgv\":                            reflect.ValueOf(syscall.CommandLineToArgv),\n\t\t\"ComputerName\":                                 reflect.ValueOf(syscall.ComputerName),\n\t\t\"Connect\":                                      reflect.ValueOf(syscall.Connect),\n\t\t\"ConnectEx\":                                    reflect.ValueOf(syscall.ConnectEx),\n\t\t\"ConvertSidToStringSid\":                        reflect.ValueOf(syscall.ConvertSidToStringSid),\n\t\t\"ConvertStringSidToSid\":                        reflect.ValueOf(syscall.ConvertStringSidToSid),\n\t\t\"CopySid\":                                      reflect.ValueOf(syscall.CopySid),\n\t\t\"CreateDirectory\":                              reflect.ValueOf(syscall.CreateDirectory),\n\t\t\"CreateFile\":                                   reflect.ValueOf(syscall.CreateFile),\n\t\t\"CreateFileMapping\":                            reflect.ValueOf(syscall.CreateFileMapping),\n\t\t\"CreateHardLink\":                               reflect.ValueOf(syscall.CreateHardLink),\n\t\t\"CreateIoCompletionPort\":                       reflect.ValueOf(syscall.CreateIoCompletionPort),\n\t\t\"CreatePipe\":                                   reflect.ValueOf(syscall.CreatePipe),\n\t\t\"CreateProcess\":                                reflect.ValueOf(syscall.CreateProcess),\n\t\t\"CreateProcessAsUser\":                          reflect.ValueOf(syscall.CreateProcessAsUser),\n\t\t\"CreateSymbolicLink\":                           reflect.ValueOf(syscall.CreateSymbolicLink),\n\t\t\"CreateToolhelp32Snapshot\":                     reflect.ValueOf(syscall.CreateToolhelp32Snapshot),\n\t\t\"CryptAcquireContext\":                          reflect.ValueOf(syscall.CryptAcquireContext),\n\t\t\"CryptGenRandom\":                               reflect.ValueOf(syscall.CryptGenRandom),\n\t\t\"CryptReleaseContext\":                          reflect.ValueOf(syscall.CryptReleaseContext),\n\t\t\"DNS_INFO_NO_RECORDS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9501\", token.INT, 0)),\n\t\t\"DNS_TYPE_A\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DNS_TYPE_A6\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"DNS_TYPE_AAAA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"DNS_TYPE_ADDRS\":                               reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"DNS_TYPE_AFSDB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DNS_TYPE_ALL\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"DNS_TYPE_ANY\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"DNS_TYPE_ATMA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"DNS_TYPE_AXFR\":                                reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"DNS_TYPE_CERT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"DNS_TYPE_CNAME\":                               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DNS_TYPE_DHCID\":                               reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"DNS_TYPE_DNAME\":                               reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"DNS_TYPE_DNSKEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"DNS_TYPE_DS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"DNS_TYPE_EID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"DNS_TYPE_GID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"DNS_TYPE_GPOS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"DNS_TYPE_HINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DNS_TYPE_ISDN\":                                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"DNS_TYPE_IXFR\":                                reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"DNS_TYPE_KEY\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"DNS_TYPE_KX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"DNS_TYPE_LOC\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"DNS_TYPE_MAILA\":                               reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"DNS_TYPE_MAILB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"DNS_TYPE_MB\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DNS_TYPE_MD\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DNS_TYPE_MF\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DNS_TYPE_MG\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DNS_TYPE_MINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DNS_TYPE_MR\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DNS_TYPE_MX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DNS_TYPE_NAPTR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"DNS_TYPE_NBSTAT\":                              reflect.ValueOf(constant.MakeFromLiteral(\"65281\", token.INT, 0)),\n\t\t\"DNS_TYPE_NIMLOC\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"DNS_TYPE_NS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSAP\":                                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSAPPTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSEC\":                                reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"DNS_TYPE_NULL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DNS_TYPE_NXT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"DNS_TYPE_OPT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"DNS_TYPE_PTR\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DNS_TYPE_PX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"DNS_TYPE_RP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"DNS_TYPE_RRSIG\":                               reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"DNS_TYPE_RT\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"DNS_TYPE_SIG\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"DNS_TYPE_SINK\":                                reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"DNS_TYPE_SOA\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DNS_TYPE_SRV\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"DNS_TYPE_TEXT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DNS_TYPE_TKEY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"DNS_TYPE_TSIG\":                                reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"DNS_TYPE_UID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"DNS_TYPE_UINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"DNS_TYPE_UNSPEC\":                              reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"DNS_TYPE_WINS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"65281\", token.INT, 0)),\n\t\t\"DNS_TYPE_WINSR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"65282\", token.INT, 0)),\n\t\t\"DNS_TYPE_WKS\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DNS_TYPE_X25\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DUPLICATE_CLOSE_SOURCE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DUPLICATE_SAME_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DeleteFile\":                                   reflect.ValueOf(syscall.DeleteFile),\n\t\t\"DeviceIoControl\":                              reflect.ValueOf(syscall.DeviceIoControl),\n\t\t\"DnsNameCompare\":                               reflect.ValueOf(syscall.DnsNameCompare),\n\t\t\"DnsQuery\":                                     reflect.ValueOf(syscall.DnsQuery),\n\t\t\"DnsRecordListFree\":                            reflect.ValueOf(syscall.DnsRecordListFree),\n\t\t\"DnsSectionAdditional\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DnsSectionAnswer\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DnsSectionAuthority\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DnsSectionQuestion\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DuplicateHandle\":                              reflect.ValueOf(syscall.DuplicateHandle),\n\t\t\"E2BIG\":                                        reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                                       reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                                   reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                                reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                                         reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                                 reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                                       reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                                     reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                                        reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                                        reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                                       reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                                      reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                                        reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                                      reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                                      reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                                       reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                                        reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                                    reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                                       reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHRNG\":                                       reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                                        reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                                 reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                                 reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                                   reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                                      reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                                    reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                                 reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                                         reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                                      reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                                       reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                                       reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                                       reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                                        reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                                    reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                                 reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                                        reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                                       reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                                  reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                                        reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                                       reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                                          reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                                      reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                                       reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                                       reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                                  reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                                 reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                                  reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                                       reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                                     reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                                       reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                                       reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                                      reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                                      reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                                     reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                                      reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                                      reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                                       reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                                        reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                                  reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                                       reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                                       reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                                     reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                                    reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                                 reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                                      reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENETDOWN\":                                     reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                                    reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                                  reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                                       reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                                       reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                                      reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                                       reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                                      reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                                       reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                                       reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                                      reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                                       reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                                       reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                                      reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                                    reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                                       reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                                       reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                                       reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                                       reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                                  reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                                       reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                                        reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                                       reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                                       reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                                      reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                                     reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                                      reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                                    reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                                      reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                              reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                                     reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                                      reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                                       reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                                     reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                                        reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                                   reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                                    reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                                   reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                                        reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                                 reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                                        reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROTO\":                                       reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                              reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                                   reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                                       reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                                      reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                                      reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                                    reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                                     reflect.ValueOf(syscall.ERESTART),\n\t\t\"EROFS\":                                        reflect.ValueOf(syscall.EROFS),\n\t\t\"ERROR_ACCESS_DENIED\":                          reflect.ValueOf(syscall.ERROR_ACCESS_DENIED),\n\t\t\"ERROR_ALREADY_EXISTS\":                         reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS),\n\t\t\"ERROR_BROKEN_PIPE\":                            reflect.ValueOf(syscall.ERROR_BROKEN_PIPE),\n\t\t\"ERROR_BUFFER_OVERFLOW\":                        reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW),\n\t\t\"ERROR_DIR_NOT_EMPTY\":                          reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY),\n\t\t\"ERROR_ENVVAR_NOT_FOUND\":                       reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND),\n\t\t\"ERROR_FILE_EXISTS\":                            reflect.ValueOf(syscall.ERROR_FILE_EXISTS),\n\t\t\"ERROR_FILE_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND),\n\t\t\"ERROR_HANDLE_EOF\":                             reflect.ValueOf(syscall.ERROR_HANDLE_EOF),\n\t\t\"ERROR_INSUFFICIENT_BUFFER\":                    reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER),\n\t\t\"ERROR_IO_PENDING\":                             reflect.ValueOf(syscall.ERROR_IO_PENDING),\n\t\t\"ERROR_MOD_NOT_FOUND\":                          reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND),\n\t\t\"ERROR_MORE_DATA\":                              reflect.ValueOf(syscall.ERROR_MORE_DATA),\n\t\t\"ERROR_NETNAME_DELETED\":                        reflect.ValueOf(syscall.ERROR_NETNAME_DELETED),\n\t\t\"ERROR_NOT_FOUND\":                              reflect.ValueOf(syscall.ERROR_NOT_FOUND),\n\t\t\"ERROR_NO_MORE_FILES\":                          reflect.ValueOf(syscall.ERROR_NO_MORE_FILES),\n\t\t\"ERROR_OPERATION_ABORTED\":                      reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED),\n\t\t\"ERROR_PATH_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND),\n\t\t\"ERROR_PRIVILEGE_NOT_HELD\":                     reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD),\n\t\t\"ERROR_PROC_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND),\n\t\t\"ESHUTDOWN\":                                    reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                              reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                                       reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                                        reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                                       reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                                       reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                                     reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETIME\":                                        reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                                    reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                                 reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                                      reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                                      reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                                      reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                                       reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWINDOWS\":                                     reflect.ValueOf(syscall.EWINDOWS),\n\t\t\"EWOULDBLOCK\":                                  reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                                        reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                                       reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":                                      reflect.ValueOf(syscall.Environ),\n\t\t\"EscapeArg\":                                    reflect.ValueOf(syscall.EscapeArg),\n\t\t\"FILE_ACTION_ADDED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_ACTION_MODIFIED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"FILE_ACTION_REMOVED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_ACTION_RENAMED_NEW_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"FILE_ACTION_RENAMED_OLD_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_APPEND_DATA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_ARCHIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_DIRECTORY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_HIDDEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_NORMAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_READONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_REPARSE_POINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_SYSTEM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_BEGIN\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"FILE_CURRENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_END\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_FLAG_BACKUP_SEMANTICS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"FILE_FLAG_OPEN_REPARSE_POINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"FILE_FLAG_OVERLAPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"FILE_LIST_DIRECTORY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_MAP_COPY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_MAP_EXECUTE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_MAP_READ\":                                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_MAP_WRITE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_ATTRIBUTES\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_CREATION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_DIR_NAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_FILE_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_LAST_ACCESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_LAST_WRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_SIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"FILE_SHARE_DELETE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_SHARE_READ\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_SHARE_WRITE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_SKIP_COMPLETION_PORT_ON_SUCCESS\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_SKIP_SET_EVENT_ON_HANDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_TYPE_CHAR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_TYPE_DISK\":                               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_TYPE_PIPE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"FILE_TYPE_REMOTE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"FILE_TYPE_UNKNOWN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"FILE_WRITE_ATTRIBUTES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_ALLOCATE_BUFFER\":               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_ARGUMENT_ARRAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_HMODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_STRING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_SYSTEM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_IGNORE_INSERTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_MAX_WIDTH_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"FSCTL_GET_REPARSE_POINT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"589992\", token.INT, 0)),\n\t\t\"Fchdir\":                                       reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                                       reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                                       reflect.ValueOf(syscall.Fchown),\n\t\t\"FindClose\":                                    reflect.ValueOf(syscall.FindClose),\n\t\t\"FindFirstFile\":                                reflect.ValueOf(syscall.FindFirstFile),\n\t\t\"FindNextFile\":                                 reflect.ValueOf(syscall.FindNextFile),\n\t\t\"FlushFileBuffers\":                             reflect.ValueOf(syscall.FlushFileBuffers),\n\t\t\"FlushViewOfFile\":                              reflect.ValueOf(syscall.FlushViewOfFile),\n\t\t\"ForkLock\":                                     reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"FormatMessage\":                                reflect.ValueOf(syscall.FormatMessage),\n\t\t\"FreeAddrInfoW\":                                reflect.ValueOf(syscall.FreeAddrInfoW),\n\t\t\"FreeEnvironmentStrings\":                       reflect.ValueOf(syscall.FreeEnvironmentStrings),\n\t\t\"FreeLibrary\":                                  reflect.ValueOf(syscall.FreeLibrary),\n\t\t\"Fsync\":                                        reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                                    reflect.ValueOf(syscall.Ftruncate),\n\t\t\"FullPath\":                                     reflect.ValueOf(syscall.FullPath),\n\t\t\"GENERIC_ALL\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"GENERIC_EXECUTE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"GENERIC_READ\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"GENERIC_WRITE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"GetAcceptExSockaddrs\":                         reflect.ValueOf(syscall.GetAcceptExSockaddrs),\n\t\t\"GetAdaptersInfo\":                              reflect.ValueOf(syscall.GetAdaptersInfo),\n\t\t\"GetAddrInfoW\":                                 reflect.ValueOf(syscall.GetAddrInfoW),\n\t\t\"GetCommandLine\":                               reflect.ValueOf(syscall.GetCommandLine),\n\t\t\"GetComputerName\":                              reflect.ValueOf(syscall.GetComputerName),\n\t\t\"GetConsoleMode\":                               reflect.ValueOf(syscall.GetConsoleMode),\n\t\t\"GetCurrentDirectory\":                          reflect.ValueOf(syscall.GetCurrentDirectory),\n\t\t\"GetCurrentProcess\":                            reflect.ValueOf(syscall.GetCurrentProcess),\n\t\t\"GetEnvironmentStrings\":                        reflect.ValueOf(syscall.GetEnvironmentStrings),\n\t\t\"GetEnvironmentVariable\":                       reflect.ValueOf(syscall.GetEnvironmentVariable),\n\t\t\"GetFileAttributes\":                            reflect.ValueOf(syscall.GetFileAttributes),\n\t\t\"GetFileAttributesEx\":                          reflect.ValueOf(syscall.GetFileAttributesEx),\n\t\t\"GetFileExInfoStandard\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"GetFileExMaxInfoLevel\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"GetFileInformationByHandle\":                   reflect.ValueOf(syscall.GetFileInformationByHandle),\n\t\t\"GetFileType\":                                  reflect.ValueOf(syscall.GetFileType),\n\t\t\"GetFullPathName\":                              reflect.ValueOf(syscall.GetFullPathName),\n\t\t\"GetHostByName\":                                reflect.ValueOf(syscall.GetHostByName),\n\t\t\"GetIfEntry\":                                   reflect.ValueOf(syscall.GetIfEntry),\n\t\t\"GetLastError\":                                 reflect.ValueOf(syscall.GetLastError),\n\t\t\"GetLengthSid\":                                 reflect.ValueOf(syscall.GetLengthSid),\n\t\t\"GetLongPathName\":                              reflect.ValueOf(syscall.GetLongPathName),\n\t\t\"GetProcAddress\":                               reflect.ValueOf(syscall.GetProcAddress),\n\t\t\"GetProcessTimes\":                              reflect.ValueOf(syscall.GetProcessTimes),\n\t\t\"GetProtoByName\":                               reflect.ValueOf(syscall.GetProtoByName),\n\t\t\"GetQueuedCompletionStatus\":                    reflect.ValueOf(syscall.GetQueuedCompletionStatus),\n\t\t\"GetServByName\":                                reflect.ValueOf(syscall.GetServByName),\n\t\t\"GetShortPathName\":                             reflect.ValueOf(syscall.GetShortPathName),\n\t\t\"GetStartupInfo\":                               reflect.ValueOf(syscall.GetStartupInfo),\n\t\t\"GetStdHandle\":                                 reflect.ValueOf(syscall.GetStdHandle),\n\t\t\"GetSystemTimeAsFileTime\":                      reflect.ValueOf(syscall.GetSystemTimeAsFileTime),\n\t\t\"GetTempPath\":                                  reflect.ValueOf(syscall.GetTempPath),\n\t\t\"GetTimeZoneInformation\":                       reflect.ValueOf(syscall.GetTimeZoneInformation),\n\t\t\"GetTokenInformation\":                          reflect.ValueOf(syscall.GetTokenInformation),\n\t\t\"GetUserNameEx\":                                reflect.ValueOf(syscall.GetUserNameEx),\n\t\t\"GetUserProfileDirectory\":                      reflect.ValueOf(syscall.GetUserProfileDirectory),\n\t\t\"GetVersion\":                                   reflect.ValueOf(syscall.GetVersion),\n\t\t\"Getegid\":                                      reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                                       reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                                      reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                                       reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                                    reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                                  reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                                  reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpid\":                                       reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                                      reflect.ValueOf(syscall.Getppid),\n\t\t\"Getsockname\":                                  reflect.ValueOf(syscall.Getsockname),\n\t\t\"Getsockopt\":                                   reflect.ValueOf(syscall.Getsockopt),\n\t\t\"GetsockoptInt\":                                reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                                 reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                                       reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                                        reflect.ValueOf(syscall.Getwd),\n\t\t\"HANDLE_FLAG_INHERIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"HKEY_CLASSES_ROOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"HKEY_CURRENT_CONFIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483653\", token.INT, 0)),\n\t\t\"HKEY_CURRENT_USER\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483649\", token.INT, 0)),\n\t\t\"HKEY_DYN_DATA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2147483654\", token.INT, 0)),\n\t\t\"HKEY_LOCAL_MACHINE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483650\", token.INT, 0)),\n\t\t\"HKEY_PERFORMANCE_DATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483652\", token.INT, 0)),\n\t\t\"HKEY_USERS\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483651\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_POINTTOPOINT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_UP\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNORE\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"INFINITE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"INVALID_FILE_ATTRIBUTES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"IOC_IN\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IOC_INOUT\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"IOC_OUT\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IOC_VENDOR\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"402653184\", token.INT, 0)),\n\t\t\"IOC_WS2\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"IO_REPARSE_TAG_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2684354572\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_TOS\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                              reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InvalidHandle\":                                reflect.ValueOf(syscall.InvalidHandle),\n\t\t\"KEY_ALL_ACCESS\":                               reflect.ValueOf(constant.MakeFromLiteral(\"983103\", token.INT, 0)),\n\t\t\"KEY_CREATE_LINK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"KEY_CREATE_SUB_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"KEY_ENUMERATE_SUB_KEYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"KEY_EXECUTE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"131097\", token.INT, 0)),\n\t\t\"KEY_NOTIFY\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"KEY_QUERY_VALUE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"KEY_READ\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"131097\", token.INT, 0)),\n\t\t\"KEY_SET_VALUE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"KEY_WOW64_32KEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"KEY_WOW64_64KEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"KEY_WRITE\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"131078\", token.INT, 0)),\n\t\t\"LANG_ENGLISH\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"LAYERED_PROTOCOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Lchown\":                                       reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                                         reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                                       reflect.ValueOf(syscall.Listen),\n\t\t\"LoadCancelIoEx\":                               reflect.ValueOf(syscall.LoadCancelIoEx),\n\t\t\"LoadConnectEx\":                                reflect.ValueOf(syscall.LoadConnectEx),\n\t\t\"LoadCreateSymbolicLink\":                       reflect.ValueOf(syscall.LoadCreateSymbolicLink),\n\t\t\"LoadDLL\":                                      reflect.ValueOf(syscall.LoadDLL),\n\t\t\"LoadGetAddrInfo\":                              reflect.ValueOf(syscall.LoadGetAddrInfo),\n\t\t\"LoadLibrary\":                                  reflect.ValueOf(syscall.LoadLibrary),\n\t\t\"LoadSetFileCompletionNotificationModes\":       reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes),\n\t\t\"LocalFree\":                                    reflect.ValueOf(syscall.LocalFree),\n\t\t\"LookupAccountName\":                            reflect.ValueOf(syscall.LookupAccountName),\n\t\t\"LookupAccountSid\":                             reflect.ValueOf(syscall.LookupAccountSid),\n\t\t\"LookupSID\":                                    reflect.ValueOf(syscall.LookupSID),\n\t\t\"MAXIMUM_REPARSE_DATA_BUFFER_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAXLEN_IFDESCR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAXLEN_PHYSADDR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_ADDRESS_LENGTH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_DESCRIPTION_LENGTH\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_NAME_LENGTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAX_COMPUTERNAME_LENGTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MAX_INTERFACE_NAME_LEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAX_LONG_PATH\":                                reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAX_PATH\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"MAX_PROTOCOL_CHAIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MapViewOfFile\":                                reflect.ValueOf(syscall.MapViewOfFile),\n\t\t\"MaxTokenInfoClass\":                            reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"Mkdir\":                                        reflect.ValueOf(syscall.Mkdir),\n\t\t\"MoveFile\":                                     reflect.ValueOf(syscall.MoveFile),\n\t\t\"MustLoadDLL\":                                  reflect.ValueOf(syscall.MustLoadDLL),\n\t\t\"NameCanonical\":                                reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NameCanonicalEx\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NameDisplay\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NameDnsDomain\":                                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NameFullyQualifiedDN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NameSamCompatible\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NameServicePrincipal\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NameUniqueId\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NameUnknown\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NameUserPrincipal\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NetApiBufferFree\":                             reflect.ValueOf(syscall.NetApiBufferFree),\n\t\t\"NetGetJoinInformation\":                        reflect.ValueOf(syscall.NetGetJoinInformation),\n\t\t\"NetSetupDomainName\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NetSetupUnjoined\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NetSetupUnknownStatus\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NetSetupWorkgroupName\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NetUserGetInfo\":                               reflect.ValueOf(syscall.NetUserGetInfo),\n\t\t\"NewCallback\":                                  reflect.ValueOf(syscall.NewCallback),\n\t\t\"NewCallbackCDecl\":                             reflect.ValueOf(syscall.NewCallbackCDecl),\n\t\t\"NewLazyDLL\":                                   reflect.ValueOf(syscall.NewLazyDLL),\n\t\t\"NsecToFiletime\":                               reflect.ValueOf(syscall.NsecToFiletime),\n\t\t\"NsecToTimespec\":                               reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                                reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"Ntohs\":                                        reflect.ValueOf(syscall.Ntohs),\n\t\t\"OID_PKIX_KP_SERVER_AUTH\":                      reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(),\n\t\t\"OID_SERVER_GATED_CRYPTO\":                      reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(),\n\t\t\"OID_SGC_NETSCAPE\":                             reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(),\n\t\t\"OPEN_ALWAYS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"OPEN_EXISTING\":                                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_EXCL\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_RDONLY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SYNC\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_TRUNC\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                                         reflect.ValueOf(syscall.Open),\n\t\t\"OpenCurrentProcessToken\":                      reflect.ValueOf(syscall.OpenCurrentProcessToken),\n\t\t\"OpenProcess\":                                  reflect.ValueOf(syscall.OpenProcess),\n\t\t\"OpenProcessToken\":                             reflect.ValueOf(syscall.OpenProcessToken),\n\t\t\"PAGE_EXECUTE_READ\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PAGE_EXECUTE_READWRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PAGE_EXECUTE_WRITECOPY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PAGE_READONLY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PAGE_READWRITE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PAGE_WRITECOPY\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PFL_HIDDEN\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PFL_MATCHES_PROTOCOL_ZERO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PFL_MULTIPLE_PROTO_ENTRIES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PFL_NETWORKDIRECT_PROVIDER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PFL_RECOMMENDED_PROTO_ENTRY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PKCS_7_ASN_ENCODING\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PROCESS_QUERY_INFORMATION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"PROCESS_TERMINATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROV_DH_SCHANNEL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PROV_DSS\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PROV_DSS_DH\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PROV_EC_ECDSA_FULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PROV_EC_ECDSA_SIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PROV_EC_ECNRA_FULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PROV_EC_ECNRA_SIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PROV_FORTEZZA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROV_INTEL_SEC\":                               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PROV_MS_EXCHANGE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PROV_REPLACE_OWF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PROV_RNG\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PROV_RSA_AES\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PROV_RSA_FULL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROV_RSA_SCHANNEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PROV_RSA_SIG\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROV_SPYRUS_LYNKS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PROV_SSL\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"Pipe\":                                         reflect.ValueOf(syscall.Pipe),\n\t\t\"PostQueuedCompletionStatus\":                   reflect.ValueOf(syscall.PostQueuedCompletionStatus),\n\t\t\"Process32First\":                               reflect.ValueOf(syscall.Process32First),\n\t\t\"Process32Next\":                                reflect.ValueOf(syscall.Process32Next),\n\t\t\"REG_BINARY\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"REG_DWORD\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"REG_DWORD_BIG_ENDIAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"REG_DWORD_LITTLE_ENDIAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"REG_EXPAND_SZ\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"REG_FULL_RESOURCE_DESCRIPTOR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"REG_LINK\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"REG_MULTI_SZ\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"REG_NONE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"REG_QWORD\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"REG_QWORD_LITTLE_ENDIAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"REG_RESOURCE_LIST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"REG_RESOURCE_REQUIREMENTS_LIST\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"REG_SZ\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                                         reflect.ValueOf(syscall.Read),\n\t\t\"ReadConsole\":                                  reflect.ValueOf(syscall.ReadConsole),\n\t\t\"ReadDirectoryChanges\":                         reflect.ValueOf(syscall.ReadDirectoryChanges),\n\t\t\"ReadFile\":                                     reflect.ValueOf(syscall.ReadFile),\n\t\t\"Readlink\":                                     reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                                     reflect.ValueOf(syscall.Recvfrom),\n\t\t\"RegCloseKey\":                                  reflect.ValueOf(syscall.RegCloseKey),\n\t\t\"RegEnumKeyEx\":                                 reflect.ValueOf(syscall.RegEnumKeyEx),\n\t\t\"RegOpenKeyEx\":                                 reflect.ValueOf(syscall.RegOpenKeyEx),\n\t\t\"RegQueryInfoKey\":                              reflect.ValueOf(syscall.RegQueryInfoKey),\n\t\t\"RegQueryValueEx\":                              reflect.ValueOf(syscall.RegQueryValueEx),\n\t\t\"RemoveDirectory\":                              reflect.ValueOf(syscall.RemoveDirectory),\n\t\t\"Rename\":                                       reflect.ValueOf(syscall.Rename),\n\t\t\"Rmdir\":                                        reflect.ValueOf(syscall.Rmdir),\n\t\t\"SHUT_RD\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                                      reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                                      reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                                       reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGFPE\":                                       reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                                       reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                                       reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                                       reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGKILL\":                                      reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                                      reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGQUIT\":                                      reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                                      reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGTERM\":                                      reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                                      reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIO_GET_EXTENSION_FUNCTION_POINTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3355443206\", token.INT, 0)),\n\t\t\"SIO_GET_INTERFACE_LIST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074033791\", token.INT, 0)),\n\t\t\"SIO_KEEPALIVE_VALS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2550136836\", token.INT, 0)),\n\t\t\"SIO_UDP_CONNRESET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2550136844\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"2147483647\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_UPDATE_ACCEPT_CONTEXT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28683\", token.INT, 0)),\n\t\t\"SO_UPDATE_CONNECT_CONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28688\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_ALL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2031616\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_EXECUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_REQUIRED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"983040\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STARTF_USESHOWWINDOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"STARTF_USESTDHANDLES\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"STD_ERROR_HANDLE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"-12\", token.INT, 0)),\n\t\t\"STD_INPUT_HANDLE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"STD_OUTPUT_HANDLE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"-11\", token.INT, 0)),\n\t\t\"SUBLANG_ENGLISH_US\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SW_FORCEMINIMIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SW_HIDE\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SW_MAXIMIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SW_MINIMIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SW_NORMAL\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SW_RESTORE\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SW_SHOW\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SW_SHOWDEFAULT\":                               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SW_SHOWMAXIMIZED\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SW_SHOWMINIMIZED\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SW_SHOWMINNOACTIVE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SW_SHOWNA\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SW_SHOWNOACTIVATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SW_SHOWNORMAL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYMBOLIC_LINK_FLAG_DIRECTORY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYNCHRONIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"S_IFBLK\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"S_IFREG\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_ISGID\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWRITE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                                         reflect.ValueOf(syscall.Seek),\n\t\t\"Sendto\":                                       reflect.ValueOf(syscall.Sendto),\n\t\t\"SetCurrentDirectory\":                          reflect.ValueOf(syscall.SetCurrentDirectory),\n\t\t\"SetEndOfFile\":                                 reflect.ValueOf(syscall.SetEndOfFile),\n\t\t\"SetEnvironmentVariable\":                       reflect.ValueOf(syscall.SetEnvironmentVariable),\n\t\t\"SetFileAttributes\":                            reflect.ValueOf(syscall.SetFileAttributes),\n\t\t\"SetFileCompletionNotificationModes\":           reflect.ValueOf(syscall.SetFileCompletionNotificationModes),\n\t\t\"SetFilePointer\":                               reflect.ValueOf(syscall.SetFilePointer),\n\t\t\"SetFileTime\":                                  reflect.ValueOf(syscall.SetFileTime),\n\t\t\"SetHandleInformation\":                         reflect.ValueOf(syscall.SetHandleInformation),\n\t\t\"SetNonblock\":                                  reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setenv\":                                       reflect.ValueOf(syscall.Setenv),\n\t\t\"Setsockopt\":                                   reflect.ValueOf(syscall.Setsockopt),\n\t\t\"SetsockoptIPMreq\":                             reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                           reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":                          reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                                reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                             reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptTimeval\":                            reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"SidTypeAlias\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SidTypeComputer\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SidTypeDeletedAccount\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SidTypeDomain\":                                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SidTypeGroup\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SidTypeInvalid\":                               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SidTypeLabel\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SidTypeUnknown\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SidTypeUser\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SidTypeWellKnownGroup\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"Socket\":                                       reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                            reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Stderr\":                                       reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                                        reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                                       reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                                reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                              reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringToSid\":                                  reflect.ValueOf(syscall.StringToSid),\n\t\t\"StringToUTF16\":                                reflect.ValueOf(syscall.StringToUTF16),\n\t\t\"StringToUTF16Ptr\":                             reflect.ValueOf(syscall.StringToUTF16Ptr),\n\t\t\"Symlink\":                                      reflect.ValueOf(syscall.Symlink),\n\t\t\"TCP_NODELAY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TF_DISCONNECT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TF_REUSE_SOCKET\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TF_USE_DEFAULT_WORKER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TF_USE_KERNEL_APC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TF_USE_SYSTEM_THREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TF_WRITE_BEHIND\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TH32CS_INHERIT\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"TH32CS_SNAPALL\":                               reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TH32CS_SNAPHEAPLIST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TH32CS_SNAPMODULE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TH32CS_SNAPMODULE32\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TH32CS_SNAPPROCESS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TH32CS_SNAPTHREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_DAYLIGHT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_STANDARD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_UNKNOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_DEFAULT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_GROUPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_PRIVILEGES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_SESSIONID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TOKEN_ALL_ACCESS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"983551\", token.INT, 0)),\n\t\t\"TOKEN_ASSIGN_PRIMARY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TOKEN_DUPLICATE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TOKEN_EXECUTE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"TOKEN_IMPERSONATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TOKEN_QUERY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TOKEN_QUERY_SOURCE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TOKEN_READ\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"131080\", token.INT, 0)),\n\t\t\"TOKEN_WRITE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"131296\", token.INT, 0)),\n\t\t\"TRUNCATE_EXISTING\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TerminateProcess\":                             reflect.ValueOf(syscall.TerminateProcess),\n\t\t\"TimespecToNsec\":                               reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TokenAccessInformation\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TokenAuditPolicy\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TokenDefaultDacl\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TokenElevation\":                               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TokenElevationType\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TokenGroups\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TokenGroupsAndPrivileges\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TokenHasRestrictions\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TokenImpersonationLevel\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TokenIntegrityLevel\":                          reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"TokenLinkedToken\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TokenLogonSid\":                                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"TokenMandatoryPolicy\":                         reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"TokenOrigin\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TokenOwner\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TokenPrimaryGroup\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TokenPrivileges\":                              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TokenRestrictedSids\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TokenSandBoxInert\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TokenSessionId\":                               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TokenSessionReference\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TokenSource\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TokenStatistics\":                              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TokenType\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TokenUIAccess\":                                reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"TokenUser\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TokenVirtualizationAllowed\":                   reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TokenVirtualizationEnabled\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TranslateAccountName\":                         reflect.ValueOf(syscall.TranslateAccountName),\n\t\t\"TranslateName\":                                reflect.ValueOf(syscall.TranslateName),\n\t\t\"TransmitFile\":                                 reflect.ValueOf(syscall.TransmitFile),\n\t\t\"UNIX_PATH_MAX\":                                reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"USAGE_MATCH_TYPE_AND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"USAGE_MATCH_TYPE_OR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"UTF16FromString\":                              reflect.ValueOf(syscall.UTF16FromString),\n\t\t\"UTF16PtrFromString\":                           reflect.ValueOf(syscall.UTF16PtrFromString),\n\t\t\"UTF16ToString\":                                reflect.ValueOf(syscall.UTF16ToString),\n\t\t\"Unlink\":                                       reflect.ValueOf(syscall.Unlink),\n\t\t\"UnmapViewOfFile\":                              reflect.ValueOf(syscall.UnmapViewOfFile),\n\t\t\"Unsetenv\":                                     reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                                       reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                                   reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VirtualLock\":                                  reflect.ValueOf(syscall.VirtualLock),\n\t\t\"VirtualUnlock\":                                reflect.ValueOf(syscall.VirtualUnlock),\n\t\t\"WAIT_ABANDONED\":                               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WAIT_FAILED\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"WAIT_OBJECT_0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"WAIT_TIMEOUT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"WSACleanup\":                                   reflect.ValueOf(syscall.WSACleanup),\n\t\t\"WSADESCRIPTION_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"WSAEACCES\":                                    reflect.ValueOf(syscall.WSAEACCES),\n\t\t\"WSAECONNABORTED\":                              reflect.ValueOf(syscall.WSAECONNABORTED),\n\t\t\"WSAECONNRESET\":                                reflect.ValueOf(syscall.WSAECONNRESET),\n\t\t\"WSAEnumProtocols\":                             reflect.ValueOf(syscall.WSAEnumProtocols),\n\t\t\"WSAID_CONNECTEX\":                              reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(),\n\t\t\"WSAIoctl\":                                     reflect.ValueOf(syscall.WSAIoctl),\n\t\t\"WSAPROTOCOL_LEN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"WSARecv\":                                      reflect.ValueOf(syscall.WSARecv),\n\t\t\"WSARecvFrom\":                                  reflect.ValueOf(syscall.WSARecvFrom),\n\t\t\"WSASYS_STATUS_LEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WSASend\":                                      reflect.ValueOf(syscall.WSASend),\n\t\t\"WSASendTo\":                                    reflect.ValueOf(syscall.WSASendTo),\n\t\t\"WSASendto\":                                    reflect.ValueOf(syscall.WSASendto),\n\t\t\"WSAStartup\":                                   reflect.ValueOf(syscall.WSAStartup),\n\t\t\"WaitForSingleObject\":                          reflect.ValueOf(syscall.WaitForSingleObject),\n\t\t\"Write\":                                        reflect.ValueOf(syscall.Write),\n\t\t\"WriteConsole\":                                 reflect.ValueOf(syscall.WriteConsole),\n\t\t\"WriteFile\":                                    reflect.ValueOf(syscall.WriteFile),\n\t\t\"X509_ASN_ENCODING\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"XP1_CONNECTIONLESS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"XP1_CONNECT_DATA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"XP1_DISCONNECT_DATA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"XP1_EXPEDITED_DATA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"XP1_GRACEFUL_CLOSE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"XP1_GUARANTEED_DELIVERY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"XP1_GUARANTEED_ORDER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"XP1_IFS_HANDLES\":                              reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"XP1_MESSAGE_ORIENTED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"XP1_MULTIPOINT_CONTROL_PLANE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"XP1_MULTIPOINT_DATA_PLANE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"XP1_PARTIAL_MESSAGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"XP1_PSEUDO_STREAM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"XP1_QOS_SUPPORTED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"XP1_SAN_SUPPORT_SDP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"XP1_SUPPORT_BROADCAST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"XP1_SUPPORT_MULTIPOINT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"XP1_UNI_RECV\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"XP1_UNI_SEND\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"AddrinfoW\":                   reflect.ValueOf((*syscall.AddrinfoW)(nil)),\n\t\t\"ByHandleFileInformation\":     reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)),\n\t\t\"CertChainContext\":            reflect.ValueOf((*syscall.CertChainContext)(nil)),\n\t\t\"CertChainElement\":            reflect.ValueOf((*syscall.CertChainElement)(nil)),\n\t\t\"CertChainPara\":               reflect.ValueOf((*syscall.CertChainPara)(nil)),\n\t\t\"CertChainPolicyPara\":         reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)),\n\t\t\"CertChainPolicyStatus\":       reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)),\n\t\t\"CertContext\":                 reflect.ValueOf((*syscall.CertContext)(nil)),\n\t\t\"CertEnhKeyUsage\":             reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)),\n\t\t\"CertInfo\":                    reflect.ValueOf((*syscall.CertInfo)(nil)),\n\t\t\"CertRevocationCrlInfo\":       reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)),\n\t\t\"CertRevocationInfo\":          reflect.ValueOf((*syscall.CertRevocationInfo)(nil)),\n\t\t\"CertSimpleChain\":             reflect.ValueOf((*syscall.CertSimpleChain)(nil)),\n\t\t\"CertTrustListInfo\":           reflect.ValueOf((*syscall.CertTrustListInfo)(nil)),\n\t\t\"CertTrustStatus\":             reflect.ValueOf((*syscall.CertTrustStatus)(nil)),\n\t\t\"CertUsageMatch\":              reflect.ValueOf((*syscall.CertUsageMatch)(nil)),\n\t\t\"Conn\":                        reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"DLL\":                         reflect.ValueOf((*syscall.DLL)(nil)),\n\t\t\"DLLError\":                    reflect.ValueOf((*syscall.DLLError)(nil)),\n\t\t\"DNSMXData\":                   reflect.ValueOf((*syscall.DNSMXData)(nil)),\n\t\t\"DNSPTRData\":                  reflect.ValueOf((*syscall.DNSPTRData)(nil)),\n\t\t\"DNSRecord\":                   reflect.ValueOf((*syscall.DNSRecord)(nil)),\n\t\t\"DNSSRVData\":                  reflect.ValueOf((*syscall.DNSSRVData)(nil)),\n\t\t\"DNSTXTData\":                  reflect.ValueOf((*syscall.DNSTXTData)(nil)),\n\t\t\"Errno\":                       reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FileNotifyInformation\":       reflect.ValueOf((*syscall.FileNotifyInformation)(nil)),\n\t\t\"Filetime\":                    reflect.ValueOf((*syscall.Filetime)(nil)),\n\t\t\"GUID\":                        reflect.ValueOf((*syscall.GUID)(nil)),\n\t\t\"Handle\":                      reflect.ValueOf((*syscall.Handle)(nil)),\n\t\t\"Hostent\":                     reflect.ValueOf((*syscall.Hostent)(nil)),\n\t\t\"IPMreq\":                      reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6Mreq\":                    reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"InterfaceInfo\":               reflect.ValueOf((*syscall.InterfaceInfo)(nil)),\n\t\t\"IpAdapterInfo\":               reflect.ValueOf((*syscall.IpAdapterInfo)(nil)),\n\t\t\"IpAddrString\":                reflect.ValueOf((*syscall.IpAddrString)(nil)),\n\t\t\"IpAddressString\":             reflect.ValueOf((*syscall.IpAddressString)(nil)),\n\t\t\"IpMaskString\":                reflect.ValueOf((*syscall.IpMaskString)(nil)),\n\t\t\"LazyDLL\":                     reflect.ValueOf((*syscall.LazyDLL)(nil)),\n\t\t\"LazyProc\":                    reflect.ValueOf((*syscall.LazyProc)(nil)),\n\t\t\"Linger\":                      reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"MibIfRow\":                    reflect.ValueOf((*syscall.MibIfRow)(nil)),\n\t\t\"Overlapped\":                  reflect.ValueOf((*syscall.Overlapped)(nil)),\n\t\t\"Pointer\":                     reflect.ValueOf((*syscall.Pointer)(nil)),\n\t\t\"Proc\":                        reflect.ValueOf((*syscall.Proc)(nil)),\n\t\t\"ProcAttr\":                    reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"ProcessEntry32\":              reflect.ValueOf((*syscall.ProcessEntry32)(nil)),\n\t\t\"ProcessInformation\":          reflect.ValueOf((*syscall.ProcessInformation)(nil)),\n\t\t\"Protoent\":                    reflect.ValueOf((*syscall.Protoent)(nil)),\n\t\t\"RawConn\":                     reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                 reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":              reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":            reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":            reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":             reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rusage\":                      reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"SID\":                         reflect.ValueOf((*syscall.SID)(nil)),\n\t\t\"SIDAndAttributes\":            reflect.ValueOf((*syscall.SIDAndAttributes)(nil)),\n\t\t\"SSLExtraCertChainPolicyPara\": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)),\n\t\t\"SecurityAttributes\":          reflect.ValueOf((*syscall.SecurityAttributes)(nil)),\n\t\t\"Servent\":                     reflect.ValueOf((*syscall.Servent)(nil)),\n\t\t\"Signal\":                      reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                    reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrGen\":                 reflect.ValueOf((*syscall.SockaddrGen)(nil)),\n\t\t\"SockaddrInet4\":               reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":               reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"StartupInfo\":                 reflect.ValueOf((*syscall.StartupInfo)(nil)),\n\t\t\"SysProcAttr\":                 reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Systemtime\":                  reflect.ValueOf((*syscall.Systemtime)(nil)),\n\t\t\"TCPKeepalive\":                reflect.ValueOf((*syscall.TCPKeepalive)(nil)),\n\t\t\"Timespec\":                    reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                     reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timezoneinformation\":         reflect.ValueOf((*syscall.Timezoneinformation)(nil)),\n\t\t\"Token\":                       reflect.ValueOf((*syscall.Token)(nil)),\n\t\t\"Tokenprimarygroup\":           reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)),\n\t\t\"Tokenuser\":                   reflect.ValueOf((*syscall.Tokenuser)(nil)),\n\t\t\"TransmitFileBuffers\":         reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)),\n\t\t\"UserInfo10\":                  reflect.ValueOf((*syscall.UserInfo10)(nil)),\n\t\t\"WSABuf\":                      reflect.ValueOf((*syscall.WSABuf)(nil)),\n\t\t\"WSAData\":                     reflect.ValueOf((*syscall.WSAData)(nil)),\n\t\t\"WSAProtocolChain\":            reflect.ValueOf((*syscall.WSAProtocolChain)(nil)),\n\t\t\"WSAProtocolInfo\":             reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)),\n\t\t\"WaitStatus\":                  reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\t\t\"Win32FileAttributeData\":      reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)),\n\t\t\"Win32finddata\":               reflect.ValueOf((*syscall.Win32finddata)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_windows_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_INET\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_UNIX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AI_CANONNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AI_NUMERICHOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AI_PASSIVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"APPLICATION_ERROR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"AUTHTYPE_CLIENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AUTHTYPE_SERVER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Accept\":                              reflect.ValueOf(syscall.Accept),\n\t\t\"AcceptEx\":                            reflect.ValueOf(syscall.AcceptEx),\n\t\t\"BASE_PROTOCOL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Bind\":                                reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":                   reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":                 reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CERT_CHAIN_POLICY_AUTHENTICODE\":      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_AUTHENTICODE_TS\":   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_BASE\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_BASIC_CONSTRAINTS\": reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_EV\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_MICROSOFT_ROOT\":    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_NT_AUTH\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_SSL\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_E_CN_NO_MATCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148204815\", token.INT, 0)),\n\t\t\"CERT_E_EXPIRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148204801\", token.INT, 0)),\n\t\t\"CERT_E_PURPOSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148204806\", token.INT, 0)),\n\t\t\"CERT_E_ROLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148204803\", token.INT, 0)),\n\t\t\"CERT_E_UNTRUSTEDROOT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2148204809\", token.INT, 0)),\n\t\t\"CERT_STORE_ADD_ALWAYS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG\":  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_STORE_PROV_MEMORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT\":      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT\":   reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT\": reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT\":    reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT\": reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_BASIC_CONSTRAINTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_EXTENSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_NAME_CONSTRAINTS\":          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_POLICY_CONSTRAINTS\":        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_CYCLIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_EXPLICIT_DISTRUST\":              reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_SIGNATURE_VALID\":            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_TIME_VALID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_VALID_FOR_USAGE\":            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_OFFLINE_REVOCATION\":             reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_REVOKED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_UNTRUSTED_ROOT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CERT_TRUST_NO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY\":          reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CERT_TRUST_REVOCATION_STATUS_UNKNOWN\":         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CREATE_ALWAYS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CREATE_NEW\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CREATE_NEW_PROCESS_GROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CREATE_UNICODE_ENVIRONMENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CRYPT_DEFAULT_CONTAINER_OPTIONAL\":             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CRYPT_DELETEKEYSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CRYPT_MACHINE_KEYSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CRYPT_NEWKEYSET\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CRYPT_SILENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CRYPT_VERIFYCONTEXT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"CTRL_BREAK_EVENT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CTRL_CLOSE_EVENT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CTRL_C_EVENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CTRL_LOGOFF_EVENT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"CTRL_SHUTDOWN_EVENT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"CancelIo\":                                     reflect.ValueOf(syscall.CancelIo),\n\t\t\"CancelIoEx\":                                   reflect.ValueOf(syscall.CancelIoEx),\n\t\t\"CertAddCertificateContextToStore\":             reflect.ValueOf(syscall.CertAddCertificateContextToStore),\n\t\t\"CertCloseStore\":                               reflect.ValueOf(syscall.CertCloseStore),\n\t\t\"CertCreateCertificateContext\":                 reflect.ValueOf(syscall.CertCreateCertificateContext),\n\t\t\"CertEnumCertificatesInStore\":                  reflect.ValueOf(syscall.CertEnumCertificatesInStore),\n\t\t\"CertFreeCertificateChain\":                     reflect.ValueOf(syscall.CertFreeCertificateChain),\n\t\t\"CertFreeCertificateContext\":                   reflect.ValueOf(syscall.CertFreeCertificateContext),\n\t\t\"CertGetCertificateChain\":                      reflect.ValueOf(syscall.CertGetCertificateChain),\n\t\t\"CertOpenStore\":                                reflect.ValueOf(syscall.CertOpenStore),\n\t\t\"CertOpenSystemStore\":                          reflect.ValueOf(syscall.CertOpenSystemStore),\n\t\t\"CertVerifyCertificateChainPolicy\":             reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy),\n\t\t\"Chdir\":                                        reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                                        reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                                        reflect.ValueOf(syscall.Chown),\n\t\t\"Clearenv\":                                     reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                                        reflect.ValueOf(syscall.Close),\n\t\t\"CloseHandle\":                                  reflect.ValueOf(syscall.CloseHandle),\n\t\t\"CloseOnExec\":                                  reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"Closesocket\":                                  reflect.ValueOf(syscall.Closesocket),\n\t\t\"CommandLineToArgv\":                            reflect.ValueOf(syscall.CommandLineToArgv),\n\t\t\"ComputerName\":                                 reflect.ValueOf(syscall.ComputerName),\n\t\t\"Connect\":                                      reflect.ValueOf(syscall.Connect),\n\t\t\"ConnectEx\":                                    reflect.ValueOf(syscall.ConnectEx),\n\t\t\"ConvertSidToStringSid\":                        reflect.ValueOf(syscall.ConvertSidToStringSid),\n\t\t\"ConvertStringSidToSid\":                        reflect.ValueOf(syscall.ConvertStringSidToSid),\n\t\t\"CopySid\":                                      reflect.ValueOf(syscall.CopySid),\n\t\t\"CreateDirectory\":                              reflect.ValueOf(syscall.CreateDirectory),\n\t\t\"CreateFile\":                                   reflect.ValueOf(syscall.CreateFile),\n\t\t\"CreateFileMapping\":                            reflect.ValueOf(syscall.CreateFileMapping),\n\t\t\"CreateHardLink\":                               reflect.ValueOf(syscall.CreateHardLink),\n\t\t\"CreateIoCompletionPort\":                       reflect.ValueOf(syscall.CreateIoCompletionPort),\n\t\t\"CreatePipe\":                                   reflect.ValueOf(syscall.CreatePipe),\n\t\t\"CreateProcess\":                                reflect.ValueOf(syscall.CreateProcess),\n\t\t\"CreateProcessAsUser\":                          reflect.ValueOf(syscall.CreateProcessAsUser),\n\t\t\"CreateSymbolicLink\":                           reflect.ValueOf(syscall.CreateSymbolicLink),\n\t\t\"CreateToolhelp32Snapshot\":                     reflect.ValueOf(syscall.CreateToolhelp32Snapshot),\n\t\t\"CryptAcquireContext\":                          reflect.ValueOf(syscall.CryptAcquireContext),\n\t\t\"CryptGenRandom\":                               reflect.ValueOf(syscall.CryptGenRandom),\n\t\t\"CryptReleaseContext\":                          reflect.ValueOf(syscall.CryptReleaseContext),\n\t\t\"DNS_INFO_NO_RECORDS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9501\", token.INT, 0)),\n\t\t\"DNS_TYPE_A\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DNS_TYPE_A6\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"DNS_TYPE_AAAA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"DNS_TYPE_ADDRS\":                               reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"DNS_TYPE_AFSDB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DNS_TYPE_ALL\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"DNS_TYPE_ANY\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"DNS_TYPE_ATMA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"DNS_TYPE_AXFR\":                                reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"DNS_TYPE_CERT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"DNS_TYPE_CNAME\":                               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DNS_TYPE_DHCID\":                               reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"DNS_TYPE_DNAME\":                               reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"DNS_TYPE_DNSKEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"DNS_TYPE_DS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"DNS_TYPE_EID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"DNS_TYPE_GID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"DNS_TYPE_GPOS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"DNS_TYPE_HINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DNS_TYPE_ISDN\":                                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"DNS_TYPE_IXFR\":                                reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"DNS_TYPE_KEY\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"DNS_TYPE_KX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"DNS_TYPE_LOC\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"DNS_TYPE_MAILA\":                               reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"DNS_TYPE_MAILB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"DNS_TYPE_MB\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DNS_TYPE_MD\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DNS_TYPE_MF\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DNS_TYPE_MG\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DNS_TYPE_MINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DNS_TYPE_MR\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DNS_TYPE_MX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DNS_TYPE_NAPTR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"DNS_TYPE_NBSTAT\":                              reflect.ValueOf(constant.MakeFromLiteral(\"65281\", token.INT, 0)),\n\t\t\"DNS_TYPE_NIMLOC\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"DNS_TYPE_NS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSAP\":                                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSAPPTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSEC\":                                reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"DNS_TYPE_NULL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DNS_TYPE_NXT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"DNS_TYPE_OPT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"DNS_TYPE_PTR\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DNS_TYPE_PX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"DNS_TYPE_RP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"DNS_TYPE_RRSIG\":                               reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"DNS_TYPE_RT\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"DNS_TYPE_SIG\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"DNS_TYPE_SINK\":                                reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"DNS_TYPE_SOA\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DNS_TYPE_SRV\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"DNS_TYPE_TEXT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DNS_TYPE_TKEY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"DNS_TYPE_TSIG\":                                reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"DNS_TYPE_UID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"DNS_TYPE_UINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"DNS_TYPE_UNSPEC\":                              reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"DNS_TYPE_WINS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"65281\", token.INT, 0)),\n\t\t\"DNS_TYPE_WINSR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"65282\", token.INT, 0)),\n\t\t\"DNS_TYPE_WKS\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DNS_TYPE_X25\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DUPLICATE_CLOSE_SOURCE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DUPLICATE_SAME_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DeleteFile\":                                   reflect.ValueOf(syscall.DeleteFile),\n\t\t\"DeviceIoControl\":                              reflect.ValueOf(syscall.DeviceIoControl),\n\t\t\"DnsNameCompare\":                               reflect.ValueOf(syscall.DnsNameCompare),\n\t\t\"DnsQuery\":                                     reflect.ValueOf(syscall.DnsQuery),\n\t\t\"DnsRecordListFree\":                            reflect.ValueOf(syscall.DnsRecordListFree),\n\t\t\"DnsSectionAdditional\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DnsSectionAnswer\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DnsSectionAuthority\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DnsSectionQuestion\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DuplicateHandle\":                              reflect.ValueOf(syscall.DuplicateHandle),\n\t\t\"E2BIG\":                                        reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                                       reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                                   reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                                reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                                         reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                                 reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                                       reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                                     reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                                        reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                                        reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                                       reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                                      reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                                        reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                                      reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                                      reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                                       reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                                        reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                                    reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                                       reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHRNG\":                                       reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                                        reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                                 reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                                 reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                                   reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                                      reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                                    reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                                 reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                                         reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                                      reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                                       reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                                       reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                                       reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                                        reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                                    reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                                 reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                                        reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                                       reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                                  reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                                        reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                                       reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                                          reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                                      reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                                       reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                                       reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                                  reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                                 reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                                  reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                                       reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                                     reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                                       reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                                       reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                                      reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                                      reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                                     reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                                      reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                                      reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                                       reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                                        reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                                  reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                                       reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                                       reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                                     reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                                    reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                                 reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                                      reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENETDOWN\":                                     reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                                    reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                                  reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                                       reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                                       reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                                      reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                                       reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                                      reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                                       reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                                       reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                                      reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                                       reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                                       reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                                      reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                                    reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                                       reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                                       reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                                       reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                                       reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                                  reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                                       reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                                        reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                                       reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                                       reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                                      reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                                     reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                                      reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                                    reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                                      reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                              reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                                     reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                                      reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                                       reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                                     reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                                        reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                                   reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                                    reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                                   reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                                        reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                                 reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                                        reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROTO\":                                       reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                              reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                                   reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                                       reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                                      reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                                      reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                                    reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                                     reflect.ValueOf(syscall.ERESTART),\n\t\t\"EROFS\":                                        reflect.ValueOf(syscall.EROFS),\n\t\t\"ERROR_ACCESS_DENIED\":                          reflect.ValueOf(syscall.ERROR_ACCESS_DENIED),\n\t\t\"ERROR_ALREADY_EXISTS\":                         reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS),\n\t\t\"ERROR_BROKEN_PIPE\":                            reflect.ValueOf(syscall.ERROR_BROKEN_PIPE),\n\t\t\"ERROR_BUFFER_OVERFLOW\":                        reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW),\n\t\t\"ERROR_DIR_NOT_EMPTY\":                          reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY),\n\t\t\"ERROR_ENVVAR_NOT_FOUND\":                       reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND),\n\t\t\"ERROR_FILE_EXISTS\":                            reflect.ValueOf(syscall.ERROR_FILE_EXISTS),\n\t\t\"ERROR_FILE_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND),\n\t\t\"ERROR_HANDLE_EOF\":                             reflect.ValueOf(syscall.ERROR_HANDLE_EOF),\n\t\t\"ERROR_INSUFFICIENT_BUFFER\":                    reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER),\n\t\t\"ERROR_IO_PENDING\":                             reflect.ValueOf(syscall.ERROR_IO_PENDING),\n\t\t\"ERROR_MOD_NOT_FOUND\":                          reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND),\n\t\t\"ERROR_MORE_DATA\":                              reflect.ValueOf(syscall.ERROR_MORE_DATA),\n\t\t\"ERROR_NETNAME_DELETED\":                        reflect.ValueOf(syscall.ERROR_NETNAME_DELETED),\n\t\t\"ERROR_NOT_FOUND\":                              reflect.ValueOf(syscall.ERROR_NOT_FOUND),\n\t\t\"ERROR_NO_MORE_FILES\":                          reflect.ValueOf(syscall.ERROR_NO_MORE_FILES),\n\t\t\"ERROR_OPERATION_ABORTED\":                      reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED),\n\t\t\"ERROR_PATH_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND),\n\t\t\"ERROR_PRIVILEGE_NOT_HELD\":                     reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD),\n\t\t\"ERROR_PROC_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND),\n\t\t\"ESHUTDOWN\":                                    reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                              reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                                       reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                                        reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                                       reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                                       reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                                     reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETIME\":                                        reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                                    reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                                 reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                                      reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                                      reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                                      reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                                       reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWINDOWS\":                                     reflect.ValueOf(syscall.EWINDOWS),\n\t\t\"EWOULDBLOCK\":                                  reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                                        reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                                       reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":                                      reflect.ValueOf(syscall.Environ),\n\t\t\"EscapeArg\":                                    reflect.ValueOf(syscall.EscapeArg),\n\t\t\"FILE_ACTION_ADDED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_ACTION_MODIFIED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"FILE_ACTION_REMOVED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_ACTION_RENAMED_NEW_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"FILE_ACTION_RENAMED_OLD_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_APPEND_DATA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_ARCHIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_DIRECTORY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_HIDDEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_NORMAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_READONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_REPARSE_POINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_SYSTEM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_BEGIN\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"FILE_CURRENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_END\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_FLAG_BACKUP_SEMANTICS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"FILE_FLAG_OPEN_REPARSE_POINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"FILE_FLAG_OVERLAPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"FILE_LIST_DIRECTORY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_MAP_COPY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_MAP_EXECUTE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_MAP_READ\":                                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_MAP_WRITE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_ATTRIBUTES\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_CREATION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_DIR_NAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_FILE_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_LAST_ACCESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_LAST_WRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_SIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"FILE_SHARE_DELETE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_SHARE_READ\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_SHARE_WRITE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_SKIP_COMPLETION_PORT_ON_SUCCESS\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_SKIP_SET_EVENT_ON_HANDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_TYPE_CHAR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_TYPE_DISK\":                               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_TYPE_PIPE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"FILE_TYPE_REMOTE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"FILE_TYPE_UNKNOWN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"FILE_WRITE_ATTRIBUTES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_ALLOCATE_BUFFER\":               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_ARGUMENT_ARRAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_HMODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_STRING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_SYSTEM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_IGNORE_INSERTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_MAX_WIDTH_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"FSCTL_GET_REPARSE_POINT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"589992\", token.INT, 0)),\n\t\t\"Fchdir\":                                       reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                                       reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                                       reflect.ValueOf(syscall.Fchown),\n\t\t\"FindClose\":                                    reflect.ValueOf(syscall.FindClose),\n\t\t\"FindFirstFile\":                                reflect.ValueOf(syscall.FindFirstFile),\n\t\t\"FindNextFile\":                                 reflect.ValueOf(syscall.FindNextFile),\n\t\t\"FlushFileBuffers\":                             reflect.ValueOf(syscall.FlushFileBuffers),\n\t\t\"FlushViewOfFile\":                              reflect.ValueOf(syscall.FlushViewOfFile),\n\t\t\"ForkLock\":                                     reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"FormatMessage\":                                reflect.ValueOf(syscall.FormatMessage),\n\t\t\"FreeAddrInfoW\":                                reflect.ValueOf(syscall.FreeAddrInfoW),\n\t\t\"FreeEnvironmentStrings\":                       reflect.ValueOf(syscall.FreeEnvironmentStrings),\n\t\t\"FreeLibrary\":                                  reflect.ValueOf(syscall.FreeLibrary),\n\t\t\"Fsync\":                                        reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                                    reflect.ValueOf(syscall.Ftruncate),\n\t\t\"FullPath\":                                     reflect.ValueOf(syscall.FullPath),\n\t\t\"GENERIC_ALL\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"GENERIC_EXECUTE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"GENERIC_READ\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"GENERIC_WRITE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"GetAcceptExSockaddrs\":                         reflect.ValueOf(syscall.GetAcceptExSockaddrs),\n\t\t\"GetAdaptersInfo\":                              reflect.ValueOf(syscall.GetAdaptersInfo),\n\t\t\"GetAddrInfoW\":                                 reflect.ValueOf(syscall.GetAddrInfoW),\n\t\t\"GetCommandLine\":                               reflect.ValueOf(syscall.GetCommandLine),\n\t\t\"GetComputerName\":                              reflect.ValueOf(syscall.GetComputerName),\n\t\t\"GetConsoleMode\":                               reflect.ValueOf(syscall.GetConsoleMode),\n\t\t\"GetCurrentDirectory\":                          reflect.ValueOf(syscall.GetCurrentDirectory),\n\t\t\"GetCurrentProcess\":                            reflect.ValueOf(syscall.GetCurrentProcess),\n\t\t\"GetEnvironmentStrings\":                        reflect.ValueOf(syscall.GetEnvironmentStrings),\n\t\t\"GetEnvironmentVariable\":                       reflect.ValueOf(syscall.GetEnvironmentVariable),\n\t\t\"GetFileAttributes\":                            reflect.ValueOf(syscall.GetFileAttributes),\n\t\t\"GetFileAttributesEx\":                          reflect.ValueOf(syscall.GetFileAttributesEx),\n\t\t\"GetFileExInfoStandard\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"GetFileExMaxInfoLevel\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"GetFileInformationByHandle\":                   reflect.ValueOf(syscall.GetFileInformationByHandle),\n\t\t\"GetFileType\":                                  reflect.ValueOf(syscall.GetFileType),\n\t\t\"GetFullPathName\":                              reflect.ValueOf(syscall.GetFullPathName),\n\t\t\"GetHostByName\":                                reflect.ValueOf(syscall.GetHostByName),\n\t\t\"GetIfEntry\":                                   reflect.ValueOf(syscall.GetIfEntry),\n\t\t\"GetLastError\":                                 reflect.ValueOf(syscall.GetLastError),\n\t\t\"GetLengthSid\":                                 reflect.ValueOf(syscall.GetLengthSid),\n\t\t\"GetLongPathName\":                              reflect.ValueOf(syscall.GetLongPathName),\n\t\t\"GetProcAddress\":                               reflect.ValueOf(syscall.GetProcAddress),\n\t\t\"GetProcessTimes\":                              reflect.ValueOf(syscall.GetProcessTimes),\n\t\t\"GetProtoByName\":                               reflect.ValueOf(syscall.GetProtoByName),\n\t\t\"GetQueuedCompletionStatus\":                    reflect.ValueOf(syscall.GetQueuedCompletionStatus),\n\t\t\"GetServByName\":                                reflect.ValueOf(syscall.GetServByName),\n\t\t\"GetShortPathName\":                             reflect.ValueOf(syscall.GetShortPathName),\n\t\t\"GetStartupInfo\":                               reflect.ValueOf(syscall.GetStartupInfo),\n\t\t\"GetStdHandle\":                                 reflect.ValueOf(syscall.GetStdHandle),\n\t\t\"GetSystemTimeAsFileTime\":                      reflect.ValueOf(syscall.GetSystemTimeAsFileTime),\n\t\t\"GetTempPath\":                                  reflect.ValueOf(syscall.GetTempPath),\n\t\t\"GetTimeZoneInformation\":                       reflect.ValueOf(syscall.GetTimeZoneInformation),\n\t\t\"GetTokenInformation\":                          reflect.ValueOf(syscall.GetTokenInformation),\n\t\t\"GetUserNameEx\":                                reflect.ValueOf(syscall.GetUserNameEx),\n\t\t\"GetUserProfileDirectory\":                      reflect.ValueOf(syscall.GetUserProfileDirectory),\n\t\t\"GetVersion\":                                   reflect.ValueOf(syscall.GetVersion),\n\t\t\"Getegid\":                                      reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                                       reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                                      reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                                       reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                                    reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                                  reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                                  reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpid\":                                       reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                                      reflect.ValueOf(syscall.Getppid),\n\t\t\"Getsockname\":                                  reflect.ValueOf(syscall.Getsockname),\n\t\t\"Getsockopt\":                                   reflect.ValueOf(syscall.Getsockopt),\n\t\t\"GetsockoptInt\":                                reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                                 reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                                       reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                                        reflect.ValueOf(syscall.Getwd),\n\t\t\"HANDLE_FLAG_INHERIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"HKEY_CLASSES_ROOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"HKEY_CURRENT_CONFIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483653\", token.INT, 0)),\n\t\t\"HKEY_CURRENT_USER\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483649\", token.INT, 0)),\n\t\t\"HKEY_DYN_DATA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2147483654\", token.INT, 0)),\n\t\t\"HKEY_LOCAL_MACHINE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483650\", token.INT, 0)),\n\t\t\"HKEY_PERFORMANCE_DATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483652\", token.INT, 0)),\n\t\t\"HKEY_USERS\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483651\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_POINTTOPOINT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_UP\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNORE\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"INFINITE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"INVALID_FILE_ATTRIBUTES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"IOC_IN\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IOC_INOUT\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"IOC_OUT\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IOC_VENDOR\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"402653184\", token.INT, 0)),\n\t\t\"IOC_WS2\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"IO_REPARSE_TAG_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2684354572\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_TOS\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                              reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InvalidHandle\":                                reflect.ValueOf(syscall.InvalidHandle),\n\t\t\"KEY_ALL_ACCESS\":                               reflect.ValueOf(constant.MakeFromLiteral(\"983103\", token.INT, 0)),\n\t\t\"KEY_CREATE_LINK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"KEY_CREATE_SUB_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"KEY_ENUMERATE_SUB_KEYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"KEY_EXECUTE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"131097\", token.INT, 0)),\n\t\t\"KEY_NOTIFY\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"KEY_QUERY_VALUE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"KEY_READ\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"131097\", token.INT, 0)),\n\t\t\"KEY_SET_VALUE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"KEY_WOW64_32KEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"KEY_WOW64_64KEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"KEY_WRITE\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"131078\", token.INT, 0)),\n\t\t\"LANG_ENGLISH\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"LAYERED_PROTOCOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Lchown\":                                       reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                                         reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                                       reflect.ValueOf(syscall.Listen),\n\t\t\"LoadCancelIoEx\":                               reflect.ValueOf(syscall.LoadCancelIoEx),\n\t\t\"LoadConnectEx\":                                reflect.ValueOf(syscall.LoadConnectEx),\n\t\t\"LoadCreateSymbolicLink\":                       reflect.ValueOf(syscall.LoadCreateSymbolicLink),\n\t\t\"LoadDLL\":                                      reflect.ValueOf(syscall.LoadDLL),\n\t\t\"LoadGetAddrInfo\":                              reflect.ValueOf(syscall.LoadGetAddrInfo),\n\t\t\"LoadLibrary\":                                  reflect.ValueOf(syscall.LoadLibrary),\n\t\t\"LoadSetFileCompletionNotificationModes\":       reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes),\n\t\t\"LocalFree\":                                    reflect.ValueOf(syscall.LocalFree),\n\t\t\"LookupAccountName\":                            reflect.ValueOf(syscall.LookupAccountName),\n\t\t\"LookupAccountSid\":                             reflect.ValueOf(syscall.LookupAccountSid),\n\t\t\"LookupSID\":                                    reflect.ValueOf(syscall.LookupSID),\n\t\t\"MAXIMUM_REPARSE_DATA_BUFFER_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAXLEN_IFDESCR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAXLEN_PHYSADDR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_ADDRESS_LENGTH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_DESCRIPTION_LENGTH\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_NAME_LENGTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAX_COMPUTERNAME_LENGTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MAX_INTERFACE_NAME_LEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAX_LONG_PATH\":                                reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAX_PATH\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"MAX_PROTOCOL_CHAIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MapViewOfFile\":                                reflect.ValueOf(syscall.MapViewOfFile),\n\t\t\"MaxTokenInfoClass\":                            reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"Mkdir\":                                        reflect.ValueOf(syscall.Mkdir),\n\t\t\"MoveFile\":                                     reflect.ValueOf(syscall.MoveFile),\n\t\t\"MustLoadDLL\":                                  reflect.ValueOf(syscall.MustLoadDLL),\n\t\t\"NameCanonical\":                                reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NameCanonicalEx\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NameDisplay\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NameDnsDomain\":                                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NameFullyQualifiedDN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NameSamCompatible\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NameServicePrincipal\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NameUniqueId\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NameUnknown\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NameUserPrincipal\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NetApiBufferFree\":                             reflect.ValueOf(syscall.NetApiBufferFree),\n\t\t\"NetGetJoinInformation\":                        reflect.ValueOf(syscall.NetGetJoinInformation),\n\t\t\"NetSetupDomainName\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NetSetupUnjoined\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NetSetupUnknownStatus\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NetSetupWorkgroupName\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NetUserGetInfo\":                               reflect.ValueOf(syscall.NetUserGetInfo),\n\t\t\"NewCallback\":                                  reflect.ValueOf(syscall.NewCallback),\n\t\t\"NewCallbackCDecl\":                             reflect.ValueOf(syscall.NewCallbackCDecl),\n\t\t\"NewLazyDLL\":                                   reflect.ValueOf(syscall.NewLazyDLL),\n\t\t\"NsecToFiletime\":                               reflect.ValueOf(syscall.NsecToFiletime),\n\t\t\"NsecToTimespec\":                               reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                                reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"Ntohs\":                                        reflect.ValueOf(syscall.Ntohs),\n\t\t\"OID_PKIX_KP_SERVER_AUTH\":                      reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(),\n\t\t\"OID_SERVER_GATED_CRYPTO\":                      reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(),\n\t\t\"OID_SGC_NETSCAPE\":                             reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(),\n\t\t\"OPEN_ALWAYS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"OPEN_EXISTING\":                                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_EXCL\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_RDONLY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SYNC\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_TRUNC\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                                         reflect.ValueOf(syscall.Open),\n\t\t\"OpenCurrentProcessToken\":                      reflect.ValueOf(syscall.OpenCurrentProcessToken),\n\t\t\"OpenProcess\":                                  reflect.ValueOf(syscall.OpenProcess),\n\t\t\"OpenProcessToken\":                             reflect.ValueOf(syscall.OpenProcessToken),\n\t\t\"PAGE_EXECUTE_READ\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PAGE_EXECUTE_READWRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PAGE_EXECUTE_WRITECOPY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PAGE_READONLY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PAGE_READWRITE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PAGE_WRITECOPY\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PFL_HIDDEN\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PFL_MATCHES_PROTOCOL_ZERO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PFL_MULTIPLE_PROTO_ENTRIES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PFL_NETWORKDIRECT_PROVIDER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PFL_RECOMMENDED_PROTO_ENTRY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PKCS_7_ASN_ENCODING\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PROCESS_QUERY_INFORMATION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"PROCESS_TERMINATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROV_DH_SCHANNEL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PROV_DSS\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PROV_DSS_DH\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PROV_EC_ECDSA_FULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PROV_EC_ECDSA_SIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PROV_EC_ECNRA_FULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PROV_EC_ECNRA_SIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PROV_FORTEZZA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROV_INTEL_SEC\":                               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PROV_MS_EXCHANGE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PROV_REPLACE_OWF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PROV_RNG\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PROV_RSA_AES\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PROV_RSA_FULL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROV_RSA_SCHANNEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PROV_RSA_SIG\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROV_SPYRUS_LYNKS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PROV_SSL\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"Pipe\":                                         reflect.ValueOf(syscall.Pipe),\n\t\t\"PostQueuedCompletionStatus\":                   reflect.ValueOf(syscall.PostQueuedCompletionStatus),\n\t\t\"Process32First\":                               reflect.ValueOf(syscall.Process32First),\n\t\t\"Process32Next\":                                reflect.ValueOf(syscall.Process32Next),\n\t\t\"REG_BINARY\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"REG_DWORD\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"REG_DWORD_BIG_ENDIAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"REG_DWORD_LITTLE_ENDIAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"REG_EXPAND_SZ\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"REG_FULL_RESOURCE_DESCRIPTOR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"REG_LINK\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"REG_MULTI_SZ\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"REG_NONE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"REG_QWORD\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"REG_QWORD_LITTLE_ENDIAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"REG_RESOURCE_LIST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"REG_RESOURCE_REQUIREMENTS_LIST\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"REG_SZ\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                                         reflect.ValueOf(syscall.Read),\n\t\t\"ReadConsole\":                                  reflect.ValueOf(syscall.ReadConsole),\n\t\t\"ReadDirectoryChanges\":                         reflect.ValueOf(syscall.ReadDirectoryChanges),\n\t\t\"ReadFile\":                                     reflect.ValueOf(syscall.ReadFile),\n\t\t\"Readlink\":                                     reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                                     reflect.ValueOf(syscall.Recvfrom),\n\t\t\"RegCloseKey\":                                  reflect.ValueOf(syscall.RegCloseKey),\n\t\t\"RegEnumKeyEx\":                                 reflect.ValueOf(syscall.RegEnumKeyEx),\n\t\t\"RegOpenKeyEx\":                                 reflect.ValueOf(syscall.RegOpenKeyEx),\n\t\t\"RegQueryInfoKey\":                              reflect.ValueOf(syscall.RegQueryInfoKey),\n\t\t\"RegQueryValueEx\":                              reflect.ValueOf(syscall.RegQueryValueEx),\n\t\t\"RemoveDirectory\":                              reflect.ValueOf(syscall.RemoveDirectory),\n\t\t\"Rename\":                                       reflect.ValueOf(syscall.Rename),\n\t\t\"Rmdir\":                                        reflect.ValueOf(syscall.Rmdir),\n\t\t\"SHUT_RD\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                                      reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                                      reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                                       reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGFPE\":                                       reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                                       reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                                       reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                                       reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGKILL\":                                      reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                                      reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGQUIT\":                                      reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                                      reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGTERM\":                                      reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                                      reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIO_GET_EXTENSION_FUNCTION_POINTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3355443206\", token.INT, 0)),\n\t\t\"SIO_GET_INTERFACE_LIST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074033791\", token.INT, 0)),\n\t\t\"SIO_KEEPALIVE_VALS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2550136836\", token.INT, 0)),\n\t\t\"SIO_UDP_CONNRESET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2550136844\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"2147483647\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_UPDATE_ACCEPT_CONTEXT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28683\", token.INT, 0)),\n\t\t\"SO_UPDATE_CONNECT_CONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28688\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_ALL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2031616\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_EXECUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_REQUIRED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"983040\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STARTF_USESHOWWINDOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"STARTF_USESTDHANDLES\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"STD_ERROR_HANDLE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"-12\", token.INT, 0)),\n\t\t\"STD_INPUT_HANDLE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"STD_OUTPUT_HANDLE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"-11\", token.INT, 0)),\n\t\t\"SUBLANG_ENGLISH_US\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SW_FORCEMINIMIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SW_HIDE\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SW_MAXIMIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SW_MINIMIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SW_NORMAL\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SW_RESTORE\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SW_SHOW\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SW_SHOWDEFAULT\":                               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SW_SHOWMAXIMIZED\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SW_SHOWMINIMIZED\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SW_SHOWMINNOACTIVE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SW_SHOWNA\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SW_SHOWNOACTIVATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SW_SHOWNORMAL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYMBOLIC_LINK_FLAG_DIRECTORY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYNCHRONIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"S_IFBLK\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"S_IFREG\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_ISGID\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWRITE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                                         reflect.ValueOf(syscall.Seek),\n\t\t\"Sendto\":                                       reflect.ValueOf(syscall.Sendto),\n\t\t\"SetCurrentDirectory\":                          reflect.ValueOf(syscall.SetCurrentDirectory),\n\t\t\"SetEndOfFile\":                                 reflect.ValueOf(syscall.SetEndOfFile),\n\t\t\"SetEnvironmentVariable\":                       reflect.ValueOf(syscall.SetEnvironmentVariable),\n\t\t\"SetFileAttributes\":                            reflect.ValueOf(syscall.SetFileAttributes),\n\t\t\"SetFileCompletionNotificationModes\":           reflect.ValueOf(syscall.SetFileCompletionNotificationModes),\n\t\t\"SetFilePointer\":                               reflect.ValueOf(syscall.SetFilePointer),\n\t\t\"SetFileTime\":                                  reflect.ValueOf(syscall.SetFileTime),\n\t\t\"SetHandleInformation\":                         reflect.ValueOf(syscall.SetHandleInformation),\n\t\t\"SetNonblock\":                                  reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setenv\":                                       reflect.ValueOf(syscall.Setenv),\n\t\t\"Setsockopt\":                                   reflect.ValueOf(syscall.Setsockopt),\n\t\t\"SetsockoptIPMreq\":                             reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                           reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":                          reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                                reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                             reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptTimeval\":                            reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"SidTypeAlias\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SidTypeComputer\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SidTypeDeletedAccount\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SidTypeDomain\":                                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SidTypeGroup\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SidTypeInvalid\":                               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SidTypeLabel\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SidTypeUnknown\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SidTypeUser\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SidTypeWellKnownGroup\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"Socket\":                                       reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                            reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Stderr\":                                       reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                                        reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                                       reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                                reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                              reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringToSid\":                                  reflect.ValueOf(syscall.StringToSid),\n\t\t\"StringToUTF16\":                                reflect.ValueOf(syscall.StringToUTF16),\n\t\t\"StringToUTF16Ptr\":                             reflect.ValueOf(syscall.StringToUTF16Ptr),\n\t\t\"Symlink\":                                      reflect.ValueOf(syscall.Symlink),\n\t\t\"TCP_NODELAY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TF_DISCONNECT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TF_REUSE_SOCKET\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TF_USE_DEFAULT_WORKER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TF_USE_KERNEL_APC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TF_USE_SYSTEM_THREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TF_WRITE_BEHIND\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TH32CS_INHERIT\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"TH32CS_SNAPALL\":                               reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TH32CS_SNAPHEAPLIST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TH32CS_SNAPMODULE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TH32CS_SNAPMODULE32\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TH32CS_SNAPPROCESS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TH32CS_SNAPTHREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_DAYLIGHT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_STANDARD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_UNKNOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_DEFAULT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_GROUPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_PRIVILEGES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_SESSIONID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TOKEN_ALL_ACCESS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"983551\", token.INT, 0)),\n\t\t\"TOKEN_ASSIGN_PRIMARY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TOKEN_DUPLICATE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TOKEN_EXECUTE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"TOKEN_IMPERSONATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TOKEN_QUERY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TOKEN_QUERY_SOURCE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TOKEN_READ\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"131080\", token.INT, 0)),\n\t\t\"TOKEN_WRITE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"131296\", token.INT, 0)),\n\t\t\"TRUNCATE_EXISTING\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TerminateProcess\":                             reflect.ValueOf(syscall.TerminateProcess),\n\t\t\"TimespecToNsec\":                               reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TokenAccessInformation\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TokenAuditPolicy\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TokenDefaultDacl\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TokenElevation\":                               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TokenElevationType\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TokenGroups\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TokenGroupsAndPrivileges\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TokenHasRestrictions\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TokenImpersonationLevel\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TokenIntegrityLevel\":                          reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"TokenLinkedToken\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TokenLogonSid\":                                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"TokenMandatoryPolicy\":                         reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"TokenOrigin\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TokenOwner\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TokenPrimaryGroup\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TokenPrivileges\":                              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TokenRestrictedSids\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TokenSandBoxInert\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TokenSessionId\":                               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TokenSessionReference\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TokenSource\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TokenStatistics\":                              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TokenType\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TokenUIAccess\":                                reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"TokenUser\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TokenVirtualizationAllowed\":                   reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TokenVirtualizationEnabled\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TranslateAccountName\":                         reflect.ValueOf(syscall.TranslateAccountName),\n\t\t\"TranslateName\":                                reflect.ValueOf(syscall.TranslateName),\n\t\t\"TransmitFile\":                                 reflect.ValueOf(syscall.TransmitFile),\n\t\t\"UNIX_PATH_MAX\":                                reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"USAGE_MATCH_TYPE_AND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"USAGE_MATCH_TYPE_OR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"UTF16FromString\":                              reflect.ValueOf(syscall.UTF16FromString),\n\t\t\"UTF16PtrFromString\":                           reflect.ValueOf(syscall.UTF16PtrFromString),\n\t\t\"UTF16ToString\":                                reflect.ValueOf(syscall.UTF16ToString),\n\t\t\"Unlink\":                                       reflect.ValueOf(syscall.Unlink),\n\t\t\"UnmapViewOfFile\":                              reflect.ValueOf(syscall.UnmapViewOfFile),\n\t\t\"Unsetenv\":                                     reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                                       reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                                   reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VirtualLock\":                                  reflect.ValueOf(syscall.VirtualLock),\n\t\t\"VirtualUnlock\":                                reflect.ValueOf(syscall.VirtualUnlock),\n\t\t\"WAIT_ABANDONED\":                               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WAIT_FAILED\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"WAIT_OBJECT_0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"WAIT_TIMEOUT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"WSACleanup\":                                   reflect.ValueOf(syscall.WSACleanup),\n\t\t\"WSADESCRIPTION_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"WSAEACCES\":                                    reflect.ValueOf(syscall.WSAEACCES),\n\t\t\"WSAECONNABORTED\":                              reflect.ValueOf(syscall.WSAECONNABORTED),\n\t\t\"WSAECONNRESET\":                                reflect.ValueOf(syscall.WSAECONNRESET),\n\t\t\"WSAEnumProtocols\":                             reflect.ValueOf(syscall.WSAEnumProtocols),\n\t\t\"WSAID_CONNECTEX\":                              reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(),\n\t\t\"WSAIoctl\":                                     reflect.ValueOf(syscall.WSAIoctl),\n\t\t\"WSAPROTOCOL_LEN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"WSARecv\":                                      reflect.ValueOf(syscall.WSARecv),\n\t\t\"WSARecvFrom\":                                  reflect.ValueOf(syscall.WSARecvFrom),\n\t\t\"WSASYS_STATUS_LEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WSASend\":                                      reflect.ValueOf(syscall.WSASend),\n\t\t\"WSASendTo\":                                    reflect.ValueOf(syscall.WSASendTo),\n\t\t\"WSASendto\":                                    reflect.ValueOf(syscall.WSASendto),\n\t\t\"WSAStartup\":                                   reflect.ValueOf(syscall.WSAStartup),\n\t\t\"WaitForSingleObject\":                          reflect.ValueOf(syscall.WaitForSingleObject),\n\t\t\"Write\":                                        reflect.ValueOf(syscall.Write),\n\t\t\"WriteConsole\":                                 reflect.ValueOf(syscall.WriteConsole),\n\t\t\"WriteFile\":                                    reflect.ValueOf(syscall.WriteFile),\n\t\t\"X509_ASN_ENCODING\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"XP1_CONNECTIONLESS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"XP1_CONNECT_DATA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"XP1_DISCONNECT_DATA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"XP1_EXPEDITED_DATA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"XP1_GRACEFUL_CLOSE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"XP1_GUARANTEED_DELIVERY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"XP1_GUARANTEED_ORDER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"XP1_IFS_HANDLES\":                              reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"XP1_MESSAGE_ORIENTED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"XP1_MULTIPOINT_CONTROL_PLANE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"XP1_MULTIPOINT_DATA_PLANE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"XP1_PARTIAL_MESSAGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"XP1_PSEUDO_STREAM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"XP1_QOS_SUPPORTED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"XP1_SAN_SUPPORT_SDP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"XP1_SUPPORT_BROADCAST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"XP1_SUPPORT_MULTIPOINT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"XP1_UNI_RECV\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"XP1_UNI_SEND\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"AddrinfoW\":                   reflect.ValueOf((*syscall.AddrinfoW)(nil)),\n\t\t\"ByHandleFileInformation\":     reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)),\n\t\t\"CertChainContext\":            reflect.ValueOf((*syscall.CertChainContext)(nil)),\n\t\t\"CertChainElement\":            reflect.ValueOf((*syscall.CertChainElement)(nil)),\n\t\t\"CertChainPara\":               reflect.ValueOf((*syscall.CertChainPara)(nil)),\n\t\t\"CertChainPolicyPara\":         reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)),\n\t\t\"CertChainPolicyStatus\":       reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)),\n\t\t\"CertContext\":                 reflect.ValueOf((*syscall.CertContext)(nil)),\n\t\t\"CertEnhKeyUsage\":             reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)),\n\t\t\"CertInfo\":                    reflect.ValueOf((*syscall.CertInfo)(nil)),\n\t\t\"CertRevocationCrlInfo\":       reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)),\n\t\t\"CertRevocationInfo\":          reflect.ValueOf((*syscall.CertRevocationInfo)(nil)),\n\t\t\"CertSimpleChain\":             reflect.ValueOf((*syscall.CertSimpleChain)(nil)),\n\t\t\"CertTrustListInfo\":           reflect.ValueOf((*syscall.CertTrustListInfo)(nil)),\n\t\t\"CertTrustStatus\":             reflect.ValueOf((*syscall.CertTrustStatus)(nil)),\n\t\t\"CertUsageMatch\":              reflect.ValueOf((*syscall.CertUsageMatch)(nil)),\n\t\t\"Conn\":                        reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"DLL\":                         reflect.ValueOf((*syscall.DLL)(nil)),\n\t\t\"DLLError\":                    reflect.ValueOf((*syscall.DLLError)(nil)),\n\t\t\"DNSMXData\":                   reflect.ValueOf((*syscall.DNSMXData)(nil)),\n\t\t\"DNSPTRData\":                  reflect.ValueOf((*syscall.DNSPTRData)(nil)),\n\t\t\"DNSRecord\":                   reflect.ValueOf((*syscall.DNSRecord)(nil)),\n\t\t\"DNSSRVData\":                  reflect.ValueOf((*syscall.DNSSRVData)(nil)),\n\t\t\"DNSTXTData\":                  reflect.ValueOf((*syscall.DNSTXTData)(nil)),\n\t\t\"Errno\":                       reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FileNotifyInformation\":       reflect.ValueOf((*syscall.FileNotifyInformation)(nil)),\n\t\t\"Filetime\":                    reflect.ValueOf((*syscall.Filetime)(nil)),\n\t\t\"GUID\":                        reflect.ValueOf((*syscall.GUID)(nil)),\n\t\t\"Handle\":                      reflect.ValueOf((*syscall.Handle)(nil)),\n\t\t\"Hostent\":                     reflect.ValueOf((*syscall.Hostent)(nil)),\n\t\t\"IPMreq\":                      reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6Mreq\":                    reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"InterfaceInfo\":               reflect.ValueOf((*syscall.InterfaceInfo)(nil)),\n\t\t\"IpAdapterInfo\":               reflect.ValueOf((*syscall.IpAdapterInfo)(nil)),\n\t\t\"IpAddrString\":                reflect.ValueOf((*syscall.IpAddrString)(nil)),\n\t\t\"IpAddressString\":             reflect.ValueOf((*syscall.IpAddressString)(nil)),\n\t\t\"IpMaskString\":                reflect.ValueOf((*syscall.IpMaskString)(nil)),\n\t\t\"LazyDLL\":                     reflect.ValueOf((*syscall.LazyDLL)(nil)),\n\t\t\"LazyProc\":                    reflect.ValueOf((*syscall.LazyProc)(nil)),\n\t\t\"Linger\":                      reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"MibIfRow\":                    reflect.ValueOf((*syscall.MibIfRow)(nil)),\n\t\t\"Overlapped\":                  reflect.ValueOf((*syscall.Overlapped)(nil)),\n\t\t\"Pointer\":                     reflect.ValueOf((*syscall.Pointer)(nil)),\n\t\t\"Proc\":                        reflect.ValueOf((*syscall.Proc)(nil)),\n\t\t\"ProcAttr\":                    reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"ProcessEntry32\":              reflect.ValueOf((*syscall.ProcessEntry32)(nil)),\n\t\t\"ProcessInformation\":          reflect.ValueOf((*syscall.ProcessInformation)(nil)),\n\t\t\"Protoent\":                    reflect.ValueOf((*syscall.Protoent)(nil)),\n\t\t\"RawConn\":                     reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                 reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":              reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":            reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":            reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":             reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rusage\":                      reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"SID\":                         reflect.ValueOf((*syscall.SID)(nil)),\n\t\t\"SIDAndAttributes\":            reflect.ValueOf((*syscall.SIDAndAttributes)(nil)),\n\t\t\"SSLExtraCertChainPolicyPara\": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)),\n\t\t\"SecurityAttributes\":          reflect.ValueOf((*syscall.SecurityAttributes)(nil)),\n\t\t\"Servent\":                     reflect.ValueOf((*syscall.Servent)(nil)),\n\t\t\"Signal\":                      reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                    reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrGen\":                 reflect.ValueOf((*syscall.SockaddrGen)(nil)),\n\t\t\"SockaddrInet4\":               reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":               reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"StartupInfo\":                 reflect.ValueOf((*syscall.StartupInfo)(nil)),\n\t\t\"SysProcAttr\":                 reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Systemtime\":                  reflect.ValueOf((*syscall.Systemtime)(nil)),\n\t\t\"TCPKeepalive\":                reflect.ValueOf((*syscall.TCPKeepalive)(nil)),\n\t\t\"Timespec\":                    reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                     reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timezoneinformation\":         reflect.ValueOf((*syscall.Timezoneinformation)(nil)),\n\t\t\"Token\":                       reflect.ValueOf((*syscall.Token)(nil)),\n\t\t\"Tokenprimarygroup\":           reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)),\n\t\t\"Tokenuser\":                   reflect.ValueOf((*syscall.Tokenuser)(nil)),\n\t\t\"TransmitFileBuffers\":         reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)),\n\t\t\"UserInfo10\":                  reflect.ValueOf((*syscall.UserInfo10)(nil)),\n\t\t\"WSABuf\":                      reflect.ValueOf((*syscall.WSABuf)(nil)),\n\t\t\"WSAData\":                     reflect.ValueOf((*syscall.WSAData)(nil)),\n\t\t\"WSAProtocolChain\":            reflect.ValueOf((*syscall.WSAProtocolChain)(nil)),\n\t\t\"WSAProtocolInfo\":             reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)),\n\t\t\"WaitStatus\":                  reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\t\t\"Win32FileAttributeData\":      reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)),\n\t\t\"Win32finddata\":               reflect.ValueOf((*syscall.Win32finddata)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_21_syscall_windows_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_INET\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_UNIX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AI_CANONNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AI_NUMERICHOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AI_PASSIVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"APPLICATION_ERROR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"AUTHTYPE_CLIENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AUTHTYPE_SERVER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Accept\":                              reflect.ValueOf(syscall.Accept),\n\t\t\"AcceptEx\":                            reflect.ValueOf(syscall.AcceptEx),\n\t\t\"BASE_PROTOCOL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Bind\":                                reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":                   reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":                 reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CERT_CHAIN_POLICY_AUTHENTICODE\":      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_AUTHENTICODE_TS\":   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_BASE\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_BASIC_CONSTRAINTS\": reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_EV\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_MICROSOFT_ROOT\":    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_NT_AUTH\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_SSL\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_E_CN_NO_MATCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148204815\", token.INT, 0)),\n\t\t\"CERT_E_EXPIRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148204801\", token.INT, 0)),\n\t\t\"CERT_E_PURPOSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148204806\", token.INT, 0)),\n\t\t\"CERT_E_ROLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148204803\", token.INT, 0)),\n\t\t\"CERT_E_UNTRUSTEDROOT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2148204809\", token.INT, 0)),\n\t\t\"CERT_STORE_ADD_ALWAYS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG\":  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_STORE_PROV_MEMORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT\":      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT\":   reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT\": reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT\":    reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT\": reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_BASIC_CONSTRAINTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_EXTENSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_NAME_CONSTRAINTS\":          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_POLICY_CONSTRAINTS\":        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_CYCLIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_EXPLICIT_DISTRUST\":              reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_SIGNATURE_VALID\":            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_TIME_VALID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_VALID_FOR_USAGE\":            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_OFFLINE_REVOCATION\":             reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_REVOKED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_UNTRUSTED_ROOT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CERT_TRUST_NO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY\":          reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CERT_TRUST_REVOCATION_STATUS_UNKNOWN\":         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CREATE_ALWAYS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CREATE_NEW\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CREATE_NEW_PROCESS_GROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CREATE_UNICODE_ENVIRONMENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CRYPT_DEFAULT_CONTAINER_OPTIONAL\":             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CRYPT_DELETEKEYSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CRYPT_MACHINE_KEYSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CRYPT_NEWKEYSET\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CRYPT_SILENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CRYPT_VERIFYCONTEXT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"CTRL_BREAK_EVENT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CTRL_CLOSE_EVENT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CTRL_C_EVENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CTRL_LOGOFF_EVENT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"CTRL_SHUTDOWN_EVENT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"CancelIo\":                                     reflect.ValueOf(syscall.CancelIo),\n\t\t\"CancelIoEx\":                                   reflect.ValueOf(syscall.CancelIoEx),\n\t\t\"CertAddCertificateContextToStore\":             reflect.ValueOf(syscall.CertAddCertificateContextToStore),\n\t\t\"CertCloseStore\":                               reflect.ValueOf(syscall.CertCloseStore),\n\t\t\"CertCreateCertificateContext\":                 reflect.ValueOf(syscall.CertCreateCertificateContext),\n\t\t\"CertEnumCertificatesInStore\":                  reflect.ValueOf(syscall.CertEnumCertificatesInStore),\n\t\t\"CertFreeCertificateChain\":                     reflect.ValueOf(syscall.CertFreeCertificateChain),\n\t\t\"CertFreeCertificateContext\":                   reflect.ValueOf(syscall.CertFreeCertificateContext),\n\t\t\"CertGetCertificateChain\":                      reflect.ValueOf(syscall.CertGetCertificateChain),\n\t\t\"CertOpenStore\":                                reflect.ValueOf(syscall.CertOpenStore),\n\t\t\"CertOpenSystemStore\":                          reflect.ValueOf(syscall.CertOpenSystemStore),\n\t\t\"CertVerifyCertificateChainPolicy\":             reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy),\n\t\t\"Chdir\":                                        reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                                        reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                                        reflect.ValueOf(syscall.Chown),\n\t\t\"Clearenv\":                                     reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                                        reflect.ValueOf(syscall.Close),\n\t\t\"CloseHandle\":                                  reflect.ValueOf(syscall.CloseHandle),\n\t\t\"CloseOnExec\":                                  reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"Closesocket\":                                  reflect.ValueOf(syscall.Closesocket),\n\t\t\"CommandLineToArgv\":                            reflect.ValueOf(syscall.CommandLineToArgv),\n\t\t\"ComputerName\":                                 reflect.ValueOf(syscall.ComputerName),\n\t\t\"Connect\":                                      reflect.ValueOf(syscall.Connect),\n\t\t\"ConnectEx\":                                    reflect.ValueOf(syscall.ConnectEx),\n\t\t\"ConvertSidToStringSid\":                        reflect.ValueOf(syscall.ConvertSidToStringSid),\n\t\t\"ConvertStringSidToSid\":                        reflect.ValueOf(syscall.ConvertStringSidToSid),\n\t\t\"CopySid\":                                      reflect.ValueOf(syscall.CopySid),\n\t\t\"CreateDirectory\":                              reflect.ValueOf(syscall.CreateDirectory),\n\t\t\"CreateFile\":                                   reflect.ValueOf(syscall.CreateFile),\n\t\t\"CreateFileMapping\":                            reflect.ValueOf(syscall.CreateFileMapping),\n\t\t\"CreateHardLink\":                               reflect.ValueOf(syscall.CreateHardLink),\n\t\t\"CreateIoCompletionPort\":                       reflect.ValueOf(syscall.CreateIoCompletionPort),\n\t\t\"CreatePipe\":                                   reflect.ValueOf(syscall.CreatePipe),\n\t\t\"CreateProcess\":                                reflect.ValueOf(syscall.CreateProcess),\n\t\t\"CreateProcessAsUser\":                          reflect.ValueOf(syscall.CreateProcessAsUser),\n\t\t\"CreateSymbolicLink\":                           reflect.ValueOf(syscall.CreateSymbolicLink),\n\t\t\"CreateToolhelp32Snapshot\":                     reflect.ValueOf(syscall.CreateToolhelp32Snapshot),\n\t\t\"CryptAcquireContext\":                          reflect.ValueOf(syscall.CryptAcquireContext),\n\t\t\"CryptGenRandom\":                               reflect.ValueOf(syscall.CryptGenRandom),\n\t\t\"CryptReleaseContext\":                          reflect.ValueOf(syscall.CryptReleaseContext),\n\t\t\"DNS_INFO_NO_RECORDS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9501\", token.INT, 0)),\n\t\t\"DNS_TYPE_A\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DNS_TYPE_A6\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"DNS_TYPE_AAAA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"DNS_TYPE_ADDRS\":                               reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"DNS_TYPE_AFSDB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DNS_TYPE_ALL\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"DNS_TYPE_ANY\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"DNS_TYPE_ATMA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"DNS_TYPE_AXFR\":                                reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"DNS_TYPE_CERT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"DNS_TYPE_CNAME\":                               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DNS_TYPE_DHCID\":                               reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"DNS_TYPE_DNAME\":                               reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"DNS_TYPE_DNSKEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"DNS_TYPE_DS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"DNS_TYPE_EID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"DNS_TYPE_GID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"DNS_TYPE_GPOS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"DNS_TYPE_HINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DNS_TYPE_ISDN\":                                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"DNS_TYPE_IXFR\":                                reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"DNS_TYPE_KEY\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"DNS_TYPE_KX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"DNS_TYPE_LOC\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"DNS_TYPE_MAILA\":                               reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"DNS_TYPE_MAILB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"DNS_TYPE_MB\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DNS_TYPE_MD\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DNS_TYPE_MF\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DNS_TYPE_MG\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DNS_TYPE_MINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DNS_TYPE_MR\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DNS_TYPE_MX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DNS_TYPE_NAPTR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"DNS_TYPE_NBSTAT\":                              reflect.ValueOf(constant.MakeFromLiteral(\"65281\", token.INT, 0)),\n\t\t\"DNS_TYPE_NIMLOC\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"DNS_TYPE_NS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSAP\":                                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSAPPTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSEC\":                                reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"DNS_TYPE_NULL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DNS_TYPE_NXT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"DNS_TYPE_OPT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"DNS_TYPE_PTR\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DNS_TYPE_PX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"DNS_TYPE_RP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"DNS_TYPE_RRSIG\":                               reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"DNS_TYPE_RT\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"DNS_TYPE_SIG\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"DNS_TYPE_SINK\":                                reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"DNS_TYPE_SOA\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DNS_TYPE_SRV\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"DNS_TYPE_TEXT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DNS_TYPE_TKEY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"DNS_TYPE_TSIG\":                                reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"DNS_TYPE_UID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"DNS_TYPE_UINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"DNS_TYPE_UNSPEC\":                              reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"DNS_TYPE_WINS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"65281\", token.INT, 0)),\n\t\t\"DNS_TYPE_WINSR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"65282\", token.INT, 0)),\n\t\t\"DNS_TYPE_WKS\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DNS_TYPE_X25\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DUPLICATE_CLOSE_SOURCE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DUPLICATE_SAME_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DeleteFile\":                                   reflect.ValueOf(syscall.DeleteFile),\n\t\t\"DeviceIoControl\":                              reflect.ValueOf(syscall.DeviceIoControl),\n\t\t\"DnsNameCompare\":                               reflect.ValueOf(syscall.DnsNameCompare),\n\t\t\"DnsQuery\":                                     reflect.ValueOf(syscall.DnsQuery),\n\t\t\"DnsRecordListFree\":                            reflect.ValueOf(syscall.DnsRecordListFree),\n\t\t\"DnsSectionAdditional\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DnsSectionAnswer\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DnsSectionAuthority\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DnsSectionQuestion\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DuplicateHandle\":                              reflect.ValueOf(syscall.DuplicateHandle),\n\t\t\"E2BIG\":                                        reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                                       reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                                   reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                                reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                                         reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                                 reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                                       reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                                     reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                                        reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                                        reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                                       reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                                      reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                                        reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                                      reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                                      reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                                       reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                                        reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                                    reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                                       reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHRNG\":                                       reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                                        reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                                 reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                                 reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                                   reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                                      reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                                    reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                                 reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                                         reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                                      reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                                       reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                                       reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                                       reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                                        reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                                    reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                                 reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                                        reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                                       reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                                  reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                                        reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                                       reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                                          reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                                      reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                                       reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                                       reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                                  reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                                 reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                                  reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                                       reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                                     reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                                       reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                                       reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                                      reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                                      reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                                     reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                                      reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                                      reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                                       reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                                        reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                                  reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                                       reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                                       reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                                     reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                                    reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                                 reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                                      reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENETDOWN\":                                     reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                                    reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                                  reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                                       reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                                       reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                                      reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                                       reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                                      reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                                       reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                                       reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                                      reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                                       reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                                       reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                                      reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                                    reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                                       reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                                       reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                                       reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                                       reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                                  reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                                       reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                                        reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                                       reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                                       reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                                      reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                                     reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                                      reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                                    reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                                      reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                              reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                                     reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                                      reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                                       reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                                     reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                                        reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                                   reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                                    reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                                   reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                                        reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                                 reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                                        reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROTO\":                                       reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                              reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                                   reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                                       reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                                      reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                                      reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                                    reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                                     reflect.ValueOf(syscall.ERESTART),\n\t\t\"EROFS\":                                        reflect.ValueOf(syscall.EROFS),\n\t\t\"ERROR_ACCESS_DENIED\":                          reflect.ValueOf(syscall.ERROR_ACCESS_DENIED),\n\t\t\"ERROR_ALREADY_EXISTS\":                         reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS),\n\t\t\"ERROR_BROKEN_PIPE\":                            reflect.ValueOf(syscall.ERROR_BROKEN_PIPE),\n\t\t\"ERROR_BUFFER_OVERFLOW\":                        reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW),\n\t\t\"ERROR_DIR_NOT_EMPTY\":                          reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY),\n\t\t\"ERROR_ENVVAR_NOT_FOUND\":                       reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND),\n\t\t\"ERROR_FILE_EXISTS\":                            reflect.ValueOf(syscall.ERROR_FILE_EXISTS),\n\t\t\"ERROR_FILE_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND),\n\t\t\"ERROR_HANDLE_EOF\":                             reflect.ValueOf(syscall.ERROR_HANDLE_EOF),\n\t\t\"ERROR_INSUFFICIENT_BUFFER\":                    reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER),\n\t\t\"ERROR_IO_PENDING\":                             reflect.ValueOf(syscall.ERROR_IO_PENDING),\n\t\t\"ERROR_MOD_NOT_FOUND\":                          reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND),\n\t\t\"ERROR_MORE_DATA\":                              reflect.ValueOf(syscall.ERROR_MORE_DATA),\n\t\t\"ERROR_NETNAME_DELETED\":                        reflect.ValueOf(syscall.ERROR_NETNAME_DELETED),\n\t\t\"ERROR_NOT_FOUND\":                              reflect.ValueOf(syscall.ERROR_NOT_FOUND),\n\t\t\"ERROR_NO_MORE_FILES\":                          reflect.ValueOf(syscall.ERROR_NO_MORE_FILES),\n\t\t\"ERROR_OPERATION_ABORTED\":                      reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED),\n\t\t\"ERROR_PATH_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND),\n\t\t\"ERROR_PRIVILEGE_NOT_HELD\":                     reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD),\n\t\t\"ERROR_PROC_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND),\n\t\t\"ESHUTDOWN\":                                    reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                              reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                                       reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                                        reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                                       reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                                       reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                                     reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETIME\":                                        reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                                    reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                                 reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                                      reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                                      reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                                      reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                                       reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWINDOWS\":                                     reflect.ValueOf(syscall.EWINDOWS),\n\t\t\"EWOULDBLOCK\":                                  reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                                        reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                                       reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":                                      reflect.ValueOf(syscall.Environ),\n\t\t\"EscapeArg\":                                    reflect.ValueOf(syscall.EscapeArg),\n\t\t\"FILE_ACTION_ADDED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_ACTION_MODIFIED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"FILE_ACTION_REMOVED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_ACTION_RENAMED_NEW_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"FILE_ACTION_RENAMED_OLD_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_APPEND_DATA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_ARCHIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_DIRECTORY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_HIDDEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_NORMAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_READONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_REPARSE_POINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_SYSTEM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_BEGIN\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"FILE_CURRENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_END\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_FLAG_BACKUP_SEMANTICS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"FILE_FLAG_OPEN_REPARSE_POINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"FILE_FLAG_OVERLAPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"FILE_LIST_DIRECTORY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_MAP_COPY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_MAP_EXECUTE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_MAP_READ\":                                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_MAP_WRITE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_ATTRIBUTES\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_CREATION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_DIR_NAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_FILE_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_LAST_ACCESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_LAST_WRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_SIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"FILE_SHARE_DELETE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_SHARE_READ\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_SHARE_WRITE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_SKIP_COMPLETION_PORT_ON_SUCCESS\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_SKIP_SET_EVENT_ON_HANDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_TYPE_CHAR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_TYPE_DISK\":                               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_TYPE_PIPE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"FILE_TYPE_REMOTE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"FILE_TYPE_UNKNOWN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"FILE_WRITE_ATTRIBUTES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_ALLOCATE_BUFFER\":               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_ARGUMENT_ARRAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_HMODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_STRING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_SYSTEM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_IGNORE_INSERTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_MAX_WIDTH_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"FSCTL_GET_REPARSE_POINT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"589992\", token.INT, 0)),\n\t\t\"Fchdir\":                                       reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                                       reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                                       reflect.ValueOf(syscall.Fchown),\n\t\t\"FindClose\":                                    reflect.ValueOf(syscall.FindClose),\n\t\t\"FindFirstFile\":                                reflect.ValueOf(syscall.FindFirstFile),\n\t\t\"FindNextFile\":                                 reflect.ValueOf(syscall.FindNextFile),\n\t\t\"FlushFileBuffers\":                             reflect.ValueOf(syscall.FlushFileBuffers),\n\t\t\"FlushViewOfFile\":                              reflect.ValueOf(syscall.FlushViewOfFile),\n\t\t\"ForkLock\":                                     reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"FormatMessage\":                                reflect.ValueOf(syscall.FormatMessage),\n\t\t\"FreeAddrInfoW\":                                reflect.ValueOf(syscall.FreeAddrInfoW),\n\t\t\"FreeEnvironmentStrings\":                       reflect.ValueOf(syscall.FreeEnvironmentStrings),\n\t\t\"FreeLibrary\":                                  reflect.ValueOf(syscall.FreeLibrary),\n\t\t\"Fsync\":                                        reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                                    reflect.ValueOf(syscall.Ftruncate),\n\t\t\"FullPath\":                                     reflect.ValueOf(syscall.FullPath),\n\t\t\"GENERIC_ALL\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"GENERIC_EXECUTE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"GENERIC_READ\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"GENERIC_WRITE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"GetAcceptExSockaddrs\":                         reflect.ValueOf(syscall.GetAcceptExSockaddrs),\n\t\t\"GetAdaptersInfo\":                              reflect.ValueOf(syscall.GetAdaptersInfo),\n\t\t\"GetAddrInfoW\":                                 reflect.ValueOf(syscall.GetAddrInfoW),\n\t\t\"GetCommandLine\":                               reflect.ValueOf(syscall.GetCommandLine),\n\t\t\"GetComputerName\":                              reflect.ValueOf(syscall.GetComputerName),\n\t\t\"GetConsoleMode\":                               reflect.ValueOf(syscall.GetConsoleMode),\n\t\t\"GetCurrentDirectory\":                          reflect.ValueOf(syscall.GetCurrentDirectory),\n\t\t\"GetCurrentProcess\":                            reflect.ValueOf(syscall.GetCurrentProcess),\n\t\t\"GetEnvironmentStrings\":                        reflect.ValueOf(syscall.GetEnvironmentStrings),\n\t\t\"GetEnvironmentVariable\":                       reflect.ValueOf(syscall.GetEnvironmentVariable),\n\t\t\"GetFileAttributes\":                            reflect.ValueOf(syscall.GetFileAttributes),\n\t\t\"GetFileAttributesEx\":                          reflect.ValueOf(syscall.GetFileAttributesEx),\n\t\t\"GetFileExInfoStandard\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"GetFileExMaxInfoLevel\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"GetFileInformationByHandle\":                   reflect.ValueOf(syscall.GetFileInformationByHandle),\n\t\t\"GetFileType\":                                  reflect.ValueOf(syscall.GetFileType),\n\t\t\"GetFullPathName\":                              reflect.ValueOf(syscall.GetFullPathName),\n\t\t\"GetHostByName\":                                reflect.ValueOf(syscall.GetHostByName),\n\t\t\"GetIfEntry\":                                   reflect.ValueOf(syscall.GetIfEntry),\n\t\t\"GetLastError\":                                 reflect.ValueOf(syscall.GetLastError),\n\t\t\"GetLengthSid\":                                 reflect.ValueOf(syscall.GetLengthSid),\n\t\t\"GetLongPathName\":                              reflect.ValueOf(syscall.GetLongPathName),\n\t\t\"GetProcAddress\":                               reflect.ValueOf(syscall.GetProcAddress),\n\t\t\"GetProcessTimes\":                              reflect.ValueOf(syscall.GetProcessTimes),\n\t\t\"GetProtoByName\":                               reflect.ValueOf(syscall.GetProtoByName),\n\t\t\"GetQueuedCompletionStatus\":                    reflect.ValueOf(syscall.GetQueuedCompletionStatus),\n\t\t\"GetServByName\":                                reflect.ValueOf(syscall.GetServByName),\n\t\t\"GetShortPathName\":                             reflect.ValueOf(syscall.GetShortPathName),\n\t\t\"GetStartupInfo\":                               reflect.ValueOf(syscall.GetStartupInfo),\n\t\t\"GetStdHandle\":                                 reflect.ValueOf(syscall.GetStdHandle),\n\t\t\"GetSystemTimeAsFileTime\":                      reflect.ValueOf(syscall.GetSystemTimeAsFileTime),\n\t\t\"GetTempPath\":                                  reflect.ValueOf(syscall.GetTempPath),\n\t\t\"GetTimeZoneInformation\":                       reflect.ValueOf(syscall.GetTimeZoneInformation),\n\t\t\"GetTokenInformation\":                          reflect.ValueOf(syscall.GetTokenInformation),\n\t\t\"GetUserNameEx\":                                reflect.ValueOf(syscall.GetUserNameEx),\n\t\t\"GetUserProfileDirectory\":                      reflect.ValueOf(syscall.GetUserProfileDirectory),\n\t\t\"GetVersion\":                                   reflect.ValueOf(syscall.GetVersion),\n\t\t\"Getegid\":                                      reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                                       reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                                      reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                                       reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                                    reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                                  reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                                  reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpid\":                                       reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                                      reflect.ValueOf(syscall.Getppid),\n\t\t\"Getsockname\":                                  reflect.ValueOf(syscall.Getsockname),\n\t\t\"Getsockopt\":                                   reflect.ValueOf(syscall.Getsockopt),\n\t\t\"GetsockoptInt\":                                reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                                 reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                                       reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                                        reflect.ValueOf(syscall.Getwd),\n\t\t\"HANDLE_FLAG_INHERIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"HKEY_CLASSES_ROOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"HKEY_CURRENT_CONFIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483653\", token.INT, 0)),\n\t\t\"HKEY_CURRENT_USER\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483649\", token.INT, 0)),\n\t\t\"HKEY_DYN_DATA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2147483654\", token.INT, 0)),\n\t\t\"HKEY_LOCAL_MACHINE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483650\", token.INT, 0)),\n\t\t\"HKEY_PERFORMANCE_DATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483652\", token.INT, 0)),\n\t\t\"HKEY_USERS\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483651\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_POINTTOPOINT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_UP\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNORE\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"INFINITE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"INVALID_FILE_ATTRIBUTES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"IOC_IN\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IOC_INOUT\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"IOC_OUT\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IOC_VENDOR\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"402653184\", token.INT, 0)),\n\t\t\"IOC_WS2\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"IO_REPARSE_TAG_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2684354572\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_TOS\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                              reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InvalidHandle\":                                reflect.ValueOf(syscall.InvalidHandle),\n\t\t\"KEY_ALL_ACCESS\":                               reflect.ValueOf(constant.MakeFromLiteral(\"983103\", token.INT, 0)),\n\t\t\"KEY_CREATE_LINK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"KEY_CREATE_SUB_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"KEY_ENUMERATE_SUB_KEYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"KEY_EXECUTE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"131097\", token.INT, 0)),\n\t\t\"KEY_NOTIFY\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"KEY_QUERY_VALUE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"KEY_READ\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"131097\", token.INT, 0)),\n\t\t\"KEY_SET_VALUE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"KEY_WOW64_32KEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"KEY_WOW64_64KEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"KEY_WRITE\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"131078\", token.INT, 0)),\n\t\t\"LANG_ENGLISH\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"LAYERED_PROTOCOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Lchown\":                                       reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                                         reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                                       reflect.ValueOf(syscall.Listen),\n\t\t\"LoadCancelIoEx\":                               reflect.ValueOf(syscall.LoadCancelIoEx),\n\t\t\"LoadConnectEx\":                                reflect.ValueOf(syscall.LoadConnectEx),\n\t\t\"LoadCreateSymbolicLink\":                       reflect.ValueOf(syscall.LoadCreateSymbolicLink),\n\t\t\"LoadDLL\":                                      reflect.ValueOf(syscall.LoadDLL),\n\t\t\"LoadGetAddrInfo\":                              reflect.ValueOf(syscall.LoadGetAddrInfo),\n\t\t\"LoadLibrary\":                                  reflect.ValueOf(syscall.LoadLibrary),\n\t\t\"LoadSetFileCompletionNotificationModes\":       reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes),\n\t\t\"LocalFree\":                                    reflect.ValueOf(syscall.LocalFree),\n\t\t\"LookupAccountName\":                            reflect.ValueOf(syscall.LookupAccountName),\n\t\t\"LookupAccountSid\":                             reflect.ValueOf(syscall.LookupAccountSid),\n\t\t\"LookupSID\":                                    reflect.ValueOf(syscall.LookupSID),\n\t\t\"MAXIMUM_REPARSE_DATA_BUFFER_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAXLEN_IFDESCR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAXLEN_PHYSADDR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_ADDRESS_LENGTH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_DESCRIPTION_LENGTH\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_NAME_LENGTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAX_COMPUTERNAME_LENGTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MAX_INTERFACE_NAME_LEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAX_LONG_PATH\":                                reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAX_PATH\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"MAX_PROTOCOL_CHAIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MapViewOfFile\":                                reflect.ValueOf(syscall.MapViewOfFile),\n\t\t\"MaxTokenInfoClass\":                            reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"Mkdir\":                                        reflect.ValueOf(syscall.Mkdir),\n\t\t\"MoveFile\":                                     reflect.ValueOf(syscall.MoveFile),\n\t\t\"MustLoadDLL\":                                  reflect.ValueOf(syscall.MustLoadDLL),\n\t\t\"NameCanonical\":                                reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NameCanonicalEx\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NameDisplay\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NameDnsDomain\":                                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NameFullyQualifiedDN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NameSamCompatible\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NameServicePrincipal\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NameUniqueId\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NameUnknown\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NameUserPrincipal\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NetApiBufferFree\":                             reflect.ValueOf(syscall.NetApiBufferFree),\n\t\t\"NetGetJoinInformation\":                        reflect.ValueOf(syscall.NetGetJoinInformation),\n\t\t\"NetSetupDomainName\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NetSetupUnjoined\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NetSetupUnknownStatus\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NetSetupWorkgroupName\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NetUserGetInfo\":                               reflect.ValueOf(syscall.NetUserGetInfo),\n\t\t\"NewCallback\":                                  reflect.ValueOf(syscall.NewCallback),\n\t\t\"NewCallbackCDecl\":                             reflect.ValueOf(syscall.NewCallbackCDecl),\n\t\t\"NewLazyDLL\":                                   reflect.ValueOf(syscall.NewLazyDLL),\n\t\t\"NsecToFiletime\":                               reflect.ValueOf(syscall.NsecToFiletime),\n\t\t\"NsecToTimespec\":                               reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                                reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"Ntohs\":                                        reflect.ValueOf(syscall.Ntohs),\n\t\t\"OID_PKIX_KP_SERVER_AUTH\":                      reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(),\n\t\t\"OID_SERVER_GATED_CRYPTO\":                      reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(),\n\t\t\"OID_SGC_NETSCAPE\":                             reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(),\n\t\t\"OPEN_ALWAYS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"OPEN_EXISTING\":                                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_EXCL\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_RDONLY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SYNC\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_TRUNC\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                                         reflect.ValueOf(syscall.Open),\n\t\t\"OpenCurrentProcessToken\":                      reflect.ValueOf(syscall.OpenCurrentProcessToken),\n\t\t\"OpenProcess\":                                  reflect.ValueOf(syscall.OpenProcess),\n\t\t\"OpenProcessToken\":                             reflect.ValueOf(syscall.OpenProcessToken),\n\t\t\"PAGE_EXECUTE_READ\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PAGE_EXECUTE_READWRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PAGE_EXECUTE_WRITECOPY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PAGE_READONLY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PAGE_READWRITE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PAGE_WRITECOPY\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PFL_HIDDEN\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PFL_MATCHES_PROTOCOL_ZERO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PFL_MULTIPLE_PROTO_ENTRIES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PFL_NETWORKDIRECT_PROVIDER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PFL_RECOMMENDED_PROTO_ENTRY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PKCS_7_ASN_ENCODING\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PROCESS_QUERY_INFORMATION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"PROCESS_TERMINATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROV_DH_SCHANNEL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PROV_DSS\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PROV_DSS_DH\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PROV_EC_ECDSA_FULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PROV_EC_ECDSA_SIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PROV_EC_ECNRA_FULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PROV_EC_ECNRA_SIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PROV_FORTEZZA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROV_INTEL_SEC\":                               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PROV_MS_EXCHANGE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PROV_REPLACE_OWF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PROV_RNG\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PROV_RSA_AES\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PROV_RSA_FULL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROV_RSA_SCHANNEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PROV_RSA_SIG\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROV_SPYRUS_LYNKS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PROV_SSL\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"Pipe\":                                         reflect.ValueOf(syscall.Pipe),\n\t\t\"PostQueuedCompletionStatus\":                   reflect.ValueOf(syscall.PostQueuedCompletionStatus),\n\t\t\"Process32First\":                               reflect.ValueOf(syscall.Process32First),\n\t\t\"Process32Next\":                                reflect.ValueOf(syscall.Process32Next),\n\t\t\"REG_BINARY\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"REG_DWORD\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"REG_DWORD_BIG_ENDIAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"REG_DWORD_LITTLE_ENDIAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"REG_EXPAND_SZ\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"REG_FULL_RESOURCE_DESCRIPTOR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"REG_LINK\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"REG_MULTI_SZ\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"REG_NONE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"REG_QWORD\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"REG_QWORD_LITTLE_ENDIAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"REG_RESOURCE_LIST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"REG_RESOURCE_REQUIREMENTS_LIST\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"REG_SZ\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                                         reflect.ValueOf(syscall.Read),\n\t\t\"ReadConsole\":                                  reflect.ValueOf(syscall.ReadConsole),\n\t\t\"ReadDirectoryChanges\":                         reflect.ValueOf(syscall.ReadDirectoryChanges),\n\t\t\"ReadFile\":                                     reflect.ValueOf(syscall.ReadFile),\n\t\t\"Readlink\":                                     reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                                     reflect.ValueOf(syscall.Recvfrom),\n\t\t\"RegCloseKey\":                                  reflect.ValueOf(syscall.RegCloseKey),\n\t\t\"RegEnumKeyEx\":                                 reflect.ValueOf(syscall.RegEnumKeyEx),\n\t\t\"RegOpenKeyEx\":                                 reflect.ValueOf(syscall.RegOpenKeyEx),\n\t\t\"RegQueryInfoKey\":                              reflect.ValueOf(syscall.RegQueryInfoKey),\n\t\t\"RegQueryValueEx\":                              reflect.ValueOf(syscall.RegQueryValueEx),\n\t\t\"RemoveDirectory\":                              reflect.ValueOf(syscall.RemoveDirectory),\n\t\t\"Rename\":                                       reflect.ValueOf(syscall.Rename),\n\t\t\"Rmdir\":                                        reflect.ValueOf(syscall.Rmdir),\n\t\t\"SHUT_RD\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                                      reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                                      reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                                       reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGFPE\":                                       reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                                       reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                                       reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                                       reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGKILL\":                                      reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                                      reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGQUIT\":                                      reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                                      reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGTERM\":                                      reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                                      reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIO_GET_EXTENSION_FUNCTION_POINTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3355443206\", token.INT, 0)),\n\t\t\"SIO_GET_INTERFACE_LIST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074033791\", token.INT, 0)),\n\t\t\"SIO_KEEPALIVE_VALS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2550136836\", token.INT, 0)),\n\t\t\"SIO_UDP_CONNRESET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2550136844\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"2147483647\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_UPDATE_ACCEPT_CONTEXT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28683\", token.INT, 0)),\n\t\t\"SO_UPDATE_CONNECT_CONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28688\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_ALL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2031616\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_EXECUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_REQUIRED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"983040\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STARTF_USESHOWWINDOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"STARTF_USESTDHANDLES\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"STD_ERROR_HANDLE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"-12\", token.INT, 0)),\n\t\t\"STD_INPUT_HANDLE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"STD_OUTPUT_HANDLE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"-11\", token.INT, 0)),\n\t\t\"SUBLANG_ENGLISH_US\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SW_FORCEMINIMIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SW_HIDE\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SW_MAXIMIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SW_MINIMIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SW_NORMAL\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SW_RESTORE\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SW_SHOW\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SW_SHOWDEFAULT\":                               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SW_SHOWMAXIMIZED\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SW_SHOWMINIMIZED\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SW_SHOWMINNOACTIVE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SW_SHOWNA\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SW_SHOWNOACTIVATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SW_SHOWNORMAL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYMBOLIC_LINK_FLAG_DIRECTORY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYNCHRONIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"S_IFBLK\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"S_IFREG\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_ISGID\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWRITE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                                         reflect.ValueOf(syscall.Seek),\n\t\t\"Sendto\":                                       reflect.ValueOf(syscall.Sendto),\n\t\t\"SetCurrentDirectory\":                          reflect.ValueOf(syscall.SetCurrentDirectory),\n\t\t\"SetEndOfFile\":                                 reflect.ValueOf(syscall.SetEndOfFile),\n\t\t\"SetEnvironmentVariable\":                       reflect.ValueOf(syscall.SetEnvironmentVariable),\n\t\t\"SetFileAttributes\":                            reflect.ValueOf(syscall.SetFileAttributes),\n\t\t\"SetFileCompletionNotificationModes\":           reflect.ValueOf(syscall.SetFileCompletionNotificationModes),\n\t\t\"SetFilePointer\":                               reflect.ValueOf(syscall.SetFilePointer),\n\t\t\"SetFileTime\":                                  reflect.ValueOf(syscall.SetFileTime),\n\t\t\"SetHandleInformation\":                         reflect.ValueOf(syscall.SetHandleInformation),\n\t\t\"SetNonblock\":                                  reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setenv\":                                       reflect.ValueOf(syscall.Setenv),\n\t\t\"Setsockopt\":                                   reflect.ValueOf(syscall.Setsockopt),\n\t\t\"SetsockoptIPMreq\":                             reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                           reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":                          reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                                reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                             reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptTimeval\":                            reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"SidTypeAlias\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SidTypeComputer\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SidTypeDeletedAccount\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SidTypeDomain\":                                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SidTypeGroup\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SidTypeInvalid\":                               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SidTypeLabel\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SidTypeUnknown\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SidTypeUser\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SidTypeWellKnownGroup\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"Socket\":                                       reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                            reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Stderr\":                                       reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                                        reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                                       reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                                reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                              reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringToSid\":                                  reflect.ValueOf(syscall.StringToSid),\n\t\t\"StringToUTF16\":                                reflect.ValueOf(syscall.StringToUTF16),\n\t\t\"StringToUTF16Ptr\":                             reflect.ValueOf(syscall.StringToUTF16Ptr),\n\t\t\"Symlink\":                                      reflect.ValueOf(syscall.Symlink),\n\t\t\"TCP_NODELAY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TF_DISCONNECT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TF_REUSE_SOCKET\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TF_USE_DEFAULT_WORKER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TF_USE_KERNEL_APC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TF_USE_SYSTEM_THREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TF_WRITE_BEHIND\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TH32CS_INHERIT\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"TH32CS_SNAPALL\":                               reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TH32CS_SNAPHEAPLIST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TH32CS_SNAPMODULE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TH32CS_SNAPMODULE32\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TH32CS_SNAPPROCESS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TH32CS_SNAPTHREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_DAYLIGHT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_STANDARD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_UNKNOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_DEFAULT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_GROUPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_PRIVILEGES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_SESSIONID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TOKEN_ALL_ACCESS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"983551\", token.INT, 0)),\n\t\t\"TOKEN_ASSIGN_PRIMARY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TOKEN_DUPLICATE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TOKEN_EXECUTE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"TOKEN_IMPERSONATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TOKEN_QUERY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TOKEN_QUERY_SOURCE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TOKEN_READ\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"131080\", token.INT, 0)),\n\t\t\"TOKEN_WRITE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"131296\", token.INT, 0)),\n\t\t\"TRUNCATE_EXISTING\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TerminateProcess\":                             reflect.ValueOf(syscall.TerminateProcess),\n\t\t\"TimespecToNsec\":                               reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TokenAccessInformation\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TokenAuditPolicy\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TokenDefaultDacl\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TokenElevation\":                               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TokenElevationType\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TokenGroups\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TokenGroupsAndPrivileges\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TokenHasRestrictions\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TokenImpersonationLevel\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TokenIntegrityLevel\":                          reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"TokenLinkedToken\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TokenLogonSid\":                                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"TokenMandatoryPolicy\":                         reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"TokenOrigin\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TokenOwner\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TokenPrimaryGroup\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TokenPrivileges\":                              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TokenRestrictedSids\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TokenSandBoxInert\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TokenSessionId\":                               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TokenSessionReference\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TokenSource\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TokenStatistics\":                              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TokenType\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TokenUIAccess\":                                reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"TokenUser\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TokenVirtualizationAllowed\":                   reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TokenVirtualizationEnabled\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TranslateAccountName\":                         reflect.ValueOf(syscall.TranslateAccountName),\n\t\t\"TranslateName\":                                reflect.ValueOf(syscall.TranslateName),\n\t\t\"TransmitFile\":                                 reflect.ValueOf(syscall.TransmitFile),\n\t\t\"UNIX_PATH_MAX\":                                reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"USAGE_MATCH_TYPE_AND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"USAGE_MATCH_TYPE_OR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"UTF16FromString\":                              reflect.ValueOf(syscall.UTF16FromString),\n\t\t\"UTF16PtrFromString\":                           reflect.ValueOf(syscall.UTF16PtrFromString),\n\t\t\"UTF16ToString\":                                reflect.ValueOf(syscall.UTF16ToString),\n\t\t\"Unlink\":                                       reflect.ValueOf(syscall.Unlink),\n\t\t\"UnmapViewOfFile\":                              reflect.ValueOf(syscall.UnmapViewOfFile),\n\t\t\"Unsetenv\":                                     reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                                       reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                                   reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VirtualLock\":                                  reflect.ValueOf(syscall.VirtualLock),\n\t\t\"VirtualUnlock\":                                reflect.ValueOf(syscall.VirtualUnlock),\n\t\t\"WAIT_ABANDONED\":                               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WAIT_FAILED\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"WAIT_OBJECT_0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"WAIT_TIMEOUT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"WSACleanup\":                                   reflect.ValueOf(syscall.WSACleanup),\n\t\t\"WSADESCRIPTION_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"WSAEACCES\":                                    reflect.ValueOf(syscall.WSAEACCES),\n\t\t\"WSAECONNABORTED\":                              reflect.ValueOf(syscall.WSAECONNABORTED),\n\t\t\"WSAECONNRESET\":                                reflect.ValueOf(syscall.WSAECONNRESET),\n\t\t\"WSAEnumProtocols\":                             reflect.ValueOf(syscall.WSAEnumProtocols),\n\t\t\"WSAID_CONNECTEX\":                              reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(),\n\t\t\"WSAIoctl\":                                     reflect.ValueOf(syscall.WSAIoctl),\n\t\t\"WSAPROTOCOL_LEN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"WSARecv\":                                      reflect.ValueOf(syscall.WSARecv),\n\t\t\"WSARecvFrom\":                                  reflect.ValueOf(syscall.WSARecvFrom),\n\t\t\"WSASYS_STATUS_LEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WSASend\":                                      reflect.ValueOf(syscall.WSASend),\n\t\t\"WSASendTo\":                                    reflect.ValueOf(syscall.WSASendTo),\n\t\t\"WSASendto\":                                    reflect.ValueOf(syscall.WSASendto),\n\t\t\"WSAStartup\":                                   reflect.ValueOf(syscall.WSAStartup),\n\t\t\"WaitForSingleObject\":                          reflect.ValueOf(syscall.WaitForSingleObject),\n\t\t\"Write\":                                        reflect.ValueOf(syscall.Write),\n\t\t\"WriteConsole\":                                 reflect.ValueOf(syscall.WriteConsole),\n\t\t\"WriteFile\":                                    reflect.ValueOf(syscall.WriteFile),\n\t\t\"X509_ASN_ENCODING\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"XP1_CONNECTIONLESS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"XP1_CONNECT_DATA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"XP1_DISCONNECT_DATA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"XP1_EXPEDITED_DATA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"XP1_GRACEFUL_CLOSE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"XP1_GUARANTEED_DELIVERY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"XP1_GUARANTEED_ORDER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"XP1_IFS_HANDLES\":                              reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"XP1_MESSAGE_ORIENTED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"XP1_MULTIPOINT_CONTROL_PLANE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"XP1_MULTIPOINT_DATA_PLANE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"XP1_PARTIAL_MESSAGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"XP1_PSEUDO_STREAM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"XP1_QOS_SUPPORTED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"XP1_SAN_SUPPORT_SDP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"XP1_SUPPORT_BROADCAST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"XP1_SUPPORT_MULTIPOINT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"XP1_UNI_RECV\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"XP1_UNI_SEND\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"AddrinfoW\":                   reflect.ValueOf((*syscall.AddrinfoW)(nil)),\n\t\t\"ByHandleFileInformation\":     reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)),\n\t\t\"CertChainContext\":            reflect.ValueOf((*syscall.CertChainContext)(nil)),\n\t\t\"CertChainElement\":            reflect.ValueOf((*syscall.CertChainElement)(nil)),\n\t\t\"CertChainPara\":               reflect.ValueOf((*syscall.CertChainPara)(nil)),\n\t\t\"CertChainPolicyPara\":         reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)),\n\t\t\"CertChainPolicyStatus\":       reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)),\n\t\t\"CertContext\":                 reflect.ValueOf((*syscall.CertContext)(nil)),\n\t\t\"CertEnhKeyUsage\":             reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)),\n\t\t\"CertInfo\":                    reflect.ValueOf((*syscall.CertInfo)(nil)),\n\t\t\"CertRevocationCrlInfo\":       reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)),\n\t\t\"CertRevocationInfo\":          reflect.ValueOf((*syscall.CertRevocationInfo)(nil)),\n\t\t\"CertSimpleChain\":             reflect.ValueOf((*syscall.CertSimpleChain)(nil)),\n\t\t\"CertTrustListInfo\":           reflect.ValueOf((*syscall.CertTrustListInfo)(nil)),\n\t\t\"CertTrustStatus\":             reflect.ValueOf((*syscall.CertTrustStatus)(nil)),\n\t\t\"CertUsageMatch\":              reflect.ValueOf((*syscall.CertUsageMatch)(nil)),\n\t\t\"Conn\":                        reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"DLL\":                         reflect.ValueOf((*syscall.DLL)(nil)),\n\t\t\"DLLError\":                    reflect.ValueOf((*syscall.DLLError)(nil)),\n\t\t\"DNSMXData\":                   reflect.ValueOf((*syscall.DNSMXData)(nil)),\n\t\t\"DNSPTRData\":                  reflect.ValueOf((*syscall.DNSPTRData)(nil)),\n\t\t\"DNSRecord\":                   reflect.ValueOf((*syscall.DNSRecord)(nil)),\n\t\t\"DNSSRVData\":                  reflect.ValueOf((*syscall.DNSSRVData)(nil)),\n\t\t\"DNSTXTData\":                  reflect.ValueOf((*syscall.DNSTXTData)(nil)),\n\t\t\"Errno\":                       reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FileNotifyInformation\":       reflect.ValueOf((*syscall.FileNotifyInformation)(nil)),\n\t\t\"Filetime\":                    reflect.ValueOf((*syscall.Filetime)(nil)),\n\t\t\"GUID\":                        reflect.ValueOf((*syscall.GUID)(nil)),\n\t\t\"Handle\":                      reflect.ValueOf((*syscall.Handle)(nil)),\n\t\t\"Hostent\":                     reflect.ValueOf((*syscall.Hostent)(nil)),\n\t\t\"IPMreq\":                      reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6Mreq\":                    reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"InterfaceInfo\":               reflect.ValueOf((*syscall.InterfaceInfo)(nil)),\n\t\t\"IpAdapterInfo\":               reflect.ValueOf((*syscall.IpAdapterInfo)(nil)),\n\t\t\"IpAddrString\":                reflect.ValueOf((*syscall.IpAddrString)(nil)),\n\t\t\"IpAddressString\":             reflect.ValueOf((*syscall.IpAddressString)(nil)),\n\t\t\"IpMaskString\":                reflect.ValueOf((*syscall.IpMaskString)(nil)),\n\t\t\"LazyDLL\":                     reflect.ValueOf((*syscall.LazyDLL)(nil)),\n\t\t\"LazyProc\":                    reflect.ValueOf((*syscall.LazyProc)(nil)),\n\t\t\"Linger\":                      reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"MibIfRow\":                    reflect.ValueOf((*syscall.MibIfRow)(nil)),\n\t\t\"Overlapped\":                  reflect.ValueOf((*syscall.Overlapped)(nil)),\n\t\t\"Pointer\":                     reflect.ValueOf((*syscall.Pointer)(nil)),\n\t\t\"Proc\":                        reflect.ValueOf((*syscall.Proc)(nil)),\n\t\t\"ProcAttr\":                    reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"ProcessEntry32\":              reflect.ValueOf((*syscall.ProcessEntry32)(nil)),\n\t\t\"ProcessInformation\":          reflect.ValueOf((*syscall.ProcessInformation)(nil)),\n\t\t\"Protoent\":                    reflect.ValueOf((*syscall.Protoent)(nil)),\n\t\t\"RawConn\":                     reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                 reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":              reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":            reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":            reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":             reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rusage\":                      reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"SID\":                         reflect.ValueOf((*syscall.SID)(nil)),\n\t\t\"SIDAndAttributes\":            reflect.ValueOf((*syscall.SIDAndAttributes)(nil)),\n\t\t\"SSLExtraCertChainPolicyPara\": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)),\n\t\t\"SecurityAttributes\":          reflect.ValueOf((*syscall.SecurityAttributes)(nil)),\n\t\t\"Servent\":                     reflect.ValueOf((*syscall.Servent)(nil)),\n\t\t\"Signal\":                      reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                    reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrGen\":                 reflect.ValueOf((*syscall.SockaddrGen)(nil)),\n\t\t\"SockaddrInet4\":               reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":               reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"StartupInfo\":                 reflect.ValueOf((*syscall.StartupInfo)(nil)),\n\t\t\"SysProcAttr\":                 reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Systemtime\":                  reflect.ValueOf((*syscall.Systemtime)(nil)),\n\t\t\"TCPKeepalive\":                reflect.ValueOf((*syscall.TCPKeepalive)(nil)),\n\t\t\"Timespec\":                    reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                     reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timezoneinformation\":         reflect.ValueOf((*syscall.Timezoneinformation)(nil)),\n\t\t\"Token\":                       reflect.ValueOf((*syscall.Token)(nil)),\n\t\t\"Tokenprimarygroup\":           reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)),\n\t\t\"Tokenuser\":                   reflect.ValueOf((*syscall.Tokenuser)(nil)),\n\t\t\"TransmitFileBuffers\":         reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)),\n\t\t\"UserInfo10\":                  reflect.ValueOf((*syscall.UserInfo10)(nil)),\n\t\t\"WSABuf\":                      reflect.ValueOf((*syscall.WSABuf)(nil)),\n\t\t\"WSAData\":                     reflect.ValueOf((*syscall.WSAData)(nil)),\n\t\t\"WSAProtocolChain\":            reflect.ValueOf((*syscall.WSAProtocolChain)(nil)),\n\t\t\"WSAProtocolInfo\":             reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)),\n\t\t\"WaitStatus\":                  reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\t\t\"Win32FileAttributeData\":      reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)),\n\t\t\"Win32finddata\":               reflect.ValueOf((*syscall.Win32finddata)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_aix_ppc64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_BYPASS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_CCITT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_ECMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_INTF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_ISO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_NDD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_NETWARE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_NS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_RIF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SNA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_802_3\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_802_5\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Accept\":                        reflect.ValueOf(syscall.Accept),\n\t\t\"Access\":                        reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                          reflect.ValueOf(syscall.Acct),\n\t\t\"B0\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B1200\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1800\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2400\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B300\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B38400\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4800\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B9600\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BRKINT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                          reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":             reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":           reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIOCGIFCONF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1072666332\", token.INT, 0)),\n\t\t\"CSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSMAP_DIR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"\\\"/usr/lib/nls/csmap/\\\"\", token.STRING, 0)),\n\t\t\"CSTART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                         reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                         reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                         reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                        reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                      reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                         reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                   reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                       reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                     reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                       reflect.ValueOf(syscall.Connect),\n\t\t\"Dup\":                           reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                          reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                         reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                        reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                    reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                 reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                  reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                        reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                      reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADF\":                         reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                       reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBUSY\":                         reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                     reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                        reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"ECHOE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"ECHONL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"ECHRNG\":                        reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECH_ICMPID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECLONEME\":                      reflect.ValueOf(syscall.ECLONEME),\n\t\t\"ECONNABORTED\":                  reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                  reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                    reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"ECORRUPT\":                      reflect.ValueOf(syscall.ECORRUPT),\n\t\t\"EDEADLK\":                       reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDREQ\":                   reflect.ValueOf(syscall.EDESTADDREQ),\n\t\t\"EDESTADDRREQ\":                  reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDIST\":                         reflect.ValueOf(syscall.EDIST),\n\t\t\"EDOM\":                          reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                        reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                        reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                        reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                         reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFORMAT\":                       reflect.ValueOf(syscall.EFORMAT),\n\t\t\"EHOSTDOWN\":                     reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                  reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                         reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                        reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                   reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                         reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                        reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                           reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                       reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                        reflect.ValueOf(syscall.EISDIR),\n\t\t\"EL2HLT\":                        reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                      reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                        reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                        reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELNRNG\":                        reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                         reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIA\":                        reflect.ValueOf(syscall.EMEDIA),\n\t\t\"EMFILE\":                        reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                        reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                      reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                     reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                  reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENETDOWN\":                      reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                     reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                   reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                        reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                       reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                       reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCONNECT\":                    reflect.ValueOf(syscall.ENOCONNECT),\n\t\t\"ENOCSI\":                        reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                       reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                        reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                        reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                       reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                        reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                       reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                        reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                        reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                   reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                        reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                         reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                        reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                        reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                       reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                      reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                       reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                     reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTREADY\":                     reflect.ValueOf(syscall.ENOTREADY),\n\t\t\"ENOTRECOVERABLE\":               reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTRUST\":                      reflect.ValueOf(syscall.ENOTRUST),\n\t\t\"ENOTSOCK\":                      reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                       reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                        reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                         reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                    reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                     reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                    reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                         reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                  reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                         reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                      reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROTO\":                        reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":               reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                    reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                        reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                       reflect.ValueOf(syscall.EREMOTE),\n\t\t\"ERESTART\":                      reflect.ValueOf(syscall.ERESTART),\n\t\t\"EROFS\":                         reflect.ValueOf(syscall.EROFS),\n\t\t\"ESAD\":                          reflect.ValueOf(syscall.ESAD),\n\t\t\"ESHUTDOWN\":                     reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":               reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESOFT\":                         reflect.ValueOf(syscall.ESOFT),\n\t\t\"ESPIPE\":                        reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                         reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                        reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESYSERROR\":                     reflect.ValueOf(syscall.ESYSERROR),\n\t\t\"ETHERNET_CSMACD\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETIME\":                         reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                     reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                  reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                       reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUNATCH\":                       reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                        reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVENP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                   reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EWRPROTECT\":                    reflect.ValueOf(syscall.EWRPROTECT),\n\t\t\"EXCONTINUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EXDEV\":                         reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXDLOK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EXIO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EXPGIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EXRESUME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EXRETURN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EXSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EXTA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTRAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EYEC_RTENTRYA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2698347105741992513\", token.INT, 0)),\n\t\t\"EYEC_RTENTRYF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2698347105741992518\", token.INT, 0)),\n\t\t\"E_ACC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Environ\":                       reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"FLUSHBAND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"FLUSHLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"FLUSHO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"FLUSHR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FLUSHRW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"FLUSHW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_CLOSEM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUP2FD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_DUPFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_GETFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_GETLK64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_GETOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_OK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_SETLK64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_SETLKW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_TEST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_TSTLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_ULOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_WRLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Faccessat\":                     reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fchdir\":                        reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                        reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                      reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                        reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                      reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                    reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"ForkLock\":                      reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                     reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                         reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                       reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                         reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                     reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Getcwd\":                        reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getegid\":                       reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                        reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                       reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                        reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                     reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getkerninfo\":                   reflect.ValueOf(syscall.Getkerninfo),\n\t\t\"Getpagesize\":                   reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                   reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpid\":                        reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                       reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                   reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                     reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                     reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                   reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptInt\":                 reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                  reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                        reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                         reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"ICMP6_SEC_SEND_DEL\":            reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"ICMP6_SEC_SEND_GET\":            reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"ICMP6_SEC_SEND_SET\":            reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"ICMP6_SEC_SEND_SET_CGA_ADDR\":   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"ICRNL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFA_FIRSTALIAS\":                reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFA_ROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_64BIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IFF_ALLCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_BPF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"IFF_BRIDGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                reflect.ValueOf(constant.MakeFromLiteral(\"527442\", token.INT, 0)),\n\t\t\"IFF_CHECKSUM_OFFLOAD\":          reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"IFF_D1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_D2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_D3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_D4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DEVHEALTH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_DO_HW_LOOPBACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_GROUP_ROUTING\":             reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IFF_IFBUFMGT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOECHO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_PSEG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SNAP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_TCP_DISABLE_CKSUM\":         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IFF_TCP_NOCKSUM\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IFF_UP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VIPA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFO_FLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_1822\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CLUSTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_DS3\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FCS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_GIFTUNNEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":               reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":               reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_RS232\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_SONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_T1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_V35\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_VIPA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"INLCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_USE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_BIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":               reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":              reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GIF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_LOCAL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_QOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":               reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_ADDR_PREFERENCES\":         reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_AIXRAWSOCKET\":             reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_FLOWLABEL\":       reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_PRIFLOW\":         reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_PRIORITY\":        reflect.ValueOf(constant.MakeFromLiteral(\"251658240\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_SRFLAG\":          reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_VERSION\":         reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":              reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MIPDSTOPTS\":               reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_NOPROBE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_PKTOPTIONS\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_10\":              reflect.ValueOf(constant.MakeFromLiteral(\"167772160\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_11\":              reflect.ValueOf(constant.MakeFromLiteral(\"184549376\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_12\":              reflect.ValueOf(constant.MakeFromLiteral(\"201326592\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_13\":              reflect.ValueOf(constant.MakeFromLiteral(\"218103808\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_14\":              reflect.ValueOf(constant.MakeFromLiteral(\"234881024\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_15\":              reflect.ValueOf(constant.MakeFromLiteral(\"251658240\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_8\":               reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_9\":               reflect.ValueOf(constant.MakeFromLiteral(\"150994944\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_BULK\":            reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_CONTROL\":         reflect.ValueOf(constant.MakeFromLiteral(\"117440512\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_FILLER\":          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_INTERACTIVE\":     reflect.ValueOf(constant.MakeFromLiteral(\"100663296\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_RESERVED1\":       reflect.ValueOf(constant.MakeFromLiteral(\"50331648\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_RESERVED2\":       reflect.ValueOf(constant.MakeFromLiteral(\"83886080\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_UNATTENDED\":      reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IPV6_PRIORITY_UNCHARACTERIZED\": reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":              reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":             reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":              reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_RECVIF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":              reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVSRCRT\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":             reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_2\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_SENDIF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_SRFLAG_LOOSE\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SRFLAG_STRICT\":            reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_TOKEN_LENGTH\":             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":              reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1610612736\", token.INT, 0)),\n\t\t\"IP_ADDRFORM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":      reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IP_BROADCAST_IF\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_CACHE_LINE_SIZE\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DHCPMODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_DONTFRAG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":     reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_FINDPMTU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_INC_MEMBERSHIPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_INIT_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_HOPS\":             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":               reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_OPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PMTUAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVIFINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RECVINTERFACE\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_RECVMACHDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_SOURCE_FILTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IP_TOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":             reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IP_UNICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ISIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXOFF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"I_FLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536892165\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":               reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"LNOFLSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"LOCK_EX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                        reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                          reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                        reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                         reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DONTNEED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_SPACEAVAIL\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_FILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"MAP_VARIABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_ANY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_ARGEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_BAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_COMPAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_EOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_HIPRI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_MAXIOVLEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_MPEG2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_NONBLOCK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_OOB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_EINTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_PER_SEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1000\", token.INT, 0)),\n\t\t\"MS_SYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"Mkdir\":                         reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                       reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mknodat\":                       reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mmap\":                          reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                        reflect.ValueOf(syscall.Munmap),\n\t\t\"NOFLSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"NOFLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NsecToTimespec\":                reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                 reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONLCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONOEOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"OPOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"O_APPEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_CIO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_CIOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34359738368\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"O_CREAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_DEFER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_DELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_DSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_EFSOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17179869184\", token.INT, 0)),\n\t\t\"O_EFSON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"O_EXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"O_NDELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOCACHE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_NSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"O_RDONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_RSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_SEARCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_SNAPSHOT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_SYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_TRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_TTY_INIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_WRONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                          reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                        reflect.ValueOf(syscall.Openat),\n\t\t\"PARENB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PAREXT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PARMRK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_64BIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_ADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_ARGEXT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"PR_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_CONNREQUIRED\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_FASTHZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_INP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PR_INTRLEVEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PR_MLS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PR_MLS_1_LABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PR_NOEOR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PR_RIGHTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_SLOWHZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_WANTRCVD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_ATTACH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PT_CLEAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PT_COMMAND_MAX\":                reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"PT_CONTINUE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PT_DETACH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PT_GET_UKEY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PT_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PT_LDINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PT_LDXINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PT_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PT_NEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PT_QUERY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PT_READ_BLOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PT_READ_D\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PT_READ_FPR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PT_READ_GPR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PT_READ_I\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PT_REATT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PT_REGSET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PT_SET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PT_STEP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PT_TRACE_ME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_WATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"PT_WRITE_BLOCK\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PT_WRITE_D\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PT_WRITE_FPR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PT_WRITE_GPR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PT_WRITE_I\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ParseDirent\":                   reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseSocketControlMessage\":     reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":               reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1023\", token.INT, 0)),\n\t\t\"Pipe\":                          reflect.ValueOf(syscall.Pipe),\n\t\t\"Pread\":                         reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                        reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DOWNSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTA_DST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_ACTIVE_DGD\":                reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_BCE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_BUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_CLONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_CLONED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FREE_IN_PROG\":              reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PERMANENT6\":                reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_SMALLMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_STOPSRCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_UNREACHABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_UP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_EXPIRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_GET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_GETNEXT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTLOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_SAMEADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_SET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_VERSION_GR\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_VERSION_GR_COMPAT\":         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_VERSION_POLICY\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_VERSION_POLICY_EXT\":        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_VERSION_POLICY_PRFN\":       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                          reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                    reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                      reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                      reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                       reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                        reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                      reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                         reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_RIGHTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SHUT_RD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                       reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGAIO\":                        reflect.ValueOf(syscall.SIGAIO),\n\t\t\"SIGALRM\":                       reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGALRM1\":                      reflect.ValueOf(syscall.SIGALRM1),\n\t\t\"SIGBUS\":                        reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCAPI\":                       reflect.ValueOf(syscall.SIGCAPI),\n\t\t\"SIGCHLD\":                       reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                        reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                       reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGCPUFAIL\":                    reflect.ValueOf(syscall.SIGCPUFAIL),\n\t\t\"SIGDANGER\":                     reflect.ValueOf(syscall.SIGDANGER),\n\t\t\"SIGEMT\":                        reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                        reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGGRANT\":                      reflect.ValueOf(syscall.SIGGRANT),\n\t\t\"SIGHUP\":                        reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                        reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                        reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                         reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOINT\":                      reflect.ValueOf(syscall.SIGIOINT),\n\t\t\"SIGIOT\":                        reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKAP\":                        reflect.ValueOf(syscall.SIGKAP),\n\t\t\"SIGKILL\":                       reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGLOST\":                       reflect.ValueOf(syscall.SIGLOST),\n\t\t\"SIGMAX\":                        reflect.ValueOf(syscall.SIGMAX),\n\t\t\"SIGMAX32\":                      reflect.ValueOf(syscall.SIGMAX32),\n\t\t\"SIGMAX64\":                      reflect.ValueOf(syscall.SIGMAX64),\n\t\t\"SIGMIGRATE\":                    reflect.ValueOf(syscall.SIGMIGRATE),\n\t\t\"SIGMSG\":                        reflect.ValueOf(syscall.SIGMSG),\n\t\t\"SIGPIPE\":                       reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                       reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPRE\":                        reflect.ValueOf(syscall.SIGPRE),\n\t\t\"SIGPROF\":                       reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPTY\":                        reflect.ValueOf(syscall.SIGPTY),\n\t\t\"SIGPWR\":                        reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUEUE_MAX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SIGQUIT\":                       reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGRECONFIG\":                   reflect.ValueOf(syscall.SIGRECONFIG),\n\t\t\"SIGRETRACT\":                    reflect.ValueOf(syscall.SIGRETRACT),\n\t\t\"SIGSAK\":                        reflect.ValueOf(syscall.SIGSAK),\n\t\t\"SIGSEGV\":                       reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSOUND\":                      reflect.ValueOf(syscall.SIGSOUND),\n\t\t\"SIGSTOP\":                       reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                        reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGSYSERROR\":                   reflect.ValueOf(syscall.SIGSYSERROR),\n\t\t\"SIGTALRM\":                      reflect.ValueOf(syscall.SIGTALRM),\n\t\t\"SIGTERM\":                       reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                       reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                       reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                       reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                       reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                        reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                       reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                       reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVIRT\":                       reflect.ValueOf(syscall.SIGVIRT),\n\t\t\"SIGVTALRM\":                     reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWAITING\":                    reflect.ValueOf(syscall.SIGWAITING),\n\t\t\"SIGWINCH\":                      reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                       reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                       reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDIFVIPA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"536897858\", token.INT, 0)),\n\t\t\"SIOCADDMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2147194512\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359567\", token.INT, 0)),\n\t\t\"SIOCADDNETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2144835241\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2143784438\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2143262438\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2142476000\", token.INT, 0)),\n\t\t\"SIOCDELIFVIPA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"536897859\", token.INT, 0)),\n\t\t\"SIOCDELMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2147194511\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359566\", token.INT, 0)),\n\t\t\"SIOCDELPMTU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2144833526\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2143784437\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2144835303\", token.INT, 0)),\n\t\t\"SIOCDNETOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073649280\", token.INT, 0)),\n\t\t\"SIOCDX25XLATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2144835227\", token.INT, 0)),\n\t\t\"SIOCFIFADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2145359469\", token.INT, 0)),\n\t\t\"SIOCGARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-1068734170\", token.INT, 0)),\n\t\t\"SIOCGETMTUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536897903\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1072401100\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1072401101\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1071093471\", token.INT, 0)),\n\t\t\"SIOCGIFADDRS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"536897932\", token.INT, 0)),\n\t\t\"SIOCGIFBAUDRATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1071093395\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1071093469\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1072666299\", token.INT, 0)),\n\t\t\"SIOCGIFCONFGLOB\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1072666224\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1071093470\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071093487\", token.INT, 0)),\n\t\t\"SIOCGIFGIDLIST\":                reflect.ValueOf(constant.MakeFromLiteral(\"536897896\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1068209771\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1071093481\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071093418\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1071093467\", token.INT, 0)),\n\t\t\"SIOCGIFOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1071093462\", token.INT, 0)),\n\t\t\"SIOCGISNO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1071093397\", token.INT, 0)),\n\t\t\"SIOCGLOADF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1073452670\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGNETOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073649317\", token.INT, 0)),\n\t\t\"SIOCGNETOPT1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617663\", token.INT, 0)),\n\t\t\"SIOCGNMTUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536897902\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGSIZIFCONF\":                reflect.ValueOf(constant.MakeFromLiteral(\"1074030954\", token.INT, 0)),\n\t\t\"SIOCGSRCFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1072142027\", token.INT, 0)),\n\t\t\"SIOCGTUNEPHASE\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1073452662\", token.INT, 0)),\n\t\t\"SIOCGX25XLATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1071093404\", token.INT, 0)),\n\t\t\"SIOCIFATTACH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359513\", token.INT, 0)),\n\t\t\"SIOCIFDETACH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359514\", token.INT, 0)),\n\t\t\"SIOCIFGETPKEY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2145359515\", token.INT, 0)),\n\t\t\"SIOCIF_ATM_DARP\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2145359491\", token.INT, 0)),\n\t\t\"SIOCIF_ATM_DUMPARP\":            reflect.ValueOf(constant.MakeFromLiteral(\"-2145359493\", token.INT, 0)),\n\t\t\"SIOCIF_ATM_GARP\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2145359490\", token.INT, 0)),\n\t\t\"SIOCIF_ATM_IDLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2145359494\", token.INT, 0)),\n\t\t\"SIOCIF_ATM_SARP\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2145359489\", token.INT, 0)),\n\t\t\"SIOCIF_ATM_SNMPARP\":            reflect.ValueOf(constant.MakeFromLiteral(\"-2145359495\", token.INT, 0)),\n\t\t\"SIOCIF_ATM_SVC\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2145359492\", token.INT, 0)),\n\t\t\"SIOCIF_ATM_UBR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2145359496\", token.INT, 0)),\n\t\t\"SIOCIF_DEVHEALTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"-2147194476\", token.INT, 0)),\n\t\t\"SIOCIF_IB_ARP_INCOMP\":          reflect.ValueOf(constant.MakeFromLiteral(\"-2145359479\", token.INT, 0)),\n\t\t\"SIOCIF_IB_ARP_TIMER\":           reflect.ValueOf(constant.MakeFromLiteral(\"-2145359480\", token.INT, 0)),\n\t\t\"SIOCIF_IB_CLEAR_PINFO\":         reflect.ValueOf(constant.MakeFromLiteral(\"-1071617647\", token.INT, 0)),\n\t\t\"SIOCIF_IB_DEL_ARP\":             reflect.ValueOf(constant.MakeFromLiteral(\"-2145359487\", token.INT, 0)),\n\t\t\"SIOCIF_IB_DEL_PINFO\":           reflect.ValueOf(constant.MakeFromLiteral(\"-1071617648\", token.INT, 0)),\n\t\t\"SIOCIF_IB_DUMP_ARP\":            reflect.ValueOf(constant.MakeFromLiteral(\"-2145359488\", token.INT, 0)),\n\t\t\"SIOCIF_IB_GET_ARP\":             reflect.ValueOf(constant.MakeFromLiteral(\"-2145359486\", token.INT, 0)),\n\t\t\"SIOCIF_IB_GET_INFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"-1065850485\", token.INT, 0)),\n\t\t\"SIOCIF_IB_GET_STATS\":           reflect.ValueOf(constant.MakeFromLiteral(\"-1065850482\", token.INT, 0)),\n\t\t\"SIOCIF_IB_NOTIFY_ADDR_REM\":     reflect.ValueOf(constant.MakeFromLiteral(\"-1065850474\", token.INT, 0)),\n\t\t\"SIOCIF_IB_RESET_STATS\":         reflect.ValueOf(constant.MakeFromLiteral(\"-1065850481\", token.INT, 0)),\n\t\t\"SIOCIF_IB_RESIZE_CQ\":           reflect.ValueOf(constant.MakeFromLiteral(\"-2145359481\", token.INT, 0)),\n\t\t\"SIOCIF_IB_SET_ARP\":             reflect.ValueOf(constant.MakeFromLiteral(\"-2145359485\", token.INT, 0)),\n\t\t\"SIOCIF_IB_SET_PKEY\":            reflect.ValueOf(constant.MakeFromLiteral(\"-2145359484\", token.INT, 0)),\n\t\t\"SIOCIF_IB_SET_PORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"-2145359483\", token.INT, 0)),\n\t\t\"SIOCIF_IB_SET_QKEY\":            reflect.ValueOf(constant.MakeFromLiteral(\"-2145359478\", token.INT, 0)),\n\t\t\"SIOCIF_IB_SET_QSIZE\":           reflect.ValueOf(constant.MakeFromLiteral(\"-2145359482\", token.INT, 0)),\n\t\t\"SIOCLISTIFVIPA\":                reflect.ValueOf(constant.MakeFromLiteral(\"536897860\", token.INT, 0)),\n\t\t\"SIOCSARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2142476002\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359552\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2144835316\", token.INT, 0)),\n\t\t\"SIOCSIFADDRORI\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2145097331\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2144835309\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2144835314\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2144835312\", token.INT, 0)),\n\t\t\"SIOCSIFGIDLIST\":                reflect.ValueOf(constant.MakeFromLiteral(\"536897897\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2144835304\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2144835240\", token.INT, 0)),\n\t\t\"SIOCSIFNETDUMP\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2144835300\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2144835306\", token.INT, 0)),\n\t\t\"SIOCSIFOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2144835287\", token.INT, 0)),\n\t\t\"SIOCSIFSUBCHAN\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2144835301\", token.INT, 0)),\n\t\t\"SIOCSISNO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2144835220\", token.INT, 0)),\n\t\t\"SIOCSLOADF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1073452669\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359554\", token.INT, 0)),\n\t\t\"SIOCSNETOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2147391142\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359560\", token.INT, 0)),\n\t\t\"SIOCSX25XLATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2144835229\", token.INT, 0)),\n\t\t\"SOCK_CONN_DGRAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_AUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_CKSUMRECV\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_KERNACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_LINGER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_NOMULTIPATH\":                reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_NOREUSEADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"SO_TYPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_USE_IFBUFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"S_BANDURG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_EMODFMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1006632960\", token.INT, 0)),\n\t\t\"S_ENFMT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ERROR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_HANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_HIPRI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_ICRYPTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"S_IEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFJOURNAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"S_IFLNK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMPX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8704\", token.INT, 0)),\n\t\t\"S_IFMT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFPDIR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"S_IFPSDIR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"S_IFPSSDIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"201326592\", token.INT, 0)),\n\t\t\"S_IFREG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFSYSEA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"805306368\", token.INT, 0)),\n\t\t\"S_INPUT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IREAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_ITCB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"S_ITP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"S_IWGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXACL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"S_IXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"S_IXGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXINTERFACE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"S_IXMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"S_IXOTH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_MSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_OUTPUT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_RDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_RDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_RESERVED1\":                   reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"S_RESERVED2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"S_RESERVED3\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"S_RESERVED4\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"S_RESFMT1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"S_RESFMT10\":                    reflect.ValueOf(constant.MakeFromLiteral(\"872415232\", token.INT, 0)),\n\t\t\"S_RESFMT11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"939524096\", token.INT, 0)),\n\t\t\"S_RESFMT12\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1006632960\", token.INT, 0)),\n\t\t\"S_RESFMT2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"335544320\", token.INT, 0)),\n\t\t\"S_RESFMT3\":                     reflect.ValueOf(constant.MakeFromLiteral(\"402653184\", token.INT, 0)),\n\t\t\"S_RESFMT4\":                     reflect.ValueOf(constant.MakeFromLiteral(\"469762048\", token.INT, 0)),\n\t\t\"S_RESFMT5\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"S_RESFMT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"603979776\", token.INT, 0)),\n\t\t\"S_RESFMT7\":                     reflect.ValueOf(constant.MakeFromLiteral(\"671088640\", token.INT, 0)),\n\t\t\"S_RESFMT8\":                     reflect.ValueOf(constant.MakeFromLiteral(\"738197504\", token.INT, 0)),\n\t\t\"S_WRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_WRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                          reflect.ValueOf(syscall.Seek),\n\t\t\"Sendfile\":                      reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                       reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                      reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                        reflect.ValueOf(syscall.Sendto),\n\t\t\"SetNonblock\":                   reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                       reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                        reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                       reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                        reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                     reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setpgid\":                       reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                   reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                      reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                      reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                     reflect.ValueOf(syscall.Setrlimit),\n\t\t\"SetsockoptByte\":                reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":        reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":              reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":            reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":           reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                 reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":              reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":              reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":             reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"SizeofCmsghdr\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":             reflect.ValueOf(constant.MakeFromLiteral(\"1028\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":           reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":            reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":           reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                        reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":             reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                    reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                          reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                        reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                        reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                         reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                        reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                 reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":               reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                       reflect.ValueOf(syscall.Symlink),\n\t\t\"TCIFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_24DAYS_WORTH_OF_SLOWTICKS\": reflect.ValueOf(constant.MakeFromLiteral(\"4147200\", token.INT, 0)),\n\t\t\"TCP_ACLADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"TCP_ACLBIND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"TCP_ACLCLEAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"TCP_ACLDEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"TCP_ACLDENY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_ACLFLUSH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"TCP_ACLGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_ACLLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"TCP_ACLSUBNET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_ACLUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CWND_DF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_CWND_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_DELAY_ACK_FIN\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_DELAY_ACK_SYN\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_FASTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16844810\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_LSPRIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"TCP_LUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXDF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"TCP_MAXIF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAXWINDOWSCALE\":            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MSS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1460\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NODELAYACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_NOREDUCE_CWND_EXIT_FRXMT\":  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"TCP_NOREDUCE_CWND_IN_FRXMT\":    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_NOTENTER_SSTART\":           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_OPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"TCP_RFC1323\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_SETPRIV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"TCP_STDURG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_TIMESTAMP_OPTLEN\":          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_UNSETPRIV\":                 reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359906\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359824\", token.INT, 0)),\n\t\t\"TIOCGETC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074164754\", token.INT, 0)),\n\t\t\"TIOCGETD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074033664\", token.INT, 0)),\n\t\t\"TIOCGETP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074164744\", token.INT, 0)),\n\t\t\"TIOCGLTC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074164852\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGSID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074033736\", token.INT, 0)),\n\t\t\"TIOCGSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCHPCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900610\", token.INT, 0)),\n\t\t\"TIOCLBIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359934\", token.INT, 0)),\n\t\t\"TIOCLBIS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359935\", token.INT, 0)),\n\t\t\"TIOCLGET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074033788\", token.INT, 0)),\n\t\t\"TIOCLSET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359933\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359915\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359916\", token.INT, 0)),\n\t\t\"TIOCMGET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359908\", token.INT, 0)),\n\t\t\"TIOCMODG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074033667\", token.INT, 0)),\n\t\t\"TIOCMODS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359812\", token.INT, 0)),\n\t\t\"TIOCMSET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359917\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359920\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359913\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562490897\", token.INT, 0)),\n\t\t\"TIOCSETD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359809\", token.INT, 0)),\n\t\t\"TIOCSETN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562490890\", token.INT, 0)),\n\t\t\"TIOCSETP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562490889\", token.INT, 0)),\n\t\t\"TIOCSLTC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562490997\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359926\", token.INT, 0)),\n\t\t\"TIOCSSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562622055\", token.INT, 0)),\n\t\t\"TIOCSTART\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562163314\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562622055\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18446744071562359910\", token.INT, 0)),\n\t\t\"TOSTOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                 reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                      reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                         reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                         reflect.ValueOf(syscall.Uname),\n\t\t\"UnixRights\":                    reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                        reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                      reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unsetenv\":                      reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                        reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                    reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCRD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VDSUSP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VEOF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VEOL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VERASE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VQUIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VSTART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VSTOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VSUSP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VT0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"VTDELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"VTDLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"VTIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"WPARSTART\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WPARSTOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WPARTTYNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"\\\"Global\\\"\", token.STRING, 0)),\n\t\t\"Wait4\":                         reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                         reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid64_t\":             reflect.ValueOf((*syscall.Fsid64_t)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfMsgHdr\":             reflect.ValueOf((*syscall.IfMsgHdr)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":  reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":     reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"StTimespec_t\":         reflect.ValueOf((*syscall.StTimespec_t)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timeval32\":            reflect.ValueOf((*syscall.Timeval32)(nil)),\n\t\t\"Timezone\":             reflect.ValueOf((*syscall.Timezone)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_android_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22 && !linux\n// +build go1.22,!linux\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_PHY\":            reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPOLL_NONBLOCK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Ioperm\":                           reflect.ValueOf(syscall.Ioperm),\n\t\t\"Iopl\":                             reflect.ValueOf(syscall.Iopl),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_32BIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETFPXREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETFPXREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SINGLEBLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_SYSEMU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PTRACE_SYSEMU_SINGLESTEP\":         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_BDFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_BREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_CHOWN32\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_FADVISE64_64\":                 reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FCHOWN32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FCNTL64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_FSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_FSTATAT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_FTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE64\":                  reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_GETEGID32\":                    reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETEUID32\":                    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_GETRESGID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_GETRESUID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETUID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_GET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_GTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_IDLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPERM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_IOPL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_IPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_LCHOWN32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_LOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_LSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_MADVISE1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_MMAP2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_MODIFY_LDT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_MPX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_NICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_OLDFSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_OLDLSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_OLDOLDUNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_OLDSTAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_OLDUNAME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_PROF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_READDIR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_SENDFILE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_SETFSGID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_SETFSUID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SETGID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SETREGID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_SETRESGID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETRESUID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_SETREUID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETUID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_SGETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_SIGNAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_SOCKETCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_SSETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_STAT64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_STIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_STTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_TIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_UGETRLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_ULIMIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_VM86\":                         reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_VM86OLD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_VSERVER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_WAITPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS__LLSEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS__NEWSELECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074287829\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074287830\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_android_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22 && !linux\n// +build go1.22,!linux\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_PHY\":            reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPOLL_NONBLOCK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Ioperm\":                           reflect.ValueOf(syscall.Ioperm),\n\t\t\"Iopl\":                             reflect.ValueOf(syscall.Iopl),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_32BIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ARCH_PRCTL\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETFPXREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETFPXREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SINGLEBLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_SYSEMU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PTRACE_SYSEMU_SINGLESTEP\":         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_ARCH_PRCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL_OLD\":                reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT_OLD\":               reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_GET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_IOPERM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_IOPL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_MODIFY_LDT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_NEWFSTATAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_SECURITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_SEMTIMEDOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_SET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_TIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_TUXCALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_VSERVER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812117\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812118\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_android_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22 && !linux\n// +build go1.22,!linux\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_PHY\":            reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELF_NGREG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ELF_PRARGSZ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPOLL_NONBLOCK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_CLEAR_SECCOMP_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SECCOMP_FILTER_EVENT\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SECCOMP_FILTER_SYSCALL\":        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETCRUNCHREGS\":             reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETHBPREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETVFPREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PTRACE_GETWMMXREGS\":               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SETCRUNCHREGS\":             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETHBPREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETVFPREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PTRACE_SETWMMXREGS\":               reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PTRACE_SET_SYSCALL\":               reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_DATA_ADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65540\", token.INT, 0)),\n\t\t\"PT_TEXT_ADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PT_TEXT_END_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65544\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_ARM_FADVISE64_64\":             reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_ARM_SYNC_FILE_RANGE\":          reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_BDFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_CHOWN32\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FCHOWN32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FCNTL64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_FSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_FSTATAT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE64\":                  reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_GETEGID32\":                    reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETEUID32\":                    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_GETRESGID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_GETRESUID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETUID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_IPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_LCHOWN32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_LSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_MMAP2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_NICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_OABI_SYSCALL_BASE\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_IOBASE\":             reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_READ\":               reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_WRITE\":              reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"359\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"377\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_READDIR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_RECV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_SEMTIMEDOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_SEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_SENDFILE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"374\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_SETFSGID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_SETFSUID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SETGID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"375\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SETREGID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_SETRESGID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETRESUID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_SETREUID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETUID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_SOCKETCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_STAT64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_STIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"373\", token.INT, 0)),\n\t\t\"SYS_SYSCALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_SYSCALL_BASE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_TIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_UGETRLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_VSERVER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS__LLSEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS__NEWSELECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074287829\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074287830\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_android_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22 && !linux\n// +build go1.22,!linux\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":        reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":               reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIGNAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35067\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatat\":                          reflect.ValueOf(syscall.Fstatat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_802_1Q_VLAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BONDING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_BRIDGE_PORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DISABLE_NETPOLL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_DONT_BRIDGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_EBRIDGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_ISATAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_LIVE_ADDR_CHANGE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MACVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_MACVLAN_PORT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MASTER_8023AD\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER_ALB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_MASTER_ARPMON\":                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_OVS_DATAPATH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SLAVE_INACTIVE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_SLAVE_NEEDARP\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SUPP_NOFCS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TEAM_PORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_TX_SKB_SHARING\":               reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_UNICAST_FLT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFF_WAN_HDLC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_XMIT_DST_RELEASE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_BEETPH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DODUMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_HUGE_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"MAP_HUGE_SHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_PATH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TMPFILE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4259840\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048831\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_MAX_PACING_RATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":              reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_ARCH_SPECIFIC_SYSCALL\":        reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_BPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_EXECVEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_FINIT_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETRANDOM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_KCMP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_MEMFD_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_SECCOMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_SEMTIMEDOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE2\":             reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21515\", token.INT, 0)),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_COOKIE_IN_ALWAYS\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_COOKIE_OUT_NEVER\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_COOKIE_PAIR_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_COOKIE_TRANSACTIONS\":          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MSS_DEFAULT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_MSS_DESIRED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1220\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUEUE_SEQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_REPAIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_REPAIR_OPTIONS\":               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_REPAIR_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_S_DATA_IN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_S_DATA_OUT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_THIN_DUPACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_THIN_LINEAR_TIMEOUTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_USER_TIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767360\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767352\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767353\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812117\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812118\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148553947\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025690\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025689\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_darwin_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_CCITT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_ECMA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_IPX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_ISO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_NATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_NDRV\":                            reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NS\":                              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PPP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_PUP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_RESERVED_36\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SIP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SNA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_SYSTEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_UNIX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Accept\":                             reflect.ValueOf(syscall.Accept),\n\t\t\"Access\":                             reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                            reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                               reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                               reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                               reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B4800\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                                reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                               reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                                reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B9600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222028921\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020978\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147762808\", token.INT, 0)),\n\t\t\"BIOCSETF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762803\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                            reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                               reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                          reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                        reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                      reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                       reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                            reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                           reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                            reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                         reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                  reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":                reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                                reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                                reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                              reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                    reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                            reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                              reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                              reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                             reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                           reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                              reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                        reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                            reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                          reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                            reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":         reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AX25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CHDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                     reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":               reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":           reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_NULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAW\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DT_BLK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                                reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                               reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                              reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                             reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                         reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                      reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                       reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                             reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                           reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                              reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADARCH\":                           reflect.ValueOf(syscall.EBADARCH),\n\t\t\"EBADEXEC\":                           reflect.ValueOf(syscall.EBADEXEC),\n\t\t\"EBADF\":                              reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMACHO\":                          reflect.ValueOf(syscall.EBADMACHO),\n\t\t\"EBADMSG\":                            reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                            reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                              reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                          reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                             reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                       reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                       reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                         reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                            reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                       reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDEVERR\":                            reflect.ValueOf(syscall.EDEVERR),\n\t\t\"EDOM\":                               reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                             reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                             reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                             reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                              reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                             reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                          reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                       reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                              reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                             reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                        reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                              reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                             reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                                reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                            reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                             reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                              reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                              reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                             reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                             reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                           reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                          reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                       reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                          reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                           reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                          reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                        reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                             reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                            reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                            reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODATA\":                            reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                             reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                             reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                            reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                             reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                            reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                             reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                             reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPOLICY\":                          reflect.ValueOf(syscall.ENOPOLICY),\n\t\t\"ENOPROTOOPT\":                        reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                             reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                              reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                             reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                             reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                            reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                           reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                            reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                          reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":                    reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                           reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                            reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                             reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                              reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                         reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                          reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                         reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                              reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                       reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                              reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                           reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                       reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                      reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                       reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                             reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                    reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                         reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"EPWROFF\":                            reflect.ValueOf(syscall.EPWROFF),\n\t\t\"ERANGE\":                             reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                            reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                              reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                       reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHLIBVERS\":                         reflect.ValueOf(syscall.ESHLIBVERS),\n\t\t\"ESHUTDOWN\":                          reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                    reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                             reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                              reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                             reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIME\":                              reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                          reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                       reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                            reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                             reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-9\", token.INT, 0)),\n\t\t\"EVFILT_MACHPORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-8\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"EVFILT_THREADMARKER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"EVFILT_VM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-12\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_DISPATCH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_OOBAND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_POLL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_RECEIPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                        reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                              reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                               reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                            reflect.ValueOf(syscall.Environ),\n\t\t\"Exchangedata\":                       reflect.ValueOf(syscall.Exchangedata),\n\t\t\"FD_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_ADDFILESIGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"F_ADDSIGS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"F_ALLOCATEALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_ALLOCATECONTIG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_CHKCLEAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"F_DUPFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"F_FLUSH_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"F_FREEZE_FS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"F_FULLFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"F_GETFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETLKPID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"F_GETNOSIGPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"F_GETOWN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETPATH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"F_GETPATH_MTMINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"F_GETPROTECTIONCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"F_GLOBAL_NOCACHE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"F_LOG2PHYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"F_LOG2PHYS_EXT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"F_MARKDEPENDENCY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"F_NOCACHE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"F_NODIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"F_OK\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_PATHPKG_CHECK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"F_PEOFPOSMODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_PREALLOCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"F_RDADVISE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"F_RDAHEAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"F_RDLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_READBOOTSTRAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"F_SETBACKINGSTORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"F_SETFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETNOSIGPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"F_SETOWN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETPROTECTIONCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"F_SETSIZE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"F_THAW_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"F_UNLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_VOLPOSMODE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRITEBOOTSTRAP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"F_WRLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                             reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                           reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                             reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                             reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                         reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                              reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                           reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                           reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                          reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                              reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                            reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                              reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                          reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                            reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                      reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getdtablesize\":                      reflect.ValueOf(syscall.Getdtablesize),\n\t\t\"Getegid\":                            reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                             reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                            reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                          reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                             reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                          reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                        reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                        reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                            reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                            reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                             reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                            reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                        reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                          reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                          reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                             reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                        reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                     reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":             reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                   reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":              reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                 reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":                reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                      reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                       reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                             reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                              reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ALTPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                           reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_CARP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CELLULAR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_DS3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_ENC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_GIF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                       reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                         reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PDP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PPP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_RS232\":                          reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_T1\":                             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_V35\":                            reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_X25\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LINKLOCALNETNUM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2851995648\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IPPROTO_3PC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPPROTO_ADFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_AHIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPPROTO_APES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IPPROTO_ARGUS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPPROTO_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IPPROTO_BHA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPPROTO_BLT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPPROTO_BRSATMON\":                   reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPPROTO_CFTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPPROTO_CHAOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPPROTO_CMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPPROTO_CPHB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPPROTO_CPNX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPPROTO_DDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPPROTO_DGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EMCON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HMP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IDPR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPPROTO_IDRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IPPROTO_IGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IPPROTO_IL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPPROTO_INLSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_INP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IPPROTO_IPEIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IRTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPPROTO_KRYPTOLAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPPROTO_LARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MEAS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPPROTO_MHRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPPROTO_MICP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_MUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NHRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_NSP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_NVPII\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPPROTO_OSPFIGP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PGM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IPPROTO_PIGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PRM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_PVP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_RCCMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPPROTO_RDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_RVD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPPROTO_SATEXPAK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPPROTO_SATMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IPPROTO_SCCSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_SDRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPPROTO_SEP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_SRPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IPPROTO_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPPROTO_SVMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IPPROTO_SWIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPPROTO_TCF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_TPXX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPPROTO_TTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VINES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_VISA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPPROTO_VMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IPPROTO_WBEXPAK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IPPROTO_WBMON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPPROTO_WSN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPPROTO_XNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPPROTO_XTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_2292NEXTHOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_BINDV6ONLY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_BOUND_IF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_FW_ADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_FW_DEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_FW_FLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_FW_GET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_FW_ZERO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXOPTHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MAX_GROUP_SRC_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IPV6_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IPV6_MAX_SOCK_SRC_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IPV6_MIN_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IP_BOUND_IF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_CONFIGURE\":              reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_FLUSH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_GET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IP_FAITH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_FW_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FW_DEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_FW_FLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IP_FW_GET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IP_FW_RESETLOG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IP_FW_ZERO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_GROUP_SRC_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_MUTE_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_SRC_FILTER\":             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IP_MSS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IFINDEX\":               reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_VIF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_NAT__XXX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OLD_FW_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_OLD_FW_DEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IP_OLD_FW_FLUSH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IP_OLD_FW_GET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IP_OLD_FW_RESETLOG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IP_OLD_FW_ZERO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVPKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RSVP_OFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_RSVP_ON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_OFF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_ON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_STRIPHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_TOS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TRAFFIC_MGT_BACKGROUND\":          reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_TTL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"ISIG\":                               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUTF8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                    reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                          reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                             reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                             reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                             reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                               reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                             reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                              reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_CAN_REUSE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_FREE_REUSABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_FREE_REUSE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MADV_ZERO_WIRED_PAGES\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MAP_ANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_JIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_NOCACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_NOEXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_RESERVED0080\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_EOR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_FLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_HAVEMORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_HOLD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_NEEDSA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MSG_OOB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_RCVMORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_SEND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_WAITSTREAM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_DEACTIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_KILLPAGES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"Mkdir\":                              reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                             reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                              reflect.ValueOf(syscall.Mknod),\n\t\t\"Mlock\":                              reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                           reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                               reflect.ValueOf(syscall.Mmap),\n\t\t\"Mprotect\":                           reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                            reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                         reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                             reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_DUMP2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NET_RT_STAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_TRASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NOFLSH\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ABSOLUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXITSTATUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FFAND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_FFCOPY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFLAGSMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"NOTE_FFNOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NOTE_FFOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_NONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"NOTE_NSECONDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1048576\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_REAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_RESOURCEEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_SECONDS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_SIGNAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRIGGER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"NOTE_USECONDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_VM_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE_SUDDEN_TERMINATE\":  reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE_TERMINATE\":         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NsecToTimespec\":                     reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                      reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OFDEL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"OFILL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ONLCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_ALERT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"O_APPEND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_CREAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_DSYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_EVTONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_EXCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_POPUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"O_RDONLY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYMLINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_SYNC\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                               reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_ATTACH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PT_ATTACHEXC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PT_CONTINUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PT_DENY_ATTACH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PT_DETACH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PT_FIRSTMACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PT_FORCEQUOTA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PT_KILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PT_READ_D\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PT_READ_I\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PT_READ_U\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PT_SIGEXC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PT_STEP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PT_THUPDATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PT_TRACE_ME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_WRITE_D\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PT_WRITE_I\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PT_WRITE_U\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ParseDirent\":                        reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":                reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":               reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":          reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                    reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                           reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                               reflect.ValueOf(syscall.Pipe),\n\t\t\"Pread\":                              reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                             reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_CONDEMNED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_DELCLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_DONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_IFREF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_IFSCOPE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PRCLONING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WASCLONED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DELMADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_GET2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_IFINFO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                               reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                         reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                           reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                           reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                            reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                             reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                             reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                              reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                           reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_CREDS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP_MONOTONIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SHUT_RD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                            reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                            reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                             reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                            reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                            reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                             reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                             reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                             reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                             reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                            reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                             reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                              reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                             reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                            reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                            reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                            reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                            reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                            reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                            reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                             reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                            reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                            reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                            reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                            reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                            reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                             reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                            reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                            reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                          reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                           reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                            reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                            reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2165860637\", token.INT, 0)),\n\t\t\"SIOCARPIPLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349544\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCAUTOADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349542\", token.INT, 0)),\n\t\t\"SIOCAUTONETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607719\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607745\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2165860639\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223873915\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222565404\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222565403\", token.INT, 0)),\n\t\t\"SIOCGETVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349631\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFALTMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFASYNCMAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCGIFBOND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349595\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3222038820\", token.INT, 0)),\n\t\t\"SIOCGIFDEVMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349572\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFKPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349639\", token.INT, 0)),\n\t\t\"SIOCGIFMAC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349634\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3224135992\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349555\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349568\", token.INT, 0)),\n\t\t\"SIOCGIFPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349567\", token.INT, 0)),\n\t\t\"SIOCGIFSTATUS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3274795325\", token.INT, 0)),\n\t\t\"SIOCGIFVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349631\", token.INT, 0)),\n\t\t\"SIOCGIFWAKEFLAGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349640\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3239602462\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3239602499\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349624\", token.INT, 0)),\n\t\t\"SIOCIFCREATE2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349626\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCRSLVMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222300987\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2150132091\", token.INT, 0)),\n\t\t\"SIOCSETVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607806\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFALTMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607749\", token.INT, 0)),\n\t\t\"SIOCSIFASYNCMAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607805\", token.INT, 0)),\n\t\t\"SIOCSIFBOND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607750\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607770\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFKPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607814\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607740\", token.INT, 0)),\n\t\t\"SIOCSIFMAC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607811\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607732\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2151704894\", token.INT, 0)),\n\t\t\"SIOCSIFPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607734\", token.INT, 0)),\n\t\t\"SIOCSIFVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607806\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2165860674\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_MAXADDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_DONTTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_ERROR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LABEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SO_LINGER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LINGER_SEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4224\", token.INT, 0)),\n\t\t\"SO_NKE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"SO_NOADDRERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4131\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"SO_NOTIFYCONFLICT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4134\", token.INT, 0)),\n\t\t\"SO_NP_EXTENSIONS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4227\", token.INT, 0)),\n\t\t\"SO_NREAD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4128\", token.INT, 0)),\n\t\t\"SO_NWRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4132\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERLABEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_RANDOMPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4226\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_RESTRICTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4225\", token.INT, 0)),\n\t\t\"SO_RESTRICT_DENYIN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_RESTRICT_DENYOUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_RESTRICT_DENYSET\":                reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_REUSESHAREUID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4133\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP_MONOTONIC\":             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_TYPE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_UPCALLCLOSEWAIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4135\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_WANTMORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_WANTOOBFLAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"404\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCESS_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADD_PROFIL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_AIO_CANCEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_AIO_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_AIO_FSYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_AIO_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_AIO_RETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND_NOCANCEL\":           reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_AIO_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_ATGETMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_ATPGETREQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_ATPGETRSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_ATPSNDREQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_ATPSNDRSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_ATPUTMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_ATSOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_AUDIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_AUDITCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"359\", token.INT, 0)),\n\t\t\"SYS_AUDITON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_JOIN\":             reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_PORT\":             reflect.ValueOf(constant.MakeFromLiteral(\"432\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_SELF\":             reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS_BIND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_REGISTER\":             reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_TERMINATE\":            reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHMOD_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CHUD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSE_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"399\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_CONNECT_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"409\", token.INT, 0)),\n\t\t\"SYS_COPYFILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_CSOPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_DUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EXCHANGEDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMOD_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FCNTL_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"406\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_FFSCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_FGETATTRLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_FILEPORT_MAKEFD\":                reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS_FILEPORT_MAKEPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_FSCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_FSETATTRLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_FSGETPATH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_FSTAT64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_FSTAT64_EXTENDED\":               reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_FSTATV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_FSTAT_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FSYNC_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"408\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_GETATTRLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT_ADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_GETAUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES64\":                reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIESATTR\":              reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_GETDTABLESIZE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETHOSTUUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_GETLCID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"395\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_GETSGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETWGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_IDENTITYSVC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_INITGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPOLICYSYS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_KDEBUG_TRACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_KEVENT64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_KILL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LIO_LISTIO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_LSTAT64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_LSTAT64_EXTENDED\":               reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_LSTATV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_LSTAT_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MAXSYSCALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKCOMPLEX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIR_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFO_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MODWATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_MSGRCV_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"419\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_MSGSND_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"418\", token.INT, 0)),\n\t\t\"SYS_MSGSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_MSYNC_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"405\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NFSCLNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_NFSSVC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPEN_EXTENDED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_OPEN_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"398\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PID_HIBERNATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS_PID_RESUME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS_PID_SHUTDOWN_SOCKETS\":           reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_PID_SUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"433\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_POLL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_POLL_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_POSIX_SPAWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_PREAD_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_PROCESS_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_PROC_INFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVBROAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVCLRPREPOST\":            reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVSIGNAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_MUTEXDROP\":               reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_MUTEXWAIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_DOWNGRADE\":            reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_LONGRDLOCK\":           reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_RDLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UNLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UNLOCK2\":              reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UPGRADE\":              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_WRLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_YIELDWRLOCK\":          reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_PWRITE_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_READ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_READV_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS_READ_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"396\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVFROM_NOCANCEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"403\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RECVMSG_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"401\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SEARCHFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_SELECT_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"407\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_SEMSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_SEM_CLOSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_SEM_DESTROY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_SEM_GETVALUE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_SEM_INIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_SEM_OPEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_SEM_POST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_SEM_TRYWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_SEM_UNLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_SEM_WAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_SEM_WAIT_NOCANCEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"420\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDMSG_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"402\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SENDTO_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_SETATTRLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT_ADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_SETAUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SETLCID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETPRIVEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_SETTID_WITH_PID\":                reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETWGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_SHARED_REGION_CHECK_NP\":         reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_SHARED_REGION_MAP_AND_SLIDE_NP\": reflect.ValueOf(constant.MakeFromLiteral(\"438\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_SHMSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_SHM_OPEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_SHM_UNLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND_NOCANCEL\":            reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_STACK_SNAPSHOT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_STAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_STAT64\":                         reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_STAT64_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_STATV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_STAT_EXTENDED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSCALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_THREAD_SELFID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMASK_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                         reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_VM_PRESSURE_MONITOR\":            reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WAIT4_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"400\", token.INT, 0)),\n\t\t\"SYS_WAITEVENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_WAITID_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_WATCHEVENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_WORKQ_KERNRETURN\":               reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_WORKQ_OPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_WRITEV_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_WRITE_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"397\", token.INT, 0)),\n\t\t\"SYS___DISABLE_THREADSIGNAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS___MAC_EXECVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"380\", token.INT, 0)),\n\t\t\"SYS___MAC_GETFSSTAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"388\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"382\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LCID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"391\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LCTX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"392\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_MOUNT\":                reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PROC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS___MAC_MOUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"389\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"383\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LCTX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"393\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_PROC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"387\", token.INT, 0)),\n\t\t\"SYS___MAC_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"381\", token.INT, 0)),\n\t\t\"SYS___OLD_SEMWAIT_SIGNAL\":           reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL\":  reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_CANCELED\":             reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_CHDIR\":                reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_FCHDIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_KILL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_MARKCANCEL\":           reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_SIGMASK\":              reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS___SEMWAIT_SIGNAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS___SEMWAIT_SIGNAL_NOCANCEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS___SIGWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS___SIGWAIT_NOCANCEL\":             reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_IEXEC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFWHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57344\", token.INT, 0)),\n\t\t\"S_IREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISTXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_ISUID\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                               reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                             reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                           reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                            reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                           reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                             reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                             reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                       reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                     reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                   reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                    reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                    reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                      reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                      reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                          reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                        reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                            reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                             reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                            reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                             reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                          reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                           reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                            reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                        reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setprivexec\":                        reflect.ValueOf(syscall.Setprivexec),\n\t\t\"Setregid\":                           reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                           reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                          reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                             reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                     reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":             reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                   reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                 reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":                reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                      reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                   reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                   reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                  reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                       reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                             reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfData\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                    reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                  reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":             reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                 reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":                reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                             reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                  reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                         reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                               reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                             reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                             reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                              reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                             reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                      reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                    reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                     reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                            reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                               reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                             reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                       reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CONNECTIONTIMEOUT\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MAXHLEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"TCP_MAXOLEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MINMSSOVERLOAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1000\", token.INT, 0)),\n\t\t\"TCP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOOPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_RXT_CONNDROPTIME\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TCP_RXT_FINDROP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDCDTIMESTAMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074820184\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCDSIMICROCODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536900693\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGDRAINWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033750\", token.INT, 0)),\n\t\t\"TIOCGETA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1078490131\", token.INT, 0)),\n\t\t\"TIOCGETD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCIXOFF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900736\", token.INT, 0)),\n\t\t\"TIOCIXON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900737\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGDTRWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074033754\", token.INT, 0)),\n\t\t\"TIOCMGET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033667\", token.INT, 0)),\n\t\t\"TIOCMODS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775492\", token.INT, 0)),\n\t\t\"TIOCMSDTRWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147775579\", token.INT, 0)),\n\t\t\"TIOCMSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTYGNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1082160211\", token.INT, 0)),\n\t\t\"TIOCPTYGRANT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536900692\", token.INT, 0)),\n\t\t\"TIOCPTYUNLK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536900690\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900707\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDRAINWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147775575\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2152231956\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2152231958\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2152231957\", token.INT, 0)),\n\t\t\"TIOCSETD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536900703\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCTIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074820185\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                     reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                      reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                           reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                              reflect.ValueOf(syscall.Umask),\n\t\t\"Undelete\":                           reflect.ValueOf(syscall.Undelete),\n\t\t\"UnixRights\":                         reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                             reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                            reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                           reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                             reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                         reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                             reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VT0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                                reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTDLY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTIME\":                              reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WORDSIZE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WUNTRACED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                              reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                              reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                        reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                       reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":                    reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                       reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfVersion\":                    reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                       reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":                    reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"Fbootstraptransfer_t\":          reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)),\n\t\t\"FdSet\":                         reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                       reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                          reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"Fstore_t\":                      reflect.ValueOf((*syscall.Fstore_t)(nil)),\n\t\t\"ICMPv6Filter\":                  reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                        reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":                   reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                      reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfData\":                        reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                      reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                     reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"IfmaMsghdr\":                    reflect.ValueOf((*syscall.IfmaMsghdr)(nil)),\n\t\t\"IfmaMsghdr2\":                   reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)),\n\t\t\"Inet4Pktinfo\":                  reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":                  reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":          reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceMessage\":              reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"InterfaceMulticastAddrMessage\": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)),\n\t\t\"Iovec\":                         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                      reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                        reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Log2phys_t\":                    reflect.ValueOf((*syscall.Log2phys_t)(nil)),\n\t\t\"Msghdr\":                        reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"Radvisory_t\":                   reflect.ValueOf((*syscall.Radvisory_t)(nil)),\n\t\t\"RawConn\":                       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                   reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":                reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":           reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":              reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":              reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":               reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":                  reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":                reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                     reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                      reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":              reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":                 reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":                 reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":          reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                      reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":                   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                       reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timeval32\":                     reflect.ValueOf((*syscall.Timeval32)(nil)),\n\t\t\"WaitStatus\":                    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_darwin_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_CCITT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_ECMA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_IPX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_ISO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_NATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_NDRV\":                            reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NS\":                              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PPP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_PUP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_RESERVED_36\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SIP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SNA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_SYSTEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_UNIX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_UTUN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"Accept\":                             reflect.ValueOf(syscall.Accept),\n\t\t\"Access\":                             reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                            reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                               reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                               reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                               reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B4800\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                                reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                               reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                                reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B9600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222028921\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020978\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147762808\", token.INT, 0)),\n\t\t\"BIOCSETF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762803\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                            reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                               reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                          reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                        reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                      reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                       reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                            reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                           reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                            reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                         reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                  reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":                reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                                reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                                reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                              reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                    reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                            reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                              reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                              reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                             reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                           reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                              reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                        reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                            reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                          reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                            reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":         reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AX25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CHDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                     reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":               reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":           reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_NULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAW\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DT_BLK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                                reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                               reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                              reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                             reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                         reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                      reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                       reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                             reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                           reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                              reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADARCH\":                           reflect.ValueOf(syscall.EBADARCH),\n\t\t\"EBADEXEC\":                           reflect.ValueOf(syscall.EBADEXEC),\n\t\t\"EBADF\":                              reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMACHO\":                          reflect.ValueOf(syscall.EBADMACHO),\n\t\t\"EBADMSG\":                            reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                            reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                              reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                          reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                             reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                       reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                       reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                         reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                            reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                       reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDEVERR\":                            reflect.ValueOf(syscall.EDEVERR),\n\t\t\"EDOM\":                               reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                             reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                             reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                             reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                              reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                             reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                          reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                       reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                              reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                             reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                        reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                              reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                             reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                                reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                            reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                             reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                              reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                              reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                             reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                             reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                           reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                          reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                       reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                          reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                           reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                          reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                        reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                             reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                            reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                            reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODATA\":                            reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                             reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                             reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                            reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                             reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                            reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                             reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                             reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPOLICY\":                          reflect.ValueOf(syscall.ENOPOLICY),\n\t\t\"ENOPROTOOPT\":                        reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                             reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                              reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                             reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                             reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                            reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                           reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                            reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                          reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":                    reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                           reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                            reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                             reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                              reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                         reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                          reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                         reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                              reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                       reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                              reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                           reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                       reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                      reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                       reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                             reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                    reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                         reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"EPWROFF\":                            reflect.ValueOf(syscall.EPWROFF),\n\t\t\"EQFULL\":                             reflect.ValueOf(syscall.EQFULL),\n\t\t\"ERANGE\":                             reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                            reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                              reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                       reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHLIBVERS\":                         reflect.ValueOf(syscall.ESHLIBVERS),\n\t\t\"ESHUTDOWN\":                          reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                    reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                             reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                              reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                             reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIME\":                              reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                          reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                       reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                            reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                             reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-9\", token.INT, 0)),\n\t\t\"EVFILT_MACHPORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-8\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EVFILT_THREADMARKER\":                reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"EVFILT_VM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-12\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_DISPATCH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_OOBAND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_POLL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_RECEIPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                        reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                              reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                               reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                            reflect.ValueOf(syscall.Environ),\n\t\t\"Exchangedata\":                       reflect.ValueOf(syscall.Exchangedata),\n\t\t\"FD_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_ADDFILESIGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"F_ADDSIGS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"F_ALLOCATEALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_ALLOCATECONTIG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_CHKCLEAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"F_DUPFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"F_FINDSIGS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"F_FLUSH_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"F_FREEZE_FS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"F_FULLFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"F_GETCODEDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"F_GETFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETLKPID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"F_GETNOSIGPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"F_GETOWN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETPATH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"F_GETPATH_MTMINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"F_GETPROTECTIONCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"F_GETPROTECTIONLEVEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"F_GLOBAL_NOCACHE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"F_LOG2PHYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"F_LOG2PHYS_EXT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"F_NOCACHE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"F_NODIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"F_OK\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_PATHPKG_CHECK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"F_PEOFPOSMODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_PREALLOCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"F_RDADVISE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"F_RDAHEAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"F_RDLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETBACKINGSTORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"F_SETFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETLKWTIMEOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SETNOSIGPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"F_SETOWN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETPROTECTIONCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"F_SETSIZE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"F_SINGLE_WRITER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"F_THAW_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"F_TRANSCODEKEY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"F_UNLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_VOLPOSMODE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                             reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                           reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                             reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                             reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                         reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                              reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                           reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                           reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                          reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                              reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                            reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                              reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                          reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                            reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                      reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getdtablesize\":                      reflect.ValueOf(syscall.Getdtablesize),\n\t\t\"Getegid\":                            reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                             reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                            reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                          reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                             reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                          reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                        reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                        reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                            reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                            reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                             reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                            reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                        reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                          reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                          reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                             reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                        reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                     reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":             reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                   reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":              reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                 reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":                reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                      reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                       reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                             reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                              reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ALTPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                           reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_CARP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CELLULAR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_DS3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_ENC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_GIF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                       reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                         reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PDP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PPP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_RS232\":                          reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_T1\":                             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_V35\":                            reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_X25\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LINKLOCALNETNUM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2851995648\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IPPROTO_3PC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPPROTO_ADFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_AHIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPPROTO_APES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IPPROTO_ARGUS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPPROTO_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IPPROTO_BHA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPPROTO_BLT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPPROTO_BRSATMON\":                   reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPPROTO_CFTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPPROTO_CHAOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPPROTO_CMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPPROTO_CPHB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPPROTO_CPNX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPPROTO_DDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPPROTO_DGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EMCON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HMP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IDPR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPPROTO_IDRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IPPROTO_IGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IPPROTO_IL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPPROTO_INLSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_INP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IPPROTO_IPEIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IRTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPPROTO_KRYPTOLAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPPROTO_LARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MEAS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPPROTO_MHRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPPROTO_MICP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_MUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NHRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_NSP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_NVPII\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPPROTO_OSPFIGP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PGM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IPPROTO_PIGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PRM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_PVP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_RCCMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPPROTO_RDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_RVD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPPROTO_SATEXPAK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPPROTO_SATMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IPPROTO_SCCSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_SDRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPPROTO_SEP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_SRPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IPPROTO_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPPROTO_SVMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IPPROTO_SWIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPPROTO_TCF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_TPXX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPPROTO_TTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VINES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_VISA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPPROTO_VMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IPPROTO_WBEXPAK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IPPROTO_WBMON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPPROTO_WSN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPPROTO_XNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPPROTO_XTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_2292NEXTHOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_BINDV6ONLY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_BOUND_IF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_FW_ADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_FW_DEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_FW_FLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_FW_GET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_FW_ZERO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXOPTHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MAX_GROUP_SRC_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IPV6_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IPV6_MAX_SOCK_SRC_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IPV6_MIN_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IP_BOUND_IF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_CONFIGURE\":              reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_FLUSH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_GET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IP_FAITH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_FW_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FW_DEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_FW_FLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IP_FW_GET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IP_FW_RESETLOG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IP_FW_ZERO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_GROUP_SRC_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_MUTE_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_SRC_FILTER\":             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IP_MSS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IFINDEX\":               reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_VIF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_NAT__XXX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OLD_FW_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_OLD_FW_DEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IP_OLD_FW_FLUSH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IP_OLD_FW_GET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IP_OLD_FW_RESETLOG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IP_OLD_FW_ZERO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVPKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RSVP_OFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_RSVP_ON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_OFF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_ON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_STRIPHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_TOS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TRAFFIC_MGT_BACKGROUND\":          reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_TTL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"ISIG\":                               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUTF8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                    reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                          reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                             reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                             reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                             reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                               reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                             reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                              reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_CAN_REUSE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_FREE_REUSABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_FREE_REUSE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MADV_ZERO_WIRED_PAGES\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MAP_ANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_JIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_NOCACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_NOEXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_RESERVED0080\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_EOR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_FLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_HAVEMORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_HOLD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_NEEDSA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MSG_OOB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_RCVMORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_SEND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_WAITSTREAM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_DEACTIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_KILLPAGES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"Mkdir\":                              reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                             reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                              reflect.ValueOf(syscall.Mknod),\n\t\t\"Mlock\":                              reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                           reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                               reflect.ValueOf(syscall.Mmap),\n\t\t\"Mprotect\":                           reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                            reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                         reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                             reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_DUMP2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NET_RT_STAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_TRASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NOFLSH\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ABSOLUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_BACKGROUND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_CRITICAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXITSTATUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"NOTE_EXIT_CSERROR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"NOTE_EXIT_DECRYPTFAIL\":              reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"NOTE_EXIT_DETAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"NOTE_EXIT_DETAIL_MASK\":              reflect.ValueOf(constant.MakeFromLiteral(\"458752\", token.INT, 0)),\n\t\t\"NOTE_EXIT_MEMORY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"NOTE_EXIT_REPARENTED\":               reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FFAND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_FFCOPY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFLAGSMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"NOTE_FFNOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NOTE_FFOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LEEWAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_NONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"NOTE_NSECONDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1048576\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_REAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_SECONDS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_SIGNAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRIGGER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"NOTE_USECONDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_VM_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE_SUDDEN_TERMINATE\":  reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE_TERMINATE\":         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NsecToTimespec\":                     reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                      reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OFDEL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"OFILL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ONLCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_ALERT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"O_APPEND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_CREAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_DP_GETRAWENCRYPTED\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_DSYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_EVTONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_EXCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_POPUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"O_RDONLY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYMLINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_SYNC\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                               reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_ATTACH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PT_ATTACHEXC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PT_CONTINUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PT_DENY_ATTACH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PT_DETACH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PT_FIRSTMACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PT_FORCEQUOTA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PT_KILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PT_READ_D\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PT_READ_I\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PT_READ_U\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PT_SIGEXC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PT_STEP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PT_THUPDATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PT_TRACE_ME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_WRITE_D\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PT_WRITE_I\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PT_WRITE_U\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ParseDirent\":                        reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":                reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":               reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":          reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                    reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                           reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                               reflect.ValueOf(syscall.Pipe),\n\t\t\"Pread\":                              reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                             reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_CPU_USAGE_MONITOR\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_CONDEMNED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_DELCLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_DONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_IFREF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_IFSCOPE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PRCLONING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_PROXY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_ROUTER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WASCLONED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DELMADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_GET2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_IFINFO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                               reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                         reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                           reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                           reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                            reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                             reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                             reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                              reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                           reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_CREDS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP_MONOTONIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SHUT_RD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                            reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                            reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                             reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                            reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                            reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                             reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                             reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                             reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                             reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                            reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                             reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                              reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                             reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                            reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                            reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                            reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                            reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                            reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                            reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                             reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                            reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                            reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                            reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                            reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                            reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                             reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                            reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                            reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                          reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                           reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                            reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                            reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCARPIPLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349544\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCAUTOADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349542\", token.INT, 0)),\n\t\t\"SIOCAUTONETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607719\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607745\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223873915\", token.INT, 0)),\n\t\t\"SIOCGETVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349631\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFALTMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFASYNCMAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCGIFBOND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349595\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3222038820\", token.INT, 0)),\n\t\t\"SIOCGIFDEVMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349572\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFKPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349639\", token.INT, 0)),\n\t\t\"SIOCGIFMAC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349634\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3224135992\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349555\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349568\", token.INT, 0)),\n\t\t\"SIOCGIFPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349567\", token.INT, 0)),\n\t\t\"SIOCGIFSTATUS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3274795325\", token.INT, 0)),\n\t\t\"SIOCGIFVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349631\", token.INT, 0)),\n\t\t\"SIOCGIFWAKEFLAGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349640\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349624\", token.INT, 0)),\n\t\t\"SIOCIFCREATE2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349626\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222301057\", token.INT, 0)),\n\t\t\"SIOCRSLVMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222300987\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2150132091\", token.INT, 0)),\n\t\t\"SIOCSETVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607806\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFALTMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607749\", token.INT, 0)),\n\t\t\"SIOCSIFASYNCMAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607805\", token.INT, 0)),\n\t\t\"SIOCSIFBOND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607750\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607770\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFKPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607814\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607740\", token.INT, 0)),\n\t\t\"SIOCSIFMAC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607811\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607732\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2151704894\", token.INT, 0)),\n\t\t\"SIOCSIFPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607734\", token.INT, 0)),\n\t\t\"SIOCSIFVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607806\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_MAXADDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_DONTTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_ERROR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LABEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SO_LINGER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LINGER_SEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4224\", token.INT, 0)),\n\t\t\"SO_NKE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"SO_NOADDRERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4131\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"SO_NOTIFYCONFLICT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4134\", token.INT, 0)),\n\t\t\"SO_NP_EXTENSIONS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4227\", token.INT, 0)),\n\t\t\"SO_NREAD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4128\", token.INT, 0)),\n\t\t\"SO_NUMRCVPKT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4370\", token.INT, 0)),\n\t\t\"SO_NWRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4132\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERLABEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_RANDOMPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4226\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_REUSESHAREUID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4133\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP_MONOTONIC\":             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_TYPE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_UPCALLCLOSEWAIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4135\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_WANTMORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_WANTOOBFLAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"404\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCESS_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_AIO_CANCEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_AIO_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_AIO_FSYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_AIO_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_AIO_RETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND_NOCANCEL\":           reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_AIO_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_ATGETMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_ATPGETREQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_ATPGETRSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_ATPSNDREQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_ATPSNDRSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_ATPUTMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_ATSOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_AUDIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_AUDITCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"359\", token.INT, 0)),\n\t\t\"SYS_AUDITON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_JOIN\":             reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_PORT\":             reflect.ValueOf(constant.MakeFromLiteral(\"432\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_SELF\":             reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS_BIND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_REGISTER\":             reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_TERMINATE\":            reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHMOD_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CHUD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSE_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"399\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_CONNECT_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"409\", token.INT, 0)),\n\t\t\"SYS_COPYFILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_CSOPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_CSOPS_AUDITTOKEN\":               reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_DUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EXCHANGEDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMOD_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FCNTL_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"406\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_FFSCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_FGETATTRLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_FILEPORT_MAKEFD\":                reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS_FILEPORT_MAKEPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_FSCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_FSETATTRLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_FSGETPATH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_FSTAT64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_FSTAT64_EXTENDED\":               reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_FSTAT_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FSYNC_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"408\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_GETATTRLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT_ADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_GETAUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES64\":                reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIESATTR\":              reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_GETDTABLESIZE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETHOSTUUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_GETLCID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"395\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_GETSGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETWGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_IDENTITYSVC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_INITGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPOLICYSYS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_KAS_INFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_KDEBUG_TRACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_KEVENT64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_KILL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_LEDGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"373\", token.INT, 0)),\n\t\t\"SYS_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LIO_LISTIO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_LSTAT64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_LSTAT64_EXTENDED\":               reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_LSTAT_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MAXSYSCALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"440\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIR_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFO_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MODWATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_MSGRCV_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"419\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_MSGSND_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"418\", token.INT, 0)),\n\t\t\"SYS_MSGSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_MSYNC_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"405\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NFSCLNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_NFSSVC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPEN_DPROTECTED_NP\":             reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_OPEN_EXTENDED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_OPEN_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"398\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PID_HIBERNATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS_PID_RESUME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS_PID_SHUTDOWN_SOCKETS\":           reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_PID_SUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"433\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_POLL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_POLL_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_POSIX_SPAWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_PREAD_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_PROCESS_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_PROC_INFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVBROAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVCLRPREPOST\":            reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVSIGNAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_MUTEXDROP\":               reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_MUTEXWAIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_DOWNGRADE\":            reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_LONGRDLOCK\":           reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_RDLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UNLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UNLOCK2\":              reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UPGRADE\":              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_WRLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_YIELDWRLOCK\":          reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_PWRITE_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_READ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_READV_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS_READ_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"396\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVFROM_NOCANCEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"403\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RECVMSG_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"401\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SEARCHFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_SELECT_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"407\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_SEMSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_SEM_CLOSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_SEM_DESTROY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_SEM_GETVALUE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_SEM_INIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_SEM_OPEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_SEM_POST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_SEM_TRYWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_SEM_UNLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_SEM_WAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_SEM_WAIT_NOCANCEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"420\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDMSG_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"402\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SENDTO_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_SETATTRLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT_ADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_SETAUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SETLCID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETPRIVEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_SETTID_WITH_PID\":                reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETWGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_SHARED_REGION_CHECK_NP\":         reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_SHARED_REGION_MAP_AND_SLIDE_NP\": reflect.ValueOf(constant.MakeFromLiteral(\"438\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_SHMSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_SHM_OPEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_SHM_UNLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND_NOCANCEL\":            reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_STACK_SNAPSHOT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_STAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_STAT64\":                         reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_STAT64_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_STAT_EXTENDED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSCALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_THREAD_SELFID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMASK_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                         reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_VM_PRESSURE_MONITOR\":            reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WAIT4_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"400\", token.INT, 0)),\n\t\t\"SYS_WAITEVENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_WAITID_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_WATCHEVENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_WORKQ_KERNRETURN\":               reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_WORKQ_OPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_WRITEV_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_WRITE_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"397\", token.INT, 0)),\n\t\t\"SYS___DISABLE_THREADSIGNAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS___MAC_EXECVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"380\", token.INT, 0)),\n\t\t\"SYS___MAC_GETFSSTAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"388\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"382\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LCID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"391\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LCTX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"392\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_MOUNT\":                reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PROC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS___MAC_MOUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"389\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"383\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LCTX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"393\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_PROC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"387\", token.INT, 0)),\n\t\t\"SYS___MAC_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"381\", token.INT, 0)),\n\t\t\"SYS___OLD_SEMWAIT_SIGNAL\":           reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL\":  reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_CANCELED\":             reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_CHDIR\":                reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_FCHDIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_KILL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_MARKCANCEL\":           reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_SIGMASK\":              reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS___SEMWAIT_SIGNAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS___SEMWAIT_SIGNAL_NOCANCEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS___SIGWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS___SIGWAIT_NOCANCEL\":             reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_IEXEC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFWHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57344\", token.INT, 0)),\n\t\t\"S_IREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISTXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_ISUID\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                               reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                             reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                           reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                            reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                           reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                             reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                             reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                       reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                     reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                   reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                    reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                    reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                      reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                      reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                          reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                        reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                            reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                             reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                            reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                             reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                          reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                           reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                            reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                        reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setprivexec\":                        reflect.ValueOf(syscall.Setprivexec),\n\t\t\"Setregid\":                           reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                           reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                          reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                             reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                     reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":             reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                   reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                 reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":                reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                      reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                   reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                   reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                  reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                       reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                             reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfData\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                    reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                  reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":             reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                 reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":                reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                             reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                  reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                         reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                               reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                             reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                             reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                              reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                             reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                      reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                    reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                     reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                            reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                               reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                             reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                       reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CONNECTIONTIMEOUT\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_ENABLE_ECN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"TCP_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"TCP_MAXHLEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"TCP_MAXOLEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOOPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_NOTSENT_LOWAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"TCP_RXT_CONNDROPTIME\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TCP_RXT_FINDROP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCP_SENDMOREACKS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDCDTIMESTAMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074820184\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCDSIMICROCODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536900693\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGDRAINWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033750\", token.INT, 0)),\n\t\t\"TIOCGETA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1078490131\", token.INT, 0)),\n\t\t\"TIOCGETD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCIXOFF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900736\", token.INT, 0)),\n\t\t\"TIOCIXON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900737\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGDTRWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074033754\", token.INT, 0)),\n\t\t\"TIOCMGET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033667\", token.INT, 0)),\n\t\t\"TIOCMODS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775492\", token.INT, 0)),\n\t\t\"TIOCMSDTRWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147775579\", token.INT, 0)),\n\t\t\"TIOCMSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTYGNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1082160211\", token.INT, 0)),\n\t\t\"TIOCPTYGRANT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536900692\", token.INT, 0)),\n\t\t\"TIOCPTYUNLK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536900690\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900707\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDRAINWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147775575\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2152231956\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2152231958\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2152231957\", token.INT, 0)),\n\t\t\"TIOCSETD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536900703\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCTIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074820185\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                     reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                      reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                           reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                              reflect.ValueOf(syscall.Umask),\n\t\t\"Undelete\":                           reflect.ValueOf(syscall.Undelete),\n\t\t\"UnixRights\":                         reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                             reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                            reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                           reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                             reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                         reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                             reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VT0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                                reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTDLY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTIME\":                              reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WORDSIZE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WUNTRACED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                              reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                              reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                        reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                       reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":                    reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                       reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfVersion\":                    reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                       reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":                    reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"Fbootstraptransfer_t\":          reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)),\n\t\t\"FdSet\":                         reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                       reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                          reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"Fstore_t\":                      reflect.ValueOf((*syscall.Fstore_t)(nil)),\n\t\t\"ICMPv6Filter\":                  reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                        reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":                   reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                      reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfData\":                        reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                      reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                     reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"IfmaMsghdr\":                    reflect.ValueOf((*syscall.IfmaMsghdr)(nil)),\n\t\t\"IfmaMsghdr2\":                   reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)),\n\t\t\"Inet4Pktinfo\":                  reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":                  reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":          reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceMessage\":              reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"InterfaceMulticastAddrMessage\": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)),\n\t\t\"Iovec\":                         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                      reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                        reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Log2phys_t\":                    reflect.ValueOf((*syscall.Log2phys_t)(nil)),\n\t\t\"Msghdr\":                        reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"Radvisory_t\":                   reflect.ValueOf((*syscall.Radvisory_t)(nil)),\n\t\t\"RawConn\":                       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                   reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":                reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":           reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":              reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":              reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":               reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":                  reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":                reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                     reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                      reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":              reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":                 reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":                 reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":          reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                      reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":                   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                       reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timeval32\":                     reflect.ValueOf((*syscall.Timeval32)(nil)),\n\t\t\"WaitStatus\":                    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_dragonfly_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_ATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_MPLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_NETGRAPH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_NS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222291065\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020978\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887930\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762808\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSETWF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148549243\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147762803\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DEFAULTBUFSIZE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MAX_CLONES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_A429\":                          reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"DLT_A653_ICM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"DLT_AIRONET_HEADER\":                reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_AX25_KISS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4\":              reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4_WITH_PHDR\":    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"DLT_CAN20B\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FLEXRAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_FRELAY_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                         reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                         reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":          reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_LINUX\":            reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NONASK_PHY\":       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS_RADIO\":      reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"DLT_IPFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"DLT_IPMB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"DLT_IPMB_LINUX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ISM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":               reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":              reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":             reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":              reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"DLT_LAPB_WITH_DIR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"DLT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"DLT_LIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MFR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"DLT_MOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAIF1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_REDBACK_SMARTEDGE\":             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"DLT_RIO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SITA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":             reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"DLT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"DLT_X2E_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"DLT_X2E_XORAYA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DBF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EASYNC\":                            reflect.ValueOf(syscall.EASYNC),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOOFUS\":                           reflect.ValueOf(syscall.EDOOFUS),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                         reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUNUSED94\":                         reflect.ValueOf(syscall.EUNUSED94),\n\t\t\"EUNUSED95\":                         reflect.ValueOf(syscall.EUNUSED95),\n\t\t\"EUNUSED96\":                         reflect.ValueOf(syscall.EUNUSED96),\n\t\t\"EUNUSED97\":                         reflect.ValueOf(syscall.EUNUSED97),\n\t\t\"EUNUSED98\":                         reflect.ValueOf(syscall.EUNUSED98),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_EXCEPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-8\", token.INT, 0)),\n\t\t\"EVFILT_MARKER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_NODATA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTEXIT_LWP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"EXTEXIT_PROC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EXTEXIT_SETINT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EXTEXIT_SIMPLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_DUP2FD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUP2FD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getdtablesize\":                     reflect.ValueOf(syscall.Getdtablesize),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                         reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ALTPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1150578\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MONITOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NPOLLING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_OACTIVE_COMPAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_POLLING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_POLLING_COMPAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_PPROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SMART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_STATICARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IPPROTO_3PC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPPROTO_ADFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_AHIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPPROTO_APES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IPPROTO_ARGUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPPROTO_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IPPROTO_BHA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPPROTO_BLT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPPROTO_BRSATMON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_CFTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPPROTO_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPPROTO_CMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPPROTO_CPHB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPPROTO_CPNX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPPROTO_DDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPPROTO_DGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EMCON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IDPR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPPROTO_IDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IPPROTO_IGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IPPROTO_IL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPPROTO_INLSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_INP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPCV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IPPROTO_IPEIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IRTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPPROTO_KRYPTOLAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPPROTO_LARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MEAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPPROTO_MHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPPROTO_MICP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_MUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_NSP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_NVPII\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPPROTO_OSPFIGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PGM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IPPROTO_PIGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PRM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_PVP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_RCCMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPPROTO_RDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_RVD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPPROTO_SATEXPAK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPPROTO_SATMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IPPROTO_SCCSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_SDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPPROTO_SEP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPPROTO_SRPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IPPROTO_ST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPPROTO_SVMTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IPPROTO_SWIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPPROTO_TCF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TLSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_TPXX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPPROTO_TTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UNKNOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"IPPROTO_VINES\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_VISA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPPROTO_VMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IPPROTO_WBEXPAK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IPPROTO_WBMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPPROTO_WSN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPPROTO_XNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPPROTO_XTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_BINDV6ONLY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_FW_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_FW_DEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_FW_FLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_FW_GET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_FW_ZERO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MSFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PKTOPTIONS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PREFER_TEMPADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_CONFIGURE\":             reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IP_FAITH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_FW_ADD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_FW_DEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IP_FW_FLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IP_FW_GET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IP_FW_RESETLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IP_FW_ZERO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_VIF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RSVP_OFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_RSVP_ON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_OFF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_ON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_AUTOSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_CONTROL_END\":                  reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_CONTROL_START\":                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_CORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_INVAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_NOCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_NOSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_SETMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_INHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_NOCORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_NOEXTEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_NOSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_SIZEALIGN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_TRYFIXED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_VPAGETABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_FBLOCKING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MSG_FMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MSG_FNONBLOCKING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_NOTIFICATION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FAPPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_FASYNCWRITE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"O_FBLOCKING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_FBUFFERED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"O_FMASK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133955584\", token.INT, 0)),\n\t\t\"O_FNONBLOCKING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_FOFFSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNCWRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_FUNBUFFERED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_MAPONREAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_MPLS1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_MPLS2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_MPLS3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_MPLS1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTA_MPLS2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTA_MPLS3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MPLSOPS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PRCLONING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WASCLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DELMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_IWCAPSEGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTV_IWMAXSEGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTV_MSL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_CREDS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCKPT\":                           reflect.ValueOf(syscall.SIGCKPT),\n\t\t\"SIGCKPTEXIT\":                       reflect.ValueOf(syscall.SIGCKPTEXIT),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHR\":                            reflect.ValueOf(syscall.SIGTHR),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151707146\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860635\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151707147\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607753\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860637\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873915\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223351824\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223876111\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349535\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222300964\", token.INT, 0)),\n\t\t\"SIOCGIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349542\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFGMEMB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873930\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349536\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3224398136\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349555\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCGIFPOLLCPU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349630\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFSTATUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3274795323\", token.INT, 0)),\n\t\t\"SIOCGIFTSOLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349632\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3239602460\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3239602507\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_0\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349584\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349585\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349626\", token.INT, 0)),\n\t\t\"SIOCIFCREATE2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222301048\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132091\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607710\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607740\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607732\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607720\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607734\", token.INT, 0)),\n\t\t\"SIOCSIFPOLLCPU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607805\", token.INT, 0)),\n\t\t\"SIOCSIFTSOLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607807\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2165860682\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_MAXADDRLEN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ACCEPTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDSPACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"541\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_AIO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_AIO_ERROR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_AIO_READ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_AIO_RETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_AIO_WAITCOMPLETE\":              reflect.ValueOf(constant.MakeFromLiteral(\"359\", token.INT, 0)),\n\t\t\"SYS_AIO_WRITE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CHROOT_KERNEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"522\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSEFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"474\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"532\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXEC_SYS_REGISTER\":             reflect.ValueOf(constant.MakeFromLiteral(\"465\", token.INT, 0)),\n\t\t\"SYS_EXEC_SYS_UNREGISTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"466\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXTACCEPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"482\", token.INT, 0)),\n\t\t\"SYS_EXTATTRCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_EXTCONNECT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"483\", token.INT, 0)),\n\t\t\"SYS_EXTEXIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"494\", token.INT, 0)),\n\t\t\"SYS_EXTPREAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_EXTPREADV\":                     reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_EXTPWRITE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_EXTPWRITEV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"509\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"506\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"507\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"478\", token.INT, 0)),\n\t\t\"SYS_FHSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_FHSTATVFS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"502\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"476\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"505\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_FSTATVFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"501\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"480\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"479\", token.INT, 0)),\n\t\t\"SYS_GETDOMAINNAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_GETDTABLESIZE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETVFSSTAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"503\", token.INT, 0)),\n\t\t\"SYS_GET_TLS_AREA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"473\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"521\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"520\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_JAIL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_JAIL_ATTACH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"471\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KLDFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_KLDFIRSTMOD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_KLDLOAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_KLDNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_KLDSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_KLDSYM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"391\", token.INT, 0)),\n\t\t\"SYS_LCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"531\", token.INT, 0)),\n\t\t\"SYS_LIO_LISTIO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"533\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"477\", token.INT, 0)),\n\t\t\"SYS_LUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_LWP_CREATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"495\", token.INT, 0)),\n\t\t\"SYS_LWP_GETTID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"496\", token.INT, 0)),\n\t\t\"SYS_LWP_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"497\", token.INT, 0)),\n\t\t\"SYS_LWP_RTPRIO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"498\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MCONTROL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"485\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"525\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"526\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MODFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_MODFNEXT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_MODNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_MODSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MOUNTCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"468\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MQ_CLOSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"511\", token.INT, 0)),\n\t\t\"SYS_MQ_GETATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"515\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"510\", token.INT, 0)),\n\t\t\"SYS_MQ_RECEIVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"SYS_MQ_SEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"SYS_MQ_SETATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"514\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":               reflect.ValueOf(constant.MakeFromLiteral(\"519\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_NTP_ADJTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_OBREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"504\", token.INT, 0)),\n\t\t\"SYS_OPENBSD_POLL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"538\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"499\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"527\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"523\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_RTPRIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_SBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":        reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":        reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_SCTP_PEELOFF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"393\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SET_TLS_AREA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"472\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_SIGTIMEDWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_SIGWAITINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SSTK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_STAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"475\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_STATVFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"500\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"529\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"528\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_SYS_CHECKPOINT\":                reflect.ValueOf(constant.MakeFromLiteral(\"467\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMTX_SLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"469\", token.INT, 0)),\n\t\t\"SYS_UMTX_WAKEUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"470\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"508\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_USCHED_SET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"481\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"539\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_UUIDGEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"392\", token.INT, 0)),\n\t\t\"SYS_VARSYM_GET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"SYS_VARSYM_LIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"452\", token.INT, 0)),\n\t\t\"SYS_VARSYM_SET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_VMM_GUEST_CTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"534\", token.INT, 0)),\n\t\t\"SYS_VMM_GUEST_SYNC_ADDR\":           reflect.ValueOf(constant.MakeFromLiteral(\"535\", token.INT, 0)),\n\t\t\"SYS_VMSPACE_CREATE\":                reflect.ValueOf(constant.MakeFromLiteral(\"486\", token.INT, 0)),\n\t\t\"SYS_VMSPACE_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"488\", token.INT, 0)),\n\t\t\"SYS_VMSPACE_DESTROY\":               reflect.ValueOf(constant.MakeFromLiteral(\"487\", token.INT, 0)),\n\t\t\"SYS_VMSPACE_MCONTROL\":              reflect.ValueOf(constant.MakeFromLiteral(\"491\", token.INT, 0)),\n\t\t\"SYS_VMSPACE_MMAP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"489\", token.INT, 0)),\n\t\t\"SYS_VMSPACE_MUNMAP\":                reflect.ValueOf(constant.MakeFromLiteral(\"490\", token.INT, 0)),\n\t\t\"SYS_VMSPACE_PREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"492\", token.INT, 0)),\n\t\t\"SYS_VMSPACE_PWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"493\", token.INT, 0)),\n\t\t\"SYS_VQUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"530\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WAIT6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"548\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_YIELD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                          reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_FASTKEEP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCP_KEEPINIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXHLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"TCP_MAXOLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCP_MIN_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOOPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_SIGNATURE_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDCDTIMESTAMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074820184\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033750\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCISPTMASTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536900693\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033754\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033667\", token.INT, 0)),\n\t\t\"TIOCMODS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775492\", token.INT, 0)),\n\t\t\"TIOCMSDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147775579\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147775575\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900703\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCTIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074820185\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"Undelete\":                          reflect.ValueOf(syscall.Undelete),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VCHECKPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VERASE2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"WLINUXCLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                        reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                       reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":                    reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                       reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfVersion\":                    reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                       reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":                    reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                         reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                       reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                          reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":                  reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                        reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":                   reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                      reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":              reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                        reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                      reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                     reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"IfmaMsghdr\":                    reflect.ValueOf((*syscall.IfmaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":                  reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":          reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\":      reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":              reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"InterfaceMulticastAddrMessage\": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)),\n\t\t\"Iovec\":                         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                      reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                        reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":                        reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                   reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":                reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":           reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":              reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":              reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":               reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":                  reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":                reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                     reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                      reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":              reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":                 reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":                 reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":          reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                      reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":                   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                       reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":                    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_freebsd_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_ARP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_ATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_INET6_SDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_INET_SDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NETGRAPH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SCLUSTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SLOW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VENDOR00\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_VENDOR01\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_VENDOR02\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"AF_VENDOR03\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"AF_VENDOR04\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"AF_VENDOR05\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"AF_VENDOR06\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"AF_VENDOR07\":                       reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"AF_VENDOR08\":                       reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"AF_VENDOR09\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"AF_VENDOR10\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"AF_VENDOR11\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"AF_VENDOR12\":                       reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"AF_VENDOR13\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"AF_VENDOR14\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"AF_VENDOR15\":                       reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"AF_VENDOR16\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"AF_VENDOR17\":                       reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"AF_VENDOR18\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"AF_VENDOR19\":                       reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"AF_VENDOR20\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"AF_VENDOR21\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"AF_VENDOR22\":                       reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"AF_VENDOR23\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"AF_VENDOR24\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"AF_VENDOR25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"AF_VENDOR26\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"AF_VENDOR27\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"AF_VENDOR28\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"AF_VENDOR29\":                       reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"AF_VENDOR30\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"AF_VENDOR31\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"AF_VENDOR32\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"AF_VENDOR33\":                       reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"AF_VENDOR34\":                       reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"AF_VENDOR35\":                       reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"AF_VENDOR36\":                       reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"AF_VENDOR37\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"AF_VENDOR38\":                       reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"AF_VENDOR39\":                       reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"AF_VENDOR40\":                       reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"AF_VENDOR41\":                       reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"AF_VENDOR42\":                       reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"AF_VENDOR43\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"AF_VENDOR44\":                       reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"AF_VENDOR45\":                       reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"AF_VENDOR46\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"AF_VENDOR47\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B460800\":                           reflect.ValueOf(constant.MakeFromLiteral(\"460800\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B921600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"921600\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFEEDBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762812\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDIRECTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3221766777\", token.INT, 0)),\n\t\t\"BIOCGETBUFMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074020989\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGETZMAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020991\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020978\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074283118\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCGTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020995\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887930\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCROTZBUF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074545280\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDIRECTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762808\", token.INT, 0)),\n\t\t\"BIOCSETBUFMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147762814\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148024935\", token.INT, 0)),\n\t\t\"BIOCSETFNR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148024962\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSETWF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148024955\", token.INT, 0)),\n\t\t\"BIOCSETZBUF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148287105\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147762803\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148024941\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCSTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147762820\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_BUFMODE_BUFFER\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_BUFMODE_ZBUF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_FAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_MONOTONIC\":           reflect.ValueOf(constant.MakeFromLiteral(\"514\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_MONOTONIC_FAST\":      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"BPF_T_FAST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"BPF_T_FLAG_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_FORMAT_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_FAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_MONOTONIC\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_MONOTONIC_FAST\":    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_MONOTONIC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_T_MONOTONIC_FAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_FAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_MONOTONIC\":          reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_MONOTONIC_FAST\":     reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"BPF_T_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_T_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_A429\":                          reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"DLT_A653_ICM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"DLT_AIRONET_HEADER\":                reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_AOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_AX25_KISS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4\":              reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4_WITH_PHDR\":    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"DLT_CAN20B\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"DLT_CAN_SOCKETCAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"DLT_DBUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"DLT_DECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_DVB_CI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FC_2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"DLT_FC_2_WITH_FRAME_DELIMS\":        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FLEXRAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_FRELAY_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                         reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                         reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_ABIS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_UM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":          reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_LINUX\":            reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NOFCS\":            reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NONASK_PHY\":       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS_RADIO\":      reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"DLT_IPFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"DLT_IPMB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"DLT_IPMB_LINUX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPOIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"DLT_IPV4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"DLT_IPV6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM_CEMIC\":             reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FIBRECHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ISM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":               reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":              reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":             reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":              reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SRX_E2E\":               reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"DLT_LAPB_WITH_DIR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"DLT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"DLT_LIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"DLT_LINUX_EVDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_PPP_WITHDIRECTION\":       reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MATCHING_MAX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"DLT_MATCHING_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_MFR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"DLT_MOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"DLT_MPEG_2_TS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_MUX27010\":                      reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"DLT_NETANALYZER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"DLT_NETANALYZER_TRANSPARENT\":       reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"DLT_NFC_LLCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"DLT_NFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"DLT_NG40\":                          reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_PPI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIRECTION\":            reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAIF1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RIO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SITA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_STANAG_5066_D_PDU\":             reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":             reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"DLT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX_MMAPPED\":             reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"DLT_USER0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"DLT_USER1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"DLT_USER10\":                        reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"DLT_USER11\":                        reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"DLT_USER12\":                        reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"DLT_USER13\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"DLT_USER14\":                        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"DLT_USER15\":                        reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"DLT_USER2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"DLT_USER3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"DLT_USER4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"DLT_USER5\":                         reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"DLT_USER6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"DLT_USER7\":                         reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"DLT_USER8\":                         reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"DLT_USER9\":                         reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"DLT_WIHART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"DLT_X2E_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"DLT_X2E_XORAYA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECAPMODE\":                          reflect.ValueOf(syscall.ECAPMODE),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOOFUS\":                           reflect.ValueOf(syscall.EDOOFUS),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCAPABLE\":                       reflect.ValueOf(syscall.ENOTCAPABLE),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":                   reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                        reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-9\", token.INT, 0)),\n\t\t\"EVFILT_LIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_USER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-11\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_DISPATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EV_DROP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_RECEIPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_CANCEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_DUP2FD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUP2FD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_OGETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_OSETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_OSETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_RDAHEAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_READAHEAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLK_REMOTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_UNLCKSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatat\":                           reflect.ValueOf(syscall.Fstatat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getdtablesize\":                     reflect.ValueOf(syscall.Getdtablesize),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                         reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                 reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ALTPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2199410\", token.INT, 0)),\n\t\t\"IFF_CANTCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DRV_OACTIVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DRV_RUNNING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_DYING\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MONITOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PPROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RENAMING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SMART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_STATICARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_IPXIP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_RFC3021_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4294967294\", token.INT, 0)),\n\t\t\"IPPROTO_3PC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPPROTO_ADFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_AHIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPPROTO_APES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IPPROTO_ARGUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPPROTO_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IPPROTO_BHA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPPROTO_BLT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPPROTO_BRSATMON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_CFTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPPROTO_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPPROTO_CMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPPROTO_CPHB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPPROTO_CPNX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPPROTO_DDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPPROTO_DGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EMCON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IDPR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPPROTO_IDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IPPROTO_IGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IPPROTO_IL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPPROTO_INLSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_INP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPCV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IPPROTO_IPEIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IRTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPPROTO_KRYPTOLAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPPROTO_LARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MEAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPPROTO_MICP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_MUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_NSP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_NVPII\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPPROTO_OLD_DIVERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"IPPROTO_OSPFIGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PGM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IPPROTO_PIGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PRM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_PVP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_RCCMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPPROTO_RDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_RVD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPPROTO_SATEXPAK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPPROTO_SATMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IPPROTO_SCCSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_SDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPPROTO_SEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"IPPROTO_SEP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPPROTO_SPACER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32767\", token.INT, 0)),\n\t\t\"IPPROTO_SRPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IPPROTO_ST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPPROTO_SVMTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IPPROTO_SWIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPPROTO_TCF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TLSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_TPXX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPPROTO_TTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VINES\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_VISA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPPROTO_VMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IPPROTO_WBEXPAK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IPPROTO_WBMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPPROTO_WSN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPPROTO_XNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPPROTO_XTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_BINDANY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_BINDV6ONLY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_FW_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_FW_DEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_FW_FLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_FW_GET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_FW_ZERO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXOPTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MAX_GROUP_SRC_FILTER\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IPV6_MAX_MEMBERSHIPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IPV6_MAX_SOCK_SRC_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IPV6_MIN_MEMBERSHIPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MSFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PREFER_TEMPADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IP_BINDANY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DONTFRAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IP_DUMMYNET3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_CONFIGURE\":             reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IP_FAITH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_FW3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IP_FW_ADD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_FW_DEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IP_FW_FLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IP_FW_GET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IP_FW_NAT_CFG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IP_FW_NAT_DEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IP_FW_NAT_GET_CONFIG\":              reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IP_FW_NAT_GET_LOG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IP_FW_RESETLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_ADD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_GETSIZE\":               reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_LIST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IP_FW_ZERO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_GROUP_SRC_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_MUTE_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_SRC_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOURCE_FILTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_VIF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_ONESBCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RSVP_OFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_RSVP_ON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_OFF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_ON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_SENDSRCADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_AUTOSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_CORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_NOCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_NOSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_PROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ALIGNED_SUPER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_SHIFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_NOCORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_NOSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_PREFAULT_READ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_RESERVED0080\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_RESERVED0100\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MSG_COMPAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_NBIO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MSG_NOTIFICATION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_IFLISTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NET_RT_IFMALIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FFAND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_FFCOPY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFCTRLMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFLAGSMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"NOTE_FFNOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NOTE_FFOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRIGGER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXEC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_TTY_INIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"268752904\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_GWFLAG_COMPAT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLDATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PRCLONING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_RNH_LOCKED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_STICKY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DELMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTV_WEIGHT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RT_CACHING_CONTEXT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RT_DEFAULT_FIB\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_NORTREF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_BINTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SCM_CREDS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGLIBRT\":                          reflect.ValueOf(syscall.SIGLIBRT),\n\t\t\"SIGLWP\":                            reflect.ValueOf(syscall.SIGLWP),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHR\":                            reflect.ValueOf(syscall.SIGTHR),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150658570\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCAIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149869959\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860635\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150658571\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149869961\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607753\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860637\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223087483\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222565392\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222565391\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349535\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221776676\", token.INT, 0)),\n\t\t\"SIOCGIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349546\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349596\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFGMEMB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223611786\", token.INT, 0)),\n\t\t\"SIOCGIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223611784\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349536\", token.INT, 0)),\n\t\t\"SIOCGIFMAC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349542\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873848\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349555\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFSTATUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3274795323\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3239602460\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3239602507\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_0\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349584\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349585\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349626\", token.INT, 0)),\n\t\t\"SIOCIFCREATE2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222038904\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149345659\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607710\", token.INT, 0)),\n\t\t\"SIOCSIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607721\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607773\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607740\", token.INT, 0)),\n\t\t\"SIOCSIFMAC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607719\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607732\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607720\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607734\", token.INT, 0)),\n\t\t\"SIOCSIFRVNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349595\", token.INT, 0)),\n\t\t\"SIOCSIFVNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349594\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2165860682\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_MAXADDRLEN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ACCEPTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BINTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LABEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LISTENINCQLEN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SO_LISTENQLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4114\", token.INT, 0)),\n\t\t\"SO_LISTENQLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_NO_DDP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SO_NO_OFFLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_PROTOTYPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SETFIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4116\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_USER_COOKIE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4117\", token.INT, 0)),\n\t\t\"SO_VENDOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"SYS_ABORT2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"463\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"541\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_AUDIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"445\", token.INT, 0)),\n\t\t\"SYS_AUDITCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"453\", token.INT, 0)),\n\t\t\"SYS_AUDITON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"446\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BINDAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"538\", token.INT, 0)),\n\t\t\"SYS_CAP_ENTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"SYS_CAP_GETMODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"SYS_CAP_GETRIGHTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"515\", token.INT, 0)),\n\t\t\"SYS_CAP_NEW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"514\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHFLAGSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"540\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETCPUCLOCKID2\":          reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSEFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"509\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_CONNECTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"539\", token.INT, 0)),\n\t\t\"SYS_CPUSET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"484\", token.INT, 0)),\n\t\t\"SYS_CPUSET_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"487\", token.INT, 0)),\n\t\t\"SYS_CPUSET_GETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"486\", token.INT, 0)),\n\t\t\"SYS_CPUSET_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"488\", token.INT, 0)),\n\t\t\"SYS_CPUSET_SETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"485\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXTATTRCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"373\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"437\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"438\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"489\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"490\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"491\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FEXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"492\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_GETCOUNTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_GETESTIMATE\":           reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_SETESTIMATE\":           reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_FHSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"398\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_FTRUNCATE\":            reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_LSEEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_MMAP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_PREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_PWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_TRUNCATE\":             reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"551\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"552\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"556\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"480\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"494\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"449\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"SYS_GETAUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"447\", token.INT, 0)),\n\t\t\"SYS_GETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"554\", token.INT, 0)),\n\t\t\"SYS_GETDTABLESIZE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"557\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETLOGINCLASS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"523\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_JAIL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_JAIL_ATTACH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_JAIL_GET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"506\", token.INT, 0)),\n\t\t\"SYS_JAIL_REMOVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"508\", token.INT, 0)),\n\t\t\"SYS_JAIL_SET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"507\", token.INT, 0)),\n\t\t\"SYS_KENV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KLDFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_KLDFIRSTMOD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_KLDLOAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_KLDNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_KLDSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_KLDSYM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOADF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"444\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_KTIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_KTIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_KTIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_KTIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_KTIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"391\", token.INT, 0)),\n\t\t\"SYS_LCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_LGETFH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"495\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"478\", token.INT, 0)),\n\t\t\"SYS_LUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_MAC_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"496\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"497\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"559\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"477\", token.INT, 0)),\n\t\t\"SYS_MODFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_MODFNEXT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_MODNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_MODSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_NFSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_NLSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_NMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"378\", token.INT, 0)),\n\t\t\"SYS_NSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_NTP_ADJTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_NTP_GETTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_OBREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"499\", token.INT, 0)),\n\t\t\"SYS_OPENBSD_POLL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_OVADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PDFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"SYS_PDGETPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"520\", token.INT, 0)),\n\t\t\"SYS_PDKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"519\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"542\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_POSIX_FADVISE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"531\", token.INT, 0)),\n\t\t\"SYS_POSIX_FALLOCATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"530\", token.INT, 0)),\n\t\t\"SYS_POSIX_OPENPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"504\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"475\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_PROCCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"544\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"522\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"476\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_RCTL_ADD_RULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"528\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_LIMITS\":               reflect.ValueOf(constant.MakeFromLiteral(\"527\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_RACCT\":                reflect.ValueOf(constant.MakeFromLiteral(\"525\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_RULES\":                reflect.ValueOf(constant.MakeFromLiteral(\"526\", token.INT, 0)),\n\t\t\"SYS_RCTL_REMOVE_RULE\":              reflect.ValueOf(constant.MakeFromLiteral(\"529\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"500\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"501\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_RTPRIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_RTPRIO_THREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"466\", token.INT, 0)),\n\t\t\"SYS_SBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":        reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":        reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_RECVMSG\":          reflect.ValueOf(constant.MakeFromLiteral(\"474\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_SENDMSG\":          reflect.ValueOf(constant.MakeFromLiteral(\"472\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_SENDMSG_IOV\":      reflect.ValueOf(constant.MakeFromLiteral(\"473\", token.INT, 0)),\n\t\t\"SYS_SCTP_PEELOFF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"471\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"393\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"452\", token.INT, 0)),\n\t\t\"SYS_SETAUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"SYS_SETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETLOGINCLASS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"524\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SHM_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"482\", token.INT, 0)),\n\t\t\"SYS_SHM_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"483\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_SIGQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"456\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_SIGTIMEDWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_SIGWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_SIGWAITINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SSTK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"555\", token.INT, 0)),\n\t\t\"SYS_SWAPCONTEXT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"502\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_THR_CREATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_THR_EXIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS_THR_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"433\", token.INT, 0)),\n\t\t\"SYS_THR_KILL2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"481\", token.INT, 0)),\n\t\t\"SYS_THR_NEW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"455\", token.INT, 0)),\n\t\t\"SYS_THR_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"432\", token.INT, 0)),\n\t\t\"SYS_THR_SET_NAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"464\", token.INT, 0)),\n\t\t\"SYS_THR_SUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"442\", token.INT, 0)),\n\t\t\"SYS_THR_WAKE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"443\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"479\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"503\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"547\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_UUIDGEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"392\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WAIT6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"532\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_YIELD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS__UMTX_LOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS__UMTX_OP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"454\", token.INT, 0)),\n\t\t\"SYS__UMTX_UNLOCK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS___MAC_EXECVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"387\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"409\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PROC\":                reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"388\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"389\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_PROC\":                reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS___SETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"374\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                          reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                 reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofBpfZbuf\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofBpfZbufHeader\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CA_NAME_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TCP_INFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCP_KEEPINIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXHLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"TCP_MAXOLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOOPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_VENDOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033750\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033679\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033754\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMSDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147775579\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DCD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTMASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900636\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147775575\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"537162847\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCTIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074295897\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"Undelete\":                          reflect.ValueOf(syscall.Undelete),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VERASE2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"WLINUXCLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WTRAPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                        reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                       reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":                    reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                       reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfVersion\":                    reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"BpfZbuf\":                       reflect.ValueOf((*syscall.BpfZbuf)(nil)),\n\t\t\"BpfZbufHeader\":                 reflect.ValueOf((*syscall.BpfZbufHeader)(nil)),\n\t\t\"Cmsghdr\":                       reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":                    reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                         reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                       reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                          reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":                  reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                        reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":                       reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":                   reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                      reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":              reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                        reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                      reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                     reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"IfmaMsghdr\":                    reflect.ValueOf((*syscall.IfmaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":                  reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":          reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\":      reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":              reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"InterfaceMulticastAddrMessage\": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)),\n\t\t\"Iovec\":                         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                      reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                        reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":                        reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                   reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":                reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":           reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":              reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":              reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":               reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":                  reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":                reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                     reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                      reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":              reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":                 reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":                 reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":          reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                      reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":                   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                       reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":                    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_freebsd_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_ARP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_ATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_INET6_SDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_INET_SDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NETGRAPH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SCLUSTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SLOW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VENDOR00\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_VENDOR01\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_VENDOR02\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"AF_VENDOR03\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"AF_VENDOR04\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"AF_VENDOR05\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"AF_VENDOR06\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"AF_VENDOR07\":                       reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"AF_VENDOR08\":                       reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"AF_VENDOR09\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"AF_VENDOR10\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"AF_VENDOR11\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"AF_VENDOR12\":                       reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"AF_VENDOR13\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"AF_VENDOR14\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"AF_VENDOR15\":                       reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"AF_VENDOR16\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"AF_VENDOR17\":                       reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"AF_VENDOR18\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"AF_VENDOR19\":                       reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"AF_VENDOR20\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"AF_VENDOR21\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"AF_VENDOR22\":                       reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"AF_VENDOR23\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"AF_VENDOR24\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"AF_VENDOR25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"AF_VENDOR26\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"AF_VENDOR27\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"AF_VENDOR28\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"AF_VENDOR29\":                       reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"AF_VENDOR30\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"AF_VENDOR31\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"AF_VENDOR32\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"AF_VENDOR33\":                       reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"AF_VENDOR34\":                       reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"AF_VENDOR35\":                       reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"AF_VENDOR36\":                       reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"AF_VENDOR37\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"AF_VENDOR38\":                       reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"AF_VENDOR39\":                       reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"AF_VENDOR40\":                       reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"AF_VENDOR41\":                       reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"AF_VENDOR42\":                       reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"AF_VENDOR43\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"AF_VENDOR44\":                       reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"AF_VENDOR45\":                       reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"AF_VENDOR46\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"AF_VENDOR47\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B460800\":                           reflect.ValueOf(constant.MakeFromLiteral(\"460800\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B921600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"921600\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFEEDBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762812\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDIRECTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222291065\", token.INT, 0)),\n\t\t\"BIOCGETBUFMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074020989\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGETZMAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074283135\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020978\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCGTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020995\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887930\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCROTZBUF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1075331712\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDIRECTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762808\", token.INT, 0)),\n\t\t\"BIOCSETBUFMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147762814\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETFNR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148549250\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSETWF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148549243\", token.INT, 0)),\n\t\t\"BIOCSETZBUF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149073537\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147762803\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCSTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147762820\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_BUFMODE_BUFFER\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_BUFMODE_ZBUF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_FAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_MONOTONIC\":           reflect.ValueOf(constant.MakeFromLiteral(\"514\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_MONOTONIC_FAST\":      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"BPF_T_FAST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"BPF_T_FLAG_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_FORMAT_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_FAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_MONOTONIC\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_MONOTONIC_FAST\":    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_MONOTONIC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_T_MONOTONIC_FAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_FAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_MONOTONIC\":          reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_MONOTONIC_FAST\":     reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"BPF_T_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_T_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_A429\":                          reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"DLT_A653_ICM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"DLT_AIRONET_HEADER\":                reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_AOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_AX25_KISS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4\":              reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4_WITH_PHDR\":    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"DLT_CAN20B\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"DLT_CAN_SOCKETCAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"DLT_DBUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"DLT_DECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_DVB_CI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FC_2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"DLT_FC_2_WITH_FRAME_DELIMS\":        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FLEXRAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_FRELAY_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                         reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                         reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_ABIS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_UM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":          reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_LINUX\":            reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NOFCS\":            reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NONASK_PHY\":       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS_RADIO\":      reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"DLT_IPFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"DLT_IPMB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"DLT_IPMB_LINUX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPOIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"DLT_IPV4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"DLT_IPV6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM_CEMIC\":             reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FIBRECHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ISM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":               reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":              reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":             reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":              reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SRX_E2E\":               reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"DLT_LAPB_WITH_DIR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"DLT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"DLT_LIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"DLT_LINUX_EVDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_PPP_WITHDIRECTION\":       reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MATCHING_MAX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"DLT_MATCHING_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_MFR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"DLT_MOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"DLT_MPEG_2_TS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_MUX27010\":                      reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"DLT_NETANALYZER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"DLT_NETANALYZER_TRANSPARENT\":       reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"DLT_NFC_LLCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"DLT_NFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"DLT_NG40\":                          reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_PPI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIRECTION\":            reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAIF1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RIO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SITA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_STANAG_5066_D_PDU\":             reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":             reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"DLT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX_MMAPPED\":             reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"DLT_USER0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"DLT_USER1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"DLT_USER10\":                        reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"DLT_USER11\":                        reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"DLT_USER12\":                        reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"DLT_USER13\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"DLT_USER14\":                        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"DLT_USER15\":                        reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"DLT_USER2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"DLT_USER3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"DLT_USER4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"DLT_USER5\":                         reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"DLT_USER6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"DLT_USER7\":                         reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"DLT_USER8\":                         reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"DLT_USER9\":                         reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"DLT_WIHART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"DLT_X2E_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"DLT_X2E_XORAYA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECAPMODE\":                          reflect.ValueOf(syscall.ECAPMODE),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOOFUS\":                           reflect.ValueOf(syscall.EDOOFUS),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCAPABLE\":                       reflect.ValueOf(syscall.ENOTCAPABLE),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":                   reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                        reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-9\", token.INT, 0)),\n\t\t\"EVFILT_LIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_USER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-11\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_DISPATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EV_DROP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_RECEIPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_CANCEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_DUP2FD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUP2FD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_OGETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_OSETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_OSETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_RDAHEAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_READAHEAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLK_REMOTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_UNLCKSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatat\":                           reflect.ValueOf(syscall.Fstatat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getdtablesize\":                     reflect.ValueOf(syscall.Getdtablesize),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                         reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                 reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ALTPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2199410\", token.INT, 0)),\n\t\t\"IFF_CANTCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DRV_OACTIVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DRV_RUNNING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_DYING\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MONITOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PPROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RENAMING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SMART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_STATICARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_IPXIP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_RFC3021_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4294967294\", token.INT, 0)),\n\t\t\"IPPROTO_3PC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPPROTO_ADFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_AHIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPPROTO_APES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IPPROTO_ARGUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPPROTO_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IPPROTO_BHA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPPROTO_BLT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPPROTO_BRSATMON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_CFTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPPROTO_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPPROTO_CMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPPROTO_CPHB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPPROTO_CPNX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPPROTO_DDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPPROTO_DGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EMCON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IDPR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPPROTO_IDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IPPROTO_IGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IPPROTO_IL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPPROTO_INLSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_INP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPCV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IPPROTO_IPEIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IRTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPPROTO_KRYPTOLAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPPROTO_LARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MEAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPPROTO_MICP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_MUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_NSP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_NVPII\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPPROTO_OLD_DIVERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"IPPROTO_OSPFIGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PGM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IPPROTO_PIGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PRM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_PVP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_RCCMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPPROTO_RDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_RVD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPPROTO_SATEXPAK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPPROTO_SATMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IPPROTO_SCCSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_SDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPPROTO_SEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"IPPROTO_SEP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPPROTO_SPACER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32767\", token.INT, 0)),\n\t\t\"IPPROTO_SRPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IPPROTO_ST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPPROTO_SVMTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IPPROTO_SWIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPPROTO_TCF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TLSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_TPXX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPPROTO_TTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VINES\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_VISA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPPROTO_VMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IPPROTO_WBEXPAK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IPPROTO_WBMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPPROTO_WSN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPPROTO_XNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPPROTO_XTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_BINDANY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_BINDV6ONLY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_FW_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_FW_DEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_FW_FLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_FW_GET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_FW_ZERO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXOPTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MAX_GROUP_SRC_FILTER\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IPV6_MAX_MEMBERSHIPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IPV6_MAX_SOCK_SRC_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IPV6_MIN_MEMBERSHIPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MSFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PREFER_TEMPADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IP_BINDANY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DONTFRAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IP_DUMMYNET3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_CONFIGURE\":             reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IP_FAITH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_FW3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IP_FW_ADD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_FW_DEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IP_FW_FLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IP_FW_GET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IP_FW_NAT_CFG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IP_FW_NAT_DEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IP_FW_NAT_GET_CONFIG\":              reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IP_FW_NAT_GET_LOG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IP_FW_RESETLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_ADD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_GETSIZE\":               reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_LIST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IP_FW_ZERO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_GROUP_SRC_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_MUTE_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_SRC_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOURCE_FILTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_VIF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_ONESBCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RSVP_OFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_RSVP_ON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_OFF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_ON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_SENDSRCADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_AUTOSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_CORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_NOCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_NOSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_PROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_32BIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MAP_ALIGNED_SUPER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_SHIFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_NOCORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_NOSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_PREFAULT_READ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_RESERVED0080\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_RESERVED0100\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MSG_COMPAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_NBIO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MSG_NOTIFICATION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_IFLISTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NET_RT_IFMALIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FFAND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_FFCOPY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFCTRLMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFLAGSMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"NOTE_FFNOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NOTE_FFOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRIGGER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXEC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_TTY_INIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"268752904\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_GWFLAG_COMPAT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLDATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PRCLONING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_RNH_LOCKED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_STICKY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DELMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTV_WEIGHT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RT_CACHING_CONTEXT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RT_DEFAULT_FIB\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_NORTREF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_BINTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SCM_CREDS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGLIBRT\":                          reflect.ValueOf(syscall.SIGLIBRT),\n\t\t\"SIGLWP\":                            reflect.ValueOf(syscall.SIGLWP),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHR\":                            reflect.ValueOf(syscall.SIGTHR),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151707146\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCAIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132103\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860635\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151707147\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132105\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607753\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860637\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873915\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223351824\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223876111\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349535\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222300964\", token.INT, 0)),\n\t\t\"SIOCGIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349546\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349596\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFGMEMB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873930\", token.INT, 0)),\n\t\t\"SIOCGIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873928\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349536\", token.INT, 0)),\n\t\t\"SIOCGIFMAC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349542\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3224398136\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349555\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFSTATUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3274795323\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3239602460\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3239602507\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_0\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349584\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349585\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349626\", token.INT, 0)),\n\t\t\"SIOCIFCREATE2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222301048\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132091\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607710\", token.INT, 0)),\n\t\t\"SIOCSIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607721\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607773\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607740\", token.INT, 0)),\n\t\t\"SIOCSIFMAC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607719\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607732\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607720\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607734\", token.INT, 0)),\n\t\t\"SIOCSIFRVNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349595\", token.INT, 0)),\n\t\t\"SIOCSIFVNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349594\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2165860682\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_MAXADDRLEN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ACCEPTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BINTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LABEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LISTENINCQLEN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SO_LISTENQLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4114\", token.INT, 0)),\n\t\t\"SO_LISTENQLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_NO_DDP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SO_NO_OFFLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_PROTOTYPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SETFIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4116\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_USER_COOKIE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4117\", token.INT, 0)),\n\t\t\"SO_VENDOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"SYS_ABORT2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"463\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"541\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_AUDIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"445\", token.INT, 0)),\n\t\t\"SYS_AUDITCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"453\", token.INT, 0)),\n\t\t\"SYS_AUDITON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"446\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BINDAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"538\", token.INT, 0)),\n\t\t\"SYS_CAP_ENTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"SYS_CAP_GETMODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"SYS_CAP_GETRIGHTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"515\", token.INT, 0)),\n\t\t\"SYS_CAP_NEW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"514\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHFLAGSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"540\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETCPUCLOCKID2\":          reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSEFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"509\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_CONNECTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"539\", token.INT, 0)),\n\t\t\"SYS_CPUSET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"484\", token.INT, 0)),\n\t\t\"SYS_CPUSET_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"487\", token.INT, 0)),\n\t\t\"SYS_CPUSET_GETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"486\", token.INT, 0)),\n\t\t\"SYS_CPUSET_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"488\", token.INT, 0)),\n\t\t\"SYS_CPUSET_SETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"485\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXTATTRCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"373\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"437\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"438\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"489\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"490\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"491\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FEXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"492\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_GETCOUNTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_GETESTIMATE\":           reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_SETESTIMATE\":           reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_FHSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"398\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_FTRUNCATE\":            reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_LSEEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_MMAP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_PREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_PWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_TRUNCATE\":             reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"551\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"552\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"556\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"480\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"494\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"449\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"SYS_GETAUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"447\", token.INT, 0)),\n\t\t\"SYS_GETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"554\", token.INT, 0)),\n\t\t\"SYS_GETDTABLESIZE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"557\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETLOGINCLASS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"523\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_JAIL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_JAIL_ATTACH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_JAIL_GET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"506\", token.INT, 0)),\n\t\t\"SYS_JAIL_REMOVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"508\", token.INT, 0)),\n\t\t\"SYS_JAIL_SET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"507\", token.INT, 0)),\n\t\t\"SYS_KENV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KLDFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_KLDFIRSTMOD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_KLDLOAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_KLDNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_KLDSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_KLDSYM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOADF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"444\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_KTIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_KTIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_KTIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_KTIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_KTIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"391\", token.INT, 0)),\n\t\t\"SYS_LCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_LGETFH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"495\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"478\", token.INT, 0)),\n\t\t\"SYS_LUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_MAC_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"496\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"497\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"559\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"477\", token.INT, 0)),\n\t\t\"SYS_MODFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_MODFNEXT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_MODNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_MODSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_NFSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_NLSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_NMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"378\", token.INT, 0)),\n\t\t\"SYS_NSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_NTP_ADJTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_NTP_GETTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_OBREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"499\", token.INT, 0)),\n\t\t\"SYS_OPENBSD_POLL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_OVADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PDFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"SYS_PDGETPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"520\", token.INT, 0)),\n\t\t\"SYS_PDKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"519\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"542\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_POSIX_FADVISE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"531\", token.INT, 0)),\n\t\t\"SYS_POSIX_FALLOCATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"530\", token.INT, 0)),\n\t\t\"SYS_POSIX_OPENPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"504\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"475\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_PROCCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"544\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"522\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"476\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_RCTL_ADD_RULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"528\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_LIMITS\":               reflect.ValueOf(constant.MakeFromLiteral(\"527\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_RACCT\":                reflect.ValueOf(constant.MakeFromLiteral(\"525\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_RULES\":                reflect.ValueOf(constant.MakeFromLiteral(\"526\", token.INT, 0)),\n\t\t\"SYS_RCTL_REMOVE_RULE\":              reflect.ValueOf(constant.MakeFromLiteral(\"529\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"500\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"501\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_RTPRIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_RTPRIO_THREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"466\", token.INT, 0)),\n\t\t\"SYS_SBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":        reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":        reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_RECVMSG\":          reflect.ValueOf(constant.MakeFromLiteral(\"474\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_SENDMSG\":          reflect.ValueOf(constant.MakeFromLiteral(\"472\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_SENDMSG_IOV\":      reflect.ValueOf(constant.MakeFromLiteral(\"473\", token.INT, 0)),\n\t\t\"SYS_SCTP_PEELOFF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"471\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"393\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"452\", token.INT, 0)),\n\t\t\"SYS_SETAUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"SYS_SETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETLOGINCLASS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"524\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SHM_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"482\", token.INT, 0)),\n\t\t\"SYS_SHM_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"483\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_SIGQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"456\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_SIGTIMEDWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_SIGWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_SIGWAITINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SSTK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"555\", token.INT, 0)),\n\t\t\"SYS_SWAPCONTEXT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"502\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_THR_CREATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_THR_EXIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS_THR_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"433\", token.INT, 0)),\n\t\t\"SYS_THR_KILL2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"481\", token.INT, 0)),\n\t\t\"SYS_THR_NEW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"455\", token.INT, 0)),\n\t\t\"SYS_THR_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"432\", token.INT, 0)),\n\t\t\"SYS_THR_SET_NAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"464\", token.INT, 0)),\n\t\t\"SYS_THR_SUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"442\", token.INT, 0)),\n\t\t\"SYS_THR_WAKE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"443\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"479\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"503\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"547\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_UUIDGEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"392\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WAIT6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"532\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_YIELD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS__UMTX_LOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS__UMTX_OP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"454\", token.INT, 0)),\n\t\t\"SYS__UMTX_UNLOCK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS___MAC_EXECVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"387\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"409\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PROC\":                reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"388\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"389\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_PROC\":                reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS___SETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"374\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                          reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                 reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofBpfZbuf\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofBpfZbufHeader\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CA_NAME_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TCP_INFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCP_KEEPINIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXHLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"TCP_MAXOLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOOPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_VENDOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033750\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033679\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033754\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMSDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147775579\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DCD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTMASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900636\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147775575\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"537162847\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCTIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074820185\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"Undelete\":                          reflect.ValueOf(syscall.Undelete),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VERASE2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"WLINUXCLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WTRAPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                        reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                       reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":                    reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                       reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfVersion\":                    reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"BpfZbuf\":                       reflect.ValueOf((*syscall.BpfZbuf)(nil)),\n\t\t\"BpfZbufHeader\":                 reflect.ValueOf((*syscall.BpfZbufHeader)(nil)),\n\t\t\"Cmsghdr\":                       reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":                    reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                         reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                       reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                          reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":                  reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                        reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":                       reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":                   reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                      reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":              reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                        reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                      reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                     reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"IfmaMsghdr\":                    reflect.ValueOf((*syscall.IfmaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":                  reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":          reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\":      reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":              reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"InterfaceMulticastAddrMessage\": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)),\n\t\t\"Iovec\":                         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                      reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                        reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":                        reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                   reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":                reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":           reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":              reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":              reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":               reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":                  reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":                reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                     reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                      reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":              reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":                 reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":                 reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":          reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                      reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":                   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                       reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":                    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_freebsd_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_ARP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_ATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_INET6_SDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_INET_SDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NETGRAPH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SCLUSTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SLOW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VENDOR00\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_VENDOR01\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_VENDOR02\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"AF_VENDOR03\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"AF_VENDOR04\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"AF_VENDOR05\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"AF_VENDOR06\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"AF_VENDOR07\":                       reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"AF_VENDOR08\":                       reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"AF_VENDOR09\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"AF_VENDOR10\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"AF_VENDOR11\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"AF_VENDOR12\":                       reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"AF_VENDOR13\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"AF_VENDOR14\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"AF_VENDOR15\":                       reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"AF_VENDOR16\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"AF_VENDOR17\":                       reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"AF_VENDOR18\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"AF_VENDOR19\":                       reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"AF_VENDOR20\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"AF_VENDOR21\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"AF_VENDOR22\":                       reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"AF_VENDOR23\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"AF_VENDOR24\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"AF_VENDOR25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"AF_VENDOR26\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"AF_VENDOR27\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"AF_VENDOR28\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"AF_VENDOR29\":                       reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"AF_VENDOR30\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"AF_VENDOR31\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"AF_VENDOR32\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"AF_VENDOR33\":                       reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"AF_VENDOR34\":                       reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"AF_VENDOR35\":                       reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"AF_VENDOR36\":                       reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"AF_VENDOR37\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"AF_VENDOR38\":                       reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"AF_VENDOR39\":                       reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"AF_VENDOR40\":                       reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"AF_VENDOR41\":                       reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"AF_VENDOR42\":                       reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"AF_VENDOR43\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"AF_VENDOR44\":                       reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"AF_VENDOR45\":                       reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"AF_VENDOR46\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"AF_VENDOR47\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B460800\":                           reflect.ValueOf(constant.MakeFromLiteral(\"460800\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B921600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"921600\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFEEDBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762812\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDIRECTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3221766777\", token.INT, 0)),\n\t\t\"BIOCGETBUFMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074020989\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGETZMAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020991\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020978\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCGTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020995\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887930\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCROTZBUF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074545280\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDIRECTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762808\", token.INT, 0)),\n\t\t\"BIOCSETBUFMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147762814\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148024935\", token.INT, 0)),\n\t\t\"BIOCSETFNR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148024962\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSETWF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148024955\", token.INT, 0)),\n\t\t\"BIOCSETZBUF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148287105\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147762803\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCSTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147762820\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_BUFMODE_BUFFER\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_BUFMODE_ZBUF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_FAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_MONOTONIC\":           reflect.ValueOf(constant.MakeFromLiteral(\"514\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_MONOTONIC_FAST\":      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"BPF_T_FAST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"BPF_T_FLAG_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_FORMAT_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_FAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_MONOTONIC\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_MONOTONIC_FAST\":    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_MONOTONIC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_T_MONOTONIC_FAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_FAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_MONOTONIC\":          reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_MONOTONIC_FAST\":     reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"BPF_T_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_T_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_A429\":                          reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"DLT_A653_ICM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"DLT_AIRONET_HEADER\":                reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_AOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_AX25_KISS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4\":              reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4_WITH_PHDR\":    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"DLT_CAN20B\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"DLT_CAN_SOCKETCAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"DLT_DBUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"DLT_DECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_DVB_CI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FC_2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"DLT_FC_2_WITH_FRAME_DELIMS\":        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FLEXRAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_FRELAY_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                         reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                         reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_ABIS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_UM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":          reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_LINUX\":            reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NOFCS\":            reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NONASK_PHY\":       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS_RADIO\":      reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"DLT_IPFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"DLT_IPMB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"DLT_IPMB_LINUX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPOIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"DLT_IPV4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"DLT_IPV6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM_CEMIC\":             reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FIBRECHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ISM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":               reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":              reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":             reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":              reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SRX_E2E\":               reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"DLT_LAPB_WITH_DIR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"DLT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"DLT_LIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"DLT_LINUX_EVDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_PPP_WITHDIRECTION\":       reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MATCHING_MAX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"DLT_MATCHING_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_MFR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"DLT_MOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"DLT_MPEG_2_TS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_MUX27010\":                      reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"DLT_NETANALYZER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"DLT_NETANALYZER_TRANSPARENT\":       reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"DLT_NFC_LLCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"DLT_NFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"DLT_NG40\":                          reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_PPI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIRECTION\":            reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAIF1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RIO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SITA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_STANAG_5066_D_PDU\":             reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":             reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"DLT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX_MMAPPED\":             reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"DLT_USER0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"DLT_USER1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"DLT_USER10\":                        reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"DLT_USER11\":                        reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"DLT_USER12\":                        reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"DLT_USER13\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"DLT_USER14\":                        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"DLT_USER15\":                        reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"DLT_USER2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"DLT_USER3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"DLT_USER4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"DLT_USER5\":                         reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"DLT_USER6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"DLT_USER7\":                         reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"DLT_USER8\":                         reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"DLT_USER9\":                         reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"DLT_WIHART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"DLT_X2E_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"DLT_X2E_XORAYA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECAPMODE\":                          reflect.ValueOf(syscall.ECAPMODE),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOOFUS\":                           reflect.ValueOf(syscall.EDOOFUS),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCAPABLE\":                       reflect.ValueOf(syscall.ENOTCAPABLE),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":                   reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                        reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-9\", token.INT, 0)),\n\t\t\"EVFILT_LIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_USER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-11\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_DISPATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EV_DROP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_RECEIPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_CANCEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_DUP2FD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUP2FD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_OGETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_OSETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_OSETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_RDAHEAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_READAHEAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLK_REMOTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_UNLCKSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatat\":                           reflect.ValueOf(syscall.Fstatat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getdtablesize\":                     reflect.ValueOf(syscall.Getdtablesize),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                         reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                 reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ALTPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2199410\", token.INT, 0)),\n\t\t\"IFF_CANTCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DRV_OACTIVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DRV_RUNNING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_DYING\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MONITOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PPROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RENAMING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SMART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_STATICARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_IPXIP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_RFC3021_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4294967294\", token.INT, 0)),\n\t\t\"IPPROTO_3PC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPPROTO_ADFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_AHIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPPROTO_APES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IPPROTO_ARGUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPPROTO_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IPPROTO_BHA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPPROTO_BLT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPPROTO_BRSATMON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_CFTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPPROTO_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPPROTO_CMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPPROTO_CPHB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPPROTO_CPNX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPPROTO_DDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPPROTO_DGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EMCON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IDPR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPPROTO_IDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IPPROTO_IGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IPPROTO_IL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPPROTO_INLSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_INP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPCV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IPPROTO_IPEIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IRTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPPROTO_KRYPTOLAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPPROTO_LARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MEAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPPROTO_MICP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_MUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_NSP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_NVPII\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPPROTO_OLD_DIVERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"IPPROTO_OSPFIGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PGM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IPPROTO_PIGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PRM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_PVP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_RCCMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPPROTO_RDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_RVD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPPROTO_SATEXPAK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPPROTO_SATMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IPPROTO_SCCSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_SDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPPROTO_SEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"IPPROTO_SEP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPPROTO_SPACER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32767\", token.INT, 0)),\n\t\t\"IPPROTO_SRPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IPPROTO_ST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPPROTO_SVMTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IPPROTO_SWIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPPROTO_TCF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TLSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_TPXX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPPROTO_TTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VINES\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_VISA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPPROTO_VMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IPPROTO_WBEXPAK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IPPROTO_WBMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPPROTO_WSN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPPROTO_XNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPPROTO_XTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_BINDANY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_BINDV6ONLY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_FW_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_FW_DEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_FW_FLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_FW_GET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_FW_ZERO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXOPTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MAX_GROUP_SRC_FILTER\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IPV6_MAX_MEMBERSHIPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IPV6_MAX_SOCK_SRC_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IPV6_MIN_MEMBERSHIPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MSFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PREFER_TEMPADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IP_BINDANY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DONTFRAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IP_DUMMYNET3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_CONFIGURE\":             reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IP_FAITH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_FW3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IP_FW_ADD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_FW_DEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IP_FW_FLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IP_FW_GET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IP_FW_NAT_CFG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IP_FW_NAT_DEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IP_FW_NAT_GET_CONFIG\":              reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IP_FW_NAT_GET_LOG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IP_FW_RESETLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_ADD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_GETSIZE\":               reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_LIST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IP_FW_ZERO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_GROUP_SRC_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_MUTE_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_SRC_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOURCE_FILTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_VIF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_ONESBCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RSVP_OFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_RSVP_ON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_OFF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_ON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_SENDSRCADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_AUTOSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_CORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_NOCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_NOSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_PROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ALIGNED_SUPER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_SHIFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_NOCORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_NOSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_PREFAULT_READ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_RESERVED0080\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_RESERVED0100\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MSG_COMPAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_NBIO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MSG_NOTIFICATION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_IFLISTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NET_RT_IFMALIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FFAND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_FFCOPY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFCTRLMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFLAGSMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"NOTE_FFNOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NOTE_FFOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRIGGER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXEC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_TTY_INIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"268752904\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_GWFLAG_COMPAT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLDATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PRCLONING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_RNH_LOCKED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_STICKY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DELMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTV_WEIGHT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RT_CACHING_CONTEXT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RT_DEFAULT_FIB\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_NORTREF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_BINTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SCM_CREDS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGLIBRT\":                          reflect.ValueOf(syscall.SIGLIBRT),\n\t\t\"SIGLWP\":                            reflect.ValueOf(syscall.SIGLWP),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHR\":                            reflect.ValueOf(syscall.SIGTHR),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150658570\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCAIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149869959\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860635\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150658571\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149869961\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607753\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860637\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223087483\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222565392\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222565391\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349535\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221776676\", token.INT, 0)),\n\t\t\"SIOCGIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349546\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349596\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFGMEMB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223611786\", token.INT, 0)),\n\t\t\"SIOCGIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223611784\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349536\", token.INT, 0)),\n\t\t\"SIOCGIFMAC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349542\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873848\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349555\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFSTATUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3274795323\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3239602460\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3239602507\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_0\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349584\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349585\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349626\", token.INT, 0)),\n\t\t\"SIOCIFCREATE2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222038904\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149345659\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607710\", token.INT, 0)),\n\t\t\"SIOCSIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607721\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607773\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607740\", token.INT, 0)),\n\t\t\"SIOCSIFMAC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607719\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607732\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607720\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607734\", token.INT, 0)),\n\t\t\"SIOCSIFRVNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349595\", token.INT, 0)),\n\t\t\"SIOCSIFVNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349594\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2165860682\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_MAXADDRLEN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ACCEPTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BINTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LABEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LISTENINCQLEN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SO_LISTENQLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4114\", token.INT, 0)),\n\t\t\"SO_LISTENQLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_NO_DDP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SO_NO_OFFLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_PROTOTYPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SETFIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4116\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_USER_COOKIE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4117\", token.INT, 0)),\n\t\t\"SO_VENDOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"SYS_ABORT2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"463\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"541\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_AUDIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"445\", token.INT, 0)),\n\t\t\"SYS_AUDITCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"453\", token.INT, 0)),\n\t\t\"SYS_AUDITON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"446\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BINDAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"538\", token.INT, 0)),\n\t\t\"SYS_CAP_ENTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"SYS_CAP_GETMODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"SYS_CAP_GETRIGHTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"515\", token.INT, 0)),\n\t\t\"SYS_CAP_NEW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"514\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHFLAGSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"540\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETCPUCLOCKID2\":          reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSEFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"509\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_CONNECTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"539\", token.INT, 0)),\n\t\t\"SYS_CPUSET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"484\", token.INT, 0)),\n\t\t\"SYS_CPUSET_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"487\", token.INT, 0)),\n\t\t\"SYS_CPUSET_GETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"486\", token.INT, 0)),\n\t\t\"SYS_CPUSET_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"488\", token.INT, 0)),\n\t\t\"SYS_CPUSET_SETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"485\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXTATTRCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"373\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"437\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"438\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"489\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"490\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"491\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FEXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"492\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_GETCOUNTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_GETESTIMATE\":           reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_SETESTIMATE\":           reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_FHSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"398\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_FTRUNCATE\":            reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_LSEEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_MMAP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_PREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_PWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_FREEBSD6_TRUNCATE\":             reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"551\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"552\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"556\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"480\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"494\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"449\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"SYS_GETAUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"447\", token.INT, 0)),\n\t\t\"SYS_GETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"554\", token.INT, 0)),\n\t\t\"SYS_GETDTABLESIZE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"557\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETLOGINCLASS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"523\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_JAIL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_JAIL_ATTACH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_JAIL_GET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"506\", token.INT, 0)),\n\t\t\"SYS_JAIL_REMOVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"508\", token.INT, 0)),\n\t\t\"SYS_JAIL_SET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"507\", token.INT, 0)),\n\t\t\"SYS_KENV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KLDFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_KLDFIRSTMOD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_KLDLOAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_KLDNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_KLDSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_KLDSYM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOADF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"444\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_KTIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_KTIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_KTIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_KTIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_KTIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"391\", token.INT, 0)),\n\t\t\"SYS_LCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_LGETFH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"495\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"478\", token.INT, 0)),\n\t\t\"SYS_LUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_MAC_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"496\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"497\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"559\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"477\", token.INT, 0)),\n\t\t\"SYS_MODFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_MODFNEXT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_MODNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_MODSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_NFSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_NLSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_NMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"378\", token.INT, 0)),\n\t\t\"SYS_NSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_NTP_ADJTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_NTP_GETTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_OBREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"499\", token.INT, 0)),\n\t\t\"SYS_OPENBSD_POLL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_OVADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PDFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"SYS_PDGETPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"520\", token.INT, 0)),\n\t\t\"SYS_PDKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"519\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"542\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_POSIX_FADVISE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"531\", token.INT, 0)),\n\t\t\"SYS_POSIX_FALLOCATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"530\", token.INT, 0)),\n\t\t\"SYS_POSIX_OPENPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"504\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"475\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_PROCCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"544\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"522\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"476\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_RCTL_ADD_RULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"528\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_LIMITS\":               reflect.ValueOf(constant.MakeFromLiteral(\"527\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_RACCT\":                reflect.ValueOf(constant.MakeFromLiteral(\"525\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_RULES\":                reflect.ValueOf(constant.MakeFromLiteral(\"526\", token.INT, 0)),\n\t\t\"SYS_RCTL_REMOVE_RULE\":              reflect.ValueOf(constant.MakeFromLiteral(\"529\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"500\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"501\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_RTPRIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_RTPRIO_THREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"466\", token.INT, 0)),\n\t\t\"SYS_SBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":        reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":        reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_RECVMSG\":          reflect.ValueOf(constant.MakeFromLiteral(\"474\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_SENDMSG\":          reflect.ValueOf(constant.MakeFromLiteral(\"472\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_SENDMSG_IOV\":      reflect.ValueOf(constant.MakeFromLiteral(\"473\", token.INT, 0)),\n\t\t\"SYS_SCTP_PEELOFF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"471\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"393\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"452\", token.INT, 0)),\n\t\t\"SYS_SETAUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"SYS_SETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETLOGINCLASS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"524\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SHM_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"482\", token.INT, 0)),\n\t\t\"SYS_SHM_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"483\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_SIGQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"456\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_SIGTIMEDWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_SIGWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_SIGWAITINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SSTK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"555\", token.INT, 0)),\n\t\t\"SYS_SWAPCONTEXT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"502\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_THR_CREATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_THR_EXIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS_THR_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"433\", token.INT, 0)),\n\t\t\"SYS_THR_KILL2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"481\", token.INT, 0)),\n\t\t\"SYS_THR_NEW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"455\", token.INT, 0)),\n\t\t\"SYS_THR_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"432\", token.INT, 0)),\n\t\t\"SYS_THR_SET_NAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"464\", token.INT, 0)),\n\t\t\"SYS_THR_SUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"442\", token.INT, 0)),\n\t\t\"SYS_THR_WAKE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"443\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"479\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"503\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"547\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_UUIDGEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"392\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WAIT6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"532\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_YIELD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS__UMTX_LOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS__UMTX_OP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"454\", token.INT, 0)),\n\t\t\"SYS__UMTX_UNLOCK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS___MAC_EXECVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"387\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"409\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PROC\":                reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"388\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"389\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_PROC\":                reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS___SETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"374\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                          reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                 reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofBpfZbuf\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofBpfZbufHeader\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CA_NAME_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TCP_INFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCP_KEEPINIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXHLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"TCP_MAXOLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOOPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_VENDOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033750\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033679\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033754\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMSDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147775579\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DCD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTMASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900636\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147775575\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"537162847\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCTIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074820185\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"Undelete\":                          reflect.ValueOf(syscall.Undelete),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VERASE2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"WLINUXCLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WTRAPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                        reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                       reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":                    reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                       reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfVersion\":                    reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"BpfZbuf\":                       reflect.ValueOf((*syscall.BpfZbuf)(nil)),\n\t\t\"BpfZbufHeader\":                 reflect.ValueOf((*syscall.BpfZbufHeader)(nil)),\n\t\t\"Cmsghdr\":                       reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":                    reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                         reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                       reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                          reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":                  reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                        reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":                       reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":                   reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                      reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":              reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                        reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                      reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                     reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"IfmaMsghdr\":                    reflect.ValueOf((*syscall.IfmaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":                  reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":          reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\":      reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":              reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"InterfaceMulticastAddrMessage\": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)),\n\t\t\"Iovec\":                         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                      reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                        reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":                        reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                   reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":                reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":           reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":              reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":              reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":               reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":                  reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":                reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                     reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                      reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":              reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":                 reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":                 reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":          reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                      reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":                   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                       reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":                    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_freebsd_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_ARP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_ATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_INET6_SDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_INET_SDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NETGRAPH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SCLUSTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SLOW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VENDOR00\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_VENDOR01\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_VENDOR02\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"AF_VENDOR03\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"AF_VENDOR04\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"AF_VENDOR05\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"AF_VENDOR06\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"AF_VENDOR07\":                       reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"AF_VENDOR08\":                       reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"AF_VENDOR09\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"AF_VENDOR10\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"AF_VENDOR11\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"AF_VENDOR12\":                       reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"AF_VENDOR13\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"AF_VENDOR14\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"AF_VENDOR15\":                       reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"AF_VENDOR16\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"AF_VENDOR17\":                       reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"AF_VENDOR18\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"AF_VENDOR19\":                       reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"AF_VENDOR20\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"AF_VENDOR21\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"AF_VENDOR22\":                       reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"AF_VENDOR23\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"AF_VENDOR24\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"AF_VENDOR25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"AF_VENDOR26\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"AF_VENDOR27\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"AF_VENDOR28\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"AF_VENDOR29\":                       reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"AF_VENDOR30\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"AF_VENDOR31\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"AF_VENDOR32\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"AF_VENDOR33\":                       reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"AF_VENDOR34\":                       reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"AF_VENDOR35\":                       reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"AF_VENDOR36\":                       reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"AF_VENDOR37\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"AF_VENDOR38\":                       reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"AF_VENDOR39\":                       reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"AF_VENDOR40\":                       reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"AF_VENDOR41\":                       reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"AF_VENDOR42\":                       reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"AF_VENDOR43\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"AF_VENDOR44\":                       reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"AF_VENDOR45\":                       reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"AF_VENDOR46\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"AF_VENDOR47\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B460800\":                           reflect.ValueOf(constant.MakeFromLiteral(\"460800\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B921600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"921600\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFEEDBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762812\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDIRECTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222291065\", token.INT, 0)),\n\t\t\"BIOCGETBUFMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074020989\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGETZMAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074283135\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020978\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCGTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020995\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887930\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCROTZBUF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1075331712\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDIRECTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762808\", token.INT, 0)),\n\t\t\"BIOCSETBUFMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147762814\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETFNR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148549250\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSETWF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148549243\", token.INT, 0)),\n\t\t\"BIOCSETZBUF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149073537\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147762803\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCSTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147762820\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_BUFMODE_BUFFER\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_BUFMODE_ZBUF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_FAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_MONOTONIC\":           reflect.ValueOf(constant.MakeFromLiteral(\"514\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_MONOTONIC_FAST\":      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"BPF_T_FAST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"BPF_T_FLAG_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_FORMAT_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_FAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_MONOTONIC\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_MONOTONIC_FAST\":    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_MONOTONIC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_T_MONOTONIC_FAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_FAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_MONOTONIC\":          reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_MONOTONIC_FAST\":     reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"BPF_T_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_T_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_A429\":                          reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"DLT_A653_ICM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"DLT_AIRONET_HEADER\":                reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_AOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_AX25_KISS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4\":              reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4_WITH_PHDR\":    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"DLT_CAN20B\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"DLT_CAN_SOCKETCAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"DLT_DBUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"DLT_DECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_DVB_CI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FC_2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"DLT_FC_2_WITH_FRAME_DELIMS\":        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FLEXRAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_FRELAY_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                         reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                         reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_ABIS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_UM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":          reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_LINUX\":            reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NOFCS\":            reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NONASK_PHY\":       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS_RADIO\":      reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"DLT_IPFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"DLT_IPMB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"DLT_IPMB_LINUX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPOIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"DLT_IPV4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"DLT_IPV6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM_CEMIC\":             reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FIBRECHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ISM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":               reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":              reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":             reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":              reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SRX_E2E\":               reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"DLT_LAPB_WITH_DIR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"DLT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"DLT_LIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"DLT_LINUX_EVDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_PPP_WITHDIRECTION\":       reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MATCHING_MAX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"DLT_MATCHING_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_MFR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"DLT_MOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"DLT_MPEG_2_TS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_MUX27010\":                      reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"DLT_NETANALYZER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"DLT_NETANALYZER_TRANSPARENT\":       reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"DLT_NFC_LLCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"DLT_NFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"DLT_NG40\":                          reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_PPI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIRECTION\":            reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAIF1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RIO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SITA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_STANAG_5066_D_PDU\":             reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":             reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"DLT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX_MMAPPED\":             reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"DLT_USER0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"DLT_USER1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"DLT_USER10\":                        reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"DLT_USER11\":                        reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"DLT_USER12\":                        reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"DLT_USER13\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"DLT_USER14\":                        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"DLT_USER15\":                        reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"DLT_USER2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"DLT_USER3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"DLT_USER4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"DLT_USER5\":                         reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"DLT_USER6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"DLT_USER7\":                         reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"DLT_USER8\":                         reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"DLT_USER9\":                         reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"DLT_WIHART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"DLT_X2E_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"DLT_X2E_XORAYA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECAPMODE\":                          reflect.ValueOf(syscall.ECAPMODE),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOOFUS\":                           reflect.ValueOf(syscall.EDOOFUS),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCAPABLE\":                       reflect.ValueOf(syscall.ENOTCAPABLE),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":                   reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                        reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-9\", token.INT, 0)),\n\t\t\"EVFILT_LIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_USER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-11\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_DISPATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EV_DROP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_RECEIPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_CANCEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_DUP2FD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUP2FD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_OGETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_OSETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_OSETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_RDAHEAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_READAHEAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLK_REMOTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_UNLCKSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatat\":                           reflect.ValueOf(syscall.Fstatat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getdtablesize\":                     reflect.ValueOf(syscall.Getdtablesize),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                         reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                 reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ALTPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2199410\", token.INT, 0)),\n\t\t\"IFF_CANTCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DRV_OACTIVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DRV_RUNNING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_DYING\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MONITOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PPROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RENAMING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SMART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_STATICARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_IPXIP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_RFC3021_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4294967294\", token.INT, 0)),\n\t\t\"IPPROTO_3PC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPPROTO_ADFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_AHIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPPROTO_APES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IPPROTO_ARGUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPPROTO_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IPPROTO_BHA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPPROTO_BLT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPPROTO_BRSATMON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_CFTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPPROTO_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPPROTO_CMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPPROTO_CPHB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPPROTO_CPNX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPPROTO_DDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPPROTO_DGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EMCON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IDPR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPPROTO_IDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IPPROTO_IGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IPPROTO_IL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPPROTO_INLSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_INP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPCV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IPPROTO_IPEIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IRTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPPROTO_KRYPTOLAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPPROTO_LARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MEAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPPROTO_MICP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_MUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_NSP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_NVPII\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPPROTO_OLD_DIVERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"IPPROTO_OSPFIGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PGM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IPPROTO_PIGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PRM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_PVP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_RCCMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPPROTO_RDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_RVD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPPROTO_SATEXPAK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPPROTO_SATMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IPPROTO_SCCSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_SDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPPROTO_SEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"IPPROTO_SEP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPPROTO_SPACER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32767\", token.INT, 0)),\n\t\t\"IPPROTO_SRPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IPPROTO_ST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPPROTO_SVMTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IPPROTO_SWIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPPROTO_TCF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TLSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_TPXX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPPROTO_TTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VINES\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_VISA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPPROTO_VMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IPPROTO_WBEXPAK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IPPROTO_WBMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPPROTO_WSN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPPROTO_XNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPPROTO_XTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_BINDANY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_BINDV6ONLY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_FW_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_FW_DEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_FW_FLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_FW_GET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_FW_ZERO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXOPTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MAX_GROUP_SRC_FILTER\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IPV6_MAX_MEMBERSHIPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IPV6_MAX_SOCK_SRC_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IPV6_MIN_MEMBERSHIPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MSFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PREFER_TEMPADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IP_BINDANY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DONTFRAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IP_DUMMYNET3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_CONFIGURE\":             reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IP_FAITH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_FW3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IP_FW_ADD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_FW_DEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IP_FW_FLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IP_FW_GET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IP_FW_NAT_CFG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IP_FW_NAT_DEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IP_FW_NAT_GET_CONFIG\":              reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IP_FW_NAT_GET_LOG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IP_FW_RESETLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_ADD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_GETSIZE\":               reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_LIST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IP_FW_ZERO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_GROUP_SRC_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_MUTE_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_SRC_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOURCE_FILTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_VIF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_ONESBCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RSVP_OFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_RSVP_ON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_OFF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_ON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_SENDSRCADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_AUTOSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_CORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_NOCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_NOSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_PROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_32BIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MAP_ALIGNED_SUPER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_SHIFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_NOCORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_NOSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_PREFAULT_READ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_RESERVED0080\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_RESERVED0100\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MSG_COMPAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_NBIO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MSG_NOTIFICATION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_IFLISTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NET_RT_IFMALIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FFAND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_FFCOPY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFCTRLMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFLAGSMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"NOTE_FFNOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NOTE_FFOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRIGGER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXEC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_TTY_INIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"268752904\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_GWFLAG_COMPAT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLDATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PRCLONING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_RNH_LOCKED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_STICKY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DELMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTV_WEIGHT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RT_CACHING_CONTEXT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RT_DEFAULT_FIB\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_NORTREF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_BINTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SCM_CREDS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGLIBRT\":                          reflect.ValueOf(syscall.SIGLIBRT),\n\t\t\"SIGLWP\":                            reflect.ValueOf(syscall.SIGLWP),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHR\":                            reflect.ValueOf(syscall.SIGTHR),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151707146\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCAIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132103\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860635\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151707147\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132105\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607753\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860637\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873915\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223351824\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223876111\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349535\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222300964\", token.INT, 0)),\n\t\t\"SIOCGIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349546\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349596\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFGMEMB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873930\", token.INT, 0)),\n\t\t\"SIOCGIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873928\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349536\", token.INT, 0)),\n\t\t\"SIOCGIFMAC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349542\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3224398136\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349555\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFSTATUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3274795323\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3239602460\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3239602507\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_0\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349584\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349585\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349626\", token.INT, 0)),\n\t\t\"SIOCIFCREATE2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222301048\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132091\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607710\", token.INT, 0)),\n\t\t\"SIOCSIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607721\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607773\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607740\", token.INT, 0)),\n\t\t\"SIOCSIFMAC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607719\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607732\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607720\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607734\", token.INT, 0)),\n\t\t\"SIOCSIFRVNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349595\", token.INT, 0)),\n\t\t\"SIOCSIFVNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349594\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2165860682\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_MAXADDRLEN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ACCEPTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BINTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LABEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LISTENINCQLEN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SO_LISTENQLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4114\", token.INT, 0)),\n\t\t\"SO_LISTENQLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_NO_DDP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SO_NO_OFFLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_PROTOTYPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SETFIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4116\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_USER_COOKIE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4117\", token.INT, 0)),\n\t\t\"SO_VENDOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"SYS_ABORT2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"463\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"541\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_AIO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_AIO_ERROR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_AIO_FSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"465\", token.INT, 0)),\n\t\t\"SYS_AIO_MLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"543\", token.INT, 0)),\n\t\t\"SYS_AIO_READ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_AIO_RETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_AIO_WAITCOMPLETE\":              reflect.ValueOf(constant.MakeFromLiteral(\"359\", token.INT, 0)),\n\t\t\"SYS_AIO_WRITE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_AUDIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"445\", token.INT, 0)),\n\t\t\"SYS_AUDITCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"453\", token.INT, 0)),\n\t\t\"SYS_AUDITON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"446\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BINDAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"538\", token.INT, 0)),\n\t\t\"SYS_CAP_ENTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"SYS_CAP_FCNTLS_GET\":                reflect.ValueOf(constant.MakeFromLiteral(\"537\", token.INT, 0)),\n\t\t\"SYS_CAP_FCNTLS_LIMIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"SYS_CAP_GETMODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"SYS_CAP_IOCTLS_GET\":                reflect.ValueOf(constant.MakeFromLiteral(\"535\", token.INT, 0)),\n\t\t\"SYS_CAP_IOCTLS_LIMIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"534\", token.INT, 0)),\n\t\t\"SYS_CAP_RIGHTS_LIMIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"533\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHFLAGSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"540\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETCPUCLOCKID2\":          reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":               reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSEFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"509\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_CONNECTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"539\", token.INT, 0)),\n\t\t\"SYS_CPUSET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"484\", token.INT, 0)),\n\t\t\"SYS_CPUSET_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"487\", token.INT, 0)),\n\t\t\"SYS_CPUSET_GETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"486\", token.INT, 0)),\n\t\t\"SYS_CPUSET_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"488\", token.INT, 0)),\n\t\t\"SYS_CPUSET_SETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"485\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXTATTRCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"373\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"437\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"438\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"489\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"490\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"491\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"550\", token.INT, 0)),\n\t\t\"SYS_FEXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"492\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_GETCOUNTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_GETESTIMATE\":           reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_SETESTIMATE\":           reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_FHSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"398\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"551\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"552\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"556\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"480\", token.INT, 0)),\n\t\t\"SYS_FUTIMENS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"546\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"494\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"449\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"SYS_GETAUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"447\", token.INT, 0)),\n\t\t\"SYS_GETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"554\", token.INT, 0)),\n\t\t\"SYS_GETDTABLESIZE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"557\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETLOGINCLASS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"523\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GSSD_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"505\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_JAIL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_JAIL_ATTACH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_JAIL_GET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"506\", token.INT, 0)),\n\t\t\"SYS_JAIL_REMOVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"508\", token.INT, 0)),\n\t\t\"SYS_JAIL_SET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"507\", token.INT, 0)),\n\t\t\"SYS_KENV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KLDFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_KLDFIRSTMOD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_KLDLOAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_KLDNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_KLDSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_KLDSYM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOADF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"444\", token.INT, 0)),\n\t\t\"SYS_KMQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"461\", token.INT, 0)),\n\t\t\"SYS_KMQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"457\", token.INT, 0)),\n\t\t\"SYS_KMQ_SETATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"458\", token.INT, 0)),\n\t\t\"SYS_KMQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"459\", token.INT, 0)),\n\t\t\"SYS_KMQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"460\", token.INT, 0)),\n\t\t\"SYS_KMQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"462\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_KSEM_CLOSE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"400\", token.INT, 0)),\n\t\t\"SYS_KSEM_DESTROY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"408\", token.INT, 0)),\n\t\t\"SYS_KSEM_GETVALUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"407\", token.INT, 0)),\n\t\t\"SYS_KSEM_INIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"404\", token.INT, 0)),\n\t\t\"SYS_KSEM_OPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"405\", token.INT, 0)),\n\t\t\"SYS_KSEM_POST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"401\", token.INT, 0)),\n\t\t\"SYS_KSEM_TIMEDWAIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"441\", token.INT, 0)),\n\t\t\"SYS_KSEM_TRYWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"403\", token.INT, 0)),\n\t\t\"SYS_KSEM_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"406\", token.INT, 0)),\n\t\t\"SYS_KSEM_WAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"402\", token.INT, 0)),\n\t\t\"SYS_KTIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_KTIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_KTIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_KTIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_KTIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"391\", token.INT, 0)),\n\t\t\"SYS_LCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_LGETFH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"495\", token.INT, 0)),\n\t\t\"SYS_LIO_LISTIO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"478\", token.INT, 0)),\n\t\t\"SYS_LUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_MAC_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"496\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"497\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"559\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"477\", token.INT, 0)),\n\t\t\"SYS_MODFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_MODFNEXT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_MODNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_MODSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"511\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MSGSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_NFSSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_NFSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_NLM_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_NLSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_NMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"378\", token.INT, 0)),\n\t\t\"SYS_NSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_NTP_ADJTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_NTP_GETTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_NUMA_GETAFFINITY\":              reflect.ValueOf(constant.MakeFromLiteral(\"548\", token.INT, 0)),\n\t\t\"SYS_NUMA_SETAFFINITY\":              reflect.ValueOf(constant.MakeFromLiteral(\"549\", token.INT, 0)),\n\t\t\"SYS_OBREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"499\", token.INT, 0)),\n\t\t\"SYS_OPENBSD_POLL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_OVADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PDFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"SYS_PDGETPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"520\", token.INT, 0)),\n\t\t\"SYS_PDKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"519\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"542\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_POSIX_FADVISE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"531\", token.INT, 0)),\n\t\t\"SYS_POSIX_FALLOCATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"530\", token.INT, 0)),\n\t\t\"SYS_POSIX_OPENPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"504\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"545\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"475\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_PROCCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"544\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"522\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"476\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_RCTL_ADD_RULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"528\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_LIMITS\":               reflect.ValueOf(constant.MakeFromLiteral(\"527\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_RACCT\":                reflect.ValueOf(constant.MakeFromLiteral(\"525\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_RULES\":                reflect.ValueOf(constant.MakeFromLiteral(\"526\", token.INT, 0)),\n\t\t\"SYS_RCTL_REMOVE_RULE\":              reflect.ValueOf(constant.MakeFromLiteral(\"529\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"500\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"501\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_RTPRIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_RTPRIO_THREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"466\", token.INT, 0)),\n\t\t\"SYS_SBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":        reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":        reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_RECVMSG\":          reflect.ValueOf(constant.MakeFromLiteral(\"474\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_SENDMSG\":          reflect.ValueOf(constant.MakeFromLiteral(\"472\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_SENDMSG_IOV\":      reflect.ValueOf(constant.MakeFromLiteral(\"473\", token.INT, 0)),\n\t\t\"SYS_SCTP_PEELOFF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"471\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_SEMSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"393\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"452\", token.INT, 0)),\n\t\t\"SYS_SETAUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"SYS_SETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETLOGINCLASS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"524\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_SHMSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_SHM_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"482\", token.INT, 0)),\n\t\t\"SYS_SHM_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"483\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_SIGQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"456\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_SIGTIMEDWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_SIGWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_SIGWAITINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SSTK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"555\", token.INT, 0)),\n\t\t\"SYS_SWAPCONTEXT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"502\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_THR_CREATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_THR_EXIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS_THR_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"433\", token.INT, 0)),\n\t\t\"SYS_THR_KILL2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"481\", token.INT, 0)),\n\t\t\"SYS_THR_NEW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"455\", token.INT, 0)),\n\t\t\"SYS_THR_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"432\", token.INT, 0)),\n\t\t\"SYS_THR_SET_NAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"464\", token.INT, 0)),\n\t\t\"SYS_THR_SUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"442\", token.INT, 0)),\n\t\t\"SYS_THR_WAKE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"443\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"479\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"503\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"547\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_UUIDGEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"392\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WAIT6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"532\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_YIELD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS__UMTX_OP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"454\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS___CAP_RIGHTS_GET\":              reflect.ValueOf(constant.MakeFromLiteral(\"515\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS___MAC_EXECVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"387\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"409\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PROC\":                reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"388\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"389\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_PROC\":                reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"510\", token.INT, 0)),\n\t\t\"SYS___SETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"374\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                          reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                 reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofBpfZbuf\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofBpfZbufHeader\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CA_NAME_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TCP_INFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCP_KEEPINIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXHLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"TCP_MAXOLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOOPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_VENDOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033750\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033679\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033754\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMSDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147775579\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DCD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTMASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900636\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147775575\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"537162847\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCTIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074820185\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"Undelete\":                          reflect.ValueOf(syscall.Undelete),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VERASE2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"WLINUXCLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WTRAPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                        reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                       reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":                    reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                       reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfVersion\":                    reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"BpfZbuf\":                       reflect.ValueOf((*syscall.BpfZbuf)(nil)),\n\t\t\"BpfZbufHeader\":                 reflect.ValueOf((*syscall.BpfZbufHeader)(nil)),\n\t\t\"Cmsghdr\":                       reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":                    reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                         reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                       reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                          reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":                  reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                        reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":                       reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":                   reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                      reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":              reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                        reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                      reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                     reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"IfmaMsghdr\":                    reflect.ValueOf((*syscall.IfmaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":                  reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":          reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\":      reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":              reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"InterfaceMulticastAddrMessage\": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)),\n\t\t\"Iovec\":                         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                      reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                        reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":                        reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                   reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":                reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":           reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":              reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":              reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":               reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":                  reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":                reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                     reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                      reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":              reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":                 reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":                 reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":          reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                      reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":                   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                       reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":                    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_freebsd_riscv64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_ARP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_ATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_INET6_SDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_INET_SDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NETGRAPH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SCLUSTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SLOW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VENDOR00\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_VENDOR01\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_VENDOR02\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"AF_VENDOR03\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"AF_VENDOR04\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"AF_VENDOR05\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"AF_VENDOR06\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"AF_VENDOR07\":                       reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"AF_VENDOR08\":                       reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"AF_VENDOR09\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"AF_VENDOR10\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"AF_VENDOR11\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"AF_VENDOR12\":                       reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"AF_VENDOR13\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"AF_VENDOR14\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"AF_VENDOR15\":                       reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"AF_VENDOR16\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"AF_VENDOR17\":                       reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"AF_VENDOR18\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"AF_VENDOR19\":                       reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"AF_VENDOR20\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"AF_VENDOR21\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"AF_VENDOR22\":                       reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"AF_VENDOR23\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"AF_VENDOR24\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"AF_VENDOR25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"AF_VENDOR26\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"AF_VENDOR27\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"AF_VENDOR28\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"AF_VENDOR29\":                       reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"AF_VENDOR30\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"AF_VENDOR31\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"AF_VENDOR32\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"AF_VENDOR33\":                       reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"AF_VENDOR34\":                       reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"AF_VENDOR35\":                       reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"AF_VENDOR36\":                       reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"AF_VENDOR37\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"AF_VENDOR38\":                       reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"AF_VENDOR39\":                       reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"AF_VENDOR40\":                       reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"AF_VENDOR41\":                       reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"AF_VENDOR42\":                       reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"AF_VENDOR43\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"AF_VENDOR44\":                       reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"AF_VENDOR45\":                       reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"AF_VENDOR46\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"AF_VENDOR47\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B460800\":                           reflect.ValueOf(constant.MakeFromLiteral(\"460800\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B921600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"921600\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFEEDBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762812\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDIRECTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222291065\", token.INT, 0)),\n\t\t\"BIOCGETBUFMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074020989\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGETZMAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074283135\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020978\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCGTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020995\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887930\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCROTZBUF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1075331712\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDIRECTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762808\", token.INT, 0)),\n\t\t\"BIOCSETBUFMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147762814\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETFNR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148549250\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSETWF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148549243\", token.INT, 0)),\n\t\t\"BIOCSETZBUF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149073537\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147762803\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCSTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147762820\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_BUFMODE_BUFFER\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_BUFMODE_ZBUF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_FAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_MONOTONIC\":           reflect.ValueOf(constant.MakeFromLiteral(\"514\", token.INT, 0)),\n\t\t\"BPF_T_BINTIME_MONOTONIC_FAST\":      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"BPF_T_FAST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"BPF_T_FLAG_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_FORMAT_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_FAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_MONOTONIC\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_T_MICROTIME_MONOTONIC_FAST\":    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_MONOTONIC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_T_MONOTONIC_FAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_FAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_MONOTONIC\":          reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"BPF_T_NANOTIME_MONOTONIC_FAST\":     reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"BPF_T_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_T_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_A429\":                          reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"DLT_A653_ICM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"DLT_AIRONET_HEADER\":                reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_AOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_AX25_KISS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4\":              reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4_WITH_PHDR\":    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"DLT_CAN20B\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"DLT_CAN_SOCKETCAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"DLT_DBUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"DLT_DECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_DVB_CI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FC_2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"DLT_FC_2_WITH_FRAME_DELIMS\":        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FLEXRAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_FRELAY_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                         reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                         reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_ABIS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_UM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":          reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_LINUX\":            reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NOFCS\":            reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NONASK_PHY\":       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS_RADIO\":      reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"DLT_IPFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"DLT_IPMB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"DLT_IPMB_LINUX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPOIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"DLT_IPV4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"DLT_IPV6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM_CEMIC\":             reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FIBRECHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ISM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":               reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":              reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":             reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":              reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SRX_E2E\":               reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"DLT_LAPB_WITH_DIR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"DLT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"DLT_LIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"DLT_LINUX_EVDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_PPP_WITHDIRECTION\":       reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MATCHING_MAX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"DLT_MATCHING_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_MFR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"DLT_MOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"DLT_MPEG_2_TS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_MUX27010\":                      reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"DLT_NETANALYZER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"DLT_NETANALYZER_TRANSPARENT\":       reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"DLT_NFC_LLCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"DLT_NFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"DLT_NG40\":                          reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_PPI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIRECTION\":            reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAIF1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RIO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SITA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_STANAG_5066_D_PDU\":             reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":             reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"DLT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX_MMAPPED\":             reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"DLT_USER0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"DLT_USER1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"DLT_USER10\":                        reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"DLT_USER11\":                        reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"DLT_USER12\":                        reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"DLT_USER13\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"DLT_USER14\":                        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"DLT_USER15\":                        reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"DLT_USER2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"DLT_USER3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"DLT_USER4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"DLT_USER5\":                         reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"DLT_USER6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"DLT_USER7\":                         reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"DLT_USER8\":                         reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"DLT_USER9\":                         reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"DLT_WIHART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"DLT_X2E_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"DLT_X2E_XORAYA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECAPMODE\":                          reflect.ValueOf(syscall.ECAPMODE),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOOFUS\":                           reflect.ValueOf(syscall.EDOOFUS),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCAPABLE\":                       reflect.ValueOf(syscall.ENOTCAPABLE),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":                   reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                        reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-9\", token.INT, 0)),\n\t\t\"EVFILT_LIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_USER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-11\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_DISPATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EV_DROP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_RECEIPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_CANCEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_DUP2FD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUP2FD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_OGETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_OSETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_OSETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_RDAHEAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_READAHEAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLK_REMOTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_UNLCKSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatat\":                           reflect.ValueOf(syscall.Fstatat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getdtablesize\":                     reflect.ValueOf(syscall.Getdtablesize),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                         reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                 reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ALTPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2199410\", token.INT, 0)),\n\t\t\"IFF_CANTCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DRV_OACTIVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DRV_RUNNING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_DYING\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MONITOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PPROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RENAMING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SMART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_STATICARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_IPXIP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_RFC3021_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4294967294\", token.INT, 0)),\n\t\t\"IPPROTO_3PC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPPROTO_ADFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_AHIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPPROTO_APES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IPPROTO_ARGUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPPROTO_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IPPROTO_BHA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPPROTO_BLT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPPROTO_BRSATMON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_CFTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPPROTO_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPPROTO_CMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPPROTO_CPHB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPPROTO_CPNX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPPROTO_DDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPPROTO_DGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EMCON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IDPR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPPROTO_IDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IPPROTO_IGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IPPROTO_IL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPPROTO_INLSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_INP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPCV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IPPROTO_IPEIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IRTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPPROTO_KRYPTOLAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPPROTO_LARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MEAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPPROTO_MICP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_MUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NHRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_NSP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_NVPII\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPPROTO_OLD_DIVERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"IPPROTO_OSPFIGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PGM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IPPROTO_PIGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PRM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_PVP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_RCCMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPPROTO_RDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_RVD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPPROTO_SATEXPAK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPPROTO_SATMON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IPPROTO_SCCSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_SDRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPPROTO_SEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"IPPROTO_SEP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPPROTO_SPACER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32767\", token.INT, 0)),\n\t\t\"IPPROTO_SRPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IPPROTO_ST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPPROTO_SVMTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IPPROTO_SWIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPPROTO_TCF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TLSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_TPXX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPPROTO_TTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VINES\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_VISA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPPROTO_VMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IPPROTO_WBEXPAK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IPPROTO_WBMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPPROTO_WSN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPPROTO_XNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPPROTO_XTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_BINDANY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_BINDV6ONLY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_FW_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_FW_DEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_FW_FLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_FW_GET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_FW_ZERO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXOPTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MAX_GROUP_SRC_FILTER\":         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IPV6_MAX_MEMBERSHIPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IPV6_MAX_SOCK_SRC_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IPV6_MIN_MEMBERSHIPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MSFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PREFER_TEMPADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IP_BINDANY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DONTFRAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IP_DUMMYNET3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_CONFIGURE\":             reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IP_FAITH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_FW3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IP_FW_ADD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_FW_DEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IP_FW_FLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IP_FW_GET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IP_FW_NAT_CFG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IP_FW_NAT_DEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IP_FW_NAT_GET_CONFIG\":              reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IP_FW_NAT_GET_LOG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IP_FW_RESETLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_ADD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_DEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_GETSIZE\":               reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IP_FW_TABLE_LIST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IP_FW_ZERO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_GROUP_SRC_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_MUTE_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_SRC_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOURCE_FILTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_VIF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_ONESBCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RSVP_OFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_RSVP_ON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_OFF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_ON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_SENDSRCADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_AUTOSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_CORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_NOCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_NOSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_PROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_32BIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MAP_ALIGNED_SUPER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_SHIFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_NOCORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_NOSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_PREFAULT_READ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_RESERVED0080\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_RESERVED0100\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MSG_COMPAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_NBIO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MSG_NOTIFICATION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_IFLISTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NET_RT_IFMALIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FFAND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_FFCOPY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFCTRLMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFLAGSMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"NOTE_FFNOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NOTE_FFOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRIGGER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXEC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_TTY_INIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"268752904\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_GWFLAG_COMPAT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLDATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PRCLONING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_RNH_LOCKED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_STICKY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DELMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTV_WEIGHT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RT_CACHING_CONTEXT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RT_DEFAULT_FIB\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_NORTREF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_BINTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SCM_CREDS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGLIBRT\":                          reflect.ValueOf(syscall.SIGLIBRT),\n\t\t\"SIGLWP\":                            reflect.ValueOf(syscall.SIGLWP),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHR\":                            reflect.ValueOf(syscall.SIGTHR),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151707146\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCAIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132103\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860635\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151707147\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132105\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607753\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860637\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873915\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223351824\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223876111\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349535\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222300964\", token.INT, 0)),\n\t\t\"SIOCGIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349546\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349596\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFGMEMB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873930\", token.INT, 0)),\n\t\t\"SIOCGIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873928\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349536\", token.INT, 0)),\n\t\t\"SIOCGIFMAC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349542\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3224398136\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349555\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFSTATUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3274795323\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3239602460\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3239602507\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_0\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349584\", token.INT, 0)),\n\t\t\"SIOCGPRIVATE_1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349585\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349626\", token.INT, 0)),\n\t\t\"SIOCIFCREATE2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222301048\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132091\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607710\", token.INT, 0)),\n\t\t\"SIOCSIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607721\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607773\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607740\", token.INT, 0)),\n\t\t\"SIOCSIFMAC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607719\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607732\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607720\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSIFPHYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607734\", token.INT, 0)),\n\t\t\"SIOCSIFRVNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349595\", token.INT, 0)),\n\t\t\"SIOCSIFVNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349594\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2165860682\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_MAXADDRLEN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ACCEPTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BINTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LABEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LISTENINCQLEN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SO_LISTENQLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4114\", token.INT, 0)),\n\t\t\"SO_LISTENQLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_NO_DDP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SO_NO_OFFLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_PROTOTYPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SETFIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4116\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_USER_COOKIE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4117\", token.INT, 0)),\n\t\t\"SO_VENDOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"SYS_ABORT2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"463\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"541\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_AIO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_AIO_ERROR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_AIO_FSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"465\", token.INT, 0)),\n\t\t\"SYS_AIO_MLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"543\", token.INT, 0)),\n\t\t\"SYS_AIO_READ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_AIO_RETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_AIO_WAITCOMPLETE\":              reflect.ValueOf(constant.MakeFromLiteral(\"359\", token.INT, 0)),\n\t\t\"SYS_AIO_WRITE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_AUDIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"445\", token.INT, 0)),\n\t\t\"SYS_AUDITCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"453\", token.INT, 0)),\n\t\t\"SYS_AUDITON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"446\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BINDAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"538\", token.INT, 0)),\n\t\t\"SYS_CAP_ENTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"SYS_CAP_FCNTLS_GET\":                reflect.ValueOf(constant.MakeFromLiteral(\"537\", token.INT, 0)),\n\t\t\"SYS_CAP_FCNTLS_LIMIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"SYS_CAP_GETMODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"SYS_CAP_IOCTLS_GET\":                reflect.ValueOf(constant.MakeFromLiteral(\"535\", token.INT, 0)),\n\t\t\"SYS_CAP_IOCTLS_LIMIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"534\", token.INT, 0)),\n\t\t\"SYS_CAP_RIGHTS_LIMIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"533\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHFLAGSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"540\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETCPUCLOCKID2\":          reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":               reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSEFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"509\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_CONNECTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"539\", token.INT, 0)),\n\t\t\"SYS_CPUSET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"484\", token.INT, 0)),\n\t\t\"SYS_CPUSET_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"487\", token.INT, 0)),\n\t\t\"SYS_CPUSET_GETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"486\", token.INT, 0)),\n\t\t\"SYS_CPUSET_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"488\", token.INT, 0)),\n\t\t\"SYS_CPUSET_SETID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"485\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXTATTRCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"373\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"437\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"438\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"489\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"490\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"491\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"550\", token.INT, 0)),\n\t\t\"SYS_FEXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"492\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_GETCOUNTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_GETESTIMATE\":           reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_FFCLOCK_SETESTIMATE\":           reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_FHSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"398\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"551\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"552\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"556\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"480\", token.INT, 0)),\n\t\t\"SYS_FUTIMENS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"546\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"494\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"449\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"SYS_GETAUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"447\", token.INT, 0)),\n\t\t\"SYS_GETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"554\", token.INT, 0)),\n\t\t\"SYS_GETDTABLESIZE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"557\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETLOGINCLASS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"523\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GSSD_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"505\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_JAIL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_JAIL_ATTACH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_JAIL_GET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"506\", token.INT, 0)),\n\t\t\"SYS_JAIL_REMOVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"508\", token.INT, 0)),\n\t\t\"SYS_JAIL_SET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"507\", token.INT, 0)),\n\t\t\"SYS_KENV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KLDFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_KLDFIRSTMOD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_KLDLOAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_KLDNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_KLDSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_KLDSYM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_KLDUNLOADF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"444\", token.INT, 0)),\n\t\t\"SYS_KMQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"461\", token.INT, 0)),\n\t\t\"SYS_KMQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"457\", token.INT, 0)),\n\t\t\"SYS_KMQ_SETATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"458\", token.INT, 0)),\n\t\t\"SYS_KMQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"459\", token.INT, 0)),\n\t\t\"SYS_KMQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"460\", token.INT, 0)),\n\t\t\"SYS_KMQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"462\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_KSEM_CLOSE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"400\", token.INT, 0)),\n\t\t\"SYS_KSEM_DESTROY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"408\", token.INT, 0)),\n\t\t\"SYS_KSEM_GETVALUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"407\", token.INT, 0)),\n\t\t\"SYS_KSEM_INIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"404\", token.INT, 0)),\n\t\t\"SYS_KSEM_OPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"405\", token.INT, 0)),\n\t\t\"SYS_KSEM_POST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"401\", token.INT, 0)),\n\t\t\"SYS_KSEM_TIMEDWAIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"441\", token.INT, 0)),\n\t\t\"SYS_KSEM_TRYWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"403\", token.INT, 0)),\n\t\t\"SYS_KSEM_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"406\", token.INT, 0)),\n\t\t\"SYS_KSEM_WAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"402\", token.INT, 0)),\n\t\t\"SYS_KTIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_KTIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_KTIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_KTIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_KTIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"391\", token.INT, 0)),\n\t\t\"SYS_LCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_LGETFH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"495\", token.INT, 0)),\n\t\t\"SYS_LIO_LISTIO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"478\", token.INT, 0)),\n\t\t\"SYS_LUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_MAC_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"496\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"497\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"559\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"477\", token.INT, 0)),\n\t\t\"SYS_MODFIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_MODFNEXT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_MODNEXT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_MODSTAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"511\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MSGSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_NFSSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_NFSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_NLM_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_NLSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_NMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"378\", token.INT, 0)),\n\t\t\"SYS_NSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_NTP_ADJTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_NTP_GETTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_NUMA_GETAFFINITY\":              reflect.ValueOf(constant.MakeFromLiteral(\"548\", token.INT, 0)),\n\t\t\"SYS_NUMA_SETAFFINITY\":              reflect.ValueOf(constant.MakeFromLiteral(\"549\", token.INT, 0)),\n\t\t\"SYS_OBREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"499\", token.INT, 0)),\n\t\t\"SYS_OPENBSD_POLL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_OVADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PDFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"SYS_PDGETPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"520\", token.INT, 0)),\n\t\t\"SYS_PDKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"519\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"542\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_POSIX_FADVISE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"531\", token.INT, 0)),\n\t\t\"SYS_POSIX_FALLOCATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"530\", token.INT, 0)),\n\t\t\"SYS_POSIX_OPENPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"504\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"545\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"475\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_PROCCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"544\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"522\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"476\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_RCTL_ADD_RULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"528\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_LIMITS\":               reflect.ValueOf(constant.MakeFromLiteral(\"527\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_RACCT\":                reflect.ValueOf(constant.MakeFromLiteral(\"525\", token.INT, 0)),\n\t\t\"SYS_RCTL_GET_RULES\":                reflect.ValueOf(constant.MakeFromLiteral(\"526\", token.INT, 0)),\n\t\t\"SYS_RCTL_REMOVE_RULE\":              reflect.ValueOf(constant.MakeFromLiteral(\"529\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"500\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"501\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_RTPRIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_RTPRIO_THREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"466\", token.INT, 0)),\n\t\t\"SYS_SBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":        reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":        reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_RECVMSG\":          reflect.ValueOf(constant.MakeFromLiteral(\"474\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_SENDMSG\":          reflect.ValueOf(constant.MakeFromLiteral(\"472\", token.INT, 0)),\n\t\t\"SYS_SCTP_GENERIC_SENDMSG_IOV\":      reflect.ValueOf(constant.MakeFromLiteral(\"473\", token.INT, 0)),\n\t\t\"SYS_SCTP_PEELOFF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"471\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_SEMSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"393\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"452\", token.INT, 0)),\n\t\t\"SYS_SETAUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"SYS_SETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETFIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETLOGINCLASS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"524\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_SHMSYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_SHM_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"482\", token.INT, 0)),\n\t\t\"SYS_SHM_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"483\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_SIGQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"456\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_SIGTIMEDWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_SIGWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_SIGWAITINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SSTK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"555\", token.INT, 0)),\n\t\t\"SYS_SWAPCONTEXT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"502\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_THR_CREATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_THR_EXIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS_THR_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"433\", token.INT, 0)),\n\t\t\"SYS_THR_KILL2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"481\", token.INT, 0)),\n\t\t\"SYS_THR_NEW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"455\", token.INT, 0)),\n\t\t\"SYS_THR_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"432\", token.INT, 0)),\n\t\t\"SYS_THR_SET_NAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"464\", token.INT, 0)),\n\t\t\"SYS_THR_SUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"442\", token.INT, 0)),\n\t\t\"SYS_THR_WAKE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"443\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"479\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"503\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"547\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_UUIDGEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"392\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WAIT6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"532\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_YIELD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS__UMTX_OP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"454\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS___ACL_ACLCHECK_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS___ACL_DELETE_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS___ACL_GET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS___ACL_SET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS___CAP_RIGHTS_GET\":              reflect.ValueOf(constant.MakeFromLiteral(\"515\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS___MAC_EXECVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"387\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"409\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PROC\":                reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"388\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"389\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LINK\":                reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_PROC\":                reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"510\", token.INT, 0)),\n\t\t\"SYS___SETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"374\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                          reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                 reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofBpfZbuf\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofBpfZbufHeader\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CA_NAME_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TCP_INFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCP_KEEPINIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXHLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"TCP_MAXOLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOOPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_VENDOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033750\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033679\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033754\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMSDTRWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147775579\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DCD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTMASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536900636\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDRAINWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147775575\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"537162847\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCTIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074820185\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"Undelete\":                          reflect.ValueOf(syscall.Undelete),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VERASE2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"WLINUXCLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WTRAPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                        reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                       reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":                    reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                       reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfVersion\":                    reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"BpfZbuf\":                       reflect.ValueOf((*syscall.BpfZbuf)(nil)),\n\t\t\"BpfZbufHeader\":                 reflect.ValueOf((*syscall.BpfZbufHeader)(nil)),\n\t\t\"Cmsghdr\":                       reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":                    reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                         reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                       reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                          reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":                  reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                        reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":                       reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":                   reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                      reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":              reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                        reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                      reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                     reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"IfmaMsghdr\":                    reflect.ValueOf((*syscall.IfmaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":                  reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":          reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\":      reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":              reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"InterfaceMulticastAddrMessage\": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)),\n\t\t\"Iovec\":                         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                      reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                        reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":                        reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                   reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":                reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":           reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":              reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":              reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":               reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":                  reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":                reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                     reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                      reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":              reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":                 reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":                 reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":          reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                      reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":                   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                       reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":                    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_illumos_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22 && !solaris\n// +build go1.22,!solaris\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_802\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_CCITT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_ECMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_FILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_GOSIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_INET_OFFLOAD\":               reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_KEY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_NBS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_NCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_NIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_NS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_OSINET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_PACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_POLICY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SNA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_TRILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_UNIX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ARPHRD_FRAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ARPHRD_IB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IPATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":               reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"Accept\":                        reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                       reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                        reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                       reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"B1200\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B153600\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"B1800\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B230400\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"B2400\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B300\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B307200\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"B38400\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B460800\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"B4800\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B57600\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"B600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B76800\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"B921600\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"B9600\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1072676233\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST32\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1073200521\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGETLIF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1081623147\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1074807419\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT32\":               reflect.ValueOf(constant.MakeFromLiteral(\"1074283131\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074020984\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1082147439\", token.INT, 0)),\n\t\t\"BIOCGSTATSOLD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2147204496\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1073462682\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2147204490\", token.INT, 0)),\n\t\t\"BIOCSETF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2146418073\", token.INT, 0)),\n\t\t\"BIOCSETF32\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2146942361\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2145369492\", token.INT, 0)),\n\t\t\"BIOCSETLIF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2139602324\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2147204491\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2146418054\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT32\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2146942342\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2147204487\", token.INT, 0)),\n\t\t\"BIOCSTCPF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2146418062\", token.INT, 0)),\n\t\t\"BIOCSUDPF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2146418061\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DFLTBUFSIZE\":               reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"BPF_DIV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                          reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":             reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":           reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CSWTCH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                         reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                         reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                         reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                        reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                      reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                         reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                   reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                       reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                     reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                       reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_AIRONET_HEADER\":            reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":    reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":              reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":              reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                     reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                     reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":          reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":      reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPOIB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":              reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":              reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":             reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":             reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":            reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":              reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":              reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":             reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":           reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":          reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":               reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":             reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":          reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":            reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_NULL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":              reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RAWAF_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"35913728\", token.INT, 0)),\n\t\t\"DLT_RIO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":         reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Dup\":                           reflect.ValueOf(syscall.Dup),\n\t\t\"E2BIG\":                         reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                        reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                    reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                 reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                          reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                  reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                        reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                      reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                         reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                         reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                        reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                       reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                         reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                       reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                       reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                        reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                         reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                     reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                        reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                        reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                         reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                  reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                  reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                    reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                       reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                     reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                  reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                          reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                        reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                        reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                        reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                         reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                     reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                  reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                         reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                        reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                   reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                         reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                        reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                           reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                       reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                        reflect.ValueOf(syscall.EISDIR),\n\t\t\"EL2HLT\":                        reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                      reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                        reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                        reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                       reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                       reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                      reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                       reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                       reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                        reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOCKUNMAPPED\":                 reflect.ValueOf(syscall.ELOCKUNMAPPED),\n\t\t\"ELOOP\":                         reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                        reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                        reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMPTY_SET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EMSGSIZE\":                      reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMT_CPCOVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMULTIHOP\":                     reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                  reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENETDOWN\":                      reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                     reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                   reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                        reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                        reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                       reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                        reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                       reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                        reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                        reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                       reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                        reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                       reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                        reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                        reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                        reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                        reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                   reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                        reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                         reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                        reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                        reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTACTIVE\":                    reflect.ValueOf(syscall.ENOTACTIVE),\n\t\t\"ENOTBLK\":                       reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                      reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                       reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                     reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":               reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                      reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                       reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                        reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                      reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                         reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                    reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                     reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                    reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                         reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                  reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                         reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROTO\":                        reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":               reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                    reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"EQUALITY_CHECK\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ERANGE\":                        reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                       reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                       reflect.ValueOf(syscall.EREMOTE),\n\t\t\"ERESTART\":                      reflect.ValueOf(syscall.ERESTART),\n\t\t\"EROFS\":                         reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                     reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":               reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                        reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                         reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                        reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                        reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                      reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETIME\":                         reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                     reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                  reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                       reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUNATCH\":                       reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                        reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                   reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                         reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                        reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"Environ\":                       reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_NFDBITS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"FLUSHALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FLUSHDATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"FLUSHO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"F_ALLOCSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_ALLOCSP64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_BADFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"F_BLKSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"F_BLOCKS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"F_CHKFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_COMPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_DUP2FD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_DUP2FD_CLOEXEC\":              reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"F_DUPFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"F_FREESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_FREESP64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_GETFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_GETLK64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_GETOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"F_GETXFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"F_HASREMOTELOCKS\":              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"F_ISSTREAM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_MANDDNY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_MDACC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"F_NODNY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_NPRIV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_PRIV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_QUOTACTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"F_RDACC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_RDDNY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_RDLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_REVOKE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"F_RMACC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_RMDNY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_RWACC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_RWDNY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_SETFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64_NBMAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"F_SETLKW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLK_NBMAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"F_SETOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"F_SHARE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"F_SHARE_NBMAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"F_UNLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_UNLKSYS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_UNSHARE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"F_WRACC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRDNY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Fchdir\":                        reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                        reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                        reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                    reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                         reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                      reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                     reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                         reflect.ValueOf(syscall.Fstat),\n\t\t\"Fsync\":                         reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                     reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Getcwd\":                        reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                      reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                       reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                        reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                       reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getexecname\":                   reflect.ValueOf(syscall.Getexecname),\n\t\t\"Getgid\":                        reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                     reflect.ValueOf(syscall.Getgroups),\n\t\t\"Gethostname\":                   reflect.ValueOf(syscall.Gethostname),\n\t\t\"Getpagesize\":                   reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                   reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpid\":                        reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                       reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                   reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                     reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                     reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                   reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptInt\":                 reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                  reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                        reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                         reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICRNL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_ADDRCONF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8736013826906\", token.INT, 0)),\n\t\t\"IFF_COS_ENABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DEPRECATED\":                reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_DHCPRUNNING\":               reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_DUPLICATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"274877906944\", token.INT, 0)),\n\t\t\"IFF_FAILED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"IFF_FIXEDMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"68719476736\", token.INT, 0)),\n\t\t\"IFF_INACTIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IFF_INTELLIGENT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_IPMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"549755813888\", token.INT, 0)),\n\t\t\"IFF_IPMP_CANTCHANGE\":           reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"IFF_IPMP_INVALID\":              reflect.ValueOf(constant.MakeFromLiteral(\"8256487552\", token.INT, 0)),\n\t\t\"IFF_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IFF_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IFF_L3PROTECT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4398046511104\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_MULTI_BCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOACCEPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFAILOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"IFF_NOLINKLOCAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"2199023255552\", token.INT, 0)),\n\t\t\"IFF_NOLOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_NONUD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_NORTEXCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NOXMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_OFFLINE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PREFERRED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17179869184\", token.INT, 0)),\n\t\t\"IFF_PRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_ROUTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_STANDBY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IFF_TEMPORARY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34359738368\", token.INT, 0)),\n\t\t\"IFF_UNNUMBERED\":                reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_UP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"137438953472\", token.INT, 0)),\n\t\t\"IFF_VRRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1099511627776\", token.INT, 0)),\n\t\t\"IFF_XRESOLV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_6TO4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_DS3\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"IFT_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":               reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":               reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_RS232\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_T1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_V35\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_AUTOCONF_MASK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_AUTOCONF_NET\":               reflect.ValueOf(constant.MakeFromLiteral(\"2851995648\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_CLASSE_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_PRIVATE12_MASK\":             reflect.ValueOf(constant.MakeFromLiteral(\"4293918720\", token.INT, 0)),\n\t\t\"IN_PRIVATE12_NET\":              reflect.ValueOf(constant.MakeFromLiteral(\"2886729728\", token.INT, 0)),\n\t\t\"IN_PRIVATE16_MASK\":             reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_PRIVATE16_NET\":              reflect.ValueOf(constant.MakeFromLiteral(\"3232235520\", token.INT, 0)),\n\t\t\"IN_PRIVATE8_MASK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_PRIVATE8_NET\":               reflect.ValueOf(constant.MakeFromLiteral(\"167772160\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":               reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":              reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_OSPF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":               reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_BOUND_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_FLOWLABEL\":       reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_TCLASS\":          reflect.ValueOf(constant.MakeFromLiteral(\"61455\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_PAD1_OPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_CGA\":           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_CGADEFAULT\":    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_CGAMASK\":       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_COA\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_DEFAULT\":       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_HOME\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_MASK\":          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_MIPDEFAULT\":    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_MIPMASK\":       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_NONCGA\":        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_PUBLIC\":        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_TMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_TMPDEFAULT\":    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_TMPMASK\":       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":              reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":              reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDRDSTOPTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SEC_OPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_SRC_PREFERENCES\":          reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_UNSPEC_SRC\":               reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_BOUND_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_BROADCAST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"IP_BROADCAST_TTL\":              reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DHCPINIT_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IP_DONTFRAG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_DONTROUTE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":              reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_NEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVPKTINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVSLLA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_REUSEADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"IP_SEC_OPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_TOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":             reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_UNSPEC_SRC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"ISIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":               reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"LOCK_EX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                        reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                          reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                        reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                         reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_ACCESS_DEFAULT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_ACCESS_LWP\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_ACCESS_MANY\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_32BIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_ALIGN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_ANON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_FILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_INITDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_TEXT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_DUPCTRL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_EOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_MAXIOVLEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_NOTIFICATION\":              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_OOB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_XPG4_2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_OLDSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MS_SYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"M_FLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"Mkdir\":                         reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mknod\":                         reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                          reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                        reflect.ValueOf(syscall.Munmap),\n\t\t\"NOFLSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                     reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                 reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONLCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPENFAIL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"OPOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6291459\", token.INT, 0)),\n\t\t\"O_APPEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"O_CREAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_DSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_EXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_NDELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NOLINKS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_RDONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_SEARCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_SIOCGIFCONF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1073190636\", token.INT, 0)),\n\t\t\"O_SIOCGLIFCONF\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1072666248\", token.INT, 0)),\n\t\t\"O_SYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_TRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_XATTR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"Open\":                          reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PAREXT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PARMRK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ParseDirent\":                   reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseSocketControlMessage\":     reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":               reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"Pathconf\":                      reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                          reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                         reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                         reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                        reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_SRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_NUMBITS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_SRC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTIRT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_SETSRC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_ZONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTM_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_CHGADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_FREEADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RT_AWARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                          reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                    reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                      reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                      reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                       reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                        reflect.ValueOf(syscall.Rename),\n\t\t\"Rmdir\":                         reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_RIGHTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SCM_UCRED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4114\", token.INT, 0)),\n\t\t\"SHUT_RD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIG2STR_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SIGABRT\":                       reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                       reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                        reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCANCEL\":                     reflect.ValueOf(syscall.SIGCANCEL),\n\t\t\"SIGCHLD\":                       reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                        reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                       reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                        reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                        reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGFREEZE\":                     reflect.ValueOf(syscall.SIGFREEZE),\n\t\t\"SIGHUP\":                        reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                        reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                        reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                         reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                        reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGJVM1\":                       reflect.ValueOf(syscall.SIGJVM1),\n\t\t\"SIGJVM2\":                       reflect.ValueOf(syscall.SIGJVM2),\n\t\t\"SIGKILL\":                       reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGLOST\":                       reflect.ValueOf(syscall.SIGLOST),\n\t\t\"SIGLWP\":                        reflect.ValueOf(syscall.SIGLWP),\n\t\t\"SIGPIPE\":                       reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                       reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                       reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                        reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                       reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                       reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                       reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                        reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                       reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHAW\":                       reflect.ValueOf(syscall.SIGTHAW),\n\t\t\"SIGTRAP\":                       reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                       reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                       reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                       reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                        reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                       reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                       reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                     reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWAITING\":                    reflect.ValueOf(syscall.SIGWAITING),\n\t\t\"SIGWINCH\":                      reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                       reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                       reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIGXRES\":                       reflect.ValueOf(syscall.SIGXRES),\n\t\t\"SIOCADDMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359567\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2144308726\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2145097440\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359566\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2144308725\", token.INT, 0)),\n\t\t\"SIOCDIPSECONFIG\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147194473\", token.INT, 0)),\n\t\t\"SIOCDXARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2147456600\", token.INT, 0)),\n\t\t\"SIOCFIPSECONFIG\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147194475\", token.INT, 0)),\n\t\t\"SIOCGARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-1071355617\", token.INT, 0)),\n\t\t\"SIOCGDSTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1073714780\", token.INT, 0)),\n\t\t\"SIOCGENADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1071617707\", token.INT, 0)),\n\t\t\"SIOCGENPSTATS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1071617735\", token.INT, 0)),\n\t\t\"SIOCGETLSGCNT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1072664043\", token.INT, 0)),\n\t\t\"SIOCGETNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074819892\", token.INT, 0)),\n\t\t\"SIOCGETPEER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074819893\", token.INT, 0)),\n\t\t\"SIOCGETPROP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073712964\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1072401899\", token.INT, 0)),\n\t\t\"SIOCGETSYNC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1071617747\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1072401900\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1071617779\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1071617769\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073190564\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1071617777\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617775\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1071617607\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617702\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071617773\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1071617765\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071617770\", token.INT, 0)),\n\t\t\"SIOCGIFMUXID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617704\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1071617767\", token.INT, 0)),\n\t\t\"SIOCGIFNUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074030935\", token.INT, 0)),\n\t\t\"SIOCGIP6ADDRPOLICY\":            reflect.ValueOf(constant.MakeFromLiteral(\"-1073714782\", token.INT, 0)),\n\t\t\"SIOCGIPMSFILTER\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1073452620\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1065850511\", token.INT, 0)),\n\t\t\"SIOCGLIFBINDING\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1065850470\", token.INT, 0)),\n\t\t\"SIOCGLIFBRDADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1065850501\", token.INT, 0)),\n\t\t\"SIOCGLIFCONF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1072666203\", token.INT, 0)),\n\t\t\"SIOCGLIFDADSTATE\":              reflect.ValueOf(constant.MakeFromLiteral(\"-1065850434\", token.INT, 0)),\n\t\t\"SIOCGLIFDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1065850509\", token.INT, 0)),\n\t\t\"SIOCGLIFFLAGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1065850507\", token.INT, 0)),\n\t\t\"SIOCGLIFGROUPINFO\":             reflect.ValueOf(constant.MakeFromLiteral(\"-1061918307\", token.INT, 0)),\n\t\t\"SIOCGLIFGROUPNAME\":             reflect.ValueOf(constant.MakeFromLiteral(\"-1065850468\", token.INT, 0)),\n\t\t\"SIOCGLIFHWADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1065850432\", token.INT, 0)),\n\t\t\"SIOCGLIFINDEX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1065850491\", token.INT, 0)),\n\t\t\"SIOCGLIFLNKINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1065850484\", token.INT, 0)),\n\t\t\"SIOCGLIFMETRIC\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1065850497\", token.INT, 0)),\n\t\t\"SIOCGLIFMTU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1065850502\", token.INT, 0)),\n\t\t\"SIOCGLIFMUXID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1065850493\", token.INT, 0)),\n\t\t\"SIOCGLIFNETMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1065850499\", token.INT, 0)),\n\t\t\"SIOCGLIFNUM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1072928382\", token.INT, 0)),\n\t\t\"SIOCGLIFSRCOF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1072666191\", token.INT, 0)),\n\t\t\"SIOCGLIFSUBNET\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1065850486\", token.INT, 0)),\n\t\t\"SIOCGLIFTOKEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1065850488\", token.INT, 0)),\n\t\t\"SIOCGLIFUSESRC\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1065850449\", token.INT, 0)),\n\t\t\"SIOCGLIFZONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1065850454\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGMSFILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1073452622\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1072666182\", token.INT, 0)),\n\t\t\"SIOCGXARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1073714777\", token.INT, 0)),\n\t\t\"SIOCIFDETACH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359560\", token.INT, 0)),\n\t\t\"SIOCILB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1073452613\", token.INT, 0)),\n\t\t\"SIOCLIFADDIF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1065850513\", token.INT, 0)),\n\t\t\"SIOCLIFDELND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2139592307\", token.INT, 0)),\n\t\t\"SIOCLIFGETND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1065850482\", token.INT, 0)),\n\t\t\"SIOCLIFREMOVEIF\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2139592338\", token.INT, 0)),\n\t\t\"SIOCLIFSETND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2139592305\", token.INT, 0)),\n\t\t\"SIOCLIPSECONFIG\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147194472\", token.INT, 0)),\n\t\t\"SIOCLOWER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2145359575\", token.INT, 0)),\n\t\t\"SIOCSARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2145097442\", token.INT, 0)),\n\t\t\"SIOCSCTPGOPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1072666195\", token.INT, 0)),\n\t\t\"SIOCSCTPPEELOFF\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1073452626\", token.INT, 0)),\n\t\t\"SIOCSCTPSOPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2146408020\", token.INT, 0)),\n\t\t\"SIOCSENABLESDP\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1073452617\", token.INT, 0)),\n\t\t\"SIOCSETPROP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2147192643\", token.INT, 0)),\n\t\t\"SIOCSETSYNC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2145359572\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2147192064\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2145359604\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2145359592\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2145359602\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359600\", token.INT, 0)),\n\t\t\"SIOCSIFINDEX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359525\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2145359598\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2145359588\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2145359595\", token.INT, 0)),\n\t\t\"SIOCSIFMUXID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359527\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2145359543\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2145359590\", token.INT, 0)),\n\t\t\"SIOCSIP6ADDRPOLICY\":            reflect.ValueOf(constant.MakeFromLiteral(\"-2147456605\", token.INT, 0)),\n\t\t\"SIOCSIPMSFILTER\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147194443\", token.INT, 0)),\n\t\t\"SIOCSIPSECONFIG\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147194474\", token.INT, 0)),\n\t\t\"SIOCSLGETREQ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617721\", token.INT, 0)),\n\t\t\"SIOCSLIFADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2139592336\", token.INT, 0)),\n\t\t\"SIOCSLIFBRDADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2139592324\", token.INT, 0)),\n\t\t\"SIOCSLIFDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2139592334\", token.INT, 0)),\n\t\t\"SIOCSLIFFLAGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2139592332\", token.INT, 0)),\n\t\t\"SIOCSLIFGROUPNAME\":             reflect.ValueOf(constant.MakeFromLiteral(\"-2139592293\", token.INT, 0)),\n\t\t\"SIOCSLIFINDEX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2139592314\", token.INT, 0)),\n\t\t\"SIOCSLIFLNKINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2139592309\", token.INT, 0)),\n\t\t\"SIOCSLIFMETRIC\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2139592320\", token.INT, 0)),\n\t\t\"SIOCSLIFMTU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2139592327\", token.INT, 0)),\n\t\t\"SIOCSLIFMUXID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2139592316\", token.INT, 0)),\n\t\t\"SIOCSLIFNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1065850495\", token.INT, 0)),\n\t\t\"SIOCSLIFNETMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2139592322\", token.INT, 0)),\n\t\t\"SIOCSLIFPREFIX\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1065850433\", token.INT, 0)),\n\t\t\"SIOCSLIFSUBNET\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2139592311\", token.INT, 0)),\n\t\t\"SIOCSLIFTOKEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2139592313\", token.INT, 0)),\n\t\t\"SIOCSLIFUSESRC\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2139592272\", token.INT, 0)),\n\t\t\"SIOCSLIFZONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2139592277\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2147192062\", token.INT, 0)),\n\t\t\"SIOCSLSTAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2145359544\", token.INT, 0)),\n\t\t\"SIOCSMSFILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2147194445\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2147192056\", token.INT, 0)),\n\t\t\"SIOCSPROMISC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2147194576\", token.INT, 0)),\n\t\t\"SIOCSQPTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1073452616\", token.INT, 0)),\n\t\t\"SIOCSSDSTATS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617746\", token.INT, 0)),\n\t\t\"SIOCSSESTATS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617745\", token.INT, 0)),\n\t\t\"SIOCSXARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2147456602\", token.INT, 0)),\n\t\t\"SIOCTMYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073190512\", token.INT, 0)),\n\t\t\"SIOCTMYSITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073190510\", token.INT, 0)),\n\t\t\"SIOCTONLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073190511\", token.INT, 0)),\n\t\t\"SIOCUPPER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2145359576\", token.INT, 0)),\n\t\t\"SIOCX25RCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071617732\", token.INT, 0)),\n\t\t\"SIOCX25TBL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071617731\", token.INT, 0)),\n\t\t\"SIOCX25XMT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071617733\", token.INT, 0)),\n\t\t\"SIOCXPROTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536900407\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOCK_NDELAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_TYPE_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOL_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65532\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65533\", token.INT, 0)),\n\t\t\"SOL_ROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SO_ALLZONES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4116\", token.INT, 0)),\n\t\t\"SO_ANON_MLP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"1073741825\", token.INT, 0)),\n\t\t\"SO_BAND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_COPYOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DELIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"1073741826\", token.INT, 0)),\n\t\t\"SO_DGRAM_ERRIND\":               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"SO_DONTLINGER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-129\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"SO_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_EXCLBIND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4117\", token.INT, 0)),\n\t\t\"SO_HIWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ISNTTY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_ISTTY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_MAC_EXEMPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"SO_MAC_IMPLICIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_MAXBLK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"SO_MAXPSZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_MINPSZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_MREADOFF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_MREADON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_NDELOFF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_NDELON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_NODELIM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PROTOTYPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVPSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_READOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_RECVUCRED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_SECATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_STRHOLD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"SO_TAIL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SO_TONSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_TOSTOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_TYPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_VRRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4119\", token.INT, 0)),\n\t\t\"SO_WROFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"S_IFBLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                          reflect.ValueOf(syscall.Seek),\n\t\t\"Sendfile\":                      reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                       reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                      reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                        reflect.ValueOf(syscall.Sendto),\n\t\t\"SetNonblock\":                   reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                       reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                        reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                       reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                        reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                     reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setpgid\":                       reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                   reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                      reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                      reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                     reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                        reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":        reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":              reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":            reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":           reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                 reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":              reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":              reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":             reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Setuid\":                        reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                 reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":             reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfData\":                  reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":             reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":        reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":            reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":           reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                        reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":             reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                    reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                          reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":                        reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                         reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                        reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                 reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":               reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                       reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                          reflect.ValueOf(syscall.Sync),\n\t\t\"TCFLSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21511\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_ABORT_THRESHOLD\":           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_ANONPRIVBIND\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_CONN_ABORT_THRESHOLD\":      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_CONN_NOTIFY_THRESHOLD\":     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_CORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_EXCLBIND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"TCP_INIT_CWND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_KEEPALIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_KEEPALIVE_ABORT_THRESHOLD\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_KEEPALIVE_THRESHOLD\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MSS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOTIFY_THRESHOLD\":          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_RECVDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_RTO_INITIAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"TCP_RTO_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"TCP_RTO_MIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21504\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29818\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29816\", token.INT, 0)),\n\t\t\"TIOCCILOOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29804\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29709\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29712\", token.INT, 0)),\n\t\t\"TIOCGETC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29714\", token.INT, 0)),\n\t\t\"TIOCGETD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29696\", token.INT, 0)),\n\t\t\"TIOCGETP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29704\", token.INT, 0)),\n\t\t\"TIOCGLTC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29812\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29716\", token.INT, 0)),\n\t\t\"TIOCGPPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21629\", token.INT, 0)),\n\t\t\"TIOCGPPSEV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21631\", token.INT, 0)),\n\t\t\"TIOCGSID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29718\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21609\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21608\", token.INT, 0)),\n\t\t\"TIOCHPCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29698\", token.INT, 0)),\n\t\t\"TIOCKBOF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21513\", token.INT, 0)),\n\t\t\"TIOCKBON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21512\", token.INT, 0)),\n\t\t\"TIOCLBIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29822\", token.INT, 0)),\n\t\t\"TIOCLBIS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29823\", token.INT, 0)),\n\t\t\"TIOCLGET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29820\", token.INT, 0)),\n\t\t\"TIOCLSET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29821\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29724\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29723\", token.INT, 0)),\n\t\t\"TIOCMGET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29725\", token.INT, 0)),\n\t\t\"TIOCMSET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29722\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29809\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29710\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29811\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29726\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29819\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29828\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29817\", token.INT, 0)),\n\t\t\"TIOCSETC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29713\", token.INT, 0)),\n\t\t\"TIOCSETD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29697\", token.INT, 0)),\n\t\t\"TIOCSETN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29706\", token.INT, 0)),\n\t\t\"TIOCSETP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29705\", token.INT, 0)),\n\t\t\"TIOCSIGNAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29727\", token.INT, 0)),\n\t\t\"TIOCSILOOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29805\", token.INT, 0)),\n\t\t\"TIOCSLTC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29813\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29717\", token.INT, 0)),\n\t\t\"TIOCSPPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21630\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21610\", token.INT, 0)),\n\t\t\"TIOCSTART\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29806\", token.INT, 0)),\n\t\t\"TIOCSTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29719\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29807\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21607\", token.INT, 0)),\n\t\t\"TOSTOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                 reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                      reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                         reflect.ValueOf(syscall.Umask),\n\t\t\"UnixRights\":                    reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                        reflect.ValueOf(syscall.Unlink),\n\t\t\"Unsetenv\":                      reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                        reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                    reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VCEOF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VCEOL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VDISCARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VDSUSP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VEOL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VERASE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VQUIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTCH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WCONTFLG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"WCONTINUED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WCOREFLG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOHANG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WNOWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WOPTMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"WRAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"WSIGMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WSTOPFLG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WSTOPPED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WTRAPPED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Wait4\":                         reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                         reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":               reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":              reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":           reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":              reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfTimeval\":           reflect.ValueOf((*syscall.BpfTimeval)(nil)),\n\t\t\"BpfVersion\":           reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfData\":               reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":             reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":            reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":  reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtMetrics\":            reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":             reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":     reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timeval32\":            reflect.ValueOf((*syscall.Timeval32)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_ios_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_CCITT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_ECMA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_IPX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_ISO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_NATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_NDRV\":                            reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NS\":                              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PPP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_PUP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_RESERVED_36\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SIP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SNA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_SYSTEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_UNIX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Accept\":                             reflect.ValueOf(syscall.Accept),\n\t\t\"Access\":                             reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                            reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                               reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                               reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                               reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B4800\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                                reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                               reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                                reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B9600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222028921\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020978\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147762808\", token.INT, 0)),\n\t\t\"BIOCSETF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762803\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                            reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                               reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                          reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                        reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                      reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                       reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                            reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                           reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                            reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                         reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                  reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":                reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                                reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                                reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                              reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                    reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                            reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                              reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                              reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                             reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                           reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                              reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                        reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                            reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                          reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                            reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":         reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AX25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CHDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                     reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":               reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":           reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_NULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAW\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DT_BLK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                                reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                               reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                              reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                             reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                         reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                      reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                       reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                             reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                           reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                              reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADARCH\":                           reflect.ValueOf(syscall.EBADARCH),\n\t\t\"EBADEXEC\":                           reflect.ValueOf(syscall.EBADEXEC),\n\t\t\"EBADF\":                              reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMACHO\":                          reflect.ValueOf(syscall.EBADMACHO),\n\t\t\"EBADMSG\":                            reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                            reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                              reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                          reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                             reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                       reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                       reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                         reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                            reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                       reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDEVERR\":                            reflect.ValueOf(syscall.EDEVERR),\n\t\t\"EDOM\":                               reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                             reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                             reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                             reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                              reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                             reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                          reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                       reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                              reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                             reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                        reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                              reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                             reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                                reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                            reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                             reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                              reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                              reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                             reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                             reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                           reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                          reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                       reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                          reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                           reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                          reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                        reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                             reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                            reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                            reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODATA\":                            reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                             reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                             reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                            reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                             reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                            reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                             reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                             reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPOLICY\":                          reflect.ValueOf(syscall.ENOPOLICY),\n\t\t\"ENOPROTOOPT\":                        reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                             reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                              reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                             reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                             reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                            reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                           reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                            reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                          reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":                    reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                           reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                            reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                             reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                              reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                         reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                          reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                         reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                              reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                       reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                              reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                           reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                       reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                      reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                       reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                             reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                    reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                         reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"EPWROFF\":                            reflect.ValueOf(syscall.EPWROFF),\n\t\t\"ERANGE\":                             reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                            reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                              reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                       reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHLIBVERS\":                         reflect.ValueOf(syscall.ESHLIBVERS),\n\t\t\"ESHUTDOWN\":                          reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                    reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                             reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                              reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                             reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIME\":                              reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                          reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                       reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                            reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                             reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-9\", token.INT, 0)),\n\t\t\"EVFILT_MACHPORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-8\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"EVFILT_THREADMARKER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"EVFILT_VM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-12\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_DISPATCH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_OOBAND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_POLL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_RECEIPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                        reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                              reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                               reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                            reflect.ValueOf(syscall.Environ),\n\t\t\"Exchangedata\":                       reflect.ValueOf(syscall.Exchangedata),\n\t\t\"FD_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_ADDFILESIGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"F_ADDSIGS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"F_ALLOCATEALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_ALLOCATECONTIG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_CHKCLEAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"F_DUPFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"F_FLUSH_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"F_FREEZE_FS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"F_FULLFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"F_GETFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETLKPID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"F_GETNOSIGPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"F_GETOWN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETPATH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"F_GETPATH_MTMINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"F_GETPROTECTIONCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"F_GLOBAL_NOCACHE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"F_LOG2PHYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"F_LOG2PHYS_EXT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"F_MARKDEPENDENCY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"F_NOCACHE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"F_NODIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"F_OK\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_PATHPKG_CHECK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"F_PEOFPOSMODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_PREALLOCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"F_RDADVISE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"F_RDAHEAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"F_RDLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_READBOOTSTRAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"F_SETBACKINGSTORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"F_SETFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETNOSIGPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"F_SETOWN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETPROTECTIONCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"F_SETSIZE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"F_THAW_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"F_UNLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_VOLPOSMODE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRITEBOOTSTRAP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"F_WRLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                             reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                           reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                             reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                             reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                         reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                              reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                           reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                           reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                          reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                              reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                            reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                              reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                          reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                            reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                      reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getdtablesize\":                      reflect.ValueOf(syscall.Getdtablesize),\n\t\t\"Getegid\":                            reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                             reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                            reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                          reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                             reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                          reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                        reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                        reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                            reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                            reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                             reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                            reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                        reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                          reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                          reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                             reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                        reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                     reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":             reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                   reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":              reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                 reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":                reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                      reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                       reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                             reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                              reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ALTPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                           reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_CARP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CELLULAR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_DS3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_ENC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_GIF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                       reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                         reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PDP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PPP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_RS232\":                          reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_T1\":                             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_V35\":                            reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_X25\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LINKLOCALNETNUM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2851995648\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IPPROTO_3PC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPPROTO_ADFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_AHIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPPROTO_APES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IPPROTO_ARGUS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPPROTO_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IPPROTO_BHA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPPROTO_BLT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPPROTO_BRSATMON\":                   reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPPROTO_CFTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPPROTO_CHAOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPPROTO_CMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPPROTO_CPHB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPPROTO_CPNX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPPROTO_DDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPPROTO_DGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EMCON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HMP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IDPR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPPROTO_IDRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IPPROTO_IGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IPPROTO_IL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPPROTO_INLSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_INP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IPPROTO_IPEIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IRTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPPROTO_KRYPTOLAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPPROTO_LARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MEAS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPPROTO_MHRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPPROTO_MICP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_MUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NHRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_NSP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_NVPII\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPPROTO_OSPFIGP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PGM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IPPROTO_PIGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PRM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_PVP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_RCCMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPPROTO_RDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_RVD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPPROTO_SATEXPAK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPPROTO_SATMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IPPROTO_SCCSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_SDRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPPROTO_SEP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_SRPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IPPROTO_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPPROTO_SVMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IPPROTO_SWIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPPROTO_TCF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_TPXX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPPROTO_TTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VINES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_VISA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPPROTO_VMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IPPROTO_WBEXPAK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IPPROTO_WBMON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPPROTO_WSN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPPROTO_XNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPPROTO_XTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_2292NEXTHOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_BINDV6ONLY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_BOUND_IF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_FW_ADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_FW_DEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_FW_FLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_FW_GET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_FW_ZERO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXOPTHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MAX_GROUP_SRC_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IPV6_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IPV6_MAX_SOCK_SRC_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IPV6_MIN_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IP_BOUND_IF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_CONFIGURE\":              reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_FLUSH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_GET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IP_FAITH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_FW_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FW_DEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_FW_FLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IP_FW_GET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IP_FW_RESETLOG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IP_FW_ZERO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_GROUP_SRC_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_MUTE_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_SRC_FILTER\":             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IP_MSS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IFINDEX\":               reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_VIF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_NAT__XXX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OLD_FW_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_OLD_FW_DEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IP_OLD_FW_FLUSH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IP_OLD_FW_GET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IP_OLD_FW_RESETLOG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IP_OLD_FW_ZERO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVPKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RSVP_OFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_RSVP_ON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_OFF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_ON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_STRIPHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_TOS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TRAFFIC_MGT_BACKGROUND\":          reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_TTL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"ISIG\":                               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUTF8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                    reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                          reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                             reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                             reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                             reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                               reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                             reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                              reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_CAN_REUSE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_FREE_REUSABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_FREE_REUSE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MADV_ZERO_WIRED_PAGES\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MAP_ANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_JIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_NOCACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_NOEXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_RESERVED0080\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_EOR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_FLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_HAVEMORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_HOLD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_NEEDSA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MSG_OOB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_RCVMORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_SEND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_WAITSTREAM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_DEACTIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_KILLPAGES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"Mkdir\":                              reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                             reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                              reflect.ValueOf(syscall.Mknod),\n\t\t\"Mlock\":                              reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                           reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                               reflect.ValueOf(syscall.Mmap),\n\t\t\"Mprotect\":                           reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                            reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                         reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                             reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_DUMP2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NET_RT_STAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_TRASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NOFLSH\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ABSOLUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXITSTATUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FFAND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_FFCOPY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFLAGSMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"NOTE_FFNOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NOTE_FFOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_NONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"NOTE_NSECONDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1048576\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_REAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_RESOURCEEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_SECONDS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_SIGNAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRIGGER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"NOTE_USECONDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_VM_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE_SUDDEN_TERMINATE\":  reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE_TERMINATE\":         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NsecToTimespec\":                     reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                      reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OFDEL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"OFILL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ONLCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_ALERT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"O_APPEND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_CREAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_DSYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_EVTONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_EXCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_POPUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"O_RDONLY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYMLINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_SYNC\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                               reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_ATTACH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PT_ATTACHEXC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PT_CONTINUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PT_DENY_ATTACH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PT_DETACH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PT_FIRSTMACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PT_FORCEQUOTA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PT_KILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PT_READ_D\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PT_READ_I\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PT_READ_U\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PT_SIGEXC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PT_STEP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PT_THUPDATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PT_TRACE_ME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_WRITE_D\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PT_WRITE_I\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PT_WRITE_U\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ParseDirent\":                        reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":                reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":               reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":          reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                    reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                           reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                               reflect.ValueOf(syscall.Pipe),\n\t\t\"Pread\":                              reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                             reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_CONDEMNED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_DELCLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_DONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_IFREF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_IFSCOPE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PRCLONING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WASCLONED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DELMADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_GET2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_IFINFO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                               reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                         reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                           reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                           reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                            reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                             reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                             reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                              reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                           reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_CREDS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP_MONOTONIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SHUT_RD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                            reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                            reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                             reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                            reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                            reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                             reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                             reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                             reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                             reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                            reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                             reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                              reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                             reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                            reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                            reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                            reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                            reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                            reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                            reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                             reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                            reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                            reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                            reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                            reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                            reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                             reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                            reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                            reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                          reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                           reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                            reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                            reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2165860637\", token.INT, 0)),\n\t\t\"SIOCARPIPLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349544\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCAUTOADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349542\", token.INT, 0)),\n\t\t\"SIOCAUTONETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607719\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607745\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2165860639\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223873915\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222565404\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222565403\", token.INT, 0)),\n\t\t\"SIOCGETVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349631\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFALTMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFASYNCMAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCGIFBOND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349595\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3222038820\", token.INT, 0)),\n\t\t\"SIOCGIFDEVMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349572\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFKPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349639\", token.INT, 0)),\n\t\t\"SIOCGIFMAC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349634\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3224135992\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349555\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349568\", token.INT, 0)),\n\t\t\"SIOCGIFPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349567\", token.INT, 0)),\n\t\t\"SIOCGIFSTATUS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3274795325\", token.INT, 0)),\n\t\t\"SIOCGIFVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349631\", token.INT, 0)),\n\t\t\"SIOCGIFWAKEFLAGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349640\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3239602462\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3239602499\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349624\", token.INT, 0)),\n\t\t\"SIOCIFCREATE2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349626\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCRSLVMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222300987\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2150132091\", token.INT, 0)),\n\t\t\"SIOCSETVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607806\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFALTMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607749\", token.INT, 0)),\n\t\t\"SIOCSIFASYNCMAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607805\", token.INT, 0)),\n\t\t\"SIOCSIFBOND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607750\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607770\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFKPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607814\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607740\", token.INT, 0)),\n\t\t\"SIOCSIFMAC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607811\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607732\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2151704894\", token.INT, 0)),\n\t\t\"SIOCSIFPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607734\", token.INT, 0)),\n\t\t\"SIOCSIFVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607806\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2165860674\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_MAXADDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_DONTTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_ERROR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LABEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SO_LINGER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LINGER_SEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4224\", token.INT, 0)),\n\t\t\"SO_NKE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"SO_NOADDRERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4131\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"SO_NOTIFYCONFLICT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4134\", token.INT, 0)),\n\t\t\"SO_NP_EXTENSIONS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4227\", token.INT, 0)),\n\t\t\"SO_NREAD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4128\", token.INT, 0)),\n\t\t\"SO_NWRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4132\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERLABEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_RANDOMPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4226\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_RESTRICTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4225\", token.INT, 0)),\n\t\t\"SO_RESTRICT_DENYIN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_RESTRICT_DENYOUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_RESTRICT_DENYSET\":                reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_REUSESHAREUID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4133\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP_MONOTONIC\":             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_TYPE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_UPCALLCLOSEWAIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4135\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_WANTMORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_WANTOOBFLAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"404\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCESS_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADD_PROFIL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_AIO_CANCEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_AIO_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_AIO_FSYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_AIO_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_AIO_RETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND_NOCANCEL\":           reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_AIO_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_ATGETMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_ATPGETREQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_ATPGETRSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_ATPSNDREQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_ATPSNDRSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_ATPUTMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_ATSOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_AUDIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_AUDITCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"359\", token.INT, 0)),\n\t\t\"SYS_AUDITON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_JOIN\":             reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_PORT\":             reflect.ValueOf(constant.MakeFromLiteral(\"432\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_SELF\":             reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS_BIND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_REGISTER\":             reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_TERMINATE\":            reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHMOD_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CHUD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSE_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"399\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_CONNECT_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"409\", token.INT, 0)),\n\t\t\"SYS_COPYFILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_CSOPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_DUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EXCHANGEDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMOD_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FCNTL_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"406\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_FFSCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_FGETATTRLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_FILEPORT_MAKEFD\":                reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS_FILEPORT_MAKEPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_FSCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_FSETATTRLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_FSGETPATH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_FSTAT64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_FSTAT64_EXTENDED\":               reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_FSTATV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_FSTAT_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FSYNC_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"408\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_GETATTRLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT_ADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_GETAUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES64\":                reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIESATTR\":              reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_GETDTABLESIZE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETHOSTUUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_GETLCID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"395\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_GETSGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETWGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_IDENTITYSVC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_INITGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPOLICYSYS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_KDEBUG_TRACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_KEVENT64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_KILL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LIO_LISTIO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_LSTAT64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_LSTAT64_EXTENDED\":               reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_LSTATV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_LSTAT_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MAXSYSCALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKCOMPLEX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIR_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFO_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MODWATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_MSGRCV_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"419\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_MSGSND_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"418\", token.INT, 0)),\n\t\t\"SYS_MSGSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_MSYNC_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"405\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NFSCLNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_NFSSVC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPEN_EXTENDED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_OPEN_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"398\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PID_HIBERNATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS_PID_RESUME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS_PID_SHUTDOWN_SOCKETS\":           reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_PID_SUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"433\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_POLL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_POLL_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_POSIX_SPAWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_PREAD_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_PROCESS_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_PROC_INFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVBROAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVCLRPREPOST\":            reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVSIGNAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_MUTEXDROP\":               reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_MUTEXWAIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_DOWNGRADE\":            reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_LONGRDLOCK\":           reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_RDLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UNLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UNLOCK2\":              reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UPGRADE\":              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_WRLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_YIELDWRLOCK\":          reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_PWRITE_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_READ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_READV_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS_READ_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"396\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVFROM_NOCANCEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"403\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RECVMSG_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"401\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SEARCHFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_SELECT_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"407\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_SEMSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_SEM_CLOSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_SEM_DESTROY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_SEM_GETVALUE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_SEM_INIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_SEM_OPEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_SEM_POST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_SEM_TRYWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_SEM_UNLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_SEM_WAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_SEM_WAIT_NOCANCEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"420\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDMSG_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"402\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SENDTO_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_SETATTRLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT_ADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_SETAUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SETLCID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETPRIVEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_SETTID_WITH_PID\":                reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETWGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_SHARED_REGION_CHECK_NP\":         reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_SHARED_REGION_MAP_AND_SLIDE_NP\": reflect.ValueOf(constant.MakeFromLiteral(\"438\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_SHMSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_SHM_OPEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_SHM_UNLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND_NOCANCEL\":            reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_STACK_SNAPSHOT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_STAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_STAT64\":                         reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_STAT64_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_STATV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_STAT_EXTENDED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSCALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_THREAD_SELFID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMASK_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                         reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_VM_PRESSURE_MONITOR\":            reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WAIT4_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"400\", token.INT, 0)),\n\t\t\"SYS_WAITEVENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_WAITID_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_WATCHEVENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_WORKQ_KERNRETURN\":               reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_WORKQ_OPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_WRITEV_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_WRITE_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"397\", token.INT, 0)),\n\t\t\"SYS___DISABLE_THREADSIGNAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS___MAC_EXECVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"380\", token.INT, 0)),\n\t\t\"SYS___MAC_GETFSSTAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"388\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"382\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LCID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"391\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LCTX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"392\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_MOUNT\":                reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PROC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS___MAC_MOUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"389\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"383\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LCTX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"393\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_PROC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"387\", token.INT, 0)),\n\t\t\"SYS___MAC_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"381\", token.INT, 0)),\n\t\t\"SYS___OLD_SEMWAIT_SIGNAL\":           reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL\":  reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_CANCELED\":             reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_CHDIR\":                reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_FCHDIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_KILL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_MARKCANCEL\":           reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_SIGMASK\":              reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS___SEMWAIT_SIGNAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS___SEMWAIT_SIGNAL_NOCANCEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS___SIGWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS___SIGWAIT_NOCANCEL\":             reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_IEXEC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFWHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57344\", token.INT, 0)),\n\t\t\"S_IREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISTXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_ISUID\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                               reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                             reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                           reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                            reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                           reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                             reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                             reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                       reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                     reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                   reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                    reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                    reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                      reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                      reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                          reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                        reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                            reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                             reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                            reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                             reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                          reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                           reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                            reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                        reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setprivexec\":                        reflect.ValueOf(syscall.Setprivexec),\n\t\t\"Setregid\":                           reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                           reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                          reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                             reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                     reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":             reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                   reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                 reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":                reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                      reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                   reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                   reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                  reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                       reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                             reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfData\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                    reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                  reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":             reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                 reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":                reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                             reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                  reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                         reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                               reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                             reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                             reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                              reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                             reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                      reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                    reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                     reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                            reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                               reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                             reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                       reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CONNECTIONTIMEOUT\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MAXHLEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"TCP_MAXOLEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MINMSSOVERLOAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1000\", token.INT, 0)),\n\t\t\"TCP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOOPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_RXT_CONNDROPTIME\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TCP_RXT_FINDROP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDCDTIMESTAMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074820184\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCDSIMICROCODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536900693\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGDRAINWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033750\", token.INT, 0)),\n\t\t\"TIOCGETA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1078490131\", token.INT, 0)),\n\t\t\"TIOCGETD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCIXOFF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900736\", token.INT, 0)),\n\t\t\"TIOCIXON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900737\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGDTRWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074033754\", token.INT, 0)),\n\t\t\"TIOCMGET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033667\", token.INT, 0)),\n\t\t\"TIOCMODS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775492\", token.INT, 0)),\n\t\t\"TIOCMSDTRWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147775579\", token.INT, 0)),\n\t\t\"TIOCMSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTYGNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1082160211\", token.INT, 0)),\n\t\t\"TIOCPTYGRANT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536900692\", token.INT, 0)),\n\t\t\"TIOCPTYUNLK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536900690\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900707\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDRAINWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147775575\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2152231956\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2152231958\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2152231957\", token.INT, 0)),\n\t\t\"TIOCSETD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536900703\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCTIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074820185\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                     reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                      reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                           reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                              reflect.ValueOf(syscall.Umask),\n\t\t\"Undelete\":                           reflect.ValueOf(syscall.Undelete),\n\t\t\"UnixRights\":                         reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                             reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                            reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                           reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                             reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                         reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                             reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VT0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                                reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTDLY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTIME\":                              reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WORDSIZE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WUNTRACED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                              reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                              reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                        reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                       reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":                    reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                       reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfVersion\":                    reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                       reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":                    reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"Fbootstraptransfer_t\":          reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)),\n\t\t\"FdSet\":                         reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                       reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                          reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"Fstore_t\":                      reflect.ValueOf((*syscall.Fstore_t)(nil)),\n\t\t\"ICMPv6Filter\":                  reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                        reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":                   reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                      reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfData\":                        reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                      reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                     reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"IfmaMsghdr\":                    reflect.ValueOf((*syscall.IfmaMsghdr)(nil)),\n\t\t\"IfmaMsghdr2\":                   reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)),\n\t\t\"Inet4Pktinfo\":                  reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":                  reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":          reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceMessage\":              reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"InterfaceMulticastAddrMessage\": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)),\n\t\t\"Iovec\":                         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                      reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                        reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Log2phys_t\":                    reflect.ValueOf((*syscall.Log2phys_t)(nil)),\n\t\t\"Msghdr\":                        reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"Radvisory_t\":                   reflect.ValueOf((*syscall.Radvisory_t)(nil)),\n\t\t\"RawConn\":                       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                   reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":                reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":           reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":              reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":              reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":               reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":                  reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":                reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                     reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                      reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":              reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":                 reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":                 reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":          reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                      reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":                   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                       reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timeval32\":                     reflect.ValueOf((*syscall.Timeval32)(nil)),\n\t\t\"WaitStatus\":                    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_ios_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_CCITT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_ECMA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_IPX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_ISO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_NATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_NDRV\":                            reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NS\":                              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PPP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_PUP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_RESERVED_36\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SIP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SNA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_SYSTEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_UNIX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_UTUN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"Accept\":                             reflect.ValueOf(syscall.Accept),\n\t\t\"Access\":                             reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                            reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                               reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                               reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                               reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B4800\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                                reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                               reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                                reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B9600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222028921\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020978\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020982\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147762808\", token.INT, 0)),\n\t\t\"BIOCSETF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762803\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147762807\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                            reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                               reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                          reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                        reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                      reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                       reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                            reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                           reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                            reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                         reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                  reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":                reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                                reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                                reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                              reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                    reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                            reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                              reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                              reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                             reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                           reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                              reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                        reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                            reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                          reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                            reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":         reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AX25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CHDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                     reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":               reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":           reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_NULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAW\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DT_BLK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                                reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                               reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                              reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                             reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                         reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                      reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                       reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                             reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                           reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                              reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADARCH\":                           reflect.ValueOf(syscall.EBADARCH),\n\t\t\"EBADEXEC\":                           reflect.ValueOf(syscall.EBADEXEC),\n\t\t\"EBADF\":                              reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMACHO\":                          reflect.ValueOf(syscall.EBADMACHO),\n\t\t\"EBADMSG\":                            reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                            reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                              reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                          reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                             reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                       reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                       reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                         reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                            reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                       reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDEVERR\":                            reflect.ValueOf(syscall.EDEVERR),\n\t\t\"EDOM\":                               reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                             reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                             reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                             reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                              reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                             reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                          reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                       reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                              reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                             reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                        reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                              reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                             reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                                reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                            reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                             reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                              reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                              reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                             reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                             reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                           reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                          reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                       reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                          reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                           reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                          reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                        reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                             reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                            reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                            reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODATA\":                            reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                             reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                             reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                            reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                             reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                            reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                             reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                             reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPOLICY\":                          reflect.ValueOf(syscall.ENOPOLICY),\n\t\t\"ENOPROTOOPT\":                        reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                             reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                              reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                             reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                             reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                            reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                           reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                            reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                          reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":                    reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                           reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                            reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                             reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                              reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                         reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                          reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                         reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                              reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                       reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                              reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                           reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                       reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                      reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                       reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                             reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                    reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                         reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"EPWROFF\":                            reflect.ValueOf(syscall.EPWROFF),\n\t\t\"EQFULL\":                             reflect.ValueOf(syscall.EQFULL),\n\t\t\"ERANGE\":                             reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                            reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                              reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                       reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHLIBVERS\":                         reflect.ValueOf(syscall.ESHLIBVERS),\n\t\t\"ESHUTDOWN\":                          reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                    reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                             reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                              reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                             reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIME\":                              reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                          reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                       reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                            reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                             reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-9\", token.INT, 0)),\n\t\t\"EVFILT_MACHPORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-8\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EVFILT_THREADMARKER\":                reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"EVFILT_VM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-12\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_DISPATCH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_OOBAND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_POLL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EV_RECEIPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                        reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                              reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                               reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                            reflect.ValueOf(syscall.Environ),\n\t\t\"Exchangedata\":                       reflect.ValueOf(syscall.Exchangedata),\n\t\t\"FD_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_ADDFILESIGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"F_ADDSIGS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"F_ALLOCATEALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_ALLOCATECONTIG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_CHKCLEAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"F_DUPFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"F_FINDSIGS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"F_FLUSH_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"F_FREEZE_FS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"F_FULLFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"F_GETCODEDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"F_GETFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETLKPID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"F_GETNOSIGPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"F_GETOWN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETPATH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"F_GETPATH_MTMINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"F_GETPROTECTIONCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"F_GETPROTECTIONLEVEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"F_GLOBAL_NOCACHE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"F_LOG2PHYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"F_LOG2PHYS_EXT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"F_NOCACHE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"F_NODIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"F_OK\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_PATHPKG_CHECK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"F_PEOFPOSMODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_PREALLOCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"F_RDADVISE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"F_RDAHEAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"F_RDLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETBACKINGSTORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"F_SETFD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETLKWTIMEOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SETNOSIGPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"F_SETOWN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETPROTECTIONCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"F_SETSIZE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"F_SINGLE_WRITER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"F_THAW_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"F_TRANSCODEKEY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"F_UNLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_VOLPOSMODE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRLCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                             reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                           reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                             reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                             reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                         reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                              reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                           reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                           reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                          reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                              reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                            reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                              reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                          reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                            reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                      reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getdtablesize\":                      reflect.ValueOf(syscall.Getdtablesize),\n\t\t\"Getegid\":                            reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                             reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                            reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                          reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                             reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                          reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                        reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                        reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                            reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                            reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                             reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                            reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                        reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                          reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                          reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                             reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                        reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                     reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":             reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                   reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":              reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                 reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":                reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                      reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                       reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                             reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                              reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ALTPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                           reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ATM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_CARP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CELLULAR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_DS3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_ENC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_GIF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                       reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                         reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PDP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PPP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_RS232\":                          reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_T1\":                             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_V35\":                            reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_X25\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LINKLOCALNETNUM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2851995648\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IPPROTO_3PC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPPROTO_ADFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_AHIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPPROTO_APES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IPPROTO_ARGUS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPPROTO_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IPPROTO_BHA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPPROTO_BLT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPPROTO_BRSATMON\":                   reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPPROTO_CFTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPPROTO_CHAOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPPROTO_CMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPPROTO_CPHB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPPROTO_CPNX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPPROTO_DDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPPROTO_DGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_EMCON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HMP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IDPR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPPROTO_IDRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IPPROTO_IGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IPPROTO_IL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPPROTO_INLSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_INP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IPPROTO_IPEIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IRTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPPROTO_KRYPTOLAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPPROTO_LARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPPROTO_LEAF2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MEAS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPPROTO_MHRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPPROTO_MICP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_MUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NHRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_NSP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_NVPII\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPPROTO_OSPFIGP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PGM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IPPROTO_PIGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PRM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_PVP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_RCCMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPPROTO_RDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_RVD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPPROTO_SATEXPAK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPPROTO_SATMON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IPPROTO_SCCSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_SDRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPPROTO_SEP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_SRPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IPPROTO_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPPROTO_SVMTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IPPROTO_SWIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPPROTO_TCF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_TPXX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPPROTO_TRUNK2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPPROTO_TTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VINES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IPPROTO_VISA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPPROTO_VMTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IPPROTO_WBEXPAK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IPPROTO_WBMON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPPROTO_WSN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPPROTO_XNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPPROTO_XTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_2292NEXTHOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_BINDV6ONLY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_BOUND_IF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_FW_ADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_FW_DEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_FW_FLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_FW_GET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_FW_ZERO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXOPTHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MAX_GROUP_SRC_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IPV6_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IPV6_MAX_SOCK_SRC_FILTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IPV6_MIN_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IP_BOUND_IF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_CONFIGURE\":              reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_FLUSH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IP_DUMMYNET_GET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IP_FAITH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_FW_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FW_DEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_FW_FLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IP_FW_GET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IP_FW_RESETLOG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IP_FW_ZERO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_GROUP_SRC_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_MUTE_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MAX_SOCK_SRC_FILTER\":             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IP_MF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IP_MSS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IFINDEX\":               reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_VIF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_NAT__XXX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OLD_FW_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_OLD_FW_DEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IP_OLD_FW_FLUSH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IP_OLD_FW_GET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IP_OLD_FW_RESETLOG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IP_OLD_FW_ZERO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVPKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RSVP_OFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_RSVP_ON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_OFF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_RSVP_VIF_ON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_STRIPHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_TOS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TRAFFIC_MGT_BACKGROUND\":          reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_TTL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"ISIG\":                               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUTF8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                    reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                          reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                             reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                             reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                             reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                               reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                             reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                              reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_CAN_REUSE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_FREE_REUSABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_FREE_REUSE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MADV_ZERO_WIRED_PAGES\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MAP_ANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_JIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_NOCACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_NOEXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_RESERVED0080\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_EOR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_FLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_HAVEMORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_HOLD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_NEEDSA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MSG_OOB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_RCVMORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_SEND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_WAITSTREAM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_DEACTIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_KILLPAGES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"Mkdir\":                              reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                             reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                              reflect.ValueOf(syscall.Mknod),\n\t\t\"Mlock\":                              reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                           reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                               reflect.ValueOf(syscall.Mmap),\n\t\t\"Mprotect\":                           reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                            reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                         reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                             reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_DUMP2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NET_RT_STAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_TRASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NOFLSH\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ABSOLUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_BACKGROUND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_CRITICAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXITSTATUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"NOTE_EXIT_CSERROR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"NOTE_EXIT_DECRYPTFAIL\":              reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"NOTE_EXIT_DETAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"NOTE_EXIT_DETAIL_MASK\":              reflect.ValueOf(constant.MakeFromLiteral(\"458752\", token.INT, 0)),\n\t\t\"NOTE_EXIT_MEMORY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"NOTE_EXIT_REPARENTED\":               reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FFAND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_FFCOPY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"NOTE_FFLAGSMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"NOTE_FFNOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NOTE_FFOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LEEWAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_NONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"NOTE_NSECONDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1048576\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_REAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_SECONDS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_SIGNAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRIGGER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"NOTE_USECONDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_VM_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE_SUDDEN_TERMINATE\":  reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_VM_PRESSURE_TERMINATE\":         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NsecToTimespec\":                     reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                      reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OFDEL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"OFILL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ONLCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_ALERT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"O_APPEND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_CREAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"O_DP_GETRAWENCRYPTED\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_DSYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_EVTONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_EXCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_POPUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"O_RDONLY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYMLINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_SYNC\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                               reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_ATTACH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PT_ATTACHEXC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PT_CONTINUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PT_DENY_ATTACH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PT_DETACH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PT_FIRSTMACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PT_FORCEQUOTA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PT_KILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PT_READ_D\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PT_READ_I\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PT_READ_U\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PT_SIGEXC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PT_STEP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PT_THUPDATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PT_TRACE_ME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_WRITE_D\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PT_WRITE_I\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PT_WRITE_U\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ParseDirent\":                        reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":                reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":               reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":          reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                    reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                           reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                               reflect.ValueOf(syscall.Pipe),\n\t\t\"Pread\":                              reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                             reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_CPU_USAGE_MONITOR\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_CONDEMNED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_DELCLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_DONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_IFREF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_IFSCOPE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_PINNED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PRCLONING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_PROXY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_ROUTER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WASCLONED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DELMADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_GET2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_IFINFO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_NEWMADDR2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                               reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                         reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                           reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                           reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                            reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                             reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                             reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                              reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                           reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_CREDS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP_MONOTONIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SHUT_RD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                            reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                            reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                             reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                            reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                            reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                             reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                             reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                             reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                             reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                            reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                             reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                              reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                             reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                            reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                            reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                            reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                            reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                            reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                            reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                             reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                            reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                            reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                            reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                            reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                            reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                             reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                            reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                            reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                          reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                           reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                            reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                            reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCARPIPLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349544\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCAUTOADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349542\", token.INT, 0)),\n\t\t\"SIOCAUTONETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607719\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607745\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223873915\", token.INT, 0)),\n\t\t\"SIOCGETVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349631\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFALTMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFASYNCMAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCGIFBOND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349595\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3222038820\", token.INT, 0)),\n\t\t\"SIOCGIFDEVMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349572\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFKPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349639\", token.INT, 0)),\n\t\t\"SIOCGIFMAC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349634\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3224135992\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349555\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349568\", token.INT, 0)),\n\t\t\"SIOCGIFPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349567\", token.INT, 0)),\n\t\t\"SIOCGIFSTATUS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3274795325\", token.INT, 0)),\n\t\t\"SIOCGIFVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349631\", token.INT, 0)),\n\t\t\"SIOCGIFWAKEFLAGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349640\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349624\", token.INT, 0)),\n\t\t\"SIOCIFCREATE2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349626\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222301057\", token.INT, 0)),\n\t\t\"SIOCRSLVMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222300987\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2150132091\", token.INT, 0)),\n\t\t\"SIOCSETVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607806\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFALTMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607749\", token.INT, 0)),\n\t\t\"SIOCSIFASYNCMAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607805\", token.INT, 0)),\n\t\t\"SIOCSIFBOND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607750\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607770\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFKPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607814\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607740\", token.INT, 0)),\n\t\t\"SIOCSIFMAC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607811\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149607732\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2151704894\", token.INT, 0)),\n\t\t\"SIOCSIFPHYS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607734\", token.INT, 0)),\n\t\t\"SIOCSIFVLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607806\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_MAXADDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_DONTTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_ERROR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LABEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SO_LINGER\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LINGER_SEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4224\", token.INT, 0)),\n\t\t\"SO_NKE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"SO_NOADDRERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4131\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"SO_NOTIFYCONFLICT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4134\", token.INT, 0)),\n\t\t\"SO_NP_EXTENSIONS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4227\", token.INT, 0)),\n\t\t\"SO_NREAD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4128\", token.INT, 0)),\n\t\t\"SO_NUMRCVPKT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4370\", token.INT, 0)),\n\t\t\"SO_NWRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4132\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERLABEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_RANDOMPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4226\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_REUSESHAREUID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4133\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP_MONOTONIC\":             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_TYPE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_UPCALLCLOSEWAIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4135\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_WANTMORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_WANTOOBFLAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"404\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCESS_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_AIO_CANCEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_AIO_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_AIO_FSYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_AIO_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_AIO_RETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_AIO_SUSPEND_NOCANCEL\":           reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_AIO_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_ATGETMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_ATPGETREQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_ATPGETRSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_ATPSNDREQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_ATPSNDRSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_ATPUTMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_ATSOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_AUDIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_AUDITCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"359\", token.INT, 0)),\n\t\t\"SYS_AUDITON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_JOIN\":             reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_PORT\":             reflect.ValueOf(constant.MakeFromLiteral(\"432\", token.INT, 0)),\n\t\t\"SYS_AUDIT_SESSION_SELF\":             reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS_BIND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_REGISTER\":             reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_BSDTHREAD_TERMINATE\":            reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHMOD_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CHUD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSE_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"399\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_CONNECT_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"409\", token.INT, 0)),\n\t\t\"SYS_COPYFILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_CSOPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_CSOPS_AUDITTOKEN\":               reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_DUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EXCHANGEDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMOD_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FCNTL_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"406\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_FFSCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_FGETATTRLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_FILEPORT_MAKEFD\":                reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS_FILEPORT_MAKEPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_FSCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_FSETATTRLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_FSGETPATH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_FSTAT64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_FSTAT64_EXTENDED\":               reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_FSTAT_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FSYNC_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"408\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_GETATTRLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_GETAUDIT_ADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_GETAUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIES64\":                reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_GETDIRENTRIESATTR\":              reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_GETDTABLESIZE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETHOSTUUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_GETLCID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"395\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_GETSGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETWGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_IDENTITYSVC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_INITGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPOLICYSYS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_KAS_INFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_KDEBUG_TRACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_KEVENT64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_KILL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_LEDGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"373\", token.INT, 0)),\n\t\t\"SYS_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LIO_LISTIO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_LSTAT64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_LSTAT64_EXTENDED\":               reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_LSTAT_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MAXSYSCALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"440\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIR_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFO_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MODWATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_MSGRCV_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"419\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_MSGSND_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"418\", token.INT, 0)),\n\t\t\"SYS_MSGSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_MSYNC_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"405\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NFSCLNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_NFSSVC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPEN_DPROTECTED_NP\":             reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_OPEN_EXTENDED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_OPEN_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"398\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PID_HIBERNATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS_PID_RESUME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS_PID_SHUTDOWN_SOCKETS\":           reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_PID_SUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"433\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_POLL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_POLL_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_POSIX_SPAWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_PREAD_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_PROCESS_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_PROC_INFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVBROAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVCLRPREPOST\":            reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVSIGNAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_CVWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_MUTEXDROP\":               reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_MUTEXWAIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_DOWNGRADE\":            reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_LONGRDLOCK\":           reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_RDLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UNLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UNLOCK2\":              reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_UPGRADE\":              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_WRLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_PSYNCH_RW_YIELDWRLOCK\":          reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_PWRITE_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_READ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_READV_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS_READ_NOCANCEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"396\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVFROM_NOCANCEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"403\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RECVMSG_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"401\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SEARCHFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_SELECT_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"407\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_SEMSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_SEM_CLOSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_SEM_DESTROY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_SEM_GETVALUE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_SEM_INIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_SEM_OPEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_SEM_POST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_SEM_TRYWAIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_SEM_UNLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_SEM_WAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_SEM_WAIT_NOCANCEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"420\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDMSG_NOCANCEL\":               reflect.ValueOf(constant.MakeFromLiteral(\"402\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SENDTO_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_SETATTRLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SETAUDIT_ADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_SETAUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SETLCID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETPRIVEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_SETTID_WITH_PID\":                reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETWGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_SHARED_REGION_CHECK_NP\":         reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_SHARED_REGION_MAP_AND_SLIDE_NP\": reflect.ValueOf(constant.MakeFromLiteral(\"438\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_SHMSYS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_SHM_OPEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_SHM_UNLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND_NOCANCEL\":            reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_STACK_SNAPSHOT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_STAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_STAT64\":                         reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_STAT64_EXTENDED\":                reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_STAT_EXTENDED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSCALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_THREAD_SELFID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMASK_EXTENDED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                         reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_VM_PRESSURE_MONITOR\":            reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WAIT4_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"400\", token.INT, 0)),\n\t\t\"SYS_WAITEVENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_WAITID_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_WATCHEVENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_WORKQ_KERNRETURN\":               reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_WORKQ_OPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_WRITEV_NOCANCEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_WRITE_NOCANCEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"397\", token.INT, 0)),\n\t\t\"SYS___DISABLE_THREADSIGNAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS___MAC_EXECVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"380\", token.INT, 0)),\n\t\t\"SYS___MAC_GETFSSTAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"388\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_FILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"382\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LCID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"391\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LCTX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"392\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_LINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_MOUNT\":                reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS___MAC_GET_PROC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS___MAC_MOUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"389\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_FILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"383\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LCTX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"393\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_LINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS___MAC_SET_PROC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"387\", token.INT, 0)),\n\t\t\"SYS___MAC_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"381\", token.INT, 0)),\n\t\t\"SYS___OLD_SEMWAIT_SIGNAL\":           reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL\":  reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_CANCELED\":             reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_CHDIR\":                reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_FCHDIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_KILL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_MARKCANCEL\":           reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS___PTHREAD_SIGMASK\":              reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS___SEMWAIT_SIGNAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS___SEMWAIT_SIGNAL_NOCANCEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS___SIGWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS___SIGWAIT_NOCANCEL\":             reflect.ValueOf(constant.MakeFromLiteral(\"422\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_IEXEC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFWHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57344\", token.INT, 0)),\n\t\t\"S_IREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISTXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_ISUID\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                               reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                             reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                           reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                            reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                           reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                             reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                             reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                       reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                     reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                   reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                    reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                    reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                      reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                      reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                          reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                        reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                            reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                             reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                            reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                             reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                          reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                           reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                            reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                        reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setprivexec\":                        reflect.ValueOf(syscall.Setprivexec),\n\t\t\"Setregid\":                           reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                           reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                          reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                             reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                     reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":             reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                   reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                 reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":                reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                      reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                   reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                   reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                  reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                       reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                             reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfData\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofIfmaMsghdr2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                    reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                  reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":             reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                 reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":                reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                             reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                  reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                         reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                               reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                             reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                             reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                              reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                             reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                      reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                    reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                     reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                            reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                               reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                             reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                       reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CONNECTIONTIMEOUT\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_ENABLE_ECN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"TCP_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"TCP_MAXHLEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"TCP_MAXOLEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOOPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_NOTSENT_LOWAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"TCP_RXT_CONNDROPTIME\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TCP_RXT_FINDROP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TCP_SENDMOREACKS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDCDTIMESTAMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074820184\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCDSIMICROCODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536900693\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGDRAINWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033750\", token.INT, 0)),\n\t\t\"TIOCGETA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1078490131\", token.INT, 0)),\n\t\t\"TIOCGETD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCIXOFF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900736\", token.INT, 0)),\n\t\t\"TIOCIXON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900737\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGDTRWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074033754\", token.INT, 0)),\n\t\t\"TIOCMGET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033667\", token.INT, 0)),\n\t\t\"TIOCMODS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775492\", token.INT, 0)),\n\t\t\"TIOCMSDTRWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147775579\", token.INT, 0)),\n\t\t\"TIOCMSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTYGNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1082160211\", token.INT, 0)),\n\t\t\"TIOCPTYGRANT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536900692\", token.INT, 0)),\n\t\t\"TIOCPTYUNLK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536900690\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900707\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDRAINWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147775575\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2152231956\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2152231958\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2152231957\", token.INT, 0)),\n\t\t\"TIOCSETD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536900703\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCTIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074820185\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                     reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                      reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                           reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                              reflect.ValueOf(syscall.Umask),\n\t\t\"Undelete\":                           reflect.ValueOf(syscall.Undelete),\n\t\t\"UnixRights\":                         reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                             reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                            reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                           reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                             reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                         reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                             reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VT0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                                reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTDLY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTIME\":                              reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WORDSIZE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WUNTRACED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                              reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                              reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                        reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                       reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":                    reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                       reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfVersion\":                    reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                       reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":                    reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"Fbootstraptransfer_t\":          reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)),\n\t\t\"FdSet\":                         reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                       reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                          reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"Fstore_t\":                      reflect.ValueOf((*syscall.Fstore_t)(nil)),\n\t\t\"ICMPv6Filter\":                  reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                        reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":                   reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                      reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfData\":                        reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                      reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                     reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"IfmaMsghdr\":                    reflect.ValueOf((*syscall.IfmaMsghdr)(nil)),\n\t\t\"IfmaMsghdr2\":                   reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)),\n\t\t\"Inet4Pktinfo\":                  reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":                  reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":          reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceMessage\":              reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"InterfaceMulticastAddrMessage\": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)),\n\t\t\"Iovec\":                         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                      reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                        reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Log2phys_t\":                    reflect.ValueOf((*syscall.Log2phys_t)(nil)),\n\t\t\"Msghdr\":                        reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"Radvisory_t\":                   reflect.ValueOf((*syscall.Radvisory_t)(nil)),\n\t\t\"RawConn\":                       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                   reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":                reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":           reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":              reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":              reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":               reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":                  reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":                reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                     reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                      reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":              reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":                 reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":                 reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":          reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                      reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":                   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                       reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timeval32\":                     reflect.ValueOf((*syscall.Timeval32)(nil)),\n\t\t\"WaitStatus\":                    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_js_wasm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_INET\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_UNIX\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Accept\":              reflect.ValueOf(syscall.Accept),\n\t\t\"Bind\":                reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":   reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\": reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"Chdir\":               reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":               reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":               reflect.ValueOf(syscall.Chown),\n\t\t\"Clearenv\":            reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":               reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":         reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"Connect\":             reflect.ValueOf(syscall.Connect),\n\t\t\"Dup\":                 reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":               reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":              reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":          reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":       reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":        reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":              reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":            reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":               reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":               reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":              reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":             reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":               reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":             reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":             reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":              reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":               reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":           reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECASECLASH\":          reflect.ValueOf(syscall.ECASECLASH),\n\t\t\"ECHILD\":              reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHRNG\":              reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":               reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":        reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":        reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":          reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":             reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":           reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":        reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":             reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":              reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":              reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":              reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":               reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":              reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":           reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":        reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":               reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":              reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":         reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":               reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":              reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                 reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":             reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":              reflect.ValueOf(syscall.EISDIR),\n\t\t\"EL2HLT\":              reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":            reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":              reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":              reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELBIN\":               reflect.ValueOf(syscall.ELBIN),\n\t\t\"ELIBACC\":             reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":             reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":            reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":             reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":             reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":              reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":               reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":              reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":              reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":            reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":           reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":        reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENETDOWN\":            reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":           reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":         reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":              reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENMFILE\":             reflect.ValueOf(syscall.ENMFILE),\n\t\t\"ENOANO\":              reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":             reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":              reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":             reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":              reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":              reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":             reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":              reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":             reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":           reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":              reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":              reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":              reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":              reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":         reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSHARE\":            reflect.ValueOf(syscall.ENOSHARE),\n\t\t\"ENOSPC\":              reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":               reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":              reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":              reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTCONN\":            reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":             reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":           reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTSOCK\":            reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":             reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":              reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":            reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":               reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":          reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":           reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EPERM\":               reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":        reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":               reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":            reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROTO\":              reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":     reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":          reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":              reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":             reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":             reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":               reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":           reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":     reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":              reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":               reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":              reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":              reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIME\":               reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":           reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":        reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"EUNATCH\":             reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":              reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":         reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":               reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":              reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":             reflect.ValueOf(syscall.Environ),\n\t\t\"F_CNVT\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_DUPFD\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFD\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETOWN\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_RDLCK\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_RGETLK\":            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_RSETLK\":            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_RSETLKW\":           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETFD\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETOWN\":            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_UNLKSYS\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRLCK\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Fchdir\":              reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":              reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":              reflect.ValueOf(syscall.Fchown),\n\t\t\"ForkLock\":            reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":               reflect.ValueOf(syscall.Fstat),\n\t\t\"Fsync\":               reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":           reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Getcwd\":              reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getegid\":             reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":              reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":             reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":              reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":           reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":         reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpid\":              reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":             reflect.ValueOf(syscall.Getppid),\n\t\t\"GetsockoptInt\":       reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":        reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":              reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":               reflect.ValueOf(syscall.Getwd),\n\t\t\"IPPROTO_IP\":          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":        reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":         reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":     reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Lchown\":              reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":              reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":               reflect.ValueOf(syscall.Lstat),\n\t\t\"Mkdir\":               reflect.ValueOf(syscall.Mkdir),\n\t\t\"NsecToTimespec\":      reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":       reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"O_APPEND\":            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_CREAT\":             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CREATE\":            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_EXCL\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_RDONLY\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SYNC\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_TRUNC\":             reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                reflect.ValueOf(syscall.Open),\n\t\t\"ParseDirent\":         reflect.ValueOf(syscall.ParseDirent),\n\t\t\"PathMax\":             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"Pipe\":                reflect.ValueOf(syscall.Pipe),\n\t\t\"Pread\":               reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":              reflect.ValueOf(syscall.Pwrite),\n\t\t\"Read\":                reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":          reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":            reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":            reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":             reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":              reflect.ValueOf(syscall.Rename),\n\t\t\"Rmdir\":               reflect.ValueOf(syscall.Rmdir),\n\t\t\"SIGCHLD\":             reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGINT\":              reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGKILL\":             reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGQUIT\":             reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGTERM\":             reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":             reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SOCK_DGRAM\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_RAW\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOMAXCONN\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ERROR\":            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":           reflect.ValueOf(constant.MakeFromLiteral(\"500\", token.INT, 0)),\n\t\t\"S_IEXEC\":             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":             reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFBOUNDSOCK\":       reflect.ValueOf(constant.MakeFromLiteral(\"77824\", token.INT, 0)),\n\t\t\"S_IFCHR\":             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFCOND\":            reflect.ValueOf(constant.MakeFromLiteral(\"90112\", token.INT, 0)),\n\t\t\"S_IFDIR\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFDSOCK\":           reflect.ValueOf(constant.MakeFromLiteral(\"69632\", token.INT, 0)),\n\t\t\"S_IFIFO\":             reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":             reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":              reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"S_IFMUTEX\":           reflect.ValueOf(constant.MakeFromLiteral(\"86016\", token.INT, 0)),\n\t\t\"S_IFREG\":             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSEMA\":            reflect.ValueOf(constant.MakeFromLiteral(\"94208\", token.INT, 0)),\n\t\t\"S_IFSHM\":             reflect.ValueOf(constant.MakeFromLiteral(\"81920\", token.INT, 0)),\n\t\t\"S_IFSHM_SYSV\":        reflect.ValueOf(constant.MakeFromLiteral(\"98304\", token.INT, 0)),\n\t\t\"S_IFSOCK\":            reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFSOCKADDR\":        reflect.ValueOf(constant.MakeFromLiteral(\"73728\", token.INT, 0)),\n\t\t\"S_IREAD\":             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":             reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":             reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":             reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_UNSUP\":             reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"Seek\":                reflect.ValueOf(syscall.Seek),\n\t\t\"Sendfile\":            reflect.ValueOf(syscall.Sendfile),\n\t\t\"SendmsgN\":            reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":              reflect.ValueOf(syscall.Sendto),\n\t\t\"SetNonblock\":         reflect.ValueOf(syscall.SetNonblock),\n\t\t\"SetReadDeadline\":     reflect.ValueOf(syscall.SetReadDeadline),\n\t\t\"SetWriteDeadline\":    reflect.ValueOf(syscall.SetWriteDeadline),\n\t\t\"Setenv\":              reflect.ValueOf(syscall.Setenv),\n\t\t\"SetsockoptInt\":       reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"Socket\":              reflect.ValueOf(syscall.Socket),\n\t\t\"Stat\":                reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Stdin\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Stdout\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"StopIO\":              reflect.ValueOf(syscall.StopIO),\n\t\t\"StringBytePtr\":       reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":     reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"Symlink\":             reflect.ValueOf(syscall.Symlink),\n\t\t\"Sysctl\":              reflect.ValueOf(syscall.Sysctl),\n\t\t\"TimespecToNsec\":      reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":       reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":            reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":               reflect.ValueOf(syscall.Umask),\n\t\t\"Unlink\":              reflect.ValueOf(syscall.Unlink),\n\t\t\"Unsetenv\":            reflect.ValueOf(syscall.Unsetenv),\n\t\t\"UtimesNano\":          reflect.ValueOf(syscall.UtimesNano),\n\t\t\"Wait4\":               reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":               reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"Conn\":          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Dirent\":        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"Iovec\":         reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"ProcAttr\":      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"Rusage\":        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\": reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\": reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"Stat_t\":        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"SysProcAttr\":   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Timespec\":      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_linux_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_PHY\":            reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPOLL_NONBLOCK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Ioperm\":                           reflect.ValueOf(syscall.Ioperm),\n\t\t\"Iopl\":                             reflect.ValueOf(syscall.Iopl),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_32BIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETFPXREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETFPXREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SINGLEBLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_SYSEMU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PTRACE_SYSEMU_SINGLESTEP\":         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_BDFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_BREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_CHOWN32\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_FADVISE64_64\":                 reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FCHOWN32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FCNTL64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_FSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_FSTATAT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_FTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE64\":                  reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_GETEGID32\":                    reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETEUID32\":                    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_GETRESGID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_GETRESUID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETUID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_GET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_GTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_IDLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPERM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_IOPL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_IPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_LCHOWN32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_LOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_LSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_MADVISE1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_MMAP2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_MODIFY_LDT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_MPX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_NICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_OLDFSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_OLDLSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_OLDOLDUNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_OLDSTAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_OLDUNAME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_PROF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_READDIR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_SENDFILE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_SETFSGID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_SETFSUID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SETGID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SETREGID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_SETRESGID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETRESUID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_SETREUID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETUID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_SET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_SGETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_SIGNAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_SOCKETCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_SSETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_STAT64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_STIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_STTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_TIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_UGETRLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_ULIMIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_VM86\":                         reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_VM86OLD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_VSERVER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_WAITPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS__LLSEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS__NEWSELECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074287829\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074287830\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_linux_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_PHY\":            reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPOLL_NONBLOCK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Ioperm\":                           reflect.ValueOf(syscall.Ioperm),\n\t\t\"Iopl\":                             reflect.ValueOf(syscall.Iopl),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_32BIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ARCH_PRCTL\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETFPXREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETFPXREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SINGLEBLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_SYSEMU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PTRACE_SYSEMU_SINGLESTEP\":         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_ARCH_PRCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL_OLD\":                reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT_OLD\":               reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_GET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_IOPERM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_IOPL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_MODIFY_LDT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_NEWFSTATAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_SECURITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_SEMTIMEDOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_SET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_TIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_TUXCALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_VSERVER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812117\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812118\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_linux_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_PHY\":            reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELF_NGREG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ELF_PRARGSZ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPOLL_NONBLOCK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_CLEAR_SECCOMP_FILTER\":          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SECCOMP_FILTER_EVENT\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SECCOMP_FILTER_SYSCALL\":        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP_FILTER\":            reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETCRUNCHREGS\":             reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETHBPREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETVFPREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PTRACE_GETWMMXREGS\":               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SETCRUNCHREGS\":             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETHBPREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETVFPREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PTRACE_SETWMMXREGS\":               reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PTRACE_SET_SYSCALL\":               reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_DATA_ADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65540\", token.INT, 0)),\n\t\t\"PT_TEXT_ADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PT_TEXT_END_ADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65544\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_ARM_FADVISE64_64\":             reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_ARM_SYNC_FILE_RANGE\":          reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_BDFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_CHOWN32\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FCHOWN32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FCNTL64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_FSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_FSTATAT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE64\":                  reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_GETEGID32\":                    reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETEUID32\":                    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_GETRESGID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_GETRESUID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETUID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_IPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_LCHOWN32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_LSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_MMAP2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_NICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_OABI_SYSCALL_BASE\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_IOBASE\":             reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_READ\":               reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_WRITE\":              reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"359\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"377\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_READDIR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_RECV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_SEMTIMEDOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_SEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_SENDFILE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"374\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_SETFSGID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_SETFSUID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SETGID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"375\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SETREGID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_SETRESGID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETRESUID32\":                  reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_SETREUID32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETUID32\":                     reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_SOCKETCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_STAT64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_STIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"373\", token.INT, 0)),\n\t\t\"SYS_SYSCALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_SYSCALL_BASE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_TIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_UGETRLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_VSERVER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS__LLSEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS__NEWSELECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074287829\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074287830\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_linux_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":        reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":               reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIGNAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35067\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatat\":                          reflect.ValueOf(syscall.Fstatat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_802_1Q_VLAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BONDING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_BRIDGE_PORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DISABLE_NETPOLL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_DONT_BRIDGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_EBRIDGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_ISATAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_LIVE_ADDR_CHANGE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MACVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_MACVLAN_PORT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MASTER_8023AD\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER_ALB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_MASTER_ARPMON\":                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_OVS_DATAPATH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SLAVE_INACTIVE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_SLAVE_NEEDARP\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SUPP_NOFCS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TEAM_PORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_TX_SKB_SHARING\":               reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_UNICAST_FLT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFF_WAN_HDLC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_XMIT_DST_RELEASE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_BEETPH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DODUMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_HUGE_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"MAP_HUGE_SHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_PATH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TMPFILE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4259840\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048831\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_MAX_PACING_RATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":              reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_ARCH_SPECIFIC_SYSCALL\":        reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_BPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_EXECVEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_FINIT_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETRANDOM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_KCMP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_MEMFD_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_SECCOMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_SEMTIMEDOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE2\":             reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21515\", token.INT, 0)),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_COOKIE_IN_ALWAYS\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_COOKIE_OUT_NEVER\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_COOKIE_PAIR_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_COOKIE_TRANSACTIONS\":          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MSS_DEFAULT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_MSS_DESIRED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1220\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUEUE_SEQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_REPAIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_REPAIR_OPTIONS\":               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_REPAIR_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_S_DATA_IN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_S_DATA_OUT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_THIN_DUPACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_THIN_LINEAR_TIMEOUTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_USER_TIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767360\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767352\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767353\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812117\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812118\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148553947\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025690\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025689\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_linux_loong64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KCM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_KEY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"AF_MCTP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"AF_MPLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_QIPCRTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_RDS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SMC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_XDP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"ARPHRD_6LOWPAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"825\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                  reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":            reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":         reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":         reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_MCTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":                reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_RAWIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"519\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_VSOCKMON\":                   reflect.ValueOf(constant.MakeFromLiteral(\"826\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                              reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                          reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                         reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LL_OFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2097152\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_NET_OFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1048576\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                      reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_ARGS_SIZE_VER0\":              reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CLONE_ARGS_SIZE_VER1\":              reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"CLONE_ARGS_SIZE_VER2\":              reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":                reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIGNAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                             reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                         reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup3\":                              reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                              reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                             reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                            reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                             reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                           reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                           reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                            reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                            reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                             reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                         reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                           reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                         reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                            reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                       reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                      reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                       reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                            reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                          reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                            reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                            reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                           reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                           reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                          reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                           reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                           reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                            reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                       reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                           reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                            reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                            reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                           reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                            reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                         reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                            reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                            reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                             reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                            reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                           reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                   reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                          reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                        reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLEXCLUSIVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                           reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                         reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                          reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                           reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                            reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                          reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_80221\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CFM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_DSA_8021Q\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56027\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_ERSPAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35006\", token.INT, 0)),\n\t\t\"ETH_P_ERSPAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8939\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_HSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35119\", token.INT, 0)),\n\t\t\"ETH_P_IBOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                  reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IFE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60734\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LLDP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35020\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_LOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETH_P_MACSEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35045\", token.INT, 0)),\n\t\t\"ETH_P_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"ETH_P_MCTP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35043\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_NCSI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35064\", token.INT, 0)),\n\t\t\"ETH_P_NSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35151\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PREAUTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35015\", token.INT, 0)),\n\t\t\"ETH_P_PRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35067\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_REALTEK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34969\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_TSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8944\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETH_P_XDSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"ETIME\":                             reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                           reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                           reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                            reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                       reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                      reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                          reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                         reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_ADD_SEALS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1033\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETLK64\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_GET_FILE_RW_HINT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1037\", token.INT, 0)),\n\t\t\"F_GET_RW_HINT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1035\", token.INT, 0)),\n\t\t\"F_GET_SEALS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1034\", token.INT, 0)),\n\t\t\"F_LOCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OFD_GETLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"F_OFD_SETLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"F_OFD_SETLKW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SEAL_FUTURE_WRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_SEAL_GROW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SEAL_SEAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SEAL_SHRINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SEAL_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SET_FILE_RW_HINT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1038\", token.INT, 0)),\n\t\t\"F_SET_RW_HINT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1036\", token.INT, 0)),\n\t\t\"F_SHLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                         reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                         reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                          reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                          reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                         reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatat\":                           reflect.ValueOf(syscall.Fstatat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                         reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                            reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                          reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                 reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                   reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                            reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                          reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_MANAGETEMPADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFA_F_MCAUTOJOIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_NOPREFIXROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_STABLE_PRIVACY\":              reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NAPI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_NAPI_FRAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MASK_CREATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_BEETPH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERNET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_MPTCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADDR_PREFERENCES\":             reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_FREEBIND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IPV6_HDRINCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MINHOPCOUNT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_ALL\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_ORIGDSTADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_INTERFACE\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_OMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVERR_RFC4884\":              reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPV6_RECVFRAGSIZE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVORIGDSTADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT_ISOLATE\":         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_TRANSPARENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BIND_ADDRESS_NO_PORT\":           reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_CHECKSUM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_NODEFRAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_INTERFACE\":             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_OMIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVERR_RFC4884\":                reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_RECVFRAGSIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                             reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                   reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                       reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                      reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                    reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Klogctl\":                           reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":           reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":             reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":            reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":        reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":          reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":         reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":       reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":               reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":               reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                         reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                           reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                         reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                           reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_COLD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"MADV_DODUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_KEEPONFORK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_PAGEOUT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"MADV_POPULATE_READ\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"MADV_POPULATE_WRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MADV_WIPEONFORK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_FIXED_NOREPLACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_HUGE_MASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"MAP_HUGE_SHIFT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_SHARED_VALIDATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MCL_ONFAULT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_BATCH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MSG_ZEROCOPY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_LAZYTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOSYMFOLLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"41943121\", token.INT, 0)),\n\t\t\"MS_SHARED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                           reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                           reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                           reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                             reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                          reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                             reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                          reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                           reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                        reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CAP_ACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_EXT_ACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_GET_STRICT_CHK\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_LISTEN_ALL_NSID\":           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_LIST_MEMBERSHIPS\":          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":                reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SMC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":               reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK_TLVS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CAPPED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_FILTERED\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_NONREC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                        reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_PATH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TMPFILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4259840\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                            reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":                reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CBPF\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_DATA\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_EBPF\":                reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":       reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_UNIQUEID\":       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_QM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_IGNORE_OUTGOING\":            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PACKET_KERNEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_QDISC_BYPASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_ROLLOVER_STATS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_USER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                   reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_CAP_AMBIENT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"PR_CAP_AMBIENT_CLEAR_ALL\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_CAP_AMBIENT_IS_SET\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_CAP_AMBIENT_LOWER\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_CAP_AMBIENT_RAISE\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_FP_MODE_FR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_MODE_FRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":            reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_FP_MODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"PR_GET_IO_FLUSHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":               reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_SPECULATION_CTRL\":           reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"PR_GET_TAGGED_ADDR_CTRL\":           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"PR_GET_THP_DISABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MPX_DISABLE_MANAGEMENT\":         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"PR_MPX_ENABLE_MANAGEMENT\":          reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"PR_MTE_TAG_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"524280\", token.INT, 0)),\n\t\t\"PR_MTE_TAG_SHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_MTE_TCF_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_MTE_TCF_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_MTE_TCF_NONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MTE_TCF_SHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MTE_TCF_SYNC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_PAC_APDAKEY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_PAC_APDBKEY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_PAC_APGAKEY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_PAC_APIAKEY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_PAC_APIBKEY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_PAC_GET_ENABLED_KEYS\":           reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"PR_PAC_RESET_KEYS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"PR_PAC_SET_ENABLED_KEYS\":           reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"PR_SCHED_CORE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"PR_SCHED_CORE_CREATE\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SCHED_CORE_GET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_SCHED_CORE_MAX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SCHED_CORE_SCOPE_PROCESS_GROUP\": reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SCHED_CORE_SCOPE_THREAD\":        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_SCHED_CORE_SCOPE_THREAD_GROUP\":  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SCHED_CORE_SHARE_FROM\":          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SCHED_CORE_SHARE_TO\":            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":            reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_FP_MODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"PR_SET_IO_FLUSHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_MAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_MM_MAP_SIZE\":                reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":               reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":                reflect.ValueOf(constant.MakeFromLiteral(\"18446744073709551615\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_SPECULATION_CTRL\":           reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"PR_SET_SYSCALL_USER_DISPATCH\":      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"PR_SET_TAGGED_ADDR_CTRL\":           reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"PR_SET_THP_DISABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_VMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1398164801\", token.INT, 0)),\n\t\t\"PR_SET_VMA_ANON_NAME\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_SPEC_DISABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SPEC_DISABLE_NOEXEC\":            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_SPEC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SPEC_FORCE_DISABLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SPEC_INDIRECT_BRANCH\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SPEC_L1D_FLUSH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SPEC_NOT_AFFECTED\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_SPEC_PRCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SPEC_STORE_BYPASS\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_SVE_GET_VL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"PR_SVE_SET_VL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"PR_SVE_SET_VL_ONEXEC\":              reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_SVE_VL_INHERIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_SVE_VL_LEN_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"PR_SYS_DISPATCH_OFF\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_SYS_DISPATCH_ON\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TAGGED_ADDR_ENABLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENTMSG_SYSCALL_ENTRY\":     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENTMSG_SYSCALL_EXIT\":      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":                reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_GET_RSEQ_CONFIGURATION\":     reflect.ValueOf(constant.MakeFromLiteral(\"16911\", token.INT, 0)),\n\t\t\"PTRACE_GET_SYSCALL_INFO\":           reflect.ValueOf(constant.MakeFromLiteral(\"16910\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3145983\", token.INT, 0)),\n\t\t\"PTRACE_O_SUSPEND_SECCOMP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SECCOMP_GET_FILTER\":         reflect.ValueOf(constant.MakeFromLiteral(\"16908\", token.INT, 0)),\n\t\t\"PTRACE_SECCOMP_GET_METADATA\":       reflect.ValueOf(constant.MakeFromLiteral(\"16909\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL_INFO_ENTRY\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL_INFO_EXIT\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL_INFO_NONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL_INFO_SECCOMP\":       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_SYSEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PTRACE_SYSEMU_SINGLESTEP\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":               reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":             reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":              reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                             reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                         reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18446744073709551615\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CC_ALGO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FASTOPEN_NO_COOKIE\":           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELCHAIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELLINKPROP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELNETCONF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"RTM_DELNEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"RTM_DELNEXTHOPBUCKET\":              reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"RTM_DELNSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_DELVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_FIB_MATCH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTM_F_LOOKUP_TABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_OFFLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTM_F_OFFLOAD_FAILED\":              reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_F_TRAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETCHAIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETLINKPROP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETNEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"RTM_GETNEXTHOPBUCKET\":              reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"RTM_GETNSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETSTATS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_GETVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"RTM_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWCACHEREPORT\":                reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"RTM_NEWCHAIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWLINKPROP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWNEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"RTM_NEWNEXTHOPBUCKET\":              reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"RTM_NEWNSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"RTM_NEWNVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWSTATS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_COMPARE_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_LINKDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTNH_F_OFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNH_F_TRAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTNH_F_UNRESOLVED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":                reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTPROT_BGP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_EIGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_ISIS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"RTPROT_KEEPALIVED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_OPENR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"RTPROT_OSPF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_RIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                       reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                          reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING_OPT_STATS\":        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING_PKTINFO\":          reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_TXTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                            reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                           reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                            reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                         reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS_OLD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCGSTAMP_OLD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_BUF_LOCK_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RCVBUF_LOCK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_SNDBUF_LOCK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SOL_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SOL_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SOL_DCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SOL_KCM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SOL_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SOL_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SOL_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SOL_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_PNPIPE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SOL_PPPOL2TP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SOL_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SOL_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SOL_TLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SOL_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOL_XDP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_BPF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_ATTACH_REUSEPORT_CBPF\":          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SO_ATTACH_REUSEPORT_EBPF\":          reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BINDTOIFINDEX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SO_BPF_EXTENSIONS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUF_LOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL_BUDGET\":               reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SO_CNX_ADVICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SO_COOKIE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_BPF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DETACH_REUSEPORT_BPF\":           reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_INCOMING_CPU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SO_INCOMING_NAPI_ID\":               reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_MAX_PACING_RATE\":                reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SO_MEMINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SO_NETNS_COOKIE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PREFER_BUSY_POLL\":               reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO_NEW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO_OLD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_RESERVE_MEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":        reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\":  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":               reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO_NEW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO_OLD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING_NEW\":               reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING_OLD\":               reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS_NEW\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS_OLD\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP_NEW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP_OLD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TXTIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SO_ZEROCOPY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_ARCH_SPECIFIC_SYSCALL\":         reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_BPF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_BRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":               reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_CLOSE_RANGE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_COPY_FILE_RANGE\":               reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"441\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_EXECVEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_FINIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_FSCONFIG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_FSMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"432\", token.INT, 0)),\n\t\t\"SYS_FSOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_FSPICK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"433\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_FUTEX_WAITV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"449\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETRANDOM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":               reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_IO_PGETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_IO_URING_ENTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS_IO_URING_REGISTER\":             reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS_IO_URING_SETUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS_KCMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_KEXEC_FILE_LOAD\":               reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_LANDLOCK_ADD_RULE\":             reflect.ValueOf(constant.MakeFromLiteral(\"445\", token.INT, 0)),\n\t\t\"SYS_LANDLOCK_CREATE_RULESET\":       reflect.ValueOf(constant.MakeFromLiteral(\"444\", token.INT, 0)),\n\t\t\"SYS_LANDLOCK_RESTRICT_SELF\":        reflect.ValueOf(constant.MakeFromLiteral(\"446\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":                reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_MEMBARRIER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_MEMFD_CREATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_MLOCK2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_MOUNT_SETATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"442\", token.INT, 0)),\n\t\t\"SYS_MOVE_MOUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":               reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":             reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_OPENAT2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"437\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":             reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_OPEN_TREE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":               reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_PIDFD_GETFD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"438\", token.INT, 0)),\n\t\t\"SYS_PIDFD_OPEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS_PIDFD_SEND_SIGNAL\":             reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_PKEY_ALLOC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_PKEY_FREE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_PKEY_MPROTECT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_PREADV2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_PROCESS_MADVISE\":               reflect.ValueOf(constant.MakeFromLiteral(\"440\", token.INT, 0)),\n\t\t\"SYS_PROCESS_MRELEASE\":              reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":              reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":             reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_PWRITEV2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL_FD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"443\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":              reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RSEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":             reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":             reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":        reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":         reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":             reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":            reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_SECCOMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_SEMTIMEDOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY_HOME_NODE\":       reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":               reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                     reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_STATX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":               reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_TEE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":                reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":               reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":               reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":              reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                         reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_USERFAULTFD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                     reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                     reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                          reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                          reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                       reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                         reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                         reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                 reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                          reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":             reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                     reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                            reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                     reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                           reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21515\", token.INT, 0)),\n\t\t\"TCGETS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CC_INFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"TCP_CM_INQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_COOKIE_IN_ALWAYS\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_COOKIE_OUT_NEVER\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_COOKIE_PAIR_SIZE\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_COOKIE_TRANSACTIONS\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TCP_CORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN_CONNECT\":              reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN_NO_COOKIE\":            reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"TCP_INFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_INQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_EXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_FLAG_PREFIX\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MSS_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_MSS_DESIRED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1220\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOTSENT_LOWAT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"TCP_QUEUE_SEQ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_REPAIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_REPAIR_OFF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCP_REPAIR_OFF_NO_WP\":              reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"TCP_REPAIR_ON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_REPAIR_OPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_REPAIR_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_REPAIR_WINDOW\":                 reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"TCP_SAVED_SYN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"TCP_SAVE_SYN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_S_DATA_IN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_S_DATA_OUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_THIN_DUPACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_THIN_LINEAR_TIMEOUTS\":          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_TX_DELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"TCP_ULP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"TCP_USER_TIMEOUT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCP_ZEROCOPY_RECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCSETS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767360\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGISO7816\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150126658\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147767352\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767353\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGPTPEER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21569\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSISO7816\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223868483\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074812117\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074812118\", token.INT, 0)),\n\t\t\"TUNGETDEVNETNS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21731\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148553947\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETBE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767519\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNGETVNETLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767517\", token.INT, 0)),\n\t\t\"TUNSETCARRIER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025698\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETFILTEREBPF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767521\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025690\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025689\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETSTEERINGEBPF\":                reflect.ValueOf(constant.MakeFromLiteral(\"2147767520\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETBE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025694\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"TUNSETVNETLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025692\", token.INT, 0)),\n\t\t\"Tee\":                               reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                            reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                              reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                             reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                             reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                   reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                          reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                           reflect.ValueOf(syscall.Unshare),\n\t\t\"Utime\":                             reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                               reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_linux_mips.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_6LOWPAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"825\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":        reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":               reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIGNAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINIT\":                            reflect.ValueOf(syscall.EINIT),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMDEV\":                          reflect.ValueOf(syscall.EREMDEV),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_80221\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_LOOPBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35067\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_MANAGETEMPADDR\":             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_NOPREFIXROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_BEETPH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Ioperm\":                           reflect.ValueOf(syscall.Ioperm),\n\t\t\"Iopl\":                             reflect.ValueOf(syscall.Iopl),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DODUMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MAP_HUGE_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"MAP_HUGE_SHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_PATH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_TMPFILE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4259840\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_QM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_QDISC_BYPASS\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_USER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_THP_DISABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_THP_DISABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA_3264\":      reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"PTRACE_GET_WATCH_REGS\":            reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048831\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SET_WATCH_REGS\":            reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                           reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BPF_EXTENSIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4137\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_MAX_PACING_RATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4136\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":              reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_STYLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_64_LINUX_SYSCALLS\":            reflect.ValueOf(constant.MakeFromLiteral(\"4305\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4168\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4334\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4033\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4051\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4280\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4124\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4137\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4027\", token.INT, 0)),\n\t\t\"SYS_BDFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4134\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4169\", token.INT, 0)),\n\t\t\"SYS_BREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4017\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4045\", token.INT, 0)),\n\t\t\"SYS_CACHECTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4148\", token.INT, 0)),\n\t\t\"SYS_CACHEFLUSH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4147\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4204\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4205\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4012\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4015\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4202\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4061\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4341\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4264\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4263\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"4265\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4262\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4120\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4006\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4170\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4008\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4127\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4041\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4063\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4327\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4248\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"4326\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4249\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4313\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4250\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4319\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4325\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4011\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4001\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4246\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4300\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4254\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4320\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"4336\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4337\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4133\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4094\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4299\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4291\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4055\", token.INT, 0)),\n\t\t\"SYS_FCNTL64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4220\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4152\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4229\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4232\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4143\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4002\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4235\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4226\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"SYS_FSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4215\", token.INT, 0)),\n\t\t\"SYS_FSTATAT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4293\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4256\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SYS_FTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4035\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4093\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE64\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4212\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4238\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4292\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4312\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4203\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4141\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4219\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4050\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4049\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4047\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4080\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4171\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4132\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4065\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4020\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4208\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4064\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4191\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4186\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4076\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4077\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4151\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4172\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4173\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4222\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4078\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4024\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4227\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"4269\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"4310\", token.INT, 0)),\n\t\t\"SYS_GTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4032\", token.INT, 0)),\n\t\t\"SYS_IDLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4128\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"4285\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4284\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"4329\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"4286\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4054\", token.INT, 0)),\n\t\t\"SYS_IOPERM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SYS_IOPL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4315\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4314\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4245\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4242\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4243\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4241\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4244\", token.INT, 0)),\n\t\t\"SYS_IPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4117\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4311\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4282\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4037\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4016\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4228\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4009\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4296\", token.INT, 0)),\n\t\t\"SYS_LINUX_SYSCALLS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4346\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4174\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4230\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4231\", token.INT, 0)),\n\t\t\"SYS_LOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4053\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4247\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4234\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4019\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4225\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"SYS_LSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4214\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4218\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4268\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"4287\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4217\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4039\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4289\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4014\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4290\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4154\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4156\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4090\", token.INT, 0)),\n\t\t\"SYS_MMAP2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4210\", token.INT, 0)),\n\t\t\"SYS_MODIFY_LDT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4123\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4021\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4308\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4125\", token.INT, 0)),\n\t\t\"SYS_MPX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4056\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"4276\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4275\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4271\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"4274\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4273\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4272\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4167\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4144\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4155\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4157\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4091\", token.INT, 0)),\n\t\t\"SYS_N32_LINUX_SYSCALLS\":           reflect.ValueOf(constant.MakeFromLiteral(\"4310\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"4339\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4166\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4189\", token.INT, 0)),\n\t\t\"SYS_NICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4034\", token.INT, 0)),\n\t\t\"SYS_O32_LINUX_SYSCALLS\":           reflect.ValueOf(constant.MakeFromLiteral(\"4346\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4005\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4288\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"4340\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4029\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"4333\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4136\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4042\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4328\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4216\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4188\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4302\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4192\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4200\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4330\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4338\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"4345\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"4346\", token.INT, 0)),\n\t\t\"SYS_PROF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4044\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4301\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4026\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4209\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4201\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4331\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4187\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4131\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4003\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4223\", token.INT, 0)),\n\t\t\"SYS_READDIR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4089\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4085\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4298\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4145\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4088\", token.INT, 0)),\n\t\t\"SYS_RECV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4175\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4176\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4335\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4177\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"4251\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4233\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4038\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4295\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4281\", token.INT, 0)),\n\t\t\"SYS_RESERVED221\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4221\", token.INT, 0)),\n\t\t\"SYS_RESERVED82\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4082\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4253\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4040\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4194\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"4196\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4195\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"4198\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4193\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4199\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"4197\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"4332\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"4240\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"4159\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"4161\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"4163\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"4164\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"4165\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"4239\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"4158\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"4160\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4162\", token.INT, 0)),\n\t\t\"SYS_SEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4178\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4207\", token.INT, 0)),\n\t\t\"SYS_SENDFILE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4237\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4343\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4179\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4180\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4121\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4139\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4138\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4046\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4081\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4074\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4344\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4057\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4071\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4190\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4185\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4070\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4075\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4066\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4181\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4079\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4023\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4224\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"4270\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"4309\", token.INT, 0)),\n\t\t\"SYS_SET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"4283\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"4252\", token.INT, 0)),\n\t\t\"SYS_SGETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4068\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4182\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4067\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4206\", token.INT, 0)),\n\t\t\"SYS_SIGNAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4048\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4317\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4324\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4073\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4126\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4119\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4072\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4183\", token.INT, 0)),\n\t\t\"SYS_SOCKETCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4184\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4304\", token.INT, 0)),\n\t\t\"SYS_SSETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4069\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"SYS_STAT64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4213\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4255\", token.INT, 0)),\n\t\t\"SYS_STIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4025\", token.INT, 0)),\n\t\t\"SYS_STTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4031\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4087\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4083\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4297\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4036\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4342\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"4305\", token.INT, 0)),\n\t\t\"SYS_SYSCALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4000\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4135\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4116\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SYS_SYSMIPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4149\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4306\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4266\", token.INT, 0)),\n\t\t\"SYS_TIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4013\", token.INT, 0)),\n\t\t\"SYS_TIMERFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4318\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4321\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"4322\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"4323\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4257\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4261\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"4260\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4259\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4258\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4043\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4236\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4092\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4211\", token.INT, 0)),\n\t\t\"SYS_ULIMIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4058\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4060\", token.INT, 0)),\n\t\t\"SYS_UMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4022\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4052\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4122\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4010\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4303\", token.INT, 0)),\n\t\t\"SYS_UNUSED109\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"SYS_UNUSED150\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4150\", token.INT, 0)),\n\t\t\"SYS_UNUSED18\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4018\", token.INT, 0)),\n\t\t\"SYS_UNUSED28\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4028\", token.INT, 0)),\n\t\t\"SYS_UNUSED59\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4059\", token.INT, 0)),\n\t\t\"SYS_UNUSED84\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4084\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4086\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4062\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4030\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4316\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4267\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"SYS_VM86\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4307\", token.INT, 0)),\n\t\t\"SYS_VSERVER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4277\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4114\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4278\", token.INT, 0)),\n\t\t\"SYS_WAITPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4007\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4004\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4146\", token.INT, 0)),\n\t\t\"SYS__LLSEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4140\", token.INT, 0)),\n\t\t\"SYS__NEWSELECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4142\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4153\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21511\", token.INT, 0)),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_COOKIE_IN_ALWAYS\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_COOKIE_OUT_NEVER\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_COOKIE_PAIR_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_COOKIE_TRANSACTIONS\":          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MSS_DEFAULT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_MSS_DESIRED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1220\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUEUE_SEQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_REPAIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_REPAIR_OPTIONS\":               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_REPAIR_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_S_DATA_IN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_S_DATA_OUT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_THIN_DUPACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_THIN_LINEAR_TIMEOUTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_USER_TIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775608\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29709\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025522\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29696\", token.INT, 0)),\n\t\t\"TIOCGETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29704\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025536\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21650\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21643\", token.INT, 0)),\n\t\t\"TIOCGLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29812\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025528\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025529\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025520\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21636\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29718\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21633\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"18047\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21635\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29724\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29723\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29725\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21649\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29722\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21617\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29710\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29810\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21616\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21632\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21640\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21646\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21647\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21645\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21641\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21648\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21642\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29697\", token.INT, 0)),\n\t\t\"TIOCSETN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29706\", token.INT, 0)),\n\t\t\"TIOCSETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29705\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147767350\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21644\", token.INT, 0)),\n\t\t\"TIOCSLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29813\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767345\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21637\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21634\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21618\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148029653\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148029654\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025679\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074287835\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025682\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025683\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025687\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767497\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767502\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767498\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767514\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767501\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767496\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767504\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767500\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767499\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767513\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767508\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767505\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767512\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VSWTCH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_linux_mips64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":        reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":               reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIGNAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINIT\":                            reflect.ValueOf(syscall.EINIT),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPOLL_NONBLOCK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMDEV\":                          reflect.ValueOf(syscall.EREMDEV),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_802_1Q_VLAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BONDING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_BRIDGE_PORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DISABLE_NETPOLL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_DONT_BRIDGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_EBRIDGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_ISATAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_LIVE_ADDR_CHANGE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MACVLAN_PORT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MASTER_8023AD\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER_ALB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_MASTER_ARPMON\":                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_OVS_DATAPATH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SLAVE_INACTIVE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_SLAVE_NEEDARP\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SUPP_NOFCS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TEAM_PORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_TX_SKB_SHARING\":               reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_UNICAST_FLT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFF_WAN_HDLC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_XMIT_DST_RELEASE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Ioperm\":                           reflect.ValueOf(syscall.Ioperm),\n\t\t\"Iopl\":                             reflect.ValueOf(syscall.Iopl),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DODUMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_PATH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA_3264\":      reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"PTRACE_GET_WATCH_REGS\":            reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048831\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SET_WATCH_REGS\":            reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                           reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4137\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4136\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":              reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_STYLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5042\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5293\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5020\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5158\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5239\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5154\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5176\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5037\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5048\", token.INT, 0)),\n\t\t\"SYS_BPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5315\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5012\", token.INT, 0)),\n\t\t\"SYS_CACHECTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5198\", token.INT, 0)),\n\t\t\"SYS_CACHEFLUSH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5197\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5123\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5124\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5078\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5088\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5090\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5156\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5300\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5223\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5222\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"5224\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5221\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5055\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5003\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5041\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5083\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"5167\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"5169\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5031\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5032\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5286\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5207\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"5285\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5208\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5272\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5209\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5278\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5284\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5057\", token.INT, 0)),\n\t\t\"SYS_EXECVEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5316\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5058\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5205\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5259\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5215\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5279\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"5295\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"5296\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5079\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5089\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5258\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5091\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5250\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5070\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5073\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5185\", token.INT, 0)),\n\t\t\"SYS_FINIT_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5307\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5188\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5071\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5056\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5191\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5182\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5005\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5135\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5072\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5075\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5194\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5251\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5271\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5077\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5076\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5308\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5106\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5105\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5102\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5113\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5035\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5051\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5119\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5109\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5038\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5174\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5108\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5137\", token.INT, 0)),\n\t\t\"SYS_GETRANDOM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5313\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5118\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5116\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5095\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5096\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5122\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5050\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5054\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5178\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5094\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5100\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5183\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"5170\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"5228\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"5269\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5168\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"5244\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5243\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"5288\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"5245\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5015\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5274\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5273\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5204\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5201\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5202\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5200\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5203\", token.INT, 0)),\n\t\t\"SYS_KCMP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5306\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5270\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5241\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5060\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5092\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5184\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5084\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5255\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5049\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5186\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5187\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"5206\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5190\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5008\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5181\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5006\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5027\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5227\", token.INT, 0)),\n\t\t\"SYS_MEMFD_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5314\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"5246\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5026\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5081\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5248\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5131\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5249\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5146\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5148\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5009\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5160\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5267\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5010\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"5235\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5234\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5230\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"5233\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5232\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5231\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5024\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5069\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5066\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5068\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5067\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5025\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5147\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5149\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5011\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"5298\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5034\", token.INT, 0)),\n\t\t\"SYS_NEWFSTATAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5252\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5173\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5002\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5247\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"5299\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5033\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"5292\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5132\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5021\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5287\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5151\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5007\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5261\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5153\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5016\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5289\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5297\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"5304\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"5305\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5260\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5099\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5175\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5017\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5290\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5171\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5172\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5000\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5179\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5087\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5257\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5018\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5164\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5044\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5294\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5046\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"5210\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5189\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5080\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5254\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5311\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5240\", token.INT, 0)),\n\t\t\"SYS_RESERVED177\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5177\", token.INT, 0)),\n\t\t\"SYS_RESERVED193\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5193\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"5213\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5082\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5013\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"5125\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"5014\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"5127\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5211\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"5128\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"5126\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"5291\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"5196\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"5310\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"5140\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"5142\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"5143\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"5144\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"5145\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"5195\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"5309\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"5139\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"5141\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5023\", token.INT, 0)),\n\t\t\"SYS_SECCOMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5312\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5064\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5062\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5063\", token.INT, 0)),\n\t\t\"SYS_SEMTIMEDOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5214\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5039\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5302\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5045\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5043\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5166\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5121\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5120\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5104\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5114\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5165\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5036\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5303\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5107\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5138\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5112\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5117\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5115\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5111\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5155\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5110\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5053\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5159\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5103\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5180\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"5229\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"5268\", token.INT, 0)),\n\t\t\"SYS_SET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"5242\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"5212\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5029\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5030\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5065\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5028\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5047\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5129\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5276\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5283\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5040\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5052\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5263\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5004\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5134\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5163\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5162\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5086\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5256\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5157\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5301\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"5264\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5136\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5097\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5101\", token.INT, 0)),\n\t\t\"SYS_SYSMIPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5199\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5265\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5225\", token.INT, 0)),\n\t\t\"SYS_TIMERFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5277\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"5280\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"5281\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"5282\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5216\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5220\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"5219\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5218\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5217\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5098\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5192\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5074\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5093\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5161\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5061\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5085\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5253\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5262\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5133\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5130\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5275\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5226\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5150\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5266\", token.INT, 0)),\n\t\t\"SYS_VSERVER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5236\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5059\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5237\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5001\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5019\", token.INT, 0)),\n\t\t\"SYS__NEWSELECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5022\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5152\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21511\", token.INT, 0)),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775608\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29709\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025522\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29696\", token.INT, 0)),\n\t\t\"TIOCGETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29704\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025536\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21650\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21643\", token.INT, 0)),\n\t\t\"TIOCGLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29812\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025528\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025529\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025520\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21636\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29718\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21633\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"18047\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21635\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29724\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29723\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29725\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21649\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29722\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21617\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29710\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29810\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21616\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21632\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21640\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21646\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21647\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21645\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21641\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21648\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21642\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29697\", token.INT, 0)),\n\t\t\"TIOCSETN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29706\", token.INT, 0)),\n\t\t\"TIOCSETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29705\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147767350\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21644\", token.INT, 0)),\n\t\t\"TIOCSLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29813\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767345\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21637\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21634\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21618\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148553941\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148553942\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025679\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074812123\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025682\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025683\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025687\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767497\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767502\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767498\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767514\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767501\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767496\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767504\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767500\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767499\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767513\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767508\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767505\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767512\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VSWTCH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_linux_mips64le.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":        reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":               reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIGNAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINIT\":                            reflect.ValueOf(syscall.EINIT),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPOLL_NONBLOCK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMDEV\":                          reflect.ValueOf(syscall.EREMDEV),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_802_1Q_VLAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BONDING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_BRIDGE_PORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DISABLE_NETPOLL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_DONT_BRIDGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_EBRIDGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_ISATAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_LIVE_ADDR_CHANGE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MACVLAN_PORT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MASTER_8023AD\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER_ALB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_MASTER_ARPMON\":                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_OVS_DATAPATH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SLAVE_INACTIVE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_SLAVE_NEEDARP\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SUPP_NOFCS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TEAM_PORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_TX_SKB_SHARING\":               reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_UNICAST_FLT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFF_WAN_HDLC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_XMIT_DST_RELEASE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Ioperm\":                           reflect.ValueOf(syscall.Ioperm),\n\t\t\"Iopl\":                             reflect.ValueOf(syscall.Iopl),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DODUMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_PATH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA_3264\":      reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"PTRACE_GET_WATCH_REGS\":            reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048831\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SET_WATCH_REGS\":            reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                           reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4137\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4136\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":              reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_STYLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5042\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5293\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5020\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5158\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5239\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5154\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5176\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5037\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5048\", token.INT, 0)),\n\t\t\"SYS_BPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5315\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5012\", token.INT, 0)),\n\t\t\"SYS_CACHECTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5198\", token.INT, 0)),\n\t\t\"SYS_CACHEFLUSH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5197\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5123\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5124\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5078\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5088\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5090\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5156\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5300\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5223\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5222\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"5224\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5221\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5055\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5003\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5041\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5083\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"5167\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"5169\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5031\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5032\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5286\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5207\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"5285\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5208\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5272\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5209\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5278\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5284\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5057\", token.INT, 0)),\n\t\t\"SYS_EXECVEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5316\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5058\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5205\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5259\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5215\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5279\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"5295\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"5296\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5079\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5089\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5258\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5091\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5250\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5070\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5073\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5185\", token.INT, 0)),\n\t\t\"SYS_FINIT_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5307\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5188\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5071\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5056\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5191\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5182\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5005\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5135\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5072\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5075\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5194\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5251\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5271\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5077\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5076\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5308\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5106\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5105\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5102\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5113\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5035\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5051\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5119\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5109\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5038\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5174\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5108\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5137\", token.INT, 0)),\n\t\t\"SYS_GETRANDOM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5313\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5118\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5116\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5095\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5096\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5122\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5050\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5054\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5178\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5094\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5100\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5183\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"5170\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"5228\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"5269\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5168\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"5244\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5243\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"5288\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"5245\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5015\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5274\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5273\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5204\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5201\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5202\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5200\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5203\", token.INT, 0)),\n\t\t\"SYS_KCMP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5306\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5270\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5241\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5060\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5092\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5184\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5084\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5255\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5049\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5186\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5187\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"5206\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5190\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5008\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5181\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5006\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5027\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5227\", token.INT, 0)),\n\t\t\"SYS_MEMFD_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5314\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"5246\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5026\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5081\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5248\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5131\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5249\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5146\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5148\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5009\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5160\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5267\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5010\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"5235\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5234\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5230\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"5233\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5232\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5231\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5024\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5069\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5066\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5068\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5067\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5025\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5147\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5149\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5011\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"5298\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5034\", token.INT, 0)),\n\t\t\"SYS_NEWFSTATAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5252\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5173\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5002\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5247\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"5299\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5033\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"5292\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5132\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5021\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5287\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5151\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5007\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5261\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5153\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5016\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5289\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5297\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"5304\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"5305\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5260\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5099\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5175\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5017\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5290\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5171\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5172\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5000\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5179\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5087\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5257\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5018\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5164\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5044\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5294\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5046\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"5210\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5189\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5080\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5254\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5311\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5240\", token.INT, 0)),\n\t\t\"SYS_RESERVED177\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5177\", token.INT, 0)),\n\t\t\"SYS_RESERVED193\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5193\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"5213\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5082\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5013\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"5125\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"5014\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"5127\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5211\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"5128\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"5126\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"5291\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"5196\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"5310\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"5140\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"5142\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"5143\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"5144\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"5145\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"5195\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"5309\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"5139\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"5141\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5023\", token.INT, 0)),\n\t\t\"SYS_SECCOMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5312\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5064\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5062\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5063\", token.INT, 0)),\n\t\t\"SYS_SEMTIMEDOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5214\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5039\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5302\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5045\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5043\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5166\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5121\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5120\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5104\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5114\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5165\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5036\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5303\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5107\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5138\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5112\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5117\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5115\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5111\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5155\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5110\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5053\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5159\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5103\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5180\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"5229\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"5268\", token.INT, 0)),\n\t\t\"SYS_SET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"5242\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"5212\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5029\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5030\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5065\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5028\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5047\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5129\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5276\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5283\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5040\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5052\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5263\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5004\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5134\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5163\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5162\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5086\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5256\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5157\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5301\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"5264\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5136\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5097\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5101\", token.INT, 0)),\n\t\t\"SYS_SYSMIPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5199\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5265\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5225\", token.INT, 0)),\n\t\t\"SYS_TIMERFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5277\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"5280\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"5281\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"5282\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5216\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5220\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"5219\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5218\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"5217\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5098\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5192\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5074\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5093\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5161\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5061\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5085\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5253\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5262\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5133\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5130\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5275\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5226\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5150\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5266\", token.INT, 0)),\n\t\t\"SYS_VSERVER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5236\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5059\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5237\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5001\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5019\", token.INT, 0)),\n\t\t\"SYS__NEWSELECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5022\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5152\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21511\", token.INT, 0)),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775608\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29709\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025522\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29696\", token.INT, 0)),\n\t\t\"TIOCGETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29704\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025536\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21650\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21643\", token.INT, 0)),\n\t\t\"TIOCGLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29812\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025528\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025529\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025520\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21636\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29718\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21633\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"18047\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21635\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29724\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29723\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29725\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21649\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29722\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21617\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29710\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29810\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21616\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21632\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21640\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21646\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21647\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21645\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21641\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21648\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21642\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29697\", token.INT, 0)),\n\t\t\"TIOCSETN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29706\", token.INT, 0)),\n\t\t\"TIOCSETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29705\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147767350\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21644\", token.INT, 0)),\n\t\t\"TIOCSLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29813\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767345\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21637\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21634\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21618\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148553941\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148553942\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025679\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074812123\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025682\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025683\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025687\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767497\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767502\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767498\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767514\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767501\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767496\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767504\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767500\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767499\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767513\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767508\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767505\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767512\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VSWTCH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_linux_mipsle.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_6LOWPAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"825\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":        reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":               reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIGNAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINIT\":                            reflect.ValueOf(syscall.EINIT),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMDEV\":                          reflect.ValueOf(syscall.EREMDEV),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_80221\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_LOOPBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35067\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_MANAGETEMPADDR\":             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_NOPREFIXROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_BEETPH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Ioperm\":                           reflect.ValueOf(syscall.Ioperm),\n\t\t\"Iopl\":                             reflect.ValueOf(syscall.Iopl),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DODUMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MAP_HUGE_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"MAP_HUGE_SHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_PATH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16400\", token.INT, 0)),\n\t\t\"O_TMPFILE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4259840\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_QM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_QDISC_BYPASS\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_USER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_THP_DISABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_THP_DISABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_GET_THREAD_AREA_3264\":      reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"PTRACE_GET_WATCH_REGS\":            reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048831\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT_3264\":             reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SET_THREAD_AREA\":           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SET_WATCH_REGS\":            reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                           reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BPF_EXTENSIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4137\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_MAX_PACING_RATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4136\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":              reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_STYLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_64_LINUX_SYSCALLS\":            reflect.ValueOf(constant.MakeFromLiteral(\"4305\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4168\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4334\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4033\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4051\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4280\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4124\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4137\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4027\", token.INT, 0)),\n\t\t\"SYS_BDFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4134\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4169\", token.INT, 0)),\n\t\t\"SYS_BREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4017\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4045\", token.INT, 0)),\n\t\t\"SYS_CACHECTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4148\", token.INT, 0)),\n\t\t\"SYS_CACHEFLUSH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4147\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4204\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4205\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4012\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4015\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4202\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4061\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4341\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4264\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4263\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"4265\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4262\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4120\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4006\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4170\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4008\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4127\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4041\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4063\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4327\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4248\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"4326\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4249\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4313\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4250\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4319\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4325\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4011\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4001\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4246\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4300\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4254\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4320\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"4336\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4337\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4133\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4094\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4299\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4291\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4055\", token.INT, 0)),\n\t\t\"SYS_FCNTL64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4220\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4152\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4229\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4232\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4143\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4002\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4235\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4226\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"SYS_FSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4215\", token.INT, 0)),\n\t\t\"SYS_FSTATAT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4293\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4256\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SYS_FTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4035\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4093\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE64\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4212\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4238\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4292\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4312\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4203\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4141\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4219\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4050\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4049\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4047\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4080\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4171\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4132\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4065\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4020\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4208\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4064\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4191\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4186\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4076\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4077\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4151\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4172\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4173\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4222\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4078\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4024\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4227\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"4269\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"4310\", token.INT, 0)),\n\t\t\"SYS_GTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4032\", token.INT, 0)),\n\t\t\"SYS_IDLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4128\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"4285\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4284\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"4329\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"4286\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4054\", token.INT, 0)),\n\t\t\"SYS_IOPERM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SYS_IOPL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4315\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4314\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4245\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4242\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4243\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4241\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4244\", token.INT, 0)),\n\t\t\"SYS_IPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4117\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4311\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4282\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4037\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4016\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4228\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4009\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4296\", token.INT, 0)),\n\t\t\"SYS_LINUX_SYSCALLS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4346\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4174\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4230\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4231\", token.INT, 0)),\n\t\t\"SYS_LOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4053\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4247\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4234\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4019\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4225\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"SYS_LSTAT64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4214\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4218\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4268\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"4287\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4217\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4039\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4289\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4014\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4290\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4154\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4156\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4090\", token.INT, 0)),\n\t\t\"SYS_MMAP2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4210\", token.INT, 0)),\n\t\t\"SYS_MODIFY_LDT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4123\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4021\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4308\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4125\", token.INT, 0)),\n\t\t\"SYS_MPX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4056\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"4276\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4275\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4271\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"4274\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4273\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4272\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4167\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4144\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4155\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4157\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4091\", token.INT, 0)),\n\t\t\"SYS_N32_LINUX_SYSCALLS\":           reflect.ValueOf(constant.MakeFromLiteral(\"4310\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"4339\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4166\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4189\", token.INT, 0)),\n\t\t\"SYS_NICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4034\", token.INT, 0)),\n\t\t\"SYS_O32_LINUX_SYSCALLS\":           reflect.ValueOf(constant.MakeFromLiteral(\"4346\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4005\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4288\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"4340\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4029\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"4333\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4136\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4042\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4328\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4216\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4188\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4302\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4192\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4200\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4330\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4338\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"4345\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"4346\", token.INT, 0)),\n\t\t\"SYS_PROF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4044\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4301\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4026\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4209\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4201\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4331\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4187\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4131\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4003\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4223\", token.INT, 0)),\n\t\t\"SYS_READDIR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4089\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4085\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4298\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4145\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4088\", token.INT, 0)),\n\t\t\"SYS_RECV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4175\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4176\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4335\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4177\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"4251\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4233\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4038\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4295\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4281\", token.INT, 0)),\n\t\t\"SYS_RESERVED221\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4221\", token.INT, 0)),\n\t\t\"SYS_RESERVED82\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4082\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4253\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4040\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4194\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"4196\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4195\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"4198\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4193\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4199\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"4197\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"4332\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"4240\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"4159\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"4161\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"4163\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"4164\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"4165\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"4239\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"4158\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"4160\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4162\", token.INT, 0)),\n\t\t\"SYS_SEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4178\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4207\", token.INT, 0)),\n\t\t\"SYS_SENDFILE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4237\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4343\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4179\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4180\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4121\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4139\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4138\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4046\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4081\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4074\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4344\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4057\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4071\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4190\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4185\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4070\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4075\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4066\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4181\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4079\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4023\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4224\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"4270\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"4309\", token.INT, 0)),\n\t\t\"SYS_SET_THREAD_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"4283\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"4252\", token.INT, 0)),\n\t\t\"SYS_SGETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4068\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4182\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4067\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4206\", token.INT, 0)),\n\t\t\"SYS_SIGNAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4048\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4317\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4324\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4073\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4126\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4119\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4072\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4183\", token.INT, 0)),\n\t\t\"SYS_SOCKETCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4184\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4304\", token.INT, 0)),\n\t\t\"SYS_SSETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4069\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"SYS_STAT64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4213\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4255\", token.INT, 0)),\n\t\t\"SYS_STIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4025\", token.INT, 0)),\n\t\t\"SYS_STTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4031\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4087\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4083\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4297\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4036\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4342\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"4305\", token.INT, 0)),\n\t\t\"SYS_SYSCALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4000\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4135\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4116\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SYS_SYSMIPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4149\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4306\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4266\", token.INT, 0)),\n\t\t\"SYS_TIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4013\", token.INT, 0)),\n\t\t\"SYS_TIMERFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4318\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4321\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"4322\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"4323\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4257\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4261\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"4260\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4259\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"4258\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4043\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4236\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4092\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4211\", token.INT, 0)),\n\t\t\"SYS_ULIMIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4058\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4060\", token.INT, 0)),\n\t\t\"SYS_UMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4022\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4052\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4122\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4010\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4303\", token.INT, 0)),\n\t\t\"SYS_UNUSED109\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"SYS_UNUSED150\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4150\", token.INT, 0)),\n\t\t\"SYS_UNUSED18\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4018\", token.INT, 0)),\n\t\t\"SYS_UNUSED28\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4028\", token.INT, 0)),\n\t\t\"SYS_UNUSED59\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4059\", token.INT, 0)),\n\t\t\"SYS_UNUSED84\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4084\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4086\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4062\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4030\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4316\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4267\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"SYS_VM86\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4307\", token.INT, 0)),\n\t\t\"SYS_VSERVER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4277\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4114\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4278\", token.INT, 0)),\n\t\t\"SYS_WAITPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4007\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4004\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4146\", token.INT, 0)),\n\t\t\"SYS__LLSEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4140\", token.INT, 0)),\n\t\t\"SYS__NEWSELECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4142\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4153\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21511\", token.INT, 0)),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_COOKIE_IN_ALWAYS\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_COOKIE_OUT_NEVER\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_COOKIE_PAIR_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_COOKIE_TRANSACTIONS\":          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MSS_DEFAULT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_MSS_DESIRED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1220\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUEUE_SEQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_REPAIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_REPAIR_OPTIONS\":               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_REPAIR_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_S_DATA_IN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_S_DATA_OUT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_THIN_DUPACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_THIN_LINEAR_TIMEOUTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_USER_TIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775608\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29709\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025522\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29696\", token.INT, 0)),\n\t\t\"TIOCGETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29704\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025536\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21650\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21643\", token.INT, 0)),\n\t\t\"TIOCGLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29812\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025528\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025529\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025520\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21636\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29718\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21633\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"18047\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21635\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29724\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29723\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29725\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21649\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29722\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21617\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29710\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29810\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21616\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21632\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21640\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21646\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21647\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21645\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21641\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21648\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21642\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29697\", token.INT, 0)),\n\t\t\"TIOCSETN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29706\", token.INT, 0)),\n\t\t\"TIOCSETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29705\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147767350\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21644\", token.INT, 0)),\n\t\t\"TIOCSLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29813\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767345\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21637\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21634\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21618\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148029653\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148029654\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025679\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074287835\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025682\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025683\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025687\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767497\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767502\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767498\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767514\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767501\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767496\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767504\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767500\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767499\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767513\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767508\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767505\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767512\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VSWTCH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_linux_ppc64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":        reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":               reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIGNAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPOLL_NONBLOCK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35067\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_802_1Q_VLAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BONDING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_BRIDGE_PORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DISABLE_NETPOLL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_DONT_BRIDGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_EBRIDGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_ISATAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_LIVE_ADDR_CHANGE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MACVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_MACVLAN_PORT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MASTER_8023AD\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER_ALB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_MASTER_ARPMON\":                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_OVS_DATAPATH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SLAVE_INACTIVE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_SLAVE_NEEDARP\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SUPP_NOFCS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TEAM_PORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_TX_SKB_SHARING\":               reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_UNICAST_FLT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFF_WAN_HDLC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_XMIT_DST_RELEASE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Ioperm\":                           reflect.ValueOf(syscall.Ioperm),\n\t\t\"Iopl\":                             reflect.ValueOf(syscall.Iopl),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DODUMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_PATH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_SAO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETEVRREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS64\":                 reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_GETVRREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PTRACE_GETVSRREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PTRACE_GET_DEBUGREG\":              reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048831\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETEVRREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS64\":                 reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SETVRREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PTRACE_SETVSRREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PTRACE_SET_DEBUGREG\":              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SINGLEBLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_CCR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PT_CTR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PT_DAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"PT_DSCR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"PT_DSISR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"PT_FPR0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"PT_FPSCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"PT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PT_MSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PT_NIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PT_ORIG_R3\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PT_R0\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_R1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PT_R10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PT_R11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PT_R12\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PT_R13\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PT_R14\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PT_R15\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PT_R16\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PT_R17\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PT_R18\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PT_R19\":                           reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PT_R2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PT_R20\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PT_R21\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PT_R22\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PT_R23\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PT_R24\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PT_R25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PT_R26\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PT_R27\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PT_R28\":                           reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PT_R29\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PT_R3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PT_R30\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PT_R31\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PT_R4\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PT_R5\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PT_R6\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PT_R7\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PT_R8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PT_R9\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PT_REGS_COUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"PT_RESULT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"PT_SOFTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PT_TRAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PT_VR0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"PT_VRSAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"PT_VSCR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"PT_VSR0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"PT_VSR31\":                         reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"PT_XER\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_MAX_PACING_RATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":              reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_BDFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_BREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_FINIT_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_FTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_GTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_IDLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPERM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_IOPL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_IPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_KCMP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_LOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_MODIFY_LDT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_MPX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_MULTIPLEXER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_NEWFSTATAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_NICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_OLDFSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_OLDLSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_OLDOLDUNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_OLDSTAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_OLDUNAME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_IOBASE\":             reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_READ\":               reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_WRITE\":              reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS_PROF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_READDIR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_RECV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_RTAS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_SGETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_SIGNAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS_SOCKETCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_SPU_CREATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_SPU_RUN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_SSETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_STIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_STTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_SUBPAGE_PROT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_SWAPCONTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE2\":             reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_SYS_DEBUG_SETCONTEXT\":         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_TIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_TUXCALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_UGETRLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_ULIMIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_VM86\":                         reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_WAITPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS__LLSEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS__NEWSELECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900639\", token.INT, 0)),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025522\", token.INT, 0)),\n\t\t\"TIOCGETC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074164754\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074164744\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025536\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074164852\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025528\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025529\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025520\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074030207\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"TIOCM_OUT1\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"TIOCM_OUT2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147906577\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSETN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147906570\", token.INT, 0)),\n\t\t\"TIOCSETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147906569\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147767350\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147906677\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767345\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148553941\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148553942\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025679\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074812123\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025682\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025683\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025687\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767497\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767502\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767498\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767514\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767501\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767496\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767504\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767500\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767499\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767513\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767508\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767505\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767512\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VT0\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                              reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTDLY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_linux_ppc64le.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":        reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":               reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIGNAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35067\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_802_1Q_VLAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BONDING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_BRIDGE_PORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DISABLE_NETPOLL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_DONT_BRIDGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_EBRIDGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_ISATAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_LIVE_ADDR_CHANGE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MACVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_MACVLAN_PORT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MASTER_8023AD\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MASTER_ALB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_MASTER_ARPMON\":                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_OVS_DATAPATH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_SLAVE_INACTIVE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_SLAVE_NEEDARP\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SUPP_NOFCS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TEAM_PORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_TX_SKB_SHARING\":               reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_UNICAST_FLT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFF_WAN_HDLC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_XMIT_DST_RELEASE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_BEETPH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Ioperm\":                           reflect.ValueOf(syscall.Ioperm),\n\t\t\"Iopl\":                             reflect.ValueOf(syscall.Iopl),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DODUMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_HUGE_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"MAP_HUGE_SHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_PATH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TMPFILE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4259840\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_SAO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETEVRREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PTRACE_GETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS64\":                 reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_GETVRREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PTRACE_GETVSRREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PTRACE_GET_DEBUGREG\":              reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048831\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETEVRREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_SETFPREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS64\":                 reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SETVRREGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PTRACE_SETVSRREGS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PTRACE_SET_DEBUGREG\":              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PTRACE_SINGLEBLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_CCR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PT_CTR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PT_DAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"PT_DSCR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"PT_DSISR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"PT_FPR0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"PT_FPSCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"PT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PT_MSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PT_NIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PT_ORIG_R3\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PT_R0\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_R1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PT_R10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PT_R11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PT_R12\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PT_R13\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PT_R14\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PT_R15\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PT_R16\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PT_R17\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PT_R18\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PT_R19\":                           reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PT_R2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PT_R20\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PT_R21\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PT_R22\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PT_R23\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PT_R24\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PT_R25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PT_R26\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PT_R27\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PT_R28\":                           reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PT_R29\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PT_R3\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PT_R30\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PT_R31\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PT_R4\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PT_R5\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PT_R6\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PT_R7\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PT_R8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PT_R9\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PT_REGS_COUNT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"PT_RESULT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"PT_SOFTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PT_TRAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PT_VR0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"PT_VRSAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"PT_VSCR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"PT_VSR0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"PT_VSR31\":                         reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"PT_XER\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_MAX_PACING_RATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":              reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_BDFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_BREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_FINIT_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_FTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_GTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_IDLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPERM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_IOPL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_IPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_KCMP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_LOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_MODIFY_LDT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_MPX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_MULTIPLEXER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_NEWFSTATAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_NICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_OLDFSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_OLDLSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_OLDOLDUNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_OLDSTAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_OLDUNAME\":                     reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_IOBASE\":             reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_READ\":               reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_PCICONFIG_WRITE\":              reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS_PROF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_READDIR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_RECV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_RTAS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_SGETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_SIGNAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS_SOCKETCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_SPU_CREATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_SPU_RUN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_SSETMASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_STIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_STTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_SUBPAGE_PROT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_SWAPCONTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE2\":             reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_SYS_DEBUG_SETCONTEXT\":         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_TIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_TUXCALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_UGETRLIMIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_ULIMIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_VM86\":                         reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_WAITPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS__LLSEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS__NEWSELECT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900639\", token.INT, 0)),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_COOKIE_IN_ALWAYS\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_COOKIE_OUT_NEVER\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_COOKIE_PAIR_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_COOKIE_TRANSACTIONS\":          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MSS_DEFAULT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_MSS_DESIRED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1220\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUEUE_SEQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_REPAIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_REPAIR_OPTIONS\":               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_REPAIR_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_S_DATA_IN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_S_DATA_OUT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_THIN_DUPACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_THIN_LINEAR_TIMEOUTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_USER_TIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025522\", token.INT, 0)),\n\t\t\"TIOCGETC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074164754\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074164744\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025536\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074164852\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025528\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025529\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074025520\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074030207\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"TIOCM_OUT1\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"TIOCM_OUT2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147906577\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSETN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147906570\", token.INT, 0)),\n\t\t\"TIOCSETP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147906569\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147767350\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSLTC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147906677\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767345\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148553941\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148553942\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025679\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074812123\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025682\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025683\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025687\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767497\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767502\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767498\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767514\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767501\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767496\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767504\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767500\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147767499\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147767513\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767508\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767505\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767512\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VT0\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                              reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTDLY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_linux_riscv64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KCM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"AF_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_6LOWPAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"825\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":        reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":               reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LL_OFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-2097152\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_NET_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-1048576\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIGNAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLEXCLUSIVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_80221\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_LOOPBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35067\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETH_P_XDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OFD_GETLK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"F_OFD_SETLK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"F_OFD_SETLKW\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatat\":                          reflect.ValueOf(syscall.Fstatat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_MANAGETEMPADDR\":             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFA_F_MCAUTOJOIN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_NOPREFIXROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_STABLE_PRIVACY\":             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_BEETPH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HDRINCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_INTERFACE\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_OMIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                 reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BIND_ADDRESS_NO_PORT\":          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_CHECKSUM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_NODEFRAG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_INTERFACE\":            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_OMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DODUMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_HUGE_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"MAP_HUGE_SHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MCL_ONFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_BATCH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_LAZYTIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41943121\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_PATH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TMPFILE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4259840\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_QM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_QDISC_BYPASS\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_USER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_FP_MODE_FR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_MODE_FRE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_FP_MODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_THP_DISABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MPX_DISABLE_MANAGEMENT\":        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"PR_MPX_ENABLE_MANAGEMENT\":         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_FP_MODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_MAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_MM_MAP_SIZE\":               reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_THP_DISABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048831\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CC_ALGO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELNSID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETNSID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWNSID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_OFFLOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BABEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ALG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_BLUETOOTH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SOL_CAIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SOL_DCCP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_IUCV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SOL_KCM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SOL_LLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SOL_NETBEUI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SOL_NETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SOL_NFC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_PNPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SOL_PPPOL2TP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_RDS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SOL_RXRPC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_TIPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_BPF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BPF_EXTENSIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_BPF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_INCOMING_CPU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_MAX_PACING_RATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":              reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_ARCH_SPECIFIC_SYSCALL\":        reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_BPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_EXECVEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_FINIT_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETRANDOM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_KCMP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_MEMFD_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_SECCOMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_SEMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_SEMTIMEDOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21515\", token.INT, 0)),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CC_INFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_COOKIE_IN_ALWAYS\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_COOKIE_OUT_NEVER\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_COOKIE_PAIR_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_COOKIE_TRANSACTIONS\":          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MSS_DEFAULT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_MSS_DESIRED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1220\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOTSENT_LOWAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"TCP_QUEUE_SEQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_REPAIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_REPAIR_OPTIONS\":               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_REPAIR_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_SAVED_SYN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"TCP_SAVE_SYN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_S_DATA_IN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_S_DATA_OUT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_THIN_DUPACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_THIN_LINEAR_TIMEOUTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_USER_TIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767360\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767352\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767353\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812117\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812118\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148553947\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNGETVNETLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767517\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025690\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025689\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"TUNSETVNETLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025692\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_linux_s390x.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_ALG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_ASH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_ATMPVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ATMSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_CAIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"AF_CAN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_DECnet\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_IEEE802154\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_INET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_IPX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_IRDA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_IUCV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_LLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"AF_NETBEUI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_NETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_NETROM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_NFC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"AF_PACKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_PHONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_PPPOX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_RDS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_ROSE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_RXRPC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_SECURITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_SNA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_TIPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_UNIX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_VSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"AF_WANPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ARPHRD_6LOWPAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"825\", token.INT, 0)),\n\t\t\"ARPHRD_ADAPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"ARPHRD_APPLETLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ASH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"781\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_BIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"775\", token.INT, 0)),\n\t\t\"ARPHRD_CAIF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"822\", token.INT, 0)),\n\t\t\"ARPHRD_CAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_CISCO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"ARPHRD_CSLIP6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"ARPHRD_DDCMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"517\", token.INT, 0)),\n\t\t\"ARPHRD_DLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"782\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_EUI64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ARPHRD_FCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"785\", token.INT, 0)),\n\t\t\"ARPHRD_FCFABRIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"787\", token.INT, 0)),\n\t\t\"ARPHRD_FCPL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"786\", token.INT, 0)),\n\t\t\"ARPHRD_FCPP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"784\", token.INT, 0)),\n\t\t\"ARPHRD_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"774\", token.INT, 0)),\n\t\t\"ARPHRD_FRAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"770\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ARPHRD_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"780\", token.INT, 0)),\n\t\t\"ARPHRD_HWX25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211\":                 reflect.ValueOf(constant.MakeFromLiteral(\"801\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_PRISM\":           reflect.ValueOf(constant.MakeFromLiteral(\"802\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE80211_RADIOTAP\":        reflect.ValueOf(constant.MakeFromLiteral(\"803\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154\":                reflect.ValueOf(constant.MakeFromLiteral(\"804\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802154_MONITOR\":        reflect.ValueOf(constant.MakeFromLiteral(\"805\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802_TR\":                reflect.ValueOf(constant.MakeFromLiteral(\"800\", token.INT, 0)),\n\t\t\"ARPHRD_INFINIBAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IP6GRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"823\", token.INT, 0)),\n\t\t\"ARPHRD_IPDDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"777\", token.INT, 0)),\n\t\t\"ARPHRD_IPGRE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"778\", token.INT, 0)),\n\t\t\"ARPHRD_IRDA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"783\", token.INT, 0)),\n\t\t\"ARPHRD_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"516\", token.INT, 0)),\n\t\t\"ARPHRD_LOCALTLK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"773\", token.INT, 0)),\n\t\t\"ARPHRD_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"772\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_NETLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"824\", token.INT, 0)),\n\t\t\"ARPHRD_NETROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"820\", token.INT, 0)),\n\t\t\"ARPHRD_PHONET_PIPE\":               reflect.ValueOf(constant.MakeFromLiteral(\"821\", token.INT, 0)),\n\t\t\"ARPHRD_PIMREG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"779\", token.INT, 0)),\n\t\t\"ARPHRD_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ARPHRD_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ARPHRD_RAWHDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"518\", token.INT, 0)),\n\t\t\"ARPHRD_ROSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"ARPHRD_RSRVD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"ARPHRD_SIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"776\", token.INT, 0)),\n\t\t\"ARPHRD_SKIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"771\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ARPHRD_SLIP6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"769\", token.INT, 0)),\n\t\t\"ARPHRD_VOID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ARPHRD_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"Accept\":                           reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                          reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                           reflect.ValueOf(syscall.Access),\n\t\t\"Acct\":                             reflect.ValueOf(syscall.Acct),\n\t\t\"Adjtimex\":                         reflect.ValueOf(syscall.Adjtimex),\n\t\t\"AttachLsf\":                        reflect.ValueOf(syscall.AttachLsf),\n\t\t\"B0\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B1000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"B110\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"B1152000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"B1200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B1500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"B1800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B2000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"B230400\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"B2400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B2500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"B300\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B3000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"B3500000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4110\", token.INT, 0)),\n\t\t\"B38400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B4000000\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4111\", token.INT, 0)),\n\t\t\"B460800\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"B4800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B500000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"B57600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"B576000\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"B600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B921600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"B9600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BPF_A\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LL_OFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-2097152\", token.INT, 0)),\n\t\t\"BPF_LSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"BPF_MEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MOD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"BPF_MSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_NET_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-1048576\", token.INT, 0)),\n\t\t\"BPF_OR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_XOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BRKINT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                             reflect.ValueOf(syscall.Bind),\n\t\t\"BindToDevice\":                     reflect.ValueOf(syscall.BindToDevice),\n\t\t\"BytePtrFromString\":                reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":              reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_CHILD_CLEARTID\":             reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"CLONE_CHILD_SETTID\":               reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CLONE_CLEAR_SIGHAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"CLONE_DETACHED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_INTO_CGROUP\":                reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"CLONE_IO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"CLONE_NEWCGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CLONE_NEWIPC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CLONE_NEWNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"CLONE_NEWNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"CLONE_NEWPID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"CLONE_NEWTIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CLONE_NEWUSER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"CLONE_NEWUTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CLONE_PARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_PARENT_SETTID\":              reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"CLONE_PIDFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SETTLS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_SYSVSEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"CLONE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"CLONE_UNTRACED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIGNAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSIZE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                            reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                            reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                            reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                           reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                         reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                            reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                      reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                          reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                        reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                          reflect.ValueOf(syscall.Connect),\n\t\t\"Creat\":                            reflect.ValueOf(syscall.Creat),\n\t\t\"DT_BLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DetachLsf\":                        reflect.ValueOf(syscall.DetachLsf),\n\t\t\"Dup\":                              reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                             reflect.ValueOf(syscall.Dup2),\n\t\t\"Dup3\":                             reflect.ValueOf(syscall.Dup3),\n\t\t\"E2BIG\":                            reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                           reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                       reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                    reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                             reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                     reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                           reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                         reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                            reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                            reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                           reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                          reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                            reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                          reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                          reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                           reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                            reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                        reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                           reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                           reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                            reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                     reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                     reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                       reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                          reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                        reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                     reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                             reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                          reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                           reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                           reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                           reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                            reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                        reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                     reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EHWPOISON\":                        reflect.ValueOf(syscall.EHWPOISON),\n\t\t\"EIDRM\":                            reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                           reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                      reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                            reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                           reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                              reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                          reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                           reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                           reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                      reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                     reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                      reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                           reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                         reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                           reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                           reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                          reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                          reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                         reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                          reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                          reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                           reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                            reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                      reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                           reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                           reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                         reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                        reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                     reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                          reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENCODING_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ENCODING_FM_MARK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ENCODING_FM_SPACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ENCODING_MANCHESTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ENCODING_NRZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ENCODING_NRZI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENETDOWN\":                         reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                        reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                      reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                           reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                           reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                          reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                           reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                          reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                           reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                           reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                          reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                           reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                           reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                          reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                        reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                           reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                           reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                           reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                           reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                      reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                           reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                            reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                           reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                           reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                          reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                         reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                          reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                        reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                          reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                  reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                         reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                          reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                           reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                         reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                            reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                       reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                        reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                       reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                            reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                     reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                            reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPOLLERR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EPOLLET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"EPOLLHUP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EPOLLIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLLMSG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"EPOLLONESHOT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"EPOLLOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EPOLLPRI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLLRDBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EPOLLRDHUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EPOLLRDNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EPOLLWAKEUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"EPOLLWRBAND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"EPOLLWRNORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"EPOLL_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"EPOLL_CTL_ADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EPOLL_CTL_DEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EPOLL_CTL_MOD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EPROTO\":                           reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                  reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                       reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                           reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                          reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                          reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                        reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                         reflect.ValueOf(syscall.ERESTART),\n\t\t\"ERFKILL\":                          reflect.ValueOf(syscall.ERFKILL),\n\t\t\"EROFS\":                            reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                        reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                  reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                           reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                            reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                           reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                           reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                         reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETH_P_1588\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35063\", token.INT, 0)),\n\t\t\"ETH_P_8021AD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETH_P_8021AH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETH_P_8021Q\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETH_P_80221\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"ETH_P_802_2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETH_P_802_3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETH_P_802_3_MIN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETH_P_802_EX1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34997\", token.INT, 0)),\n\t\t\"ETH_P_AARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETH_P_AF_IUCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64507\", token.INT, 0)),\n\t\t\"ETH_P_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ETH_P_AOE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETH_P_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"ETH_P_ARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETH_P_ATALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETH_P_ATMFATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34948\", token.INT, 0)),\n\t\t\"ETH_P_ATMMPOA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34892\", token.INT, 0)),\n\t\t\"ETH_P_AX25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETH_P_BATMAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17157\", token.INT, 0)),\n\t\t\"ETH_P_BPQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2303\", token.INT, 0)),\n\t\t\"ETH_P_CAIF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"ETH_P_CAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"ETH_P_CANFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"ETH_P_CONTROL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"ETH_P_CUST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETH_P_DDCMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETH_P_DEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETH_P_DIAG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETH_P_DNA_DL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETH_P_DNA_RT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETH_P_DSA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"ETH_P_ECONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ETH_P_EDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56026\", token.INT, 0)),\n\t\t\"ETH_P_FCOE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"ETH_P_FIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"ETH_P_HDLC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"ETH_P_IEEE802154\":                 reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETH_P_IEEEPUPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETH_P_IP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETH_P_IPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETH_P_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETH_P_IRDA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ETH_P_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETH_P_LINK_CTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34924\", token.INT, 0)),\n\t\t\"ETH_P_LOCALTALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ETH_P_LOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"ETH_P_LOOPBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETH_P_MOBITEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_MC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETH_P_MPLS_UC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETH_P_MVRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35061\", token.INT, 0)),\n\t\t\"ETH_P_PAE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETH_P_PAUSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETH_P_PHONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"ETH_P_PPPTALK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETH_P_PPP_DISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETH_P_PPP_MP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETH_P_PPP_SES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETH_P_PRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35067\", token.INT, 0)),\n\t\t\"ETH_P_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETH_P_PUPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"513\", token.INT, 0)),\n\t\t\"ETH_P_QINQ1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37120\", token.INT, 0)),\n\t\t\"ETH_P_QINQ2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37376\", token.INT, 0)),\n\t\t\"ETH_P_QINQ3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37632\", token.INT, 0)),\n\t\t\"ETH_P_RARP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETH_P_SCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETH_P_SLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETH_P_SNAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ETH_P_TDLS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"ETH_P_TEB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETH_P_TIPC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35018\", token.INT, 0)),\n\t\t\"ETH_P_TRAILER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"ETH_P_TR_802_2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ETH_P_TSN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8944\", token.INT, 0)),\n\t\t\"ETH_P_WAN_PPP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ETH_P_WCCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34878\", token.INT, 0)),\n\t\t\"ETH_P_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETH_P_XDSA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"ETIME\":                            reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                        reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                     reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                          reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                          reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                          reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                           reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                      reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                            reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                           reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                             reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"EXTPROC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"Environ\":                          reflect.ValueOf(syscall.Environ),\n\t\t\"EpollCreate\":                      reflect.ValueOf(syscall.EpollCreate),\n\t\t\"EpollCreate1\":                     reflect.ValueOf(syscall.EpollCreate1),\n\t\t\"EpollCtl\":                         reflect.ValueOf(syscall.EpollCtl),\n\t\t\"EpollWait\":                        reflect.ValueOf(syscall.EpollWait),\n\t\t\"FD_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"F_DUPFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1030\", token.INT, 0)),\n\t\t\"F_EXLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_GETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1025\", token.INT, 0)),\n\t\t\"F_GETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_GETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_GETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_GETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1032\", token.INT, 0)),\n\t\t\"F_GETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_LOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_NOTIFY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1026\", token.INT, 0)),\n\t\t\"F_OFD_GETLK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"F_OFD_SETLK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"F_OFD_SETLKW\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"F_OK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_SETFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"F_SETLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLKW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETOWN_EX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_SETPIPE_SZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1031\", token.INT, 0)),\n\t\t\"F_SETSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_SHLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_TEST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_TLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_ULOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_UNLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Faccessat\":                        reflect.ValueOf(syscall.Faccessat),\n\t\t\"Fallocate\":                        reflect.ValueOf(syscall.Fallocate),\n\t\t\"Fchdir\":                           reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                           reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchmodat\":                         reflect.ValueOf(syscall.Fchmodat),\n\t\t\"Fchown\":                           reflect.ValueOf(syscall.Fchown),\n\t\t\"Fchownat\":                         reflect.ValueOf(syscall.Fchownat),\n\t\t\"FcntlFlock\":                       reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Fdatasync\":                        reflect.ValueOf(syscall.Fdatasync),\n\t\t\"Flock\":                            reflect.ValueOf(syscall.Flock),\n\t\t\"ForkLock\":                         reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":                            reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                          reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                            reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                        reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                          reflect.ValueOf(syscall.Futimes),\n\t\t\"Futimesat\":                        reflect.ValueOf(syscall.Futimesat),\n\t\t\"Getcwd\":                           reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                         reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                          reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                           reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                          reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                           reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                        reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                      reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                      reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                          reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                          reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                           reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                          reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                      reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                        reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                        reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                      reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                 reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPMreqn\":                reflect.ValueOf(syscall.GetsockoptIPMreqn),\n\t\t\"GetsockoptIPv6MTUInfo\":            reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":              reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                    reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"GetsockoptUcred\":                  reflect.ValueOf(syscall.GetsockoptUcred),\n\t\t\"Gettid\":                           reflect.ValueOf(syscall.Gettid),\n\t\t\"Gettimeofday\":                     reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                           reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                            reflect.ValueOf(syscall.Getwd),\n\t\t\"Getxattr\":                         reflect.ValueOf(syscall.Getxattr),\n\t\t\"HUPCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICMPV6_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ICRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFA_ADDRESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFA_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFA_F_DADFAILED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_F_DEPRECATED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFA_F_HOMEADDRESS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFA_F_MANAGETEMPADDR\":             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFA_F_MCAUTOJOIN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFA_F_NODAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_F_NOPREFIXROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFA_F_OPTIMISTIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFA_F_PERMANENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFA_F_SECONDARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_STABLE_PRIVACY\":             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFA_F_TEMPORARY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_F_TENTATIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFA_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFA_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFA_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ATTACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_AUTOMEDIA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DETACH_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_DORMANT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_ECHO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_LOWER_UP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_MASTER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_MULTI_QUEUE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NO_PI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_ONE_QUEUE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PERSIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PORTSEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SLAVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_TAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_TUN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_TUN_EXCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VNET_HDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_VOLATILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"461914\", token.INT, 0)),\n\t\t\"IFLA_ADDRESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFLA_BROADCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFLA_COST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFLA_IFALIAS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFLA_IFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFLA_LINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFLA_LINKINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFLA_LINKMODE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFLA_MAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFLA_MASTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFLA_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFLA_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFLA_NET_NS_PID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFLA_OPERSTATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFLA_PRIORITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFLA_PROTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFLA_QDISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFLA_STATS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFLA_TXQLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFLA_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFLA_WEIGHT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFLA_WIRELESS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IGNBRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_ALL_EVENTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IN_ATTRIB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLOEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IN_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLOSE_NOWRITE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLOSE_WRITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CREATE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IN_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IN_DELETE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IN_DONT_FOLLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IN_EXCL_UNLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IN_IGNORED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IN_ISDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_MASK_ADD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IN_MODIFY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IN_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IN_MOVED_FROM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IN_MOVED_TO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_MOVE_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_NONBLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IN_ONESHOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IN_ONLYDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IN_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IN_Q_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IN_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_BEETPH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IPPROTO_COMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_DCCP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                   reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IPPROTO_MTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_2292DSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_2292HOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_2292HOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_2292PKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_2292PKTOPTIONS\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_2292RTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_ADDRFORM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_AUTHHDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_JOIN_ANYCAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_ANYCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_MTU_DISCOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_DONT\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_INTERFACE\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_OMIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_PROBE\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PMTUDISC_WANT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPV6_RECVERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_ROUTER_ALERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RXDSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_RXHOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_XFRM_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IP_FREEBIND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_MSFILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IP_MTU_DISCOVER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_MULTICAST_ALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_NODEFRAG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_ORIGDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_PKTOPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_PMTUDISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_DONT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_INTERFACE\":            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_OMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_PROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_PMTUDISC_WANT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_RECVERR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVORIGDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVTOS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ROUTER_ALERT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_TOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_TRANSPARENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_TTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_UNICAST_IF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IP_XFRM_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ISIG\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IUCLC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IUTF8\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IXANY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                  reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InotifyAddWatch\":                  reflect.ValueOf(syscall.InotifyAddWatch),\n\t\t\"InotifyInit\":                      reflect.ValueOf(syscall.InotifyInit),\n\t\t\"InotifyInit1\":                     reflect.ValueOf(syscall.InotifyInit1),\n\t\t\"InotifyRmWatch\":                   reflect.ValueOf(syscall.InotifyRmWatch),\n\t\t\"Klogctl\":                          reflect.ValueOf(syscall.Klogctl),\n\t\t\"LINUX_REBOOT_CMD_CAD_OFF\":         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_CAD_ON\":          reflect.ValueOf(constant.MakeFromLiteral(\"2309737967\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_HALT\":            reflect.ValueOf(constant.MakeFromLiteral(\"3454992675\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_KEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"1163412803\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_POWER_OFF\":       reflect.ValueOf(constant.MakeFromLiteral(\"1126301404\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART\":         reflect.ValueOf(constant.MakeFromLiteral(\"19088743\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_RESTART2\":        reflect.ValueOf(constant.MakeFromLiteral(\"2712847316\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_CMD_SW_SUSPEND\":      reflect.ValueOf(constant.MakeFromLiteral(\"3489725666\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC1\":              reflect.ValueOf(constant.MakeFromLiteral(\"4276215469\", token.INT, 0)),\n\t\t\"LINUX_REBOOT_MAGIC2\":              reflect.ValueOf(constant.MakeFromLiteral(\"672274793\", token.INT, 0)),\n\t\t\"LOCK_EX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                           reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                             reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                           reflect.ValueOf(syscall.Listen),\n\t\t\"Listxattr\":                        reflect.ValueOf(syscall.Listxattr),\n\t\t\"LsfJump\":                          reflect.ValueOf(syscall.LsfJump),\n\t\t\"LsfSocket\":                        reflect.ValueOf(syscall.LsfSocket),\n\t\t\"LsfStmt\":                          reflect.ValueOf(syscall.LsfStmt),\n\t\t\"Lstat\":                            reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DODUMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"MADV_DOFORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"MADV_DONTDUMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MADV_DONTFORK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_HUGEPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"MADV_HWPOISON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"MADV_MERGEABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"MADV_NOHUGEPAGE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_REMOVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_UNMERGEABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_DENYWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_EXECUTABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_GROWSDOWN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_HUGETLB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MAP_HUGE_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"MAP_HUGE_SHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"MAP_LOCKED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_POPULATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_DETACH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MNT_EXPIRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MNT_FORCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MSG_CONFIRM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_EOR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_ERRQUEUE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MSG_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MSG_FIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_MORE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MSG_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_PROXY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_RST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_SYN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_TRYHARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_ACTIVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_DIRSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_I_VERSION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"MS_KERNMOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"MS_MANDLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_MGC_MSK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"MS_MGC_VAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3236757504\", token.INT, 0)),\n\t\t\"MS_MOVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MS_NOATIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MS_NODEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_NODIRATIME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MS_NOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MS_NOSUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_NOUSER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"MS_POSIXACL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"MS_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"MS_RDONLY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_REC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MS_RELATIME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"MS_REMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MS_RMT_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8388689\", token.INT, 0)),\n\t\t\"MS_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"MS_SILENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_SLAVE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"MS_STRICTATIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNCHRONOUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MS_UNBINDABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"Madvise\":                          reflect.ValueOf(syscall.Madvise),\n\t\t\"Mkdir\":                            reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkdirat\":                          reflect.ValueOf(syscall.Mkdirat),\n\t\t\"Mkfifo\":                           reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                            reflect.ValueOf(syscall.Mknod),\n\t\t\"Mknodat\":                          reflect.ValueOf(syscall.Mknodat),\n\t\t\"Mlock\":                            reflect.ValueOf(syscall.Mlock),\n\t\t\"Mlockall\":                         reflect.ValueOf(syscall.Mlockall),\n\t\t\"Mmap\":                             reflect.ValueOf(syscall.Mmap),\n\t\t\"Mount\":                            reflect.ValueOf(syscall.Mount),\n\t\t\"Mprotect\":                         reflect.ValueOf(syscall.Mprotect),\n\t\t\"Munlock\":                          reflect.ValueOf(syscall.Munlock),\n\t\t\"Munlockall\":                       reflect.ValueOf(syscall.Munlockall),\n\t\t\"Munmap\":                           reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NETLINK_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_AUDIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_BROADCAST_ERROR\":          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_CAP_ACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_CONNECTOR\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"NETLINK_CRYPTO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"NETLINK_DNRTMSG\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"NETLINK_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_ECRYPTFS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"NETLINK_FIB_LOOKUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NETLINK_FIREWALL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_GENERIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NETLINK_INET_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_IP6_FW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"NETLINK_ISCSI\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_KOBJECT_UEVENT\":           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"NETLINK_LISTEN_ALL_NSID\":          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NETLINK_LIST_MEMBERSHIPS\":         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NETLINK_NETFILTER\":                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NETLINK_NFLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_NO_ENOBUFS\":               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NETLINK_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NETLINK_RDMA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"NETLINK_ROUTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NETLINK_RX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NETLINK_SCSITRANSPORT\":            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"NETLINK_SELINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_SOCK_DIAG\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NETLINK_TX_RING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NETLINK_UNUSED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NETLINK_USERSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NETLINK_XFRM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NLA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLA_F_NESTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"NLA_F_NET_BYTEORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"NLA_HDRLEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_ALIGNTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLMSG_DONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NLMSG_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLMSG_HDRLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_MIN_TYPE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLMSG_NOOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLMSG_OVERRUN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_ACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NLM_F_APPEND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"NLM_F_ATOMIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_CREATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"NLM_F_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_FILTERED\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NLM_F_DUMP_INTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NLM_F_ECHO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NLM_F_EXCL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MATCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"NLM_F_MULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NLM_F_REPLACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NLM_F_REQUEST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NLM_F_ROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"NOFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                        reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NetlinkRIB\":                       reflect.ValueOf(syscall.NetlinkRIB),\n\t\t\"NsecToTimespec\":                   reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                    reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"OLCUC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPOST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_DIRECT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_DSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_EXCL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_FSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NDELAY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOATIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_PATH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_RDONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1052672\", token.INT, 0)),\n\t\t\"O_TMPFILE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4259840\", token.INT, 0)),\n\t\t\"O_TRUNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                             reflect.ValueOf(syscall.Open),\n\t\t\"Openat\":                           reflect.ValueOf(syscall.Openat),\n\t\t\"PACKET_ADD_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_AUXDATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PACKET_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_COPY_THRESH\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_DROP_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CBPF\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_CPU\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_EBPF\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_DEFRAG\":        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_FLAG_ROLLOVER\":      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_HASH\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_LB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_QM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_RND\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_FANOUT_ROLLOVER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_FASTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_HDRLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PACKET_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PACKET_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_LOSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PACKET_MR_ALLMULTI\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_MR_MULTICAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PACKET_MR_PROMISC\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PACKET_MR_UNICAST\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PACKET_ORIGDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PACKET_OTHERHOST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_OUTGOING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PACKET_QDISC_BYPASS\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PACKET_RECV_OUTPUT\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PACKET_RESERVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PACKET_ROLLOVER_STATS\":            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PACKET_RX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PACKET_STATISTICS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PACKET_TX_HAS_OFF\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PACKET_TX_RING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PACKET_TX_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PACKET_USER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PACKET_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PACKET_VNET_HDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PARENB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PARITY_CRC16_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR0_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PARITY_CRC32_PR1_CCITT\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PARITY_DEFAULT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PARITY_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PARMRK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_GROWSDOWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"PROT_GROWSUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"PROT_NONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_CAPBSET_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PR_CAPBSET_READ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PR_CAP_AMBIENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"PR_CAP_AMBIENT_CLEAR_ALL\":         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_CAP_AMBIENT_IS_SET\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_CAP_AMBIENT_LOWER\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_CAP_AMBIENT_RAISE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_ENDIAN_BIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_ENDIAN_LITTLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_ENDIAN_PPC_LITTLE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FPEMU_NOPRINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FPEMU_SIGFPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_ASYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DISABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_FP_EXC_DIV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PR_FP_EXC_INV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PR_FP_EXC_NONRECOV\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_EXC_OVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"PR_FP_EXC_PRECISE\":                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_FP_EXC_RES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"PR_FP_EXC_SW_ENABLE\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PR_FP_EXC_UND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"PR_FP_MODE_FR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_FP_MODE_FRE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"PR_GET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_GET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"PR_GET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_GET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_GET_FP_MODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"PR_GET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_GET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PR_GET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"PR_GET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_GET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PR_GET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"PR_GET_THP_DISABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"PR_GET_TID_ADDRESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PR_GET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"PR_GET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_GET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"PR_GET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_MCE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_CLEAR\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_EARLY\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_GET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_LATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_MCE_KILL_SET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_MPX_DISABLE_MANAGEMENT\":        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"PR_MPX_ENABLE_MANAGEMENT\":         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"PR_SET_CHILD_SUBREAPER\":           reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"PR_SET_DUMPABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_ENDIAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PR_SET_FPEMU\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_FPEXC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_FP_MODE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"PR_SET_KEEPCAPS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PR_SET_MM_ARG_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PR_SET_MM_AUXV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PR_SET_MM_BRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_CODE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_SET_MM_END_DATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_END\":                reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"PR_SET_MM_ENV_START\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"PR_SET_MM_EXE_FILE\":               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PR_SET_MM_MAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_MM_MAP_SIZE\":               reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_BRK\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_CODE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_DATA\":             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PR_SET_MM_START_STACK\":            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PR_SET_NAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PR_SET_NO_NEW_PRIVS\":              reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"PR_SET_PDEATHSIG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1499557217\", token.INT, 0)),\n\t\t\"PR_SET_PTRACER_ANY\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"PR_SET_SECCOMP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PR_SET_SECUREBITS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"PR_SET_THP_DISABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"PR_SET_TIMERSLACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"PR_SET_TIMING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PR_SET_TSC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"PR_SET_UNALIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_DISABLE\":      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"PR_TASK_PERF_EVENTS_ENABLE\":       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PR_TIMING_STATISTICAL\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PR_TIMING_TIMESTAMP\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_ENABLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_TSC_SIGSEGV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PR_UNALIGN_NOPRINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PR_UNALIGN_SIGBUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_ATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_DETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PTRACE_DISABLE_TE\":                reflect.ValueOf(constant.MakeFromLiteral(\"20496\", token.INT, 0)),\n\t\t\"PTRACE_ENABLE_TE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20489\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_CLONE\":               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXEC\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_EXIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_FORK\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_SECCOMP\":             reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_STOP\":                reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_EVENT_VFORK_DONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_GETEVENTMSG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16897\", token.INT, 0)),\n\t\t\"PTRACE_GETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_GETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16900\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16898\", token.INT, 0)),\n\t\t\"PTRACE_GETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16906\", token.INT, 0)),\n\t\t\"PTRACE_GET_LAST_BREAK\":            reflect.ValueOf(constant.MakeFromLiteral(\"20486\", token.INT, 0)),\n\t\t\"PTRACE_INTERRUPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16903\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_LISTEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16904\", token.INT, 0)),\n\t\t\"PTRACE_OLDSETOPTIONS\":             reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_O_EXITKILL\":                reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PTRACE_O_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3145983\", token.INT, 0)),\n\t\t\"PTRACE_O_SUSPEND_SECCOMP\":         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACECLONE\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEEXIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEFORK\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESECCOMP\":            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACESYSGOOD\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_O_TRACEVFORKDONE\":          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_PEEKDATA_AREA\":             reflect.ValueOf(constant.MakeFromLiteral(\"20483\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"16905\", token.INT, 0)),\n\t\t\"PTRACE_PEEKSIGINFO_SHARED\":        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PTRACE_PEEKTEXT_AREA\":             reflect.ValueOf(constant.MakeFromLiteral(\"20482\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PTRACE_PEEKUSR_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"20480\", token.INT, 0)),\n\t\t\"PTRACE_PEEK_SYSTEM_CALL\":          reflect.ValueOf(constant.MakeFromLiteral(\"20487\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PTRACE_POKEDATA_AREA\":             reflect.ValueOf(constant.MakeFromLiteral(\"20485\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PTRACE_POKETEXT_AREA\":             reflect.ValueOf(constant.MakeFromLiteral(\"20484\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"PTRACE_POKEUSR_AREA\":              reflect.ValueOf(constant.MakeFromLiteral(\"20481\", token.INT, 0)),\n\t\t\"PTRACE_POKE_SYSTEM_CALL\":          reflect.ValueOf(constant.MakeFromLiteral(\"20488\", token.INT, 0)),\n\t\t\"PTRACE_PROT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PTRACE_SECCOMP_GET_FILTER\":        reflect.ValueOf(constant.MakeFromLiteral(\"16908\", token.INT, 0)),\n\t\t\"PTRACE_SEIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16902\", token.INT, 0)),\n\t\t\"PTRACE_SETOPTIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"16896\", token.INT, 0)),\n\t\t\"PTRACE_SETREGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PTRACE_SETREGSET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16901\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"16899\", token.INT, 0)),\n\t\t\"PTRACE_SETSIGMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"16907\", token.INT, 0)),\n\t\t\"PTRACE_SINGLEBLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PTRACE_SINGLESTEP\":                reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"PTRACE_SYSCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PTRACE_TE_ABORT_RAND\":             reflect.ValueOf(constant.MakeFromLiteral(\"20497\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_ACR0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"PT_ACR1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"PT_ACR10\":                         reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"PT_ACR11\":                         reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"PT_ACR12\":                         reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"PT_ACR13\":                         reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"PT_ACR14\":                         reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"PT_ACR15\":                         reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"PT_ACR2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"PT_ACR3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"PT_ACR4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"PT_ACR5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"PT_ACR6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"PT_ACR7\":                          reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"PT_ACR8\":                          reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"PT_ACR9\":                          reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"PT_CR_10\":                         reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"PT_CR_11\":                         reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"PT_CR_9\":                          reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"PT_ENDREGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"PT_FPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"PT_FPR0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"PT_FPR1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"PT_FPR10\":                         reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"PT_FPR11\":                         reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"PT_FPR12\":                         reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"PT_FPR13\":                         reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"PT_FPR14\":                         reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"PT_FPR15\":                         reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"PT_FPR2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"PT_FPR3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"PT_FPR4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PT_FPR5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"PT_FPR6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"PT_FPR7\":                          reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"PT_FPR8\":                          reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"PT_FPR9\":                          reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"PT_GPR0\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PT_GPR1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PT_GPR10\":                         reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"PT_GPR11\":                         reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"PT_GPR12\":                         reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"PT_GPR13\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"PT_GPR14\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PT_GPR15\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"PT_GPR2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PT_GPR3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"PT_GPR4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"PT_GPR5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"PT_GPR6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PT_GPR7\":                          reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"PT_GPR8\":                          reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"PT_GPR9\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"PT_IEEE_IP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"PT_LASTOFF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"PT_ORIGGPR2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"PT_PSWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PT_PSWMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                      reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseNetlinkMessage\":              reflect.ValueOf(syscall.ParseNetlinkMessage),\n\t\t\"ParseNetlinkRouteAttr\":            reflect.ValueOf(syscall.ParseNetlinkRouteAttr),\n\t\t\"ParseSocketControlMessage\":        reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixCredentials\":             reflect.ValueOf(syscall.ParseUnixCredentials),\n\t\t\"ParseUnixRights\":                  reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"Pause\":                            reflect.ValueOf(syscall.Pause),\n\t\t\"Pipe\":                             reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                            reflect.ValueOf(syscall.Pipe2),\n\t\t\"PivotRoot\":                        reflect.ValueOf(syscall.PivotRoot),\n\t\t\"Pread\":                            reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                           reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RTAX_ADVMSS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_CC_ALGO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTAX_CWND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_FEATURES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ALLFRAG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_ECN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_SACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_FEATURE_TIMESTAMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_HOPLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_INITCWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_INITRWND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_LOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTAX_MTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_QUICKACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_REORDERING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_RTO_MIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTAX_RTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_RTTVAR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_SSTHRESH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_UNSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_WINDOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_ALIGNTO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_CACHEINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTA_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTA_IIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTA_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTA_METRICS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_MULTIPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_OIF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_PREFSRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTA_PRIORITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTA_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_TABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTA_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTCF_DIRECTSRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTCF_DOREDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTCF_LOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTCF_MASQ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTCF_NAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTCF_VALVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_ADDRCLASSMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4160749568\", token.INT, 0)),\n\t\t\"RTF_ADDRCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_ALLONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RTF_CACHE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_DEFAULT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INTERFACE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"RTF_IRTT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_LINKRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RTF_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RTF_NOFORWARD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_NONEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_NOPMTUDISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_POLICY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RTF_REINSTATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_UP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_WINDOW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_BASE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_DELACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"RTM_DELLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_DELMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"RTM_DELNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"RTM_DELNSID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"RTM_DELQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"RTM_DELROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"RTM_DELRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"RTM_DELTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"RTM_DELTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"RTM_F_CLONED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_F_EQUALIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTM_F_LOOKUP_TABLE\":               reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTM_F_NOTIFY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTM_F_PREFIX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_GETACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"RTM_GETADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_GETADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"RTM_GETANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"RTM_GETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"RTM_GETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_GETMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"RTM_GETMULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"RTM_GETNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"RTM_GETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"RTM_GETNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"RTM_GETNSID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"RTM_GETQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"RTM_GETROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"RTM_GETRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"RTM_GETTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTM_GETTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"RTM_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"RTM_NEWACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_NEWADDRLABEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"RTM_NEWLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_NEWMDB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"RTM_NEWNDUSEROPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"RTM_NEWNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTM_NEWNETCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"RTM_NEWNSID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"RTM_NEWPREFIX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"RTM_NEWQDISC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"RTM_NEWROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"RTM_NEWRULE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTM_NEWTCLASS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"RTM_NEWTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"RTM_NR_FAMILIES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_NR_MSGTYPES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"RTM_SETDCB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"RTM_SETLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_SETNEIGHTBL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"RTNH_ALIGNTO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_COMPARE_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTNH_F_DEAD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNH_F_LINKDOWN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTNH_F_OFFLOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNH_F_ONLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTNH_F_PERVASIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV4_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFADDR\":              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_IFINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_MROUTE\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_PREFIX\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_ROUTE\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTNLGRP_IPV6_RULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTNLGRP_LINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTNLGRP_ND_USEROPT\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTNLGRP_NEIGH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTNLGRP_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTNLGRP_NOTIFY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTNLGRP_TC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_ANYCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTN_BLACKHOLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTN_BROADCAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTN_LOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTN_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTN_MULTICAST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTN_NAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTN_PROHIBIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTN_THROW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTN_UNICAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTN_UNREACHABLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTN_UNSPEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTN_XRESOLVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTPROT_BABEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"RTPROT_BIRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTPROT_BOOT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTPROT_DHCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTPROT_DNROUTED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTPROT_GATED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTPROT_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTPROT_MROUTED\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTPROT_MRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTPROT_NTK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTPROT_RA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTPROT_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTPROT_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTPROT_UNSPEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTPROT_XORP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTPROT_ZEBRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RT_CLASS_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_CLASS_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_CLASS_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_CLASS_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_SCOPE_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_SCOPE_LINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_SCOPE_NOWHERE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_SCOPE_SITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"RT_SCOPE_UNIVERSE\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RT_TABLE_COMPAT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"RT_TABLE_DEFAULT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"RT_TABLE_LOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLE_MAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"RT_TABLE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"RT_TABLE_UNSPEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                             reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                       reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                         reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                         reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                          reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Removexattr\":                      reflect.ValueOf(syscall.Removexattr),\n\t\t\"Rename\":                           reflect.ValueOf(syscall.Rename),\n\t\t\"Renameat\":                         reflect.ValueOf(syscall.Renameat),\n\t\t\"Rmdir\":                            reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_CREDENTIALS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPING\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMPNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SCM_WIFI_STATUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SHUT_RD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                          reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                          reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                           reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                          reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                           reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                          reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                           reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                           reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                           reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                           reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                            reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                           reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                          reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                          reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                          reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                          reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                           reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                          reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                          reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTKFLT\":                        reflect.ValueOf(syscall.SIGSTKFLT),\n\t\t\"SIGSTOP\":                          reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                           reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                          reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                          reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                          reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                          reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                          reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGUNUSED\":                        reflect.ValueOf(syscall.SIGUNUSED),\n\t\t\"SIGURG\":                           reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                          reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                          reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                        reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                         reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                          reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                          reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35200\", token.INT, 0)),\n\t\t\"SIOCADDMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35121\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35083\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35077\", token.INT, 0)),\n\t\t\"SIOCDARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35155\", token.INT, 0)),\n\t\t\"SIOCDELDLCI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35201\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35122\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35084\", token.INT, 0)),\n\t\t\"SIOCDEVPRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35312\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35126\", token.INT, 0)),\n\t\t\"SIOCDRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35168\", token.INT, 0)),\n\t\t\"SIOCGARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35156\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35093\", token.INT, 0)),\n\t\t\"SIOCGIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35136\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35097\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35090\", token.INT, 0)),\n\t\t\"SIOCGIFCOUNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35128\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35095\", token.INT, 0)),\n\t\t\"SIOCGIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35109\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35091\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35111\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35123\", token.INT, 0)),\n\t\t\"SIOCGIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35184\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35103\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35101\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35105\", token.INT, 0)),\n\t\t\"SIOCGIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35088\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35099\", token.INT, 0)),\n\t\t\"SIOCGIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35125\", token.INT, 0)),\n\t\t\"SIOCGIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35113\", token.INT, 0)),\n\t\t\"SIOCGIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35138\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35076\", token.INT, 0)),\n\t\t\"SIOCGRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35169\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35078\", token.INT, 0)),\n\t\t\"SIOCGSTAMPNS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35079\", token.INT, 0)),\n\t\t\"SIOCPROTOPRIVATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35296\", token.INT, 0)),\n\t\t\"SIOCRTMSG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35085\", token.INT, 0)),\n\t\t\"SIOCSARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"35157\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35094\", token.INT, 0)),\n\t\t\"SIOCSIFBR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35137\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35098\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35096\", token.INT, 0)),\n\t\t\"SIOCSIFENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35110\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35092\", token.INT, 0)),\n\t\t\"SIOCSIFHWADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35108\", token.INT, 0)),\n\t\t\"SIOCSIFHWBROADCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"35127\", token.INT, 0)),\n\t\t\"SIOCSIFLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35089\", token.INT, 0)),\n\t\t\"SIOCSIFMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35185\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35104\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35102\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"35106\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35107\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35100\", token.INT, 0)),\n\t\t\"SIOCSIFPFLAGS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35124\", token.INT, 0)),\n\t\t\"SIOCSIFSLAVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35120\", token.INT, 0)),\n\t\t\"SIOCSIFTXQLEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35139\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35074\", token.INT, 0)),\n\t\t\"SIOCSRARP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35170\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DCCP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SOCK_PACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_AAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SOL_ATM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SOL_DECNET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SOL_ICMPV6\":                       reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SOL_IP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SOL_IPV6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SOL_IRDA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SOL_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_TCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOL_X25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SO_ATTACH_BPF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_BINDTODEVICE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SO_BPF_EXTENSIONS\":                reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SO_BSDCOMPAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SO_BUSY_POLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DETACH_BPF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SO_ERROR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_GET_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SO_INCOMING_CPU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SO_LINGER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SO_LOCK_FILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SO_MARK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SO_MAX_PACING_RATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SO_NOFCS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SO_NO_CHECK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SO_PASSCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_PASSSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SO_PEEK_OFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SO_PEERNAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SO_PEERSEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SO_PRIORITY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_RCVBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SO_RXQ_OVFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SO_SECURITY_AUTHENTICATION\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_NETWORK\":   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SO_SECURITY_ENCRYPTION_TRANSPORT\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SO_SELECT_ERR_QUEUE\":              reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SO_SNDBUFFORCE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPING\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SO_TIMESTAMPNS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SO_TYPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SO_WIFI_STATUS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADD_KEY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"278\", token.INT, 0)),\n\t\t\"SYS_ADJTIMEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_AFS_SYSCALL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_ALARM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_BDFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_BIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_BPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"351\", token.INT, 0)),\n\t\t\"SYS_BRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_CAPGET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"SYS_CAPSET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_ADJTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"337\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                 reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"SYS_CLOCK_NANOSLEEP\":              reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"SYS_CLONE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_CREAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_CREATE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_DELETE_MODULE\":                reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"SYS_DUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"326\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CREATE1\":                reflect.ValueOf(constant.MakeFromLiteral(\"327\", token.INT, 0)),\n\t\t\"SYS_EPOLL_CTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_EPOLL_PWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS_EPOLL_WAIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"SYS_EVENTFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_EVENTFD2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_EXECVEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXIT_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"SYS_FADVISE64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_FALLOCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_INIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"332\", token.INT, 0)),\n\t\t\"SYS_FANOTIFY_MARK\":                reflect.ValueOf(constant.MakeFromLiteral(\"333\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"291\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"SYS_FINIT_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"232\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"SYS_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_FSTATFS64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"266\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"238\", token.INT, 0)),\n\t\t\"SYS_FUTIMESAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"292\", token.INT, 0)),\n\t\t\"SYS_GETCPU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_GETCWD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETDENTS64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_GETRANDOM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_GETTID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_GET_KERNEL_SYMS\":              reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"SYS_GET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_GET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_IDLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_INIT_MODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_ADD_WATCH\":            reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_INIT1\":                reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_INOTIFY_RM_WATCH\":             reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_GET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_IOPRIO_SET\":                   reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_IO_CANCEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"SYS_IO_DESTROY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"SYS_IO_GETEVENTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_IO_SETUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_IO_SUBMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_IPC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_KCMP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_KEXEC_LOAD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"277\", token.INT, 0)),\n\t\t\"SYS_KEYCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"280\", token.INT, 0)),\n\t\t\"SYS_KILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_LOOKUP_DCOOKIE\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"234\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"SYS_MBIND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_MEMBARRIER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_MEMFD_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_MIGRATE_PAGES\":                reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS_MLOCK2\":                       reflect.ValueOf(constant.MakeFromLiteral(\"374\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MOVE_PAGES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"SYS_MQ_GETSETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"276\", token.INT, 0)),\n\t\t\"SYS_MQ_NOTIFY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_MQ_OPEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDRECEIVE\":              reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_MQ_TIMEDSEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_MQ_UNLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NAME_TO_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"335\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"SYS_NEWFSTATAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"293\", token.INT, 0)),\n\t\t\"SYS_NFSSERVCTL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_NICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_OPEN_BY_HANDLE_AT\":            reflect.ValueOf(constant.MakeFromLiteral(\"336\", token.INT, 0)),\n\t\t\"SYS_PAUSE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_PERF_EVENT_OPEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"331\", token.INT, 0)),\n\t\t\"SYS_PERSONALITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_PIVOT_ROOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"SYS_POLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS_PRCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_PREAD64\":                      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"328\", token.INT, 0)),\n\t\t\"SYS_PRLIMIT64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"334\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_READV\":             reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS_PROCESS_VM_WRITEV\":            reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_PSELECT6\":                     reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PUTPMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"SYS_PWRITE64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                      reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS_QUERY_MODULE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READAHEAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_READDIR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_READV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_REMAP_FILE_PAGES\":             reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"233\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS_REQUEST_KEY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"279\", token.INT, 0)),\n\t\t\"SYS_RESTART_SYSCALL\":              reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_RT_SIGACTION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPENDING\":                reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_RT_SIGPROCMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"SYS_RT_SIGQUEUEINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"SYS_RT_SIGRETURN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_RT_SIGSUSPEND\":                reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"SYS_RT_SIGTIMEDWAIT\":              reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"SYS_RT_TGSIGQUEUEINFO\":            reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS_S390_PCI_MMIO_READ\":           reflect.ValueOf(constant.MakeFromLiteral(\"353\", token.INT, 0)),\n\t\t\"SYS_S390_PCI_MMIO_WRITE\":          reflect.ValueOf(constant.MakeFromLiteral(\"352\", token.INT, 0)),\n\t\t\"SYS_S390_RUNTIME_INSTR\":           reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_SCHED_GETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MAX\":       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"SYS_SCHED_GET_PRIORITY_MIN\":       reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"SYS_SCHED_RR_GET_INTERVAL\":        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETATTR\":                reflect.ValueOf(constant.MakeFromLiteral(\"345\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"SYS_SCHED_SETSCHEDULER\":           reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"SYS_SECCOMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"SYS_SENDFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_SETDOMAINNAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_SETFSGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"SYS_SETFSUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"SYS_SETHOSTNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_SETNS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"339\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                    reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SYS_SET_MEMPOLICY\":                reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS_SET_ROBUST_LIST\":              reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_SET_TID_ADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"373\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"SYS_SIGNAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS_SIGNALFD4\":                    reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"359\", token.INT, 0)),\n\t\t\"SYS_SOCKETCALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_SPLICE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_STAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_STATFS64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"265\", token.INT, 0)),\n\t\t\"SYS_SWAPOFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS_SWAPON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYNCFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"338\", token.INT, 0)),\n\t\t\"SYS_SYNC_FILE_RANGE\":              reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_SYSFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SYSINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_SYSLOG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_TEE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_TGKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_TIMERFD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_CREATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_GETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_TIMERFD_SETTIME\":              reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":             reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_TIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_TKILL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"237\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UMOUNT2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_UNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_UNSHARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS_USELIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_USERFAULTFD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_USTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_UTIME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"SYS_VHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_VMSPLICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                        reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_WAITID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"SYS__SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IREAD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                             reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                           reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                         reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                          reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                         reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                           reflect.ValueOf(syscall.Sendto),\n\t\t\"SetLsfPromisc\":                    reflect.ValueOf(syscall.SetLsfPromisc),\n\t\t\"SetNonblock\":                      reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setdomainname\":                    reflect.ValueOf(syscall.Setdomainname),\n\t\t\"Setegid\":                          reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                           reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                          reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setfsgid\":                         reflect.ValueOf(syscall.Setfsgid),\n\t\t\"Setfsuid\":                         reflect.ValueOf(syscall.Setfsuid),\n\t\t\"Setgid\":                           reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                        reflect.ValueOf(syscall.Setgroups),\n\t\t\"Sethostname\":                      reflect.ValueOf(syscall.Sethostname),\n\t\t\"Setpgid\":                          reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                      reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                         reflect.ValueOf(syscall.Setregid),\n\t\t\"Setresgid\":                        reflect.ValueOf(syscall.Setresgid),\n\t\t\"Setresuid\":                        reflect.ValueOf(syscall.Setresuid),\n\t\t\"Setreuid\":                         reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                        reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                           reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                   reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":           reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                 reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPMreqn\":                reflect.ValueOf(syscall.SetsockoptIPMreqn),\n\t\t\"SetsockoptIPv6Mreq\":               reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":              reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                    reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                 reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                 reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                     reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                           reflect.ValueOf(syscall.Setuid),\n\t\t\"Setxattr\":                         reflect.ValueOf(syscall.Setxattr),\n\t\t\"SizeofCmsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPMreqn\":                    reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAddrmsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIfInfomsg\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofInet4Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInotifyEvent\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofLinger\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofNlAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofNlMsgerr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofNlMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofRtAttr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofRtGenmsg\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SizeofRtMsg\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofRtNexthop\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFilter\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofSockFprog\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrLinklayer\":          reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrNetlink\":            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":               reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SizeofTCPInfo\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SizeofUcred\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":              reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                           reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                       reflect.ValueOf(syscall.Socketpair),\n\t\t\"Splice\":                           reflect.ValueOf(syscall.Splice),\n\t\t\"Stat\":                             reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                           reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                           reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                            reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                           reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                    reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                  reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                   reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                          reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                             reflect.ValueOf(syscall.Sync),\n\t\t\"SyncFileRange\":                    reflect.ValueOf(syscall.SyncFileRange),\n\t\t\"Sysinfo\":                          reflect.ValueOf(syscall.Sysinfo),\n\t\t\"TCFLSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21515\", token.INT, 0)),\n\t\t\"TCGETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21505\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_CONGESTION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TCP_COOKIE_IN_ALWAYS\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_COOKIE_MIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_COOKIE_OUT_NEVER\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_COOKIE_PAIR_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_COOKIE_TRANSACTIONS\":          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TCP_CORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_DEFER_ACCEPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_FASTOPEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_INFO\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG_MAXKEYLEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"TCP_MSS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_MSS_DEFAULT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_MSS_DESIRED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1220\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_QUEUE_SEQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_QUICKACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TCP_REPAIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_REPAIR_OPTIONS\":               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_REPAIR_QUEUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_SYNCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_S_DATA_IN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_S_DATA_OUT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_THIN_DUPACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_THIN_LINEAR_TIMEOUTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_TIMESTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_USER_TIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_WINDOW_CLAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCSETS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"21506\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21544\", token.INT, 0)),\n\t\t\"TIOCCONS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21533\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21516\", token.INT, 0)),\n\t\t\"TIOCGDEV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767346\", token.INT, 0)),\n\t\t\"TIOCGETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21540\", token.INT, 0)),\n\t\t\"TIOCGEXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767360\", token.INT, 0)),\n\t\t\"TIOCGICOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21597\", token.INT, 0)),\n\t\t\"TIOCGLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21590\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21519\", token.INT, 0)),\n\t\t\"TIOCGPKT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767352\", token.INT, 0)),\n\t\t\"TIOCGPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2147767353\", token.INT, 0)),\n\t\t\"TIOCGPTN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147767344\", token.INT, 0)),\n\t\t\"TIOCGRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21550\", token.INT, 0)),\n\t\t\"TIOCGSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21534\", token.INT, 0)),\n\t\t\"TIOCGSID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21545\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21529\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21523\", token.INT, 0)),\n\t\t\"TIOCINQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21531\", token.INT, 0)),\n\t\t\"TIOCLINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21532\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21527\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21526\", token.INT, 0)),\n\t\t\"TIOCMGET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21525\", token.INT, 0)),\n\t\t\"TIOCMIWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21596\", token.INT, 0)),\n\t\t\"TIOCMSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21528\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21538\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21517\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21521\", token.INT, 0)),\n\t\t\"TIOCPKT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21536\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21543\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21518\", token.INT, 0)),\n\t\t\"TIOCSERCONFIG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21587\", token.INT, 0)),\n\t\t\"TIOCSERGETLSR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21593\", token.INT, 0)),\n\t\t\"TIOCSERGETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21594\", token.INT, 0)),\n\t\t\"TIOCSERGSTRUCT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21592\", token.INT, 0)),\n\t\t\"TIOCSERGWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21588\", token.INT, 0)),\n\t\t\"TIOCSERSETMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21595\", token.INT, 0)),\n\t\t\"TIOCSERSWILD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21589\", token.INT, 0)),\n\t\t\"TIOCSER_TEMT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCSETD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21539\", token.INT, 0)),\n\t\t\"TIOCSIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074025526\", token.INT, 0)),\n\t\t\"TIOCSLCKTRMIOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21591\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOCSPTLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025521\", token.INT, 0)),\n\t\t\"TIOCSRS485\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21551\", token.INT, 0)),\n\t\t\"TIOCSSERIAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21535\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21530\", token.INT, 0)),\n\t\t\"TIOCSTI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21522\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21524\", token.INT, 0)),\n\t\t\"TIOCVHANGUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21559\", token.INT, 0)),\n\t\t\"TOSTOP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TUNATTACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812117\", token.INT, 0)),\n\t\t\"TUNDETACHFILTER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074812118\", token.INT, 0)),\n\t\t\"TUNGETFEATURES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147767503\", token.INT, 0)),\n\t\t\"TUNGETFILTER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148553947\", token.INT, 0)),\n\t\t\"TUNGETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147767506\", token.INT, 0)),\n\t\t\"TUNGETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767507\", token.INT, 0)),\n\t\t\"TUNGETVNETBE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767519\", token.INT, 0)),\n\t\t\"TUNGETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2147767511\", token.INT, 0)),\n\t\t\"TUNGETVNETLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147767517\", token.INT, 0)),\n\t\t\"TUNSETDEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025673\", token.INT, 0)),\n\t\t\"TUNSETGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025678\", token.INT, 0)),\n\t\t\"TUNSETIFF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074025674\", token.INT, 0)),\n\t\t\"TUNSETIFINDEX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025690\", token.INT, 0)),\n\t\t\"TUNSETLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074025677\", token.INT, 0)),\n\t\t\"TUNSETNOCSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025672\", token.INT, 0)),\n\t\t\"TUNSETOFFLOAD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025680\", token.INT, 0)),\n\t\t\"TUNSETOWNER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025676\", token.INT, 0)),\n\t\t\"TUNSETPERSIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074025675\", token.INT, 0)),\n\t\t\"TUNSETQUEUE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074025689\", token.INT, 0)),\n\t\t\"TUNSETSNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025684\", token.INT, 0)),\n\t\t\"TUNSETTXFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074025681\", token.INT, 0)),\n\t\t\"TUNSETVNETBE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025694\", token.INT, 0)),\n\t\t\"TUNSETVNETHDRSZ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074025688\", token.INT, 0)),\n\t\t\"TUNSETVNETLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074025692\", token.INT, 0)),\n\t\t\"Tee\":                              reflect.ValueOf(syscall.Tee),\n\t\t\"Tgkill\":                           reflect.ValueOf(syscall.Tgkill),\n\t\t\"Time\":                             reflect.ValueOf(syscall.Time),\n\t\t\"Times\":                            reflect.ValueOf(syscall.Times),\n\t\t\"TimespecToNsec\":                   reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                    reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                         reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                            reflect.ValueOf(syscall.Umask),\n\t\t\"Uname\":                            reflect.ValueOf(syscall.Uname),\n\t\t\"UnixCredentials\":                  reflect.ValueOf(syscall.UnixCredentials),\n\t\t\"UnixRights\":                       reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                           reflect.ValueOf(syscall.Unlink),\n\t\t\"Unlinkat\":                         reflect.ValueOf(syscall.Unlinkat),\n\t\t\"Unmount\":                          reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                         reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Unshare\":                          reflect.ValueOf(syscall.Unshare),\n\t\t\"Ustat\":                            reflect.ValueOf(syscall.Ustat),\n\t\t\"Utime\":                            reflect.ValueOf(syscall.Utime),\n\t\t\"Utimes\":                           reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                       reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VEOF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOL2\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VQUIT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WALL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"WCLONE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"WCONTINUED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WEXITED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WNOHANG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOTHREAD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"WNOWAIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"WORDSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WSTOPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                            reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                            reflect.ValueOf(syscall.Write),\n\t\t\"XCASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"EpollEvent\":           reflect.ValueOf((*syscall.EpollEvent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                 reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPMreqn\":              reflect.ValueOf((*syscall.IPMreqn)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAddrmsg\":            reflect.ValueOf((*syscall.IfAddrmsg)(nil)),\n\t\t\"IfInfomsg\":            reflect.ValueOf((*syscall.IfInfomsg)(nil)),\n\t\t\"Inet4Pktinfo\":         reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InotifyEvent\":         reflect.ValueOf((*syscall.InotifyEvent)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"NetlinkMessage\":       reflect.ValueOf((*syscall.NetlinkMessage)(nil)),\n\t\t\"NetlinkRouteAttr\":     reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)),\n\t\t\"NetlinkRouteRequest\":  reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)),\n\t\t\"NlAttr\":               reflect.ValueOf((*syscall.NlAttr)(nil)),\n\t\t\"NlMsgerr\":             reflect.ValueOf((*syscall.NlMsgerr)(nil)),\n\t\t\"NlMsghdr\":             reflect.ValueOf((*syscall.NlMsghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrLinklayer\": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)),\n\t\t\"RawSockaddrNetlink\":   reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtAttr\":               reflect.ValueOf((*syscall.RtAttr)(nil)),\n\t\t\"RtGenmsg\":             reflect.ValueOf((*syscall.RtGenmsg)(nil)),\n\t\t\"RtMsg\":                reflect.ValueOf((*syscall.RtMsg)(nil)),\n\t\t\"RtNexthop\":            reflect.ValueOf((*syscall.RtNexthop)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"SockFilter\":           reflect.ValueOf((*syscall.SockFilter)(nil)),\n\t\t\"SockFprog\":            reflect.ValueOf((*syscall.SockFprog)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrLinklayer\":    reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)),\n\t\t\"SockaddrNetlink\":      reflect.ValueOf((*syscall.SockaddrNetlink)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":             reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"SysProcIDMap\":         reflect.ValueOf((*syscall.SysProcIDMap)(nil)),\n\t\t\"Sysinfo_t\":            reflect.ValueOf((*syscall.Sysinfo_t)(nil)),\n\t\t\"TCPInfo\":              reflect.ValueOf((*syscall.TCPInfo)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Time_t\":               reflect.ValueOf((*syscall.Time_t)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timex\":                reflect.ValueOf((*syscall.Timex)(nil)),\n\t\t\"Tms\":                  reflect.ValueOf((*syscall.Tms)(nil)),\n\t\t\"Ucred\":                reflect.ValueOf((*syscall.Ucred)(nil)),\n\t\t\"Ustat_t\":              reflect.ValueOf((*syscall.Ustat_t)(nil)),\n\t\t\"Utimbuf\":              reflect.ValueOf((*syscall.Utimbuf)(nil)),\n\t\t\"Utsname\":              reflect.ValueOf((*syscall.Utsname)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_netbsd_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_ARP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_MPLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FRELAY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_STRIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B460800\":                           reflect.ValueOf(constant.MakeFromLiteral(\"460800\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B921600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"921600\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFEEDBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3221766775\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1083196011\", token.INT, 0)),\n\t\t\"BIOCGFEEDBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020988\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074545275\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020984\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1082147439\", token.INT, 0)),\n\t\t\"BIOCGSTATSOLD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762806\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148024935\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2156937836\", token.INT, 0)),\n\t\t\"BIOCSFEEDBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148287098\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762809\", token.INT, 0)),\n\t\t\"BIOCSTCPF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148024946\", token.INT, 0)),\n\t\t\"BIOCSUDPF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148024947\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DFLTBUFSIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_CSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_PID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CTL_QUERY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DIOCBSFLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536896632\", token.INT, 0)),\n\t\t\"DLT_A429\":                          reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"DLT_A653_ICM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"DLT_AIRONET_HEADER\":                reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_AOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_AX25_KISS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4\":              reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4_WITH_PHDR\":    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"DLT_CAN20B\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"DLT_CAN_SOCKETCAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"DLT_DECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FC_2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"DLT_FC_2_WITH_FRAME_DELIMS\":        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FLEXRAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_FRELAY_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                         reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                         reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_ABIS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_UM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"DLT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":          reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_LINUX\":            reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NONASK_PHY\":       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS_RADIO\":      reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"DLT_IPMB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"DLT_IPMB_LINUX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPV4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"DLT_IPV6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ISM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":               reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":              reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":             reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":              reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"DLT_LAPB_WITH_DIR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"DLT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"DLT_LIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"DLT_LINUX_EVDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MFR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"DLT_MOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAIF1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RAWAF_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35913728\", token.INT, 0)),\n\t\t\"DLT_RIO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SITA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":             reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"DLT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX_MMAPPED\":             reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"DLT_WIHART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"DLT_X2E_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"DLT_X2E_XORAYA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"EMUL_LINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_LINUX32\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"EMUL_MAXID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODATA\":                           reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                             reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                            reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EN_SW_CTL_INF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"EN_SW_CTL_PREC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"EN_SW_CTL_ROUND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3072\", token.INT, 0)),\n\t\t\"EN_SW_DATACHAIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EN_SW_DENORM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EN_SW_INVOP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EN_SW_OVERFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EN_SW_PRECLOSS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EN_SW_UNDERFLOW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EN_SW_ZERODIV\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETHERCAP_JUMBO_MTU\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERCAP_VLAN_HWTAGGING\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHERCAP_VLAN_MTU\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETHERMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"ETHERMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1500\", token.INT, 0)),\n\t\t\"ETHERMTU_JUMBO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9000\", token.INT, 0)),\n\t\t\"ETHERTYPE_8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERTYPE_AARP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETHERTYPE_ACCTON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33680\", token.INT, 0)),\n\t\t\"ETHERTYPE_AEONIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32822\", token.INT, 0)),\n\t\t\"ETHERTYPE_ALPHA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33098\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMBER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24584\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMOEBA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33093\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33015\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLODOMAIN\":            reflect.ValueOf(constant.MakeFromLiteral(\"32793\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLETALK\":               reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLITEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"32967\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARGONAUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"32826\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETHERTYPE_AT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATALK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATOMIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34527\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32873\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATTSTANFORD\":             reflect.ValueOf(constant.MakeFromLiteral(\"32776\", token.INT, 0)),\n\t\t\"ETHERTYPE_AUTOPHON\":                reflect.ValueOf(constant.MakeFromLiteral(\"32874\", token.INT, 0)),\n\t\t\"ETHERTYPE_AXIS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34902\", token.INT, 0)),\n\t\t\"ETHERTYPE_BCLOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36867\", token.INT, 0)),\n\t\t\"ETHERTYPE_BOFL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33026\", token.INT, 0)),\n\t\t\"ETHERTYPE_CABLETRON\":               reflect.ValueOf(constant.MakeFromLiteral(\"28724\", token.INT, 0)),\n\t\t\"ETHERTYPE_CHAOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2052\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMDESIGN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32876\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMPUGRAPHIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"32877\", token.INT, 0)),\n\t\t\"ETHERTYPE_COUNTERPOINT\":            reflect.ValueOf(constant.MakeFromLiteral(\"32866\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32772\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUSVLN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32771\", token.INT, 0)),\n\t\t\"ETHERTYPE_DCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4660\", token.INT, 0)),\n\t\t\"ETHERTYPE_DDE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32891\", token.INT, 0)),\n\t\t\"ETHERTYPE_DEBNI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43690\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32840\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECCUST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32828\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32830\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECEXPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32833\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLTM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32831\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECMUMPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"24585\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECNETBIOS\":              reflect.ValueOf(constant.MakeFromLiteral(\"32832\", token.INT, 0)),\n\t\t\"ETHERTYPE_DELTACON\":                reflect.ValueOf(constant.MakeFromLiteral(\"34526\", token.INT, 0)),\n\t\t\"ETHERTYPE_DIDDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17185\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG1\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1632\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1633\", token.INT, 0)),\n\t\t\"ETHERTYPE_DN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETHERTYPE_DOGFIGHT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6537\", token.INT, 0)),\n\t\t\"ETHERTYPE_DSMD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32825\", token.INT, 0)),\n\t\t\"ETHERTYPE_ECMA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2051\", token.INT, 0)),\n\t\t\"ETHERTYPE_ENCRYPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32829\", token.INT, 0)),\n\t\t\"ETHERTYPE_ES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32861\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXCELAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32784\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXPERDATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"32841\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33094\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLOWCONTROL\":             reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETHERTYPE_FRARP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2056\", token.INT, 0)),\n\t\t\"ETHERTYPE_GENDYN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32872\", token.INT, 0)),\n\t\t\"ETHERTYPE_HAYES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_HIPPI_FP\":                reflect.ValueOf(constant.MakeFromLiteral(\"33152\", token.INT, 0)),\n\t\t\"ETHERTYPE_HITACHI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34848\", token.INT, 0)),\n\t\t\"ETHERTYPE_HP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32773\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUPAT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19522\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBLDIAG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16972\", token.INT, 0)),\n\t\t\"ETHERTYPE_IP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPAS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34668\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPXNEW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32823\", token.INT, 0)),\n\t\t\"ETHERTYPE_KALPANA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34178\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANBRIDGE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32824\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANPROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"34952\", token.INT, 0)),\n\t\t\"ETHERTYPE_LAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETHERTYPE_LBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LITTLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOGICRAFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"33096\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_MATRA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32890\", token.INT, 0)),\n\t\t\"ETHERTYPE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ETHERTYPE_MERIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32892\", token.INT, 0)),\n\t\t\"ETHERTYPE_MICP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34618\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPDL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOTOROLA\":                reflect.ValueOf(constant.MakeFromLiteral(\"33165\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS_MCAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETHERTYPE_MUMPS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33087\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15364\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLAIM\":                reflect.ValueOf(constant.MakeFromLiteral(\"15369\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLREQ\":                reflect.ValueOf(constant.MakeFromLiteral(\"15365\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLRSP\":                reflect.ValueOf(constant.MakeFromLiteral(\"15366\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCREQ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15362\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCRSP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15363\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15367\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDGB\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15368\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDLTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15370\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15372\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15371\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15373\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPSCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15361\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPVCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15360\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2050\", token.INT, 0)),\n\t\t\"ETHERTYPE_NCD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33097\", token.INT, 0)),\n\t\t\"ETHERTYPE_NESTAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32774\", token.INT, 0)),\n\t\t\"ETHERTYPE_NETBEUI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33169\", token.INT, 0)),\n\t\t\"ETHERTYPE_NOVELL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33080\", token.INT, 0)),\n\t\t\"ETHERTYPE_NS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1537\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSCOMPAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2055\", token.INT, 0)),\n\t\t\"ETHERTYPE_NTRAILER\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28679\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9NET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28681\", token.INT, 0)),\n\t\t\"ETHERTYPE_PACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32966\", token.INT, 0)),\n\t\t\"ETHERTYPE_PAE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETHERTYPE_PCS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16962\", token.INT, 0)),\n\t\t\"ETHERTYPE_PLANNING\":                reflect.ValueOf(constant.MakeFromLiteral(\"32836\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34827\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOEDISC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETHERTYPE_PRIMENTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28721\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUPAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_RACAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28720\", token.INT, 0)),\n\t\t\"ETHERTYPE_RATIONAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"33104\", token.INT, 0)),\n\t\t\"ETHERTYPE_RAWFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25945\", token.INT, 0)),\n\t\t\"ETHERTYPE_RCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6549\", token.INT, 0)),\n\t\t\"ETHERTYPE_RDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34617\", token.INT, 0)),\n\t\t\"ETHERTYPE_RETIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33010\", token.INT, 0)),\n\t\t\"ETHERTYPE_REVARP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETHERTYPE_SCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECTRA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34523\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECUREDATA\":              reflect.ValueOf(constant.MakeFromLiteral(\"34669\", token.INT, 0)),\n\t\t\"ETHERTYPE_SGITW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33150\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_BOUNCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32790\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_DIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32787\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_NETGAMES\":             reflect.ValueOf(constant.MakeFromLiteral(\"32788\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_RESV\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32789\", token.INT, 0)),\n\t\t\"ETHERTYPE_SIMNET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21000\", token.INT, 0)),\n\t\t\"ETHERTYPE_SLOWPROTOCOLS\":           reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32981\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33100\", token.INT, 0)),\n\t\t\"ETHERTYPE_SONIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64245\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPIDER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32927\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPRITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"ETHERTYPE_STP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33153\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARIS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33067\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARISMC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34091\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPCOMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34667\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36866\", token.INT, 0)),\n\t\t\"ETHERTYPE_TEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33103\", token.INT, 0)),\n\t\t\"ETHERTYPE_TIGAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32815\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRANSETHER\":              reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETHERTYPE_TYMSHARE\":                reflect.ValueOf(constant.MakeFromLiteral(\"32814\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBBST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28677\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDEBUG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2304\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDIAGLOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"28674\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28672\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNIU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28673\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNMC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28675\", token.INT, 0)),\n\t\t\"ETHERTYPE_VALID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5632\", token.INT, 0)),\n\t\t\"ETHERTYPE_VARIAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VAXELN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32827\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEECO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32871\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEXP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32859\", token.INT, 0)),\n\t\t\"ETHERTYPE_VGLAB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33073\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESECHO\":               reflect.ValueOf(constant.MakeFromLiteral(\"2991\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESLOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"2990\", token.INT, 0)),\n\t\t\"ETHERTYPE_VITAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65280\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLTLMAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32896\", token.INT, 0)),\n\t\t\"ETHERTYPE_VPROD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32860\", token.INT, 0)),\n\t\t\"ETHERTYPE_VURESERVED\":              reflect.ValueOf(constant.MakeFromLiteral(\"33095\", token.INT, 0)),\n\t\t\"ETHERTYPE_WATERLOO\":                reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_WELLFLEET\":               reflect.ValueOf(constant.MakeFromLiteral(\"33027\", token.INT, 0)),\n\t\t\"ETHERTYPE_X25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETHERTYPE_X75\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2049\", token.INT, 0)),\n\t\t\"ETHERTYPE_XNSSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36865\", token.INT, 0)),\n\t\t\"ETHERTYPE_XTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33149\", token.INT, 0)),\n\t\t\"ETHER_ADDR_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETHER_CRC_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_BE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79764918\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_LE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3988292384\", token.INT, 0)),\n\t\t\"ETHER_HDR_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1518\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN_JUMBO\":               reflect.ValueOf(constant.MakeFromLiteral(\"9018\", token.INT, 0)),\n\t\t\"ETHER_MIN_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ETHER_PPPOE_ENCAP_LEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETHER_TYPE_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_VLAN_ENCAP_LEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETIME\":                             reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_CLOSEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_FSCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"F_FSDIRMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1879048192\", token.INT, 0)),\n\t\t\"F_FSIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"F_FSINOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"805306368\", token.INT, 0)),\n\t\t\"F_FSOUT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"F_FSPRIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"F_FSVOID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETNOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_MAXFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_PARAM_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"F_PARAM_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETNOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36690\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAMCHANNEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LINEGROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_PON155\":                        reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"IFT_PON622\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_Q2931\":                         reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SIPSIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"IFT_SIPTG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TELINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VIRTUALTG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"IFT_VOICEDID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEEMFGD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFGDEANA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERCABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6_ICMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VRRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_EF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ERRORMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINFRAGSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_SPACEAVAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_16MB\":                reflect.ValueOf(constant.MakeFromLiteral(\"402653184\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_1TB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"671088640\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_256TB\":               reflect.ValueOf(constant.MakeFromLiteral(\"805306368\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_4GB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_64KB\":                reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_64PB\":                reflect.ValueOf(constant.MakeFromLiteral(\"939524096\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_SHIFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_INHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_INHERIT_COPY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_DEFAULT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_DONATE_COPY\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_INHERIT_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_INHERIT_SHARE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_TRYFIXED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_WIRED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_BCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CONTROLMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_IOVUSRSPACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"MSG_LENUSRSPACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"MSG_MCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_NAMEMBUF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MSG_NBIO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_USERFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"511\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_OIFLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_OOIFLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OFIOGETBMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221513850\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_ALT_IO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_DSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOSIGPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PRI_IOFLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_TAG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_TAG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_ANNOUNCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_CLONED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_MASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_SRC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_CHGADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_LLINFO_UPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_OIFINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_OOIFINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_SETGATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_CREDS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                            reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947761\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150658570\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860636\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947762\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150658571\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156947737\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947785\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860638\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223087483\", token.INT, 0)),\n\t\t\"SIOCGETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3230689784\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222566196\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222566195\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3230689569\", token.INT, 0)),\n\t\t\"SIOCGIFADDRPREF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3230951712\", token.INT, 0)),\n\t\t\"SIOCGIFALIAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3225446683\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689571\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349622\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221776678\", token.INT, 0)),\n\t\t\"SIOCGIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3230951813\", token.INT, 0)),\n\t\t\"SIOCGIFDLT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3230689655\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689570\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3230689553\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689594\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873846\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3230689559\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3230689662\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689573\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3230689608\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3230689607\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3239602461\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3239602507\", token.INT, 0)),\n\t\t\"SIOCGLINKSTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223087495\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3230689667\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947834\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947833\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222038904\", token.INT, 0)),\n\t\t\"SIOCINITIFADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3225708932\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149345659\", token.INT, 0)),\n\t\t\"SIOCSETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947959\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156947724\", token.INT, 0)),\n\t\t\"SIOCSIFADDRPREF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2157209887\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947731\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607797\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947726\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947728\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947769\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3230689589\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947736\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2156947839\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947734\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2165860682\", token.INT, 0)),\n\t\t\"SIOCSLINKSTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149345672\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3230689666\", token.INT, 0)),\n\t\t\"SIOCZIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3230951814\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_FLAGS_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"SOCK_NOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ACCEPTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_NOHEADER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_OVERFLOWED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYSCTL_VERSION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_0\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_MASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BREAK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"454\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXTATTRCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"462\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"463\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"464\", token.INT, 0)),\n\t\t\"SYS_FCHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FEXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"465\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"380\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"SYS_FKTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"383\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"377\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"440\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"466\", token.INT, 0)),\n\t\t\"SYS_FSTATVFS1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FSYNC_RANGE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMENS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"472\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS_GETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"395\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"445\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"418\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETVFSSTAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"378\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_KQUEUE1\":                       reflect.ValueOf(constant.MakeFromLiteral(\"455\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_LCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"379\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"457\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"381\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"382\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"441\", token.INT, 0)),\n\t\t\"SYS_LUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"461\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"459\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"460\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MODCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"444\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_NTP_ADJTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_NTP_GETTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"468\", token.INT, 0)),\n\t\t\"SYS_PACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"456\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"453\", token.INT, 0)),\n\t\t\"SYS_PMC_CONTROL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_PMC_GET_INFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_POLLTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"437\", token.INT, 0)),\n\t\t\"SYS_POSIX_FADVISE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_POSIX_SPAWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"474\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_PSET_ASSIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_PSET_CREATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_PSET_DESTROY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_RASCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"469\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"475\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"458\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_SEMCONFIG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"476\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"419\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"375\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"443\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGQUEUEINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SSTK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_STAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_STATVFS1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_SWAPCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"470\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":              reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"447\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"446\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"471\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"467\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"420\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_UUIDGEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_VADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"449\", token.INT, 0)),\n\t\t\"SYS_WAIT6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"481\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS__LWP_CONTINUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS__LWP_CREATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS__LWP_CTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS__LWP_DETACH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS__LWP_EXIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS__LWP_GETNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS__LWP_GETPRIVATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS__LWP_KILL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS__LWP_PARK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS__LWP_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS__LWP_SETNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS__LWP_SETPRIVATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS__LWP_SUSPEND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS__LWP_UNPARK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS__LWP_UNPARK_ALL\":               reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS__LWP_WAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS__LWP_WAKEUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS__PSET_BIND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS__SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS__SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS__SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS__SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS___CLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS___GETLOGIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS___POSIX_CHOWN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS___POSIX_FCHOWN\":                reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS___POSIX_LCHOWN\":                reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS___POSIX_RENAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS___QUOTACTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"473\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"442\", token.INT, 0)),\n\t\t\"SYS___SETLOGIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS___SIGACTION_SIGTRAMP\":          reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS___SIGTIMEDWAIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_ARCH1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"S_ARCH2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFWHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"57344\", token.INT, 0)),\n\t\t\"S_IREAD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISTXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_LOGIN_SET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CONGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_KEEPINIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDCDTIMESTAMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074558040\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLAG_CDTRCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCFLAG_CLOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCFLAG_CRTSCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCFLAG_MDMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCFLAG_SOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033757\", token.INT, 0)),\n\t\t\"TIOCGLINED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1075868738\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGQSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033793\", token.INT, 0)),\n\t\t\"TIOCGRANTPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536900679\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1076393030\", token.INT, 0)),\n\t\t\"TIOCPTSNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1076393032\", token.INT, 0)),\n\t\t\"TIOCRCVFRAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147775557\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775580\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900703\", token.INT, 0)),\n\t\t\"TIOCSLINED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149610563\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSQSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775616\", token.INT, 0)),\n\t\t\"TIOCSSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775589\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TIOCXMTFRAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147775556\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WALL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WALLSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WALTSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCLONE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"WNOZOMBIE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"WOPTSCHECKED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                   reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                  reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":               reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                  reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfTimeval\":               reflect.ValueOf((*syscall.BpfTimeval)(nil)),\n\t\t\"BpfVersion\":               reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                  reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                     reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":               reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                   reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                    reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                    reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                  reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                     reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":             reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                   reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":              reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                 reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":         reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                   reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                 reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":             reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":     reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":         reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"Iovec\":                    reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                 reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                   reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Mclpool\":                  reflect.ValueOf((*syscall.Mclpool)(nil)),\n\t\t\"Msghdr\":                   reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                 reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                  reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":              reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":           reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":      reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":         reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":         reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":          reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                   reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":             reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":           reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                 reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                   reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                   reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                 reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":         reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":            reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":            reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":             reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":     reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                   reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                 reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":              reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Sysctlnode\":               reflect.ValueOf((*syscall.Sysctlnode)(nil)),\n\t\t\"Termios\":                  reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                 reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                  reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":               reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_netbsd_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_ARP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_MPLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FRELAY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_STRIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B460800\":                           reflect.ValueOf(constant.MakeFromLiteral(\"460800\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B921600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"921600\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFEEDBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222291063\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1083196011\", token.INT, 0)),\n\t\t\"BIOCGFEEDBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020988\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074807419\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020984\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1082147439\", token.INT, 0)),\n\t\t\"BIOCGSTATSOLD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762806\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2156937836\", token.INT, 0)),\n\t\t\"BIOCSFEEDBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148549242\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762809\", token.INT, 0)),\n\t\t\"BIOCSTCPF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148549234\", token.INT, 0)),\n\t\t\"BIOCSUDPF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148549235\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DFLTBUFSIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_CSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_PID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CTL_QUERY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DIOCBSFLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536896632\", token.INT, 0)),\n\t\t\"DLT_A429\":                          reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"DLT_A653_ICM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"DLT_AIRONET_HEADER\":                reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_AOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_AX25_KISS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4\":              reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4_WITH_PHDR\":    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"DLT_CAN20B\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"DLT_CAN_SOCKETCAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"DLT_DECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FC_2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"DLT_FC_2_WITH_FRAME_DELIMS\":        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FLEXRAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_FRELAY_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                         reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                         reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_ABIS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_UM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"DLT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":          reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_LINUX\":            reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NONASK_PHY\":       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS_RADIO\":      reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"DLT_IPMB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"DLT_IPMB_LINUX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPV4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"DLT_IPV6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ISM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":               reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":              reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":             reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":              reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"DLT_LAPB_WITH_DIR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"DLT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"DLT_LIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"DLT_LINUX_EVDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MFR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"DLT_MOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAIF1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RAWAF_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35913728\", token.INT, 0)),\n\t\t\"DLT_RIO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SITA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":             reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"DLT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX_MMAPPED\":             reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"DLT_WIHART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"DLT_X2E_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"DLT_X2E_XORAYA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"EMUL_LINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_LINUX32\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"EMUL_MAXID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODATA\":                           reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                             reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                            reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETHERCAP_JUMBO_MTU\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERCAP_VLAN_HWTAGGING\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHERCAP_VLAN_MTU\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETHERMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"ETHERMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1500\", token.INT, 0)),\n\t\t\"ETHERMTU_JUMBO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9000\", token.INT, 0)),\n\t\t\"ETHERTYPE_8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERTYPE_AARP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETHERTYPE_ACCTON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33680\", token.INT, 0)),\n\t\t\"ETHERTYPE_AEONIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32822\", token.INT, 0)),\n\t\t\"ETHERTYPE_ALPHA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33098\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMBER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24584\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMOEBA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33093\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33015\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLODOMAIN\":            reflect.ValueOf(constant.MakeFromLiteral(\"32793\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLETALK\":               reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLITEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"32967\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARGONAUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"32826\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETHERTYPE_AT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATALK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATOMIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34527\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32873\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATTSTANFORD\":             reflect.ValueOf(constant.MakeFromLiteral(\"32776\", token.INT, 0)),\n\t\t\"ETHERTYPE_AUTOPHON\":                reflect.ValueOf(constant.MakeFromLiteral(\"32874\", token.INT, 0)),\n\t\t\"ETHERTYPE_AXIS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34902\", token.INT, 0)),\n\t\t\"ETHERTYPE_BCLOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36867\", token.INT, 0)),\n\t\t\"ETHERTYPE_BOFL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33026\", token.INT, 0)),\n\t\t\"ETHERTYPE_CABLETRON\":               reflect.ValueOf(constant.MakeFromLiteral(\"28724\", token.INT, 0)),\n\t\t\"ETHERTYPE_CHAOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2052\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMDESIGN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32876\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMPUGRAPHIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"32877\", token.INT, 0)),\n\t\t\"ETHERTYPE_COUNTERPOINT\":            reflect.ValueOf(constant.MakeFromLiteral(\"32866\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32772\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUSVLN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32771\", token.INT, 0)),\n\t\t\"ETHERTYPE_DCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4660\", token.INT, 0)),\n\t\t\"ETHERTYPE_DDE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32891\", token.INT, 0)),\n\t\t\"ETHERTYPE_DEBNI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43690\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32840\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECCUST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32828\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32830\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECEXPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32833\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLTM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32831\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECMUMPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"24585\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECNETBIOS\":              reflect.ValueOf(constant.MakeFromLiteral(\"32832\", token.INT, 0)),\n\t\t\"ETHERTYPE_DELTACON\":                reflect.ValueOf(constant.MakeFromLiteral(\"34526\", token.INT, 0)),\n\t\t\"ETHERTYPE_DIDDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17185\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG1\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1632\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1633\", token.INT, 0)),\n\t\t\"ETHERTYPE_DN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETHERTYPE_DOGFIGHT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6537\", token.INT, 0)),\n\t\t\"ETHERTYPE_DSMD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32825\", token.INT, 0)),\n\t\t\"ETHERTYPE_ECMA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2051\", token.INT, 0)),\n\t\t\"ETHERTYPE_ENCRYPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32829\", token.INT, 0)),\n\t\t\"ETHERTYPE_ES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32861\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXCELAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32784\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXPERDATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"32841\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33094\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLOWCONTROL\":             reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETHERTYPE_FRARP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2056\", token.INT, 0)),\n\t\t\"ETHERTYPE_GENDYN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32872\", token.INT, 0)),\n\t\t\"ETHERTYPE_HAYES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_HIPPI_FP\":                reflect.ValueOf(constant.MakeFromLiteral(\"33152\", token.INT, 0)),\n\t\t\"ETHERTYPE_HITACHI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34848\", token.INT, 0)),\n\t\t\"ETHERTYPE_HP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32773\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUPAT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19522\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBLDIAG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16972\", token.INT, 0)),\n\t\t\"ETHERTYPE_IP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPAS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34668\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPXNEW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32823\", token.INT, 0)),\n\t\t\"ETHERTYPE_KALPANA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34178\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANBRIDGE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32824\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANPROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"34952\", token.INT, 0)),\n\t\t\"ETHERTYPE_LAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETHERTYPE_LBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LITTLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOGICRAFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"33096\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_MATRA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32890\", token.INT, 0)),\n\t\t\"ETHERTYPE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ETHERTYPE_MERIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32892\", token.INT, 0)),\n\t\t\"ETHERTYPE_MICP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34618\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPDL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOTOROLA\":                reflect.ValueOf(constant.MakeFromLiteral(\"33165\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS_MCAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETHERTYPE_MUMPS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33087\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15364\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLAIM\":                reflect.ValueOf(constant.MakeFromLiteral(\"15369\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLREQ\":                reflect.ValueOf(constant.MakeFromLiteral(\"15365\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLRSP\":                reflect.ValueOf(constant.MakeFromLiteral(\"15366\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCREQ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15362\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCRSP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15363\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15367\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDGB\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15368\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDLTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15370\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15372\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15371\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15373\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPSCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15361\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPVCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15360\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2050\", token.INT, 0)),\n\t\t\"ETHERTYPE_NCD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33097\", token.INT, 0)),\n\t\t\"ETHERTYPE_NESTAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32774\", token.INT, 0)),\n\t\t\"ETHERTYPE_NETBEUI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33169\", token.INT, 0)),\n\t\t\"ETHERTYPE_NOVELL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33080\", token.INT, 0)),\n\t\t\"ETHERTYPE_NS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1537\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSCOMPAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2055\", token.INT, 0)),\n\t\t\"ETHERTYPE_NTRAILER\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28679\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9NET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28681\", token.INT, 0)),\n\t\t\"ETHERTYPE_PACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32966\", token.INT, 0)),\n\t\t\"ETHERTYPE_PAE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETHERTYPE_PCS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16962\", token.INT, 0)),\n\t\t\"ETHERTYPE_PLANNING\":                reflect.ValueOf(constant.MakeFromLiteral(\"32836\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34827\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOEDISC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETHERTYPE_PRIMENTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28721\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUPAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_RACAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28720\", token.INT, 0)),\n\t\t\"ETHERTYPE_RATIONAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"33104\", token.INT, 0)),\n\t\t\"ETHERTYPE_RAWFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25945\", token.INT, 0)),\n\t\t\"ETHERTYPE_RCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6549\", token.INT, 0)),\n\t\t\"ETHERTYPE_RDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34617\", token.INT, 0)),\n\t\t\"ETHERTYPE_RETIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33010\", token.INT, 0)),\n\t\t\"ETHERTYPE_REVARP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETHERTYPE_SCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECTRA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34523\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECUREDATA\":              reflect.ValueOf(constant.MakeFromLiteral(\"34669\", token.INT, 0)),\n\t\t\"ETHERTYPE_SGITW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33150\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_BOUNCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32790\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_DIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32787\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_NETGAMES\":             reflect.ValueOf(constant.MakeFromLiteral(\"32788\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_RESV\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32789\", token.INT, 0)),\n\t\t\"ETHERTYPE_SIMNET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21000\", token.INT, 0)),\n\t\t\"ETHERTYPE_SLOWPROTOCOLS\":           reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32981\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33100\", token.INT, 0)),\n\t\t\"ETHERTYPE_SONIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64245\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPIDER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32927\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPRITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"ETHERTYPE_STP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33153\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARIS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33067\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARISMC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34091\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPCOMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34667\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36866\", token.INT, 0)),\n\t\t\"ETHERTYPE_TEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33103\", token.INT, 0)),\n\t\t\"ETHERTYPE_TIGAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32815\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRANSETHER\":              reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETHERTYPE_TYMSHARE\":                reflect.ValueOf(constant.MakeFromLiteral(\"32814\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBBST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28677\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDEBUG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2304\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDIAGLOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"28674\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28672\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNIU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28673\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNMC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28675\", token.INT, 0)),\n\t\t\"ETHERTYPE_VALID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5632\", token.INT, 0)),\n\t\t\"ETHERTYPE_VARIAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VAXELN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32827\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEECO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32871\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEXP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32859\", token.INT, 0)),\n\t\t\"ETHERTYPE_VGLAB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33073\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESECHO\":               reflect.ValueOf(constant.MakeFromLiteral(\"2991\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESLOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"2990\", token.INT, 0)),\n\t\t\"ETHERTYPE_VITAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65280\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLTLMAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32896\", token.INT, 0)),\n\t\t\"ETHERTYPE_VPROD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32860\", token.INT, 0)),\n\t\t\"ETHERTYPE_VURESERVED\":              reflect.ValueOf(constant.MakeFromLiteral(\"33095\", token.INT, 0)),\n\t\t\"ETHERTYPE_WATERLOO\":                reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_WELLFLEET\":               reflect.ValueOf(constant.MakeFromLiteral(\"33027\", token.INT, 0)),\n\t\t\"ETHERTYPE_X25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETHERTYPE_X75\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2049\", token.INT, 0)),\n\t\t\"ETHERTYPE_XNSSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36865\", token.INT, 0)),\n\t\t\"ETHERTYPE_XTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33149\", token.INT, 0)),\n\t\t\"ETHER_ADDR_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETHER_CRC_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_BE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79764918\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_LE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3988292384\", token.INT, 0)),\n\t\t\"ETHER_HDR_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1518\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN_JUMBO\":               reflect.ValueOf(constant.MakeFromLiteral(\"9018\", token.INT, 0)),\n\t\t\"ETHER_MIN_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ETHER_PPPOE_ENCAP_LEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETHER_TYPE_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_VLAN_ENCAP_LEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETIME\":                             reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_CLOSEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_FSCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"F_FSDIRMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1879048192\", token.INT, 0)),\n\t\t\"F_FSIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"F_FSINOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"805306368\", token.INT, 0)),\n\t\t\"F_FSOUT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"F_FSPRIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"F_FSVOID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETNOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_MAXFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_PARAM_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"F_PARAM_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETNOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36690\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAMCHANNEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LINEGROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_PON155\":                        reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"IFT_PON622\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_Q2931\":                         reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SIPSIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"IFT_SIPTG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TELINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VIRTUALTG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"IFT_VOICEDID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEEMFGD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFGDEANA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERCABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6_ICMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VRRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_EF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ERRORMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINFRAGSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_SPACEAVAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_16MB\":                reflect.ValueOf(constant.MakeFromLiteral(\"402653184\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_1TB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"671088640\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_256TB\":               reflect.ValueOf(constant.MakeFromLiteral(\"805306368\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_4GB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_64KB\":                reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_64PB\":                reflect.ValueOf(constant.MakeFromLiteral(\"939524096\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_SHIFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_INHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_INHERIT_COPY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_DEFAULT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_DONATE_COPY\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_INHERIT_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_INHERIT_SHARE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_TRYFIXED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_WIRED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_BCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CONTROLMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_IOVUSRSPACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"MSG_LENUSRSPACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"MSG_MCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_NAMEMBUF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MSG_NBIO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_USERFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"511\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_OIFLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_OOIFLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OFIOGETBMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221513850\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_ALT_IO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_DSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOSIGPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PRI_IOFLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_TAG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_TAG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_ANNOUNCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_CLONED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_MASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_SRC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_CHGADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_LLINFO_UPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_OIFINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_OOIFINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_SETGATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_CREDS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                            reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947761\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151182858\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860636\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947762\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151182859\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156947737\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947785\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860638\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873915\", token.INT, 0)),\n\t\t\"SIOCGETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3230689784\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223352628\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223876915\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3230689569\", token.INT, 0)),\n\t\t\"SIOCGIFADDRPREF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3231213856\", token.INT, 0)),\n\t\t\"SIOCGIFALIAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3225446683\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689571\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349622\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222300966\", token.INT, 0)),\n\t\t\"SIOCGIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3231213957\", token.INT, 0)),\n\t\t\"SIOCGIFDLT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3230689655\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689570\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3230689553\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689594\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3224398134\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3230689559\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3230689662\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689573\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3230689608\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3230689607\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3239602461\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3239602507\", token.INT, 0)),\n\t\t\"SIOCGLINKSTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873927\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3230689667\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947834\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947833\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222301048\", token.INT, 0)),\n\t\t\"SIOCINITIFADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3228592516\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132091\", token.INT, 0)),\n\t\t\"SIOCSETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947959\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156947724\", token.INT, 0)),\n\t\t\"SIOCSIFADDRPREF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2157472031\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947731\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607797\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947726\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947728\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947769\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3230689589\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947736\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2156947839\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947734\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2165860682\", token.INT, 0)),\n\t\t\"SIOCSLINKSTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132104\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3230689666\", token.INT, 0)),\n\t\t\"SIOCZIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3231213958\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_FLAGS_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"SOCK_NOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ACCEPTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_NOHEADER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_OVERFLOWED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYSCTL_VERSION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_0\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_MASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BREAK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"454\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXTATTRCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"462\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"463\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"464\", token.INT, 0)),\n\t\t\"SYS_FCHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FEXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"465\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"380\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"SYS_FKTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"383\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"377\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"440\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"466\", token.INT, 0)),\n\t\t\"SYS_FSTATVFS1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FSYNC_RANGE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMENS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"472\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS_GETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"395\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"445\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"418\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETVFSSTAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"378\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_KQUEUE1\":                       reflect.ValueOf(constant.MakeFromLiteral(\"455\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_LCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"379\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"457\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"381\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"382\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"441\", token.INT, 0)),\n\t\t\"SYS_LUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"461\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"459\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"460\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MODCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"444\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_NTP_ADJTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_NTP_GETTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"468\", token.INT, 0)),\n\t\t\"SYS_PACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"456\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"453\", token.INT, 0)),\n\t\t\"SYS_PMC_CONTROL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_PMC_GET_INFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_POLLTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"437\", token.INT, 0)),\n\t\t\"SYS_POSIX_FADVISE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_POSIX_SPAWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"474\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_PSET_ASSIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_PSET_CREATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_PSET_DESTROY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_RASCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"469\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"475\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"458\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_SEMCONFIG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"476\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"419\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"375\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"443\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGQUEUEINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SSTK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_STAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_STATVFS1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_SWAPCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"470\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":              reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"447\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"446\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"471\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"467\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"420\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_UUIDGEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_VADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"449\", token.INT, 0)),\n\t\t\"SYS_WAIT6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"481\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS__LWP_CONTINUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS__LWP_CREATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS__LWP_CTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS__LWP_DETACH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS__LWP_EXIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS__LWP_GETNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS__LWP_GETPRIVATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS__LWP_KILL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS__LWP_PARK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS__LWP_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS__LWP_SETNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS__LWP_SETPRIVATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS__LWP_SUSPEND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS__LWP_UNPARK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS__LWP_UNPARK_ALL\":               reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS__LWP_WAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS__LWP_WAKEUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS__PSET_BIND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS__SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS__SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS__SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS__SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS___CLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS___GETLOGIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS___POSIX_CHOWN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS___POSIX_FCHOWN\":                reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS___POSIX_LCHOWN\":                reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS___POSIX_RENAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS___QUOTACTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"473\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"442\", token.INT, 0)),\n\t\t\"SYS___SETLOGIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS___SIGACTION_SIGTRAMP\":          reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS___SIGTIMEDWAIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_ARCH1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"S_ARCH2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFWHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"57344\", token.INT, 0)),\n\t\t\"S_IREAD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISTXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_LOGIN_SET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CONGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_KEEPINIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDCDTIMESTAMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074820184\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLAG_CDTRCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCFLAG_CLOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCFLAG_CRTSCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCFLAG_MDMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCFLAG_SOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033757\", token.INT, 0)),\n\t\t\"TIOCGLINED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1075868738\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGQSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033793\", token.INT, 0)),\n\t\t\"TIOCGRANTPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536900679\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1076393030\", token.INT, 0)),\n\t\t\"TIOCPTSNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1076393032\", token.INT, 0)),\n\t\t\"TIOCRCVFRAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148037701\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775580\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900703\", token.INT, 0)),\n\t\t\"TIOCSLINED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149610563\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSQSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775616\", token.INT, 0)),\n\t\t\"TIOCSSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775589\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TIOCXMTFRAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148037700\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WALL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WALLSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WALTSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCLONE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"WNOZOMBIE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"WOPTSCHECKED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                   reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                  reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":               reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                  reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfTimeval\":               reflect.ValueOf((*syscall.BpfTimeval)(nil)),\n\t\t\"BpfVersion\":               reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                  reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                     reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":               reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                   reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                    reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                    reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                  reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                     reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":             reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                   reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":              reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                 reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":         reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                   reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                 reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":             reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":     reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":         reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"Iovec\":                    reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                 reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                   reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Mclpool\":                  reflect.ValueOf((*syscall.Mclpool)(nil)),\n\t\t\"Msghdr\":                   reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                 reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                  reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":              reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":           reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":      reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":         reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":         reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":          reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                   reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":             reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":           reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                 reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                   reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                   reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                 reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":         reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":            reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":            reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":             reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":     reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                   reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                 reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":              reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Sysctlnode\":               reflect.ValueOf((*syscall.Sysctlnode)(nil)),\n\t\t\"Termios\":                  reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                 reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                  reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":               reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_netbsd_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_ARP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_MPLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FRELAY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_STRIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B460800\":                           reflect.ValueOf(constant.MakeFromLiteral(\"460800\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B921600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"921600\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFEEDBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3221766775\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1083196011\", token.INT, 0)),\n\t\t\"BIOCGFEEDBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020988\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074545275\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020984\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1082147439\", token.INT, 0)),\n\t\t\"BIOCGSTATSOLD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762806\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148024935\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2156937836\", token.INT, 0)),\n\t\t\"BIOCSFEEDBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148287098\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762809\", token.INT, 0)),\n\t\t\"BIOCSTCPF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148024946\", token.INT, 0)),\n\t\t\"BIOCSUDPF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148024947\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DFLTBUFSIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CTL_QUERY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DIOCBSFLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536896632\", token.INT, 0)),\n\t\t\"DLT_A429\":                          reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"DLT_A653_ICM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"DLT_AIRONET_HEADER\":                reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_AOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_AX25_KISS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4\":              reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4_WITH_PHDR\":    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"DLT_CAN20B\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"DLT_CAN_SOCKETCAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"DLT_DECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FC_2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"DLT_FC_2_WITH_FRAME_DELIMS\":        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FLEXRAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_FRELAY_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                         reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                         reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_ABIS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_UM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"DLT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":          reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_LINUX\":            reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NONASK_PHY\":       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS_RADIO\":      reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"DLT_IPMB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"DLT_IPMB_LINUX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPV4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"DLT_IPV6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ISM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":               reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":              reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":             reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":              reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"DLT_LAPB_WITH_DIR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"DLT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"DLT_LIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"DLT_LINUX_EVDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MFR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"DLT_MOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAIF1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RAWAF_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35913728\", token.INT, 0)),\n\t\t\"DLT_RIO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SITA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":             reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"DLT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX_MMAPPED\":             reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"DLT_WIHART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"DLT_X2E_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"DLT_X2E_XORAYA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"EMUL_LINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_LINUX32\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"EMUL_MAXID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODATA\":                           reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                             reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                            reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETHERCAP_JUMBO_MTU\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERCAP_VLAN_HWTAGGING\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHERCAP_VLAN_MTU\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETHERMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"ETHERMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1500\", token.INT, 0)),\n\t\t\"ETHERMTU_JUMBO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9000\", token.INT, 0)),\n\t\t\"ETHERTYPE_8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERTYPE_AARP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETHERTYPE_ACCTON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33680\", token.INT, 0)),\n\t\t\"ETHERTYPE_AEONIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32822\", token.INT, 0)),\n\t\t\"ETHERTYPE_ALPHA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33098\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMBER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24584\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMOEBA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33093\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33015\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLODOMAIN\":            reflect.ValueOf(constant.MakeFromLiteral(\"32793\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLETALK\":               reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLITEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"32967\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARGONAUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"32826\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETHERTYPE_AT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATALK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATOMIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34527\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32873\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATTSTANFORD\":             reflect.ValueOf(constant.MakeFromLiteral(\"32776\", token.INT, 0)),\n\t\t\"ETHERTYPE_AUTOPHON\":                reflect.ValueOf(constant.MakeFromLiteral(\"32874\", token.INT, 0)),\n\t\t\"ETHERTYPE_AXIS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34902\", token.INT, 0)),\n\t\t\"ETHERTYPE_BCLOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36867\", token.INT, 0)),\n\t\t\"ETHERTYPE_BOFL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33026\", token.INT, 0)),\n\t\t\"ETHERTYPE_CABLETRON\":               reflect.ValueOf(constant.MakeFromLiteral(\"28724\", token.INT, 0)),\n\t\t\"ETHERTYPE_CHAOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2052\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMDESIGN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32876\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMPUGRAPHIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"32877\", token.INT, 0)),\n\t\t\"ETHERTYPE_COUNTERPOINT\":            reflect.ValueOf(constant.MakeFromLiteral(\"32866\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32772\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUSVLN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32771\", token.INT, 0)),\n\t\t\"ETHERTYPE_DCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4660\", token.INT, 0)),\n\t\t\"ETHERTYPE_DDE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32891\", token.INT, 0)),\n\t\t\"ETHERTYPE_DEBNI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43690\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32840\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECCUST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32828\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32830\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECEXPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32833\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLTM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32831\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECMUMPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"24585\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECNETBIOS\":              reflect.ValueOf(constant.MakeFromLiteral(\"32832\", token.INT, 0)),\n\t\t\"ETHERTYPE_DELTACON\":                reflect.ValueOf(constant.MakeFromLiteral(\"34526\", token.INT, 0)),\n\t\t\"ETHERTYPE_DIDDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17185\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG1\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1632\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1633\", token.INT, 0)),\n\t\t\"ETHERTYPE_DN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETHERTYPE_DOGFIGHT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6537\", token.INT, 0)),\n\t\t\"ETHERTYPE_DSMD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32825\", token.INT, 0)),\n\t\t\"ETHERTYPE_ECMA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2051\", token.INT, 0)),\n\t\t\"ETHERTYPE_ENCRYPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32829\", token.INT, 0)),\n\t\t\"ETHERTYPE_ES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32861\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXCELAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32784\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXPERDATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"32841\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33094\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLOWCONTROL\":             reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETHERTYPE_FRARP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2056\", token.INT, 0)),\n\t\t\"ETHERTYPE_GENDYN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32872\", token.INT, 0)),\n\t\t\"ETHERTYPE_HAYES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_HIPPI_FP\":                reflect.ValueOf(constant.MakeFromLiteral(\"33152\", token.INT, 0)),\n\t\t\"ETHERTYPE_HITACHI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34848\", token.INT, 0)),\n\t\t\"ETHERTYPE_HP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32773\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUPAT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19522\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBLDIAG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16972\", token.INT, 0)),\n\t\t\"ETHERTYPE_IP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPAS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34668\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPXNEW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32823\", token.INT, 0)),\n\t\t\"ETHERTYPE_KALPANA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34178\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANBRIDGE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32824\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANPROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"34952\", token.INT, 0)),\n\t\t\"ETHERTYPE_LAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETHERTYPE_LBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LITTLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOGICRAFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"33096\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_MATRA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32890\", token.INT, 0)),\n\t\t\"ETHERTYPE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ETHERTYPE_MERIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32892\", token.INT, 0)),\n\t\t\"ETHERTYPE_MICP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34618\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPDL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOTOROLA\":                reflect.ValueOf(constant.MakeFromLiteral(\"33165\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS_MCAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETHERTYPE_MUMPS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33087\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15364\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLAIM\":                reflect.ValueOf(constant.MakeFromLiteral(\"15369\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLREQ\":                reflect.ValueOf(constant.MakeFromLiteral(\"15365\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLRSP\":                reflect.ValueOf(constant.MakeFromLiteral(\"15366\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCREQ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15362\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCRSP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15363\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15367\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDGB\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15368\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDLTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15370\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15372\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15371\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15373\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPSCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15361\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPVCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15360\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2050\", token.INT, 0)),\n\t\t\"ETHERTYPE_NCD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33097\", token.INT, 0)),\n\t\t\"ETHERTYPE_NESTAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32774\", token.INT, 0)),\n\t\t\"ETHERTYPE_NETBEUI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33169\", token.INT, 0)),\n\t\t\"ETHERTYPE_NOVELL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33080\", token.INT, 0)),\n\t\t\"ETHERTYPE_NS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1537\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSCOMPAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2055\", token.INT, 0)),\n\t\t\"ETHERTYPE_NTRAILER\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28679\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9NET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28681\", token.INT, 0)),\n\t\t\"ETHERTYPE_PACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32966\", token.INT, 0)),\n\t\t\"ETHERTYPE_PAE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETHERTYPE_PCS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16962\", token.INT, 0)),\n\t\t\"ETHERTYPE_PLANNING\":                reflect.ValueOf(constant.MakeFromLiteral(\"32836\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34827\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOEDISC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETHERTYPE_PRIMENTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28721\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUPAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_RACAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28720\", token.INT, 0)),\n\t\t\"ETHERTYPE_RATIONAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"33104\", token.INT, 0)),\n\t\t\"ETHERTYPE_RAWFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25945\", token.INT, 0)),\n\t\t\"ETHERTYPE_RCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6549\", token.INT, 0)),\n\t\t\"ETHERTYPE_RDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34617\", token.INT, 0)),\n\t\t\"ETHERTYPE_RETIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33010\", token.INT, 0)),\n\t\t\"ETHERTYPE_REVARP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETHERTYPE_SCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECTRA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34523\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECUREDATA\":              reflect.ValueOf(constant.MakeFromLiteral(\"34669\", token.INT, 0)),\n\t\t\"ETHERTYPE_SGITW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33150\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_BOUNCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32790\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_DIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32787\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_NETGAMES\":             reflect.ValueOf(constant.MakeFromLiteral(\"32788\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_RESV\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32789\", token.INT, 0)),\n\t\t\"ETHERTYPE_SIMNET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21000\", token.INT, 0)),\n\t\t\"ETHERTYPE_SLOWPROTOCOLS\":           reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32981\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33100\", token.INT, 0)),\n\t\t\"ETHERTYPE_SONIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64245\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPIDER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32927\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPRITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"ETHERTYPE_STP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33153\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARIS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33067\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARISMC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34091\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPCOMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34667\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36866\", token.INT, 0)),\n\t\t\"ETHERTYPE_TEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33103\", token.INT, 0)),\n\t\t\"ETHERTYPE_TIGAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32815\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRANSETHER\":              reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETHERTYPE_TYMSHARE\":                reflect.ValueOf(constant.MakeFromLiteral(\"32814\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBBST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28677\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDEBUG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2304\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDIAGLOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"28674\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28672\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNIU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28673\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNMC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28675\", token.INT, 0)),\n\t\t\"ETHERTYPE_VALID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5632\", token.INT, 0)),\n\t\t\"ETHERTYPE_VARIAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VAXELN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32827\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEECO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32871\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEXP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32859\", token.INT, 0)),\n\t\t\"ETHERTYPE_VGLAB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33073\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESECHO\":               reflect.ValueOf(constant.MakeFromLiteral(\"2991\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESLOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"2990\", token.INT, 0)),\n\t\t\"ETHERTYPE_VITAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65280\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLTLMAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32896\", token.INT, 0)),\n\t\t\"ETHERTYPE_VPROD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32860\", token.INT, 0)),\n\t\t\"ETHERTYPE_VURESERVED\":              reflect.ValueOf(constant.MakeFromLiteral(\"33095\", token.INT, 0)),\n\t\t\"ETHERTYPE_WATERLOO\":                reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_WELLFLEET\":               reflect.ValueOf(constant.MakeFromLiteral(\"33027\", token.INT, 0)),\n\t\t\"ETHERTYPE_X25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETHERTYPE_X75\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2049\", token.INT, 0)),\n\t\t\"ETHERTYPE_XNSSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36865\", token.INT, 0)),\n\t\t\"ETHERTYPE_XTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33149\", token.INT, 0)),\n\t\t\"ETHER_ADDR_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETHER_CRC_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_BE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79764918\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_LE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3988292384\", token.INT, 0)),\n\t\t\"ETHER_HDR_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1518\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN_JUMBO\":               reflect.ValueOf(constant.MakeFromLiteral(\"9018\", token.INT, 0)),\n\t\t\"ETHER_MIN_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ETHER_PPPOE_ENCAP_LEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETHER_TYPE_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_VLAN_ENCAP_LEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETIME\":                             reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_CLOSEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_FSCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"F_FSDIRMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1879048192\", token.INT, 0)),\n\t\t\"F_FSIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"F_FSINOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"805306368\", token.INT, 0)),\n\t\t\"F_FSOUT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"F_FSPRIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"F_FSVOID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETNOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_MAXFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_PARAM_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"F_PARAM_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETNOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36690\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAMCHANNEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LINEGROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_PON155\":                        reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"IFT_PON622\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_Q2931\":                         reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SIPSIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"IFT_SIPTG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TELINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VIRTUALTG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"IFT_VOICEDID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEEMFGD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFGDEANA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERCABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6_ICMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VRRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_EF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ERRORMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINFRAGSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_SPACEAVAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_16MB\":                reflect.ValueOf(constant.MakeFromLiteral(\"402653184\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_1TB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"671088640\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_256TB\":               reflect.ValueOf(constant.MakeFromLiteral(\"805306368\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_4GB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_64KB\":                reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_64PB\":                reflect.ValueOf(constant.MakeFromLiteral(\"939524096\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_SHIFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_INHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_INHERIT_COPY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_DEFAULT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_DONATE_COPY\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_INHERIT_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_INHERIT_SHARE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_TRYFIXED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_WIRED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_BCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CONTROLMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_IOVUSRSPACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"MSG_LENUSRSPACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"MSG_MCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_NAMEMBUF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MSG_NBIO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_USERFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"511\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_OIFLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_OOIFLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OFIOGETBMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221513850\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_ALT_IO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_DSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOSIGPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PRI_IOFLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_TAG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_TAG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_ANNOUNCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_CLONED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_MASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_SRC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_CHGADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_LLINFO_UPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_OIFINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_OOIFINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_SETGATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_CREDS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                            reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947761\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150658570\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860636\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947762\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150658571\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156947737\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947785\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860638\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223087483\", token.INT, 0)),\n\t\t\"SIOCGETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3230689784\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222566196\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222566195\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3230689569\", token.INT, 0)),\n\t\t\"SIOCGIFADDRPREF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3230951712\", token.INT, 0)),\n\t\t\"SIOCGIFALIAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3225446683\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689571\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349622\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221776678\", token.INT, 0)),\n\t\t\"SIOCGIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3230951813\", token.INT, 0)),\n\t\t\"SIOCGIFDLT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3230689655\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689570\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3230689553\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689594\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873846\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3230689559\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3230689662\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689573\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3230689608\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3230689607\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3239602461\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3239602507\", token.INT, 0)),\n\t\t\"SIOCGLINKSTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223087495\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3230689667\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947834\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947833\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222038904\", token.INT, 0)),\n\t\t\"SIOCINITIFADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3225708932\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149345659\", token.INT, 0)),\n\t\t\"SIOCSETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947959\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156947724\", token.INT, 0)),\n\t\t\"SIOCSIFADDRPREF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2157209887\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947731\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607797\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947726\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947728\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947769\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3230689589\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947736\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2156947839\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947734\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2165860682\", token.INT, 0)),\n\t\t\"SIOCSLINKSTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149345672\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3230689666\", token.INT, 0)),\n\t\t\"SIOCZIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3230951814\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_FLAGS_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"SOCK_NOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ACCEPTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_NOHEADER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_OVERFLOWED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYSCTL_VERSION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_0\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_MASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BREAK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"454\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXTATTRCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"462\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"463\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"464\", token.INT, 0)),\n\t\t\"SYS_FCHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FEXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"465\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"380\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"SYS_FKTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"383\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"377\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"440\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"466\", token.INT, 0)),\n\t\t\"SYS_FSTATVFS1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FSYNC_RANGE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMENS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"472\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS_GETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"395\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"445\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"418\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETVFSSTAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"378\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_KQUEUE1\":                       reflect.ValueOf(constant.MakeFromLiteral(\"455\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_LCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"379\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"457\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"381\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"382\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"441\", token.INT, 0)),\n\t\t\"SYS_LUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"461\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"459\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"460\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MODCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"444\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_NTP_ADJTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_NTP_GETTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"468\", token.INT, 0)),\n\t\t\"SYS_PACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"456\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"453\", token.INT, 0)),\n\t\t\"SYS_PMC_CONTROL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_PMC_GET_INFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_POLLTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"437\", token.INT, 0)),\n\t\t\"SYS_POSIX_FADVISE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_POSIX_SPAWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"474\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_PSET_ASSIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_PSET_CREATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_PSET_DESTROY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_RASCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"469\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"475\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"458\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_SEMCONFIG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"476\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"419\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"375\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"443\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGQUEUEINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SSTK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_STAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_STATVFS1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_SWAPCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"470\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":              reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"447\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"446\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"471\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"467\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"420\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_UUIDGEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_VADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"449\", token.INT, 0)),\n\t\t\"SYS_WAIT6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"481\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS__LWP_CONTINUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS__LWP_CREATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS__LWP_CTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS__LWP_DETACH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS__LWP_EXIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS__LWP_GETNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS__LWP_GETPRIVATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS__LWP_KILL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS__LWP_PARK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS__LWP_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS__LWP_SETNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS__LWP_SETPRIVATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS__LWP_SUSPEND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS__LWP_UNPARK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS__LWP_UNPARK_ALL\":               reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS__LWP_WAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS__LWP_WAKEUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS__PSET_BIND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS__SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS__SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS__SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS__SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS___CLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS___GETLOGIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS___POSIX_CHOWN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS___POSIX_FCHOWN\":                reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS___POSIX_LCHOWN\":                reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS___POSIX_RENAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS___QUOTACTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"473\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"442\", token.INT, 0)),\n\t\t\"SYS___SETLOGIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS___SIGACTION_SIGTRAMP\":          reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS___SIGTIMEDWAIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_ARCH1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"S_ARCH2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFWHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"57344\", token.INT, 0)),\n\t\t\"S_IREAD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISTXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CONGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_KEEPINIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDCDTIMESTAMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074558040\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLAG_CDTRCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCFLAG_CLOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCFLAG_CRTSCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCFLAG_MDMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCFLAG_SOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033757\", token.INT, 0)),\n\t\t\"TIOCGLINED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1075868738\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGQSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033793\", token.INT, 0)),\n\t\t\"TIOCGRANTPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536900679\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1208513606\", token.INT, 0)),\n\t\t\"TIOCPTSNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1208513608\", token.INT, 0)),\n\t\t\"TIOCRCVFRAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147775557\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775580\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900703\", token.INT, 0)),\n\t\t\"TIOCSLINED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149610563\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSQSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775616\", token.INT, 0)),\n\t\t\"TIOCSSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775589\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TIOCXMTFRAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147775556\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WALL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WALLSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WALTSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCLONE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"WNOZOMBIE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"WOPTSCHECKED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                   reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                  reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":               reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                  reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfTimeval\":               reflect.ValueOf((*syscall.BpfTimeval)(nil)),\n\t\t\"BpfVersion\":               reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                  reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                     reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":               reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                   reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                    reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                    reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                  reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                     reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":             reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                   reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":              reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                 reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":         reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                   reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                 reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":             reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":     reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":         reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"Iovec\":                    reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                 reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                   reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Mclpool\":                  reflect.ValueOf((*syscall.Mclpool)(nil)),\n\t\t\"Msghdr\":                   reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                 reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                  reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":              reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":           reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":      reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":         reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":         reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":          reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                   reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":             reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":           reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                 reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                   reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                   reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                 reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":         reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":            reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":            reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":             reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":     reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                   reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                 reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":              reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Sysctlnode\":               reflect.ValueOf((*syscall.Sysctlnode)(nil)),\n\t\t\"Termios\":                  reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                 reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                  reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":               reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_netbsd_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_ARP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IEEE80211\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"AF_MPLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FRELAY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_STRIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B460800\":                           reflect.ValueOf(constant.MakeFromLiteral(\"460800\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B921600\":                           reflect.ValueOf(constant.MakeFromLiteral(\"921600\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFEEDBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222291063\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1083196011\", token.INT, 0)),\n\t\t\"BIOCGFEEDBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020988\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074807419\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020984\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1082147439\", token.INT, 0)),\n\t\t\"BIOCGSTATSOLD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762806\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2156937836\", token.INT, 0)),\n\t\t\"BIOCSFEEDBACK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148549242\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762809\", token.INT, 0)),\n\t\t\"BIOCSTCPF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148549234\", token.INT, 0)),\n\t\t\"BIOCSUDPF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148549235\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT32\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DFLTBUFSIZE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CLONE_CSIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CLONE_FILES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CLONE_FS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CLONE_PID\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CLONE_PTRACE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CLONE_SIGHAND\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CLONE_VFORK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CLONE_VM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CTL_QUERY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DIOCBSFLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536896632\", token.INT, 0)),\n\t\t\"DLT_A429\":                          reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"DLT_A653_ICM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"DLT_AIRONET_HEADER\":                reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_AOS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":        reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_AX25_KISS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4\":              reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"DLT_BLUETOOTH_HCI_H4_WITH_PHDR\":    reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"DLT_CAN20B\":                        reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"DLT_CAN_SOCKETCAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_C_HDLC_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"DLT_DECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FC_2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"DLT_FC_2_WITH_FRAME_DELIMS\":        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FLEXRAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_FRELAY_WITH_DIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                         reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                         reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_ABIS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"218\", token.INT, 0)),\n\t\t\"DLT_GSMTAP_UM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"217\", token.INT, 0)),\n\t\t\"DLT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":          reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_LINUX\":            reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"DLT_IEEE802_15_4_NONASK_PHY\":       reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS\":            reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"DLT_IEEE802_16_MAC_CPS_RADIO\":      reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"DLT_IPMB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"DLT_IPMB_LINUX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPV4\":                          reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"DLT_IPV6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"229\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":                  reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":                  reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ISM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":               reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":              reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":             reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":              reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_VP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"DLT_LAPB_WITH_DIR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"DLT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"DLT_LIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"DLT_LINUX_EVDEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MFR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"DLT_MOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PPP_WITH_DIR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAIF1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RAWAF_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35913728\", token.INT, 0)),\n\t\t\"DLT_RIO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SITA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":             reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"DLT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"DLT_USB_LINUX_MMAPPED\":             reflect.ValueOf(constant.MakeFromLiteral(\"220\", token.INT, 0)),\n\t\t\"DLT_WIHART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"DLT_X2E_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"DLT_X2E_XORAYA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"214\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DT_WHT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                         reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"EMUL_LINUX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_LINUX32\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"EMUL_MAXID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODATA\":                           reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                           reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                             reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                            reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETHERCAP_JUMBO_MTU\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERCAP_VLAN_HWTAGGING\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHERCAP_VLAN_MTU\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ETHERMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"ETHERMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1500\", token.INT, 0)),\n\t\t\"ETHERMTU_JUMBO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9000\", token.INT, 0)),\n\t\t\"ETHERTYPE_8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERTYPE_AARP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETHERTYPE_ACCTON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33680\", token.INT, 0)),\n\t\t\"ETHERTYPE_AEONIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32822\", token.INT, 0)),\n\t\t\"ETHERTYPE_ALPHA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33098\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMBER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24584\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMOEBA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33093\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33015\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLODOMAIN\":            reflect.ValueOf(constant.MakeFromLiteral(\"32793\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLETALK\":               reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLITEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"32967\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARGONAUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"32826\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETHERTYPE_AT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATALK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATOMIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34527\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32873\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATTSTANFORD\":             reflect.ValueOf(constant.MakeFromLiteral(\"32776\", token.INT, 0)),\n\t\t\"ETHERTYPE_AUTOPHON\":                reflect.ValueOf(constant.MakeFromLiteral(\"32874\", token.INT, 0)),\n\t\t\"ETHERTYPE_AXIS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34902\", token.INT, 0)),\n\t\t\"ETHERTYPE_BCLOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36867\", token.INT, 0)),\n\t\t\"ETHERTYPE_BOFL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33026\", token.INT, 0)),\n\t\t\"ETHERTYPE_CABLETRON\":               reflect.ValueOf(constant.MakeFromLiteral(\"28724\", token.INT, 0)),\n\t\t\"ETHERTYPE_CHAOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2052\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMDESIGN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32876\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMPUGRAPHIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"32877\", token.INT, 0)),\n\t\t\"ETHERTYPE_COUNTERPOINT\":            reflect.ValueOf(constant.MakeFromLiteral(\"32866\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32772\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUSVLN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32771\", token.INT, 0)),\n\t\t\"ETHERTYPE_DCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4660\", token.INT, 0)),\n\t\t\"ETHERTYPE_DDE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32891\", token.INT, 0)),\n\t\t\"ETHERTYPE_DEBNI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43690\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32840\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECCUST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32828\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32830\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECEXPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32833\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLTM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32831\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECMUMPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"24585\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECNETBIOS\":              reflect.ValueOf(constant.MakeFromLiteral(\"32832\", token.INT, 0)),\n\t\t\"ETHERTYPE_DELTACON\":                reflect.ValueOf(constant.MakeFromLiteral(\"34526\", token.INT, 0)),\n\t\t\"ETHERTYPE_DIDDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17185\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG1\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1632\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1633\", token.INT, 0)),\n\t\t\"ETHERTYPE_DN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETHERTYPE_DOGFIGHT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6537\", token.INT, 0)),\n\t\t\"ETHERTYPE_DSMD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32825\", token.INT, 0)),\n\t\t\"ETHERTYPE_ECMA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2051\", token.INT, 0)),\n\t\t\"ETHERTYPE_ENCRYPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32829\", token.INT, 0)),\n\t\t\"ETHERTYPE_ES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32861\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXCELAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32784\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXPERDATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"32841\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33094\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLOWCONTROL\":             reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETHERTYPE_FRARP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2056\", token.INT, 0)),\n\t\t\"ETHERTYPE_GENDYN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32872\", token.INT, 0)),\n\t\t\"ETHERTYPE_HAYES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_HIPPI_FP\":                reflect.ValueOf(constant.MakeFromLiteral(\"33152\", token.INT, 0)),\n\t\t\"ETHERTYPE_HITACHI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34848\", token.INT, 0)),\n\t\t\"ETHERTYPE_HP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32773\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUPAT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19522\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBLDIAG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16972\", token.INT, 0)),\n\t\t\"ETHERTYPE_IP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPAS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34668\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPXNEW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32823\", token.INT, 0)),\n\t\t\"ETHERTYPE_KALPANA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34178\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANBRIDGE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32824\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANPROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"34952\", token.INT, 0)),\n\t\t\"ETHERTYPE_LAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETHERTYPE_LBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LITTLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOGICRAFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"33096\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_MATRA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32890\", token.INT, 0)),\n\t\t\"ETHERTYPE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ETHERTYPE_MERIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32892\", token.INT, 0)),\n\t\t\"ETHERTYPE_MICP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34618\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPDL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOTOROLA\":                reflect.ValueOf(constant.MakeFromLiteral(\"33165\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS_MCAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETHERTYPE_MUMPS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33087\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15364\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLAIM\":                reflect.ValueOf(constant.MakeFromLiteral(\"15369\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLREQ\":                reflect.ValueOf(constant.MakeFromLiteral(\"15365\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLRSP\":                reflect.ValueOf(constant.MakeFromLiteral(\"15366\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCREQ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15362\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCRSP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15363\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15367\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDGB\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15368\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDLTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15370\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15372\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15371\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15373\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPSCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15361\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPVCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15360\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2050\", token.INT, 0)),\n\t\t\"ETHERTYPE_NCD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33097\", token.INT, 0)),\n\t\t\"ETHERTYPE_NESTAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32774\", token.INT, 0)),\n\t\t\"ETHERTYPE_NETBEUI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33169\", token.INT, 0)),\n\t\t\"ETHERTYPE_NOVELL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33080\", token.INT, 0)),\n\t\t\"ETHERTYPE_NS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1537\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSCOMPAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2055\", token.INT, 0)),\n\t\t\"ETHERTYPE_NTRAILER\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28679\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9NET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28681\", token.INT, 0)),\n\t\t\"ETHERTYPE_PACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32966\", token.INT, 0)),\n\t\t\"ETHERTYPE_PAE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETHERTYPE_PCS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16962\", token.INT, 0)),\n\t\t\"ETHERTYPE_PLANNING\":                reflect.ValueOf(constant.MakeFromLiteral(\"32836\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34827\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOEDISC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETHERTYPE_PRIMENTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28721\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUPAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_RACAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28720\", token.INT, 0)),\n\t\t\"ETHERTYPE_RATIONAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"33104\", token.INT, 0)),\n\t\t\"ETHERTYPE_RAWFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25945\", token.INT, 0)),\n\t\t\"ETHERTYPE_RCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6549\", token.INT, 0)),\n\t\t\"ETHERTYPE_RDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34617\", token.INT, 0)),\n\t\t\"ETHERTYPE_RETIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33010\", token.INT, 0)),\n\t\t\"ETHERTYPE_REVARP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETHERTYPE_SCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECTRA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34523\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECUREDATA\":              reflect.ValueOf(constant.MakeFromLiteral(\"34669\", token.INT, 0)),\n\t\t\"ETHERTYPE_SGITW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33150\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_BOUNCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32790\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_DIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32787\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_NETGAMES\":             reflect.ValueOf(constant.MakeFromLiteral(\"32788\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_RESV\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32789\", token.INT, 0)),\n\t\t\"ETHERTYPE_SIMNET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21000\", token.INT, 0)),\n\t\t\"ETHERTYPE_SLOWPROTOCOLS\":           reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32981\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33100\", token.INT, 0)),\n\t\t\"ETHERTYPE_SONIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64245\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPIDER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32927\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPRITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"ETHERTYPE_STP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33153\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARIS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33067\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARISMC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34091\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPCOMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34667\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36866\", token.INT, 0)),\n\t\t\"ETHERTYPE_TEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33103\", token.INT, 0)),\n\t\t\"ETHERTYPE_TIGAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32815\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRANSETHER\":              reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETHERTYPE_TYMSHARE\":                reflect.ValueOf(constant.MakeFromLiteral(\"32814\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBBST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28677\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDEBUG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2304\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDIAGLOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"28674\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28672\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNIU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28673\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNMC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28675\", token.INT, 0)),\n\t\t\"ETHERTYPE_VALID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5632\", token.INT, 0)),\n\t\t\"ETHERTYPE_VARIAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VAXELN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32827\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEECO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32871\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEXP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32859\", token.INT, 0)),\n\t\t\"ETHERTYPE_VGLAB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33073\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESECHO\":               reflect.ValueOf(constant.MakeFromLiteral(\"2991\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESLOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"2990\", token.INT, 0)),\n\t\t\"ETHERTYPE_VITAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65280\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLTLMAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32896\", token.INT, 0)),\n\t\t\"ETHERTYPE_VPROD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32860\", token.INT, 0)),\n\t\t\"ETHERTYPE_VURESERVED\":              reflect.ValueOf(constant.MakeFromLiteral(\"33095\", token.INT, 0)),\n\t\t\"ETHERTYPE_WATERLOO\":                reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_WELLFLEET\":               reflect.ValueOf(constant.MakeFromLiteral(\"33027\", token.INT, 0)),\n\t\t\"ETHERTYPE_X25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETHERTYPE_X75\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2049\", token.INT, 0)),\n\t\t\"ETHERTYPE_XNSSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36865\", token.INT, 0)),\n\t\t\"ETHERTYPE_XTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33149\", token.INT, 0)),\n\t\t\"ETHER_ADDR_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETHER_CRC_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_BE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79764918\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_LE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3988292384\", token.INT, 0)),\n\t\t\"ETHER_HDR_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1518\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN_JUMBO\":               reflect.ValueOf(constant.MakeFromLiteral(\"9018\", token.INT, 0)),\n\t\t\"ETHER_MIN_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ETHER_PPPOE_ENCAP_LEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ETHER_TYPE_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_VLAN_ENCAP_LEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETIME\":                             reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_CLOSEM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_FSCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"-2147483648\", token.INT, 0)),\n\t\t\"F_FSDIRMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1879048192\", token.INT, 0)),\n\t\t\"F_FSIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"F_FSINOUT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"805306368\", token.INT, 0)),\n\t\t\"F_FSOUT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"F_FSPRIV\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"F_FSVOID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETNOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_MAXFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_PARAM_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"F_PARAM_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETNOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36690\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAMCHANNEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LINEGROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_PON155\":                        reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"IFT_PON622\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_Q2931\":                         reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SIPSIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"IFT_SIPTG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_STF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"215\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TELINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VIRTUALTG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"IFT_VOICEDID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEEMFGD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFGDEANA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERCABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6_ICMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_VRRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPSEC_POLICY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_EF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_ERRORMTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPSEC_POLICY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINFRAGSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_SPACEAVAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_16MB\":                reflect.ValueOf(constant.MakeFromLiteral(\"402653184\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_1TB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"671088640\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_256TB\":               reflect.ValueOf(constant.MakeFromLiteral(\"805306368\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_4GB\":                 reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_64KB\":                reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_64PB\":                reflect.ValueOf(constant.MakeFromLiteral(\"939524096\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-16777216\", token.INT, 0)),\n\t\t\"MAP_ALIGNMENT_SHIFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_INHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_INHERIT_COPY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_DEFAULT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_DONATE_COPY\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_INHERIT_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_INHERIT_SHARE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"MAP_TRYFIXED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_WIRED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_BCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CONTROLMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_IOVUSRSPACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"MSG_LENUSRSPACE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"MSG_MCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_NAMEMBUF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"MSG_NBIO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_USERFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"511\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_OIFLIST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_OOIFLIST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OFIOGETBMAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221513850\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_ALT_IO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_DSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOSIGPIPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PRI_IOFLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_TAG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_TAG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_ANNOUNCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_CLONED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_MASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_SRC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_CHGADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_LLINFO_UPD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_OIFINFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_OOIFINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_SETGATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_CREDS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                            reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947761\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151182858\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860636\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947762\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2151182859\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156947737\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947785\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2165860638\", token.INT, 0)),\n\t\t\"SIOCGDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873915\", token.INT, 0)),\n\t\t\"SIOCGETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3230689784\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223352628\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223876915\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3230689569\", token.INT, 0)),\n\t\t\"SIOCGIFADDRPREF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3231213856\", token.INT, 0)),\n\t\t\"SIOCGIFALIAS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3225446683\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689571\", token.INT, 0)),\n\t\t\"SIOCGIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349622\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222300966\", token.INT, 0)),\n\t\t\"SIOCGIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3231213957\", token.INT, 0)),\n\t\t\"SIOCGIFDLT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3230689655\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689570\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3230689553\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689594\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3224398134\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3230689559\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3230689662\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3230689573\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3230689608\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3230689607\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3239602461\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3239602507\", token.INT, 0)),\n\t\t\"SIOCGLINKSTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873927\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3230689667\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947834\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947833\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222301048\", token.INT, 0)),\n\t\t\"SIOCINITIFADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3228592516\", token.INT, 0)),\n\t\t\"SIOCSDRVSPEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132091\", token.INT, 0)),\n\t\t\"SIOCSETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947959\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156947724\", token.INT, 0)),\n\t\t\"SIOCSIFADDRPREF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2157472031\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947731\", token.INT, 0)),\n\t\t\"SIOCSIFCAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607797\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947726\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2156947728\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947769\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3230689589\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2156947736\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2156947839\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2156947734\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2165860682\", token.INT, 0)),\n\t\t\"SIOCSLINKSTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132104\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3230689666\", token.INT, 0)),\n\t\t\"SIOCZIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3231213958\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_FLAGS_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"SOCK_NOSIGPIPE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ACCEPTFILTER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_NOHEADER\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"SO_NOSIGPIPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_OVERFLOWED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYSCTL_VERSION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_0\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"SYSCTL_VERS_MASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"421\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_BREAK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"429\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"427\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"428\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"454\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_EXTATTRCTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"360\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FD\":             reflect.ValueOf(constant.MakeFromLiteral(\"366\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_FILE\":           reflect.ValueOf(constant.MakeFromLiteral(\"363\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_DELETE_LINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"369\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"365\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"362\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_GET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"368\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FD\":               reflect.ValueOf(constant.MakeFromLiteral(\"370\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_FILE\":             reflect.ValueOf(constant.MakeFromLiteral(\"371\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_LIST_LINK\":             reflect.ValueOf(constant.MakeFromLiteral(\"372\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FD\":                reflect.ValueOf(constant.MakeFromLiteral(\"364\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_FILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"361\", token.INT, 0)),\n\t\t\"SYS_EXTATTR_SET_LINK\":              reflect.ValueOf(constant.MakeFromLiteral(\"367\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"462\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"463\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"464\", token.INT, 0)),\n\t\t\"SYS_FCHROOT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FDATASYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"SYS_FEXECVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"465\", token.INT, 0)),\n\t\t\"SYS_FGETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"380\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"451\", token.INT, 0)),\n\t\t\"SYS_FKTRACE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_FLISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"383\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FREMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"386\", token.INT, 0)),\n\t\t\"SYS_FSETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"377\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"440\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"466\", token.INT, 0)),\n\t\t\"SYS_FSTATVFS1\":                     reflect.ValueOf(constant.MakeFromLiteral(\"358\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FSYNC_RANGE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"354\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMENS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"472\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"423\", token.INT, 0)),\n\t\t\"SYS_GETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"307\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"390\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"395\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"426\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"445\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"418\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_GETVFSSTAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"356\", token.INT, 0)),\n\t\t\"SYS_GETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"378\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"435\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"344\", token.INT, 0)),\n\t\t\"SYS_KQUEUE1\":                       reflect.ValueOf(constant.MakeFromLiteral(\"455\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS_LCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"274\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"275\", token.INT, 0)),\n\t\t\"SYS_LGETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"379\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"457\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LISTXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"381\", token.INT, 0)),\n\t\t\"SYS_LLISTXATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"382\", token.INT, 0)),\n\t\t\"SYS_LREMOVEXATTR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"385\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSETXATTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"376\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"441\", token.INT, 0)),\n\t\t\"SYS_LUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"424\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"273\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"461\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"459\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"450\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"460\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MODCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"410\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MREMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"411\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"444\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"430\", token.INT, 0)),\n\t\t\"SYS_NTP_ADJTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"SYS_NTP_GETTIME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"468\", token.INT, 0)),\n\t\t\"SYS_PACCEPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"456\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"453\", token.INT, 0)),\n\t\t\"SYS_PMC_CONTROL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"342\", token.INT, 0)),\n\t\t\"SYS_PMC_GET_INFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"341\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_POLLTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"437\", token.INT, 0)),\n\t\t\"SYS_POSIX_FADVISE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"416\", token.INT, 0)),\n\t\t\"SYS_POSIX_SPAWN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"474\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"436\", token.INT, 0)),\n\t\t\"SYS_PSET_ASSIGN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"414\", token.INT, 0)),\n\t\t\"SYS_PSET_CREATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"412\", token.INT, 0)),\n\t\t\"SYS_PSET_DESTROY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"413\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_RASCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"343\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"469\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"475\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_REMOVEXATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"384\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"458\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"350\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"417\", token.INT, 0)),\n\t\t\"SYS_SEMCONFIG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"223\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"222\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"476\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETCONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"308\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"425\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"419\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SETXATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"375\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"443\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"231\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGQUEUEINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"394\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_SSTK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_STAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"439\", token.INT, 0)),\n\t\t\"SYS_STATVFS1\":                      reflect.ValueOf(constant.MakeFromLiteral(\"357\", token.INT, 0)),\n\t\t\"SYS_SWAPCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"470\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_TIMER_CREATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"235\", token.INT, 0)),\n\t\t\"SYS_TIMER_DELETE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETOVERRUN\":              reflect.ValueOf(constant.MakeFromLiteral(\"239\", token.INT, 0)),\n\t\t\"SYS_TIMER_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"447\", token.INT, 0)),\n\t\t\"SYS_TIMER_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"446\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNDELETE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"471\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"467\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"420\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"306\", token.INT, 0)),\n\t\t\"SYS_UUIDGEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"355\", token.INT, 0)),\n\t\t\"SYS_VADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"449\", token.INT, 0)),\n\t\t\"SYS_WAIT6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"481\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS__LWP_CONTINUE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS__LWP_CREATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"309\", token.INT, 0)),\n\t\t\"SYS__LWP_CTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS__LWP_DETACH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS__LWP_EXIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS__LWP_GETNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS__LWP_GETPRIVATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"316\", token.INT, 0)),\n\t\t\"SYS__LWP_KILL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS__LWP_PARK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"434\", token.INT, 0)),\n\t\t\"SYS__LWP_SELF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS__LWP_SETNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS__LWP_SETPRIVATE\":               reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS__LWP_SUSPEND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS__LWP_UNPARK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS__LWP_UNPARK_ALL\":               reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS__LWP_WAIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"312\", token.INT, 0)),\n\t\t\"SYS__LWP_WAKEUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS__PSET_BIND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"415\", token.INT, 0)),\n\t\t\"SYS__SCHED_GETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"349\", token.INT, 0)),\n\t\t\"SYS__SCHED_GETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"347\", token.INT, 0)),\n\t\t\"SYS__SCHED_SETAFFINITY\":            reflect.ValueOf(constant.MakeFromLiteral(\"348\", token.INT, 0)),\n\t\t\"SYS__SCHED_SETPARAM\":               reflect.ValueOf(constant.MakeFromLiteral(\"346\", token.INT, 0)),\n\t\t\"SYS___CLONE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS___GETLOGIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS___POSIX_CHOWN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS___POSIX_FCHOWN\":                reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS___POSIX_LCHOWN\":                reflect.ValueOf(constant.MakeFromLiteral(\"285\", token.INT, 0)),\n\t\t\"SYS___POSIX_RENAME\":                reflect.ValueOf(constant.MakeFromLiteral(\"270\", token.INT, 0)),\n\t\t\"SYS___QUOTACTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"473\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"442\", token.INT, 0)),\n\t\t\"SYS___SETLOGIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS___SIGACTION_SIGTRAMP\":          reflect.ValueOf(constant.MakeFromLiteral(\"340\", token.INT, 0)),\n\t\t\"SYS___SIGTIMEDWAIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"431\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"S_ARCH1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"S_ARCH2\":                           reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"S_BLKSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IEXEC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFWHT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"57344\", token.INT, 0)),\n\t\t\"S_IREAD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISTXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_LOGIN_SET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_CONGCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_KEEPINIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_MINMSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"216\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDCDTIMESTAMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074820184\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLAG_CDTRCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCFLAG_CLOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCFLAG_CRTSCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCFLAG_MDMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCFLAG_SOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033757\", token.INT, 0)),\n\t\t\"TIOCGLINED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1075868738\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGQSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033793\", token.INT, 0)),\n\t\t\"TIOCGRANTPT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536900679\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCPTMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1076393030\", token.INT, 0)),\n\t\t\"TIOCPTSNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1076393032\", token.INT, 0)),\n\t\t\"TIOCRCVFRAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148037701\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775580\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"536900703\", token.INT, 0)),\n\t\t\"TIOCSLINED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149610563\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSQSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775616\", token.INT, 0)),\n\t\t\"TIOCSSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775589\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TIOCXMTFRAME\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148037700\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WALL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WALLSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WALTSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCLONE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOWAIT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"WNOZOMBIE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"WOPTSCHECKED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                   reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                  reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":               reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                  reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfTimeval\":               reflect.ValueOf((*syscall.BpfTimeval)(nil)),\n\t\t\"BpfVersion\":               reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                  reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                     reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":               reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                   reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                    reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                    reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                  reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                     reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":             reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                   reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":              reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                 reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":         reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                   reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                 reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":             reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":     reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":         reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"Iovec\":                    reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                 reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                   reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Mclpool\":                  reflect.ValueOf((*syscall.Mclpool)(nil)),\n\t\t\"Msghdr\":                   reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                 reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                  reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":              reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":           reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":      reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":         reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":         reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":          reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                   reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":             reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":           reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                 reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                   reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                   reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                 reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":         reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":            reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":            reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":             reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":     reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                   reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                 reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":              reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Sysctlnode\":               reflect.ValueOf((*syscall.Sysctlnode)(nil)),\n\t\t\"Termios\":                  reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                 reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                  reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":               reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_openbsd_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ENCAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_KEY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_MPLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FRELAY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDIRFILT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020988\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3221766779\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGFILDROP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020984\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020979\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074545262\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887926\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDIRFILT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762810\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148024935\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSETWF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148024951\", token.INT, 0)),\n\t\t\"BIOCSFILDROP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762809\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147762802\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148287085\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIRECTION_IN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_DIRECTION_OUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DIOCOSFPFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536888398\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EIPSEC\":                            reflect.ValueOf(syscall.EIPSEC),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                       reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMT_TAGOVF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_ENABLED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_NATIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENDRUNDISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOMEDIUM\":                         reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETHERMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"ETHERMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1500\", token.INT, 0)),\n\t\t\"ETHERTYPE_8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERTYPE_AARP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETHERTYPE_ACCTON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33680\", token.INT, 0)),\n\t\t\"ETHERTYPE_AEONIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32822\", token.INT, 0)),\n\t\t\"ETHERTYPE_ALPHA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33098\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMBER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24584\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMOEBA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33093\", token.INT, 0)),\n\t\t\"ETHERTYPE_AOE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33015\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLODOMAIN\":            reflect.ValueOf(constant.MakeFromLiteral(\"32793\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLETALK\":               reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLITEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"32967\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARGONAUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"32826\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETHERTYPE_AT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATALK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATOMIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34527\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32873\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATTSTANFORD\":             reflect.ValueOf(constant.MakeFromLiteral(\"32776\", token.INT, 0)),\n\t\t\"ETHERTYPE_AUTOPHON\":                reflect.ValueOf(constant.MakeFromLiteral(\"32874\", token.INT, 0)),\n\t\t\"ETHERTYPE_AXIS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34902\", token.INT, 0)),\n\t\t\"ETHERTYPE_BCLOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36867\", token.INT, 0)),\n\t\t\"ETHERTYPE_BOFL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33026\", token.INT, 0)),\n\t\t\"ETHERTYPE_CABLETRON\":               reflect.ValueOf(constant.MakeFromLiteral(\"28724\", token.INT, 0)),\n\t\t\"ETHERTYPE_CHAOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2052\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMDESIGN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32876\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMPUGRAPHIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"32877\", token.INT, 0)),\n\t\t\"ETHERTYPE_COUNTERPOINT\":            reflect.ValueOf(constant.MakeFromLiteral(\"32866\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32772\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUSVLN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32771\", token.INT, 0)),\n\t\t\"ETHERTYPE_DCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4660\", token.INT, 0)),\n\t\t\"ETHERTYPE_DDE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32891\", token.INT, 0)),\n\t\t\"ETHERTYPE_DEBNI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43690\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32840\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECCUST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32828\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32830\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECEXPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32833\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLTM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32831\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECMUMPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"24585\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECNETBIOS\":              reflect.ValueOf(constant.MakeFromLiteral(\"32832\", token.INT, 0)),\n\t\t\"ETHERTYPE_DELTACON\":                reflect.ValueOf(constant.MakeFromLiteral(\"34526\", token.INT, 0)),\n\t\t\"ETHERTYPE_DIDDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17185\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG1\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1632\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1633\", token.INT, 0)),\n\t\t\"ETHERTYPE_DN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETHERTYPE_DOGFIGHT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6537\", token.INT, 0)),\n\t\t\"ETHERTYPE_DSMD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32825\", token.INT, 0)),\n\t\t\"ETHERTYPE_ECMA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2051\", token.INT, 0)),\n\t\t\"ETHERTYPE_ENCRYPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32829\", token.INT, 0)),\n\t\t\"ETHERTYPE_ES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32861\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXCELAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32784\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXPERDATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"32841\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33094\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLOWCONTROL\":             reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETHERTYPE_FRARP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2056\", token.INT, 0)),\n\t\t\"ETHERTYPE_GENDYN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32872\", token.INT, 0)),\n\t\t\"ETHERTYPE_HAYES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_HIPPI_FP\":                reflect.ValueOf(constant.MakeFromLiteral(\"33152\", token.INT, 0)),\n\t\t\"ETHERTYPE_HITACHI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34848\", token.INT, 0)),\n\t\t\"ETHERTYPE_HP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32773\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUPAT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19522\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBLDIAG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16972\", token.INT, 0)),\n\t\t\"ETHERTYPE_IP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPAS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34668\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPXNEW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32823\", token.INT, 0)),\n\t\t\"ETHERTYPE_KALPANA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34178\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANBRIDGE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32824\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANPROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"34952\", token.INT, 0)),\n\t\t\"ETHERTYPE_LAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETHERTYPE_LBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LITTLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LLDP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35020\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOGICRAFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"33096\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_MATRA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32890\", token.INT, 0)),\n\t\t\"ETHERTYPE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ETHERTYPE_MERIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32892\", token.INT, 0)),\n\t\t\"ETHERTYPE_MICP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34618\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPDL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOTOROLA\":                reflect.ValueOf(constant.MakeFromLiteral(\"33165\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS_MCAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETHERTYPE_MUMPS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33087\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15364\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLAIM\":                reflect.ValueOf(constant.MakeFromLiteral(\"15369\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLREQ\":                reflect.ValueOf(constant.MakeFromLiteral(\"15365\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLRSP\":                reflect.ValueOf(constant.MakeFromLiteral(\"15366\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCREQ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15362\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCRSP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15363\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15367\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDGB\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15368\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDLTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15370\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15372\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15371\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15373\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPSCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15361\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPVCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15360\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2050\", token.INT, 0)),\n\t\t\"ETHERTYPE_NCD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33097\", token.INT, 0)),\n\t\t\"ETHERTYPE_NESTAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32774\", token.INT, 0)),\n\t\t\"ETHERTYPE_NETBEUI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33169\", token.INT, 0)),\n\t\t\"ETHERTYPE_NOVELL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33080\", token.INT, 0)),\n\t\t\"ETHERTYPE_NS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1537\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSCOMPAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2055\", token.INT, 0)),\n\t\t\"ETHERTYPE_NTRAILER\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28679\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9NET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28681\", token.INT, 0)),\n\t\t\"ETHERTYPE_PACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32966\", token.INT, 0)),\n\t\t\"ETHERTYPE_PAE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETHERTYPE_PCS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16962\", token.INT, 0)),\n\t\t\"ETHERTYPE_PLANNING\":                reflect.ValueOf(constant.MakeFromLiteral(\"32836\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34827\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOEDISC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETHERTYPE_PRIMENTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28721\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUPAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_QINQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETHERTYPE_RACAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28720\", token.INT, 0)),\n\t\t\"ETHERTYPE_RATIONAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"33104\", token.INT, 0)),\n\t\t\"ETHERTYPE_RAWFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25945\", token.INT, 0)),\n\t\t\"ETHERTYPE_RCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6549\", token.INT, 0)),\n\t\t\"ETHERTYPE_RDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34617\", token.INT, 0)),\n\t\t\"ETHERTYPE_RETIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33010\", token.INT, 0)),\n\t\t\"ETHERTYPE_REVARP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETHERTYPE_SCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECTRA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34523\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECUREDATA\":              reflect.ValueOf(constant.MakeFromLiteral(\"34669\", token.INT, 0)),\n\t\t\"ETHERTYPE_SGITW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33150\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_BOUNCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32790\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_DIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32787\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_NETGAMES\":             reflect.ValueOf(constant.MakeFromLiteral(\"32788\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_RESV\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32789\", token.INT, 0)),\n\t\t\"ETHERTYPE_SIMNET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21000\", token.INT, 0)),\n\t\t\"ETHERTYPE_SLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32981\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33100\", token.INT, 0)),\n\t\t\"ETHERTYPE_SONIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64245\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPIDER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32927\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPRITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"ETHERTYPE_STP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33153\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARIS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33067\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARISMC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34091\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPCOMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34667\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36866\", token.INT, 0)),\n\t\t\"ETHERTYPE_TEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33103\", token.INT, 0)),\n\t\t\"ETHERTYPE_TIGAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32815\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRANSETHER\":              reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETHERTYPE_TYMSHARE\":                reflect.ValueOf(constant.MakeFromLiteral(\"32814\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBBST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28677\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDEBUG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2304\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDIAGLOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"28674\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28672\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNIU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28673\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNMC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28675\", token.INT, 0)),\n\t\t\"ETHERTYPE_VALID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5632\", token.INT, 0)),\n\t\t\"ETHERTYPE_VARIAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VAXELN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32827\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEECO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32871\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEXP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32859\", token.INT, 0)),\n\t\t\"ETHERTYPE_VGLAB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33073\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESECHO\":               reflect.ValueOf(constant.MakeFromLiteral(\"2991\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESLOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"2990\", token.INT, 0)),\n\t\t\"ETHERTYPE_VITAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65280\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLTLMAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32896\", token.INT, 0)),\n\t\t\"ETHERTYPE_VPROD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32860\", token.INT, 0)),\n\t\t\"ETHERTYPE_VURESERVED\":              reflect.ValueOf(constant.MakeFromLiteral(\"33095\", token.INT, 0)),\n\t\t\"ETHERTYPE_WATERLOO\":                reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_WELLFLEET\":               reflect.ValueOf(constant.MakeFromLiteral(\"33027\", token.INT, 0)),\n\t\t\"ETHERTYPE_X25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETHERTYPE_X75\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2049\", token.INT, 0)),\n\t\t\"ETHERTYPE_XNSSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36865\", token.INT, 0)),\n\t\t\"ETHERTYPE_XTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33149\", token.INT, 0)),\n\t\t\"ETHER_ADDR_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETHER_ALIGN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_CRC_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_BE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79764918\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_LE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3988292384\", token.INT, 0)),\n\t\t\"ETHER_HDR_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"ETHER_MAX_DIX_LEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1518\", token.INT, 0)),\n\t\t\"ETHER_MIN_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ETHER_TYPE_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_VLAN_ENCAP_LEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                         reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36434\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAMCHANNEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DUMMY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"IFT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LINEGROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_PON155\":                        reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"IFT_PON622\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_Q2931\":                         reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SIPSIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"IFT_SIPTG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TELINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VIRTUALTG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"IFT_VOICEDID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEEMFGD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFGDEANA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERCABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_RFC3021_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_RFC3021_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967294\", token.INT, 0)),\n\t\t\"IN_RFC3021_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT_INIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT_RESP\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_AUTH_LEVEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_ESP_NETWORK_LEVEL\":            reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_ESP_TRANS_LEVEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPCOMP_LEVEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_OPTIONS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PIPEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTPORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTABLE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_AUTH_LEVEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DIVERTFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_ESP_NETWORK_LEVEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_ESP_TRANS_LEVEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPCOMP_LEVEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IP_IPSECFLOWINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_AUTH\":               reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_CRED\":               reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_ID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_AUTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_CRED\":              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_ID\":                reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PIPEX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVDSTPORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RTABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LCNT_OVERLOAD_FLUSH\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_SPACEAVAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_FLAGMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8183\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_INHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_INHERIT_COPY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_DONATE_COPY\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_INHERIT_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_INHERIT_SHARE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_NOEXTEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_TRYFIXED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_BCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_MCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_STATS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_TABLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EOF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_DSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PF_FLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PT_MASK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4190208\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_SRCMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_LABEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_SRC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTA_SRCMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_ANNOUNCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_CLONED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1112072\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_MASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MPATH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PERMANENT_ARP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_SOURCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_USETRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DESYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MAXSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RT_TABLEID_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHR\":                            reflect.ValueOf(syscall.SIGTHR),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCAIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149869959\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2182637852\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCBRDGADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2153015612\", token.INT, 0)),\n\t\t\"SIOCBRDGADDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2153015617\", token.INT, 0)),\n\t\t\"SIOCBRDGARL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2154719565\", token.INT, 0)),\n\t\t\"SIOCBRDGDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2166909255\", token.INT, 0)),\n\t\t\"SIOCBRDGDEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2153015613\", token.INT, 0)),\n\t\t\"SIOCBRDGDELS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2153015618\", token.INT, 0)),\n\t\t\"SIOCBRDGFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2153015624\", token.INT, 0)),\n\t\t\"SIOCBRDGFRL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2154719566\", token.INT, 0)),\n\t\t\"SIOCBRDGGCACHE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222563137\", token.INT, 0)),\n\t\t\"SIOCBRDGGFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563154\", token.INT, 0)),\n\t\t\"SIOCBRDGGHT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563153\", token.INT, 0)),\n\t\t\"SIOCBRDGGIFFLGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3226757438\", token.INT, 0)),\n\t\t\"SIOCBRDGGMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563155\", token.INT, 0)),\n\t\t\"SIOCBRDGGPARAM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3225184600\", token.INT, 0)),\n\t\t\"SIOCBRDGGPRI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222563152\", token.INT, 0)),\n\t\t\"SIOCBRDGGRL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223873871\", token.INT, 0)),\n\t\t\"SIOCBRDGGSIFS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3226757436\", token.INT, 0)),\n\t\t\"SIOCBRDGGTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563142\", token.INT, 0)),\n\t\t\"SIOCBRDGIFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3226757442\", token.INT, 0)),\n\t\t\"SIOCBRDGRTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222825283\", token.INT, 0)),\n\t\t\"SIOCBRDGSADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3240651076\", token.INT, 0)),\n\t\t\"SIOCBRDGSCACHE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2148821312\", token.INT, 0)),\n\t\t\"SIOCBRDGSFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821330\", token.INT, 0)),\n\t\t\"SIOCBRDGSHT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821329\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFCOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153015637\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFFLGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153015615\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFPRIO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153015636\", token.INT, 0)),\n\t\t\"SIOCBRDGSMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821331\", token.INT, 0)),\n\t\t\"SIOCBRDGSPRI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148821328\", token.INT, 0)),\n\t\t\"SIOCBRDGSPROTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2148821338\", token.INT, 0)),\n\t\t\"SIOCBRDGSTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821317\", token.INT, 0)),\n\t\t\"SIOCBRDGSTXHC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148821337\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149869961\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607753\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2182637854\", token.INT, 0)),\n\t\t\"SIOCGETKALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222825380\", token.INT, 0)),\n\t\t\"SIOCGETLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607834\", token.INT, 0)),\n\t\t\"SIOCGETPFLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349758\", token.INT, 0)),\n\t\t\"SIOCGETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349752\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222566196\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222566195\", token.INT, 0)),\n\t\t\"SIOCGETVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349648\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFASYNCMAP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221776676\", token.INT, 0)),\n\t\t\"SIOCGIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349531\", token.INT, 0)),\n\t\t\"SIOCGIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349633\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223611787\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFGMEMB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223611786\", token.INT, 0)),\n\t\t\"SIOCGIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223611784\", token.INT, 0)),\n\t\t\"SIOCGIFHARDMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349669\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873846\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349630\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349660\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFRDOMAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349664\", token.INT, 0)),\n\t\t\"SIOCGIFRTLABEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349635\", token.INT, 0)),\n\t\t\"SIOCGIFTIMESLOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349638\", token.INT, 0)),\n\t\t\"SIOCGIFXFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349662\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3256379677\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3256379723\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYRTABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3223349666\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349673\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGSPPPPARAMS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349652\", token.INT, 0)),\n\t\t\"SIOCGVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3223349750\", token.INT, 0)),\n\t\t\"SIOCGVNETID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349671\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607802\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222038904\", token.INT, 0)),\n\t\t\"SIOCSETKALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149083555\", token.INT, 0)),\n\t\t\"SIOCSETLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607833\", token.INT, 0)),\n\t\t\"SIOCSETPFLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607933\", token.INT, 0)),\n\t\t\"SIOCSETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607927\", token.INT, 0)),\n\t\t\"SIOCSETVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607823\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFASYNCMAP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607805\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607808\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149869964\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607711\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607807\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSIFPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607835\", token.INT, 0)),\n\t\t\"SIOCSIFRDOMAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607839\", token.INT, 0)),\n\t\t\"SIOCSIFRTLABEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607810\", token.INT, 0)),\n\t\t\"SIOCSIFTIMESLOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607813\", token.INT, 0)),\n\t\t\"SIOCSIFXFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607837\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2182637898\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYRTABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2149607841\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607848\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSSPPPPARAMS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607827\", token.INT, 0)),\n\t\t\"SIOCSVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3223349749\", token.INT, 0)),\n\t\t\"SIOCSVNETID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607846\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_BINDANY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_NETPROC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4128\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_RTABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_SPLICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4131\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJFREQ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSEFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_FHSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMENS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_GETDTABLECOUNT\":                reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTHRID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MQUERY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NFSSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_OBREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_STAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_SWAPCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS___GET_TCB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS___SET_TCB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS___TFORK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS___THREXIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS___THRSIGDIVERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS___THRSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS___THRWAKEUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                          reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"236\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_NSTATES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_SACK_ENABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLAG_CLOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCFLAG_CRTSCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCFLAG_MDMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCFLAG_PPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCFLAG_SOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033757\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074558043\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775580\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775583\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775589\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148037722\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WALTSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                   reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                  reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":               reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                  reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfTimeval\":               reflect.ValueOf((*syscall.BpfTimeval)(nil)),\n\t\t\"BpfVersion\":               reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                  reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                     reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":               reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                   reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                    reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                    reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                  reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                     reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":             reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                   reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":              reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                 reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":         reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                   reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                 reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":             reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":     reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":         reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"Iovec\":                    reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                 reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                   reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Mclpool\":                  reflect.ValueOf((*syscall.Mclpool)(nil)),\n\t\t\"Msghdr\":                   reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                 reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                  reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":              reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":           reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":      reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":         reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":         reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":          reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                   reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":             reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":           reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                 reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                   reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                   reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                 reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":         reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":            reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":            reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":             reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":     reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                   reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                 reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":              reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                  reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                 reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                  reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":               reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_openbsd_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ENCAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_KEY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_MPLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FRELAY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDIRFILT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020988\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222291067\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGFILDROP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020984\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020979\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887926\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDIRFILT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762810\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSETWF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148549239\", token.INT, 0)),\n\t\t\"BIOCSFILDROP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762809\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147762802\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIRECTION_IN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_DIRECTION_OUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DIOCOSFPFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536888398\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EIPSEC\":                            reflect.ValueOf(syscall.EIPSEC),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                       reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMT_TAGOVF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_ENABLED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_NATIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENDRUNDISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOMEDIUM\":                         reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETHERMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"ETHERMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1500\", token.INT, 0)),\n\t\t\"ETHERTYPE_8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERTYPE_AARP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETHERTYPE_ACCTON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33680\", token.INT, 0)),\n\t\t\"ETHERTYPE_AEONIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32822\", token.INT, 0)),\n\t\t\"ETHERTYPE_ALPHA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33098\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMBER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24584\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMOEBA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33093\", token.INT, 0)),\n\t\t\"ETHERTYPE_AOE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33015\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLODOMAIN\":            reflect.ValueOf(constant.MakeFromLiteral(\"32793\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLETALK\":               reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLITEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"32967\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARGONAUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"32826\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETHERTYPE_AT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATALK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATOMIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34527\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32873\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATTSTANFORD\":             reflect.ValueOf(constant.MakeFromLiteral(\"32776\", token.INT, 0)),\n\t\t\"ETHERTYPE_AUTOPHON\":                reflect.ValueOf(constant.MakeFromLiteral(\"32874\", token.INT, 0)),\n\t\t\"ETHERTYPE_AXIS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34902\", token.INT, 0)),\n\t\t\"ETHERTYPE_BCLOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36867\", token.INT, 0)),\n\t\t\"ETHERTYPE_BOFL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33026\", token.INT, 0)),\n\t\t\"ETHERTYPE_CABLETRON\":               reflect.ValueOf(constant.MakeFromLiteral(\"28724\", token.INT, 0)),\n\t\t\"ETHERTYPE_CHAOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2052\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMDESIGN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32876\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMPUGRAPHIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"32877\", token.INT, 0)),\n\t\t\"ETHERTYPE_COUNTERPOINT\":            reflect.ValueOf(constant.MakeFromLiteral(\"32866\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32772\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUSVLN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32771\", token.INT, 0)),\n\t\t\"ETHERTYPE_DCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4660\", token.INT, 0)),\n\t\t\"ETHERTYPE_DDE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32891\", token.INT, 0)),\n\t\t\"ETHERTYPE_DEBNI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43690\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32840\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECCUST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32828\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32830\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECEXPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32833\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLTM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32831\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECMUMPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"24585\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECNETBIOS\":              reflect.ValueOf(constant.MakeFromLiteral(\"32832\", token.INT, 0)),\n\t\t\"ETHERTYPE_DELTACON\":                reflect.ValueOf(constant.MakeFromLiteral(\"34526\", token.INT, 0)),\n\t\t\"ETHERTYPE_DIDDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17185\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG1\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1632\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1633\", token.INT, 0)),\n\t\t\"ETHERTYPE_DN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETHERTYPE_DOGFIGHT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6537\", token.INT, 0)),\n\t\t\"ETHERTYPE_DSMD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32825\", token.INT, 0)),\n\t\t\"ETHERTYPE_ECMA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2051\", token.INT, 0)),\n\t\t\"ETHERTYPE_ENCRYPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32829\", token.INT, 0)),\n\t\t\"ETHERTYPE_ES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32861\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXCELAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32784\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXPERDATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"32841\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33094\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLOWCONTROL\":             reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETHERTYPE_FRARP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2056\", token.INT, 0)),\n\t\t\"ETHERTYPE_GENDYN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32872\", token.INT, 0)),\n\t\t\"ETHERTYPE_HAYES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_HIPPI_FP\":                reflect.ValueOf(constant.MakeFromLiteral(\"33152\", token.INT, 0)),\n\t\t\"ETHERTYPE_HITACHI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34848\", token.INT, 0)),\n\t\t\"ETHERTYPE_HP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32773\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUPAT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19522\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBLDIAG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16972\", token.INT, 0)),\n\t\t\"ETHERTYPE_IP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPAS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34668\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPXNEW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32823\", token.INT, 0)),\n\t\t\"ETHERTYPE_KALPANA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34178\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANBRIDGE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32824\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANPROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"34952\", token.INT, 0)),\n\t\t\"ETHERTYPE_LAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETHERTYPE_LBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LITTLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LLDP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35020\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOGICRAFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"33096\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_MATRA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32890\", token.INT, 0)),\n\t\t\"ETHERTYPE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ETHERTYPE_MERIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32892\", token.INT, 0)),\n\t\t\"ETHERTYPE_MICP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34618\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPDL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOTOROLA\":                reflect.ValueOf(constant.MakeFromLiteral(\"33165\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS_MCAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETHERTYPE_MUMPS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33087\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15364\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLAIM\":                reflect.ValueOf(constant.MakeFromLiteral(\"15369\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLREQ\":                reflect.ValueOf(constant.MakeFromLiteral(\"15365\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLRSP\":                reflect.ValueOf(constant.MakeFromLiteral(\"15366\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCREQ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15362\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCRSP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15363\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15367\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDGB\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15368\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDLTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15370\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15372\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15371\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15373\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPSCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15361\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPVCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15360\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2050\", token.INT, 0)),\n\t\t\"ETHERTYPE_NCD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33097\", token.INT, 0)),\n\t\t\"ETHERTYPE_NESTAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32774\", token.INT, 0)),\n\t\t\"ETHERTYPE_NETBEUI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33169\", token.INT, 0)),\n\t\t\"ETHERTYPE_NOVELL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33080\", token.INT, 0)),\n\t\t\"ETHERTYPE_NS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1537\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSCOMPAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2055\", token.INT, 0)),\n\t\t\"ETHERTYPE_NTRAILER\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28679\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9NET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28681\", token.INT, 0)),\n\t\t\"ETHERTYPE_PACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32966\", token.INT, 0)),\n\t\t\"ETHERTYPE_PAE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETHERTYPE_PCS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16962\", token.INT, 0)),\n\t\t\"ETHERTYPE_PLANNING\":                reflect.ValueOf(constant.MakeFromLiteral(\"32836\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34827\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOEDISC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETHERTYPE_PRIMENTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28721\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUPAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_QINQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETHERTYPE_RACAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28720\", token.INT, 0)),\n\t\t\"ETHERTYPE_RATIONAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"33104\", token.INT, 0)),\n\t\t\"ETHERTYPE_RAWFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25945\", token.INT, 0)),\n\t\t\"ETHERTYPE_RCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6549\", token.INT, 0)),\n\t\t\"ETHERTYPE_RDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34617\", token.INT, 0)),\n\t\t\"ETHERTYPE_RETIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33010\", token.INT, 0)),\n\t\t\"ETHERTYPE_REVARP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETHERTYPE_SCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECTRA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34523\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECUREDATA\":              reflect.ValueOf(constant.MakeFromLiteral(\"34669\", token.INT, 0)),\n\t\t\"ETHERTYPE_SGITW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33150\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_BOUNCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32790\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_DIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32787\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_NETGAMES\":             reflect.ValueOf(constant.MakeFromLiteral(\"32788\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_RESV\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32789\", token.INT, 0)),\n\t\t\"ETHERTYPE_SIMNET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21000\", token.INT, 0)),\n\t\t\"ETHERTYPE_SLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32981\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33100\", token.INT, 0)),\n\t\t\"ETHERTYPE_SONIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64245\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPIDER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32927\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPRITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"ETHERTYPE_STP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33153\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARIS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33067\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARISMC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34091\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPCOMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34667\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36866\", token.INT, 0)),\n\t\t\"ETHERTYPE_TEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33103\", token.INT, 0)),\n\t\t\"ETHERTYPE_TIGAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32815\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRANSETHER\":              reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETHERTYPE_TYMSHARE\":                reflect.ValueOf(constant.MakeFromLiteral(\"32814\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBBST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28677\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDEBUG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2304\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDIAGLOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"28674\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28672\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNIU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28673\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNMC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28675\", token.INT, 0)),\n\t\t\"ETHERTYPE_VALID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5632\", token.INT, 0)),\n\t\t\"ETHERTYPE_VARIAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VAXELN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32827\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEECO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32871\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEXP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32859\", token.INT, 0)),\n\t\t\"ETHERTYPE_VGLAB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33073\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESECHO\":               reflect.ValueOf(constant.MakeFromLiteral(\"2991\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESLOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"2990\", token.INT, 0)),\n\t\t\"ETHERTYPE_VITAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65280\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLTLMAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32896\", token.INT, 0)),\n\t\t\"ETHERTYPE_VPROD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32860\", token.INT, 0)),\n\t\t\"ETHERTYPE_VURESERVED\":              reflect.ValueOf(constant.MakeFromLiteral(\"33095\", token.INT, 0)),\n\t\t\"ETHERTYPE_WATERLOO\":                reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_WELLFLEET\":               reflect.ValueOf(constant.MakeFromLiteral(\"33027\", token.INT, 0)),\n\t\t\"ETHERTYPE_X25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETHERTYPE_X75\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2049\", token.INT, 0)),\n\t\t\"ETHERTYPE_XNSSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36865\", token.INT, 0)),\n\t\t\"ETHERTYPE_XTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33149\", token.INT, 0)),\n\t\t\"ETHER_ADDR_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETHER_ALIGN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_CRC_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_BE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79764918\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_LE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3988292384\", token.INT, 0)),\n\t\t\"ETHER_HDR_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"ETHER_MAX_DIX_LEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1518\", token.INT, 0)),\n\t\t\"ETHER_MIN_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ETHER_TYPE_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_VLAN_ENCAP_LEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_OK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                         reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36434\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAMCHANNEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DUMMY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"IFT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LINEGROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_PON155\":                        reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"IFT_PON622\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_Q2931\":                         reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SIPSIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"IFT_SIPTG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TELINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VIRTUALTG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"IFT_VOICEDID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEEMFGD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFGDEANA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERCABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_RFC3021_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_RFC3021_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967294\", token.INT, 0)),\n\t\t\"IN_RFC3021_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT_INIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT_RESP\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_AUTH_LEVEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_ESP_NETWORK_LEVEL\":            reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_ESP_TRANS_LEVEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPCOMP_LEVEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_OPTIONS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PIPEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTPORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTABLE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_AUTH_LEVEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DIVERTFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_ESP_NETWORK_LEVEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_ESP_TRANS_LEVEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPCOMP_LEVEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IP_IPSECFLOWINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_AUTH\":               reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_CRED\":               reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_ID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_AUTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_CRED\":              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_ID\":                reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PIPEX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVDSTPORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RTABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LCNT_OVERLOAD_FLUSH\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_SPACEAVAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_FLAGMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8183\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_INHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_INHERIT_COPY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_DONATE_COPY\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_INHERIT_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_INHERIT_SHARE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_NOEXTEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_TRYFIXED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_BCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_MCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_STATS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_TABLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EOF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_DSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PF_FLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_SRCMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_LABEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_SRC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTA_SRCMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_ANNOUNCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_CLONED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1112072\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_MASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MPATH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PERMANENT_ARP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_SOURCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_USETRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DESYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MAXSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RT_TABLEID_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHR\":                            reflect.ValueOf(syscall.SIGTHR),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCAIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132103\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2182637852\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCBRDGADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2153277756\", token.INT, 0)),\n\t\t\"SIOCBRDGADDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2153277761\", token.INT, 0)),\n\t\t\"SIOCBRDGARL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2154719565\", token.INT, 0)),\n\t\t\"SIOCBRDGDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2166909255\", token.INT, 0)),\n\t\t\"SIOCBRDGDEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2153277757\", token.INT, 0)),\n\t\t\"SIOCBRDGDELS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2153277762\", token.INT, 0)),\n\t\t\"SIOCBRDGFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2153277768\", token.INT, 0)),\n\t\t\"SIOCBRDGFRL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2154719566\", token.INT, 0)),\n\t\t\"SIOCBRDGGCACHE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222563137\", token.INT, 0)),\n\t\t\"SIOCBRDGGFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563154\", token.INT, 0)),\n\t\t\"SIOCBRDGGHT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563153\", token.INT, 0)),\n\t\t\"SIOCBRDGGIFFLGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3227019582\", token.INT, 0)),\n\t\t\"SIOCBRDGGMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563155\", token.INT, 0)),\n\t\t\"SIOCBRDGGPARAM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3225446744\", token.INT, 0)),\n\t\t\"SIOCBRDGGPRI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222563152\", token.INT, 0)),\n\t\t\"SIOCBRDGGRL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3224398159\", token.INT, 0)),\n\t\t\"SIOCBRDGGSIFS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3227019580\", token.INT, 0)),\n\t\t\"SIOCBRDGGTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563142\", token.INT, 0)),\n\t\t\"SIOCBRDGIFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3227019586\", token.INT, 0)),\n\t\t\"SIOCBRDGRTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349571\", token.INT, 0)),\n\t\t\"SIOCBRDGSADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3240651076\", token.INT, 0)),\n\t\t\"SIOCBRDGSCACHE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2148821312\", token.INT, 0)),\n\t\t\"SIOCBRDGSFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821330\", token.INT, 0)),\n\t\t\"SIOCBRDGSHT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821329\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFCOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153277781\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFFLGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153277759\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFPRIO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153277780\", token.INT, 0)),\n\t\t\"SIOCBRDGSMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821331\", token.INT, 0)),\n\t\t\"SIOCBRDGSPRI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148821328\", token.INT, 0)),\n\t\t\"SIOCBRDGSPROTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2148821338\", token.INT, 0)),\n\t\t\"SIOCBRDGSTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821317\", token.INT, 0)),\n\t\t\"SIOCBRDGSTXHC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148821337\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132105\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607753\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2182637854\", token.INT, 0)),\n\t\t\"SIOCGETKALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222825380\", token.INT, 0)),\n\t\t\"SIOCGETLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607834\", token.INT, 0)),\n\t\t\"SIOCGETPFLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349758\", token.INT, 0)),\n\t\t\"SIOCGETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349752\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223352628\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223876915\", token.INT, 0)),\n\t\t\"SIOCGETVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349648\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFASYNCMAP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222300964\", token.INT, 0)),\n\t\t\"SIOCGIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349531\", token.INT, 0)),\n\t\t\"SIOCGIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349633\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873931\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFGMEMB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873930\", token.INT, 0)),\n\t\t\"SIOCGIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873928\", token.INT, 0)),\n\t\t\"SIOCGIFHARDMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349669\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3224398134\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349630\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349660\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFRDOMAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349664\", token.INT, 0)),\n\t\t\"SIOCGIFRTLABEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349635\", token.INT, 0)),\n\t\t\"SIOCGIFTIMESLOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349638\", token.INT, 0)),\n\t\t\"SIOCGIFXFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349662\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3256379677\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3256379723\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYRTABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3223349666\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349673\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGSPPPPARAMS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349652\", token.INT, 0)),\n\t\t\"SIOCGVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3223349750\", token.INT, 0)),\n\t\t\"SIOCGVNETID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349671\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607802\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222301048\", token.INT, 0)),\n\t\t\"SIOCSETKALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149083555\", token.INT, 0)),\n\t\t\"SIOCSETLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607833\", token.INT, 0)),\n\t\t\"SIOCSETPFLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607933\", token.INT, 0)),\n\t\t\"SIOCSETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607927\", token.INT, 0)),\n\t\t\"SIOCSETVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607823\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFASYNCMAP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607805\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607808\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132108\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607711\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607807\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSIFPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607835\", token.INT, 0)),\n\t\t\"SIOCSIFRDOMAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607839\", token.INT, 0)),\n\t\t\"SIOCSIFRTLABEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607810\", token.INT, 0)),\n\t\t\"SIOCSIFTIMESLOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607813\", token.INT, 0)),\n\t\t\"SIOCSIFXFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607837\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2182637898\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYRTABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2149607841\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607848\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSSPPPPARAMS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607827\", token.INT, 0)),\n\t\t\"SIOCSVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3223349749\", token.INT, 0)),\n\t\t\"SIOCSVNETID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607846\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_BINDANY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_NETPROC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4128\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_RTABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_SPLICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4131\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJFREQ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSEFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_FHSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMENS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_GETDTABLECOUNT\":                reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTHRID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MQUERY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NFSSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_OBREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_STAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_SWAPCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS___GET_TCB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS___SET_TCB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS___TFORK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS___THREXIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS___THRSIGDIVERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS___THRSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS___THRWAKEUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                          reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"224\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_NSTATES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_SACK_ENABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLAG_CLOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCFLAG_CRTSCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCFLAG_MDMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCFLAG_PPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCFLAG_SOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033757\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074820187\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775580\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775583\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775589\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148037722\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WALTSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WSTOPPED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                   reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                  reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":               reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                  reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfTimeval\":               reflect.ValueOf((*syscall.BpfTimeval)(nil)),\n\t\t\"BpfVersion\":               reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                  reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                     reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":               reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                   reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                    reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                    reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                  reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                     reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":             reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                   reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":              reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                 reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":         reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                   reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                 reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":             reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":     reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":         reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"Iovec\":                    reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                 reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                   reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Mclpool\":                  reflect.ValueOf((*syscall.Mclpool)(nil)),\n\t\t\"Msghdr\":                   reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                 reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                  reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":              reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":           reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":      reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":         reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":         reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":          reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                   reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":             reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":           reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                 reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                   reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                   reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                 reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":         reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":            reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":            reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":             reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":     reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                   reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                 reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":              reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                  reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                 reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                  reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":               reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_openbsd_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ENCAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_KEY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_MPLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FRELAY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDIRFILT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020988\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3221766779\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGFILDROP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020984\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020979\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074545262\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887926\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDIRFILT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762810\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148024935\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSETWF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148024951\", token.INT, 0)),\n\t\t\"BIOCSFILDROP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762809\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147762802\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148287085\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIRECTION_IN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_DIRECTION_OUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DIOCOSFPFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536888398\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EIPSEC\":                            reflect.ValueOf(syscall.EIPSEC),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                       reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMT_TAGOVF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_ENABLED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_NATIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENDRUNDISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOMEDIUM\":                         reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETHERMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"ETHERMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1500\", token.INT, 0)),\n\t\t\"ETHERTYPE_8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERTYPE_AARP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETHERTYPE_ACCTON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33680\", token.INT, 0)),\n\t\t\"ETHERTYPE_AEONIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32822\", token.INT, 0)),\n\t\t\"ETHERTYPE_ALPHA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33098\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMBER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24584\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMOEBA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33093\", token.INT, 0)),\n\t\t\"ETHERTYPE_AOE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33015\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLODOMAIN\":            reflect.ValueOf(constant.MakeFromLiteral(\"32793\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLETALK\":               reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLITEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"32967\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARGONAUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"32826\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETHERTYPE_AT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATALK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATOMIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34527\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32873\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATTSTANFORD\":             reflect.ValueOf(constant.MakeFromLiteral(\"32776\", token.INT, 0)),\n\t\t\"ETHERTYPE_AUTOPHON\":                reflect.ValueOf(constant.MakeFromLiteral(\"32874\", token.INT, 0)),\n\t\t\"ETHERTYPE_AXIS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34902\", token.INT, 0)),\n\t\t\"ETHERTYPE_BCLOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36867\", token.INT, 0)),\n\t\t\"ETHERTYPE_BOFL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33026\", token.INT, 0)),\n\t\t\"ETHERTYPE_CABLETRON\":               reflect.ValueOf(constant.MakeFromLiteral(\"28724\", token.INT, 0)),\n\t\t\"ETHERTYPE_CHAOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2052\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMDESIGN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32876\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMPUGRAPHIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"32877\", token.INT, 0)),\n\t\t\"ETHERTYPE_COUNTERPOINT\":            reflect.ValueOf(constant.MakeFromLiteral(\"32866\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32772\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUSVLN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32771\", token.INT, 0)),\n\t\t\"ETHERTYPE_DCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4660\", token.INT, 0)),\n\t\t\"ETHERTYPE_DDE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32891\", token.INT, 0)),\n\t\t\"ETHERTYPE_DEBNI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43690\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32840\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECCUST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32828\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32830\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECEXPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32833\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLTM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32831\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECMUMPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"24585\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECNETBIOS\":              reflect.ValueOf(constant.MakeFromLiteral(\"32832\", token.INT, 0)),\n\t\t\"ETHERTYPE_DELTACON\":                reflect.ValueOf(constant.MakeFromLiteral(\"34526\", token.INT, 0)),\n\t\t\"ETHERTYPE_DIDDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17185\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG1\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1632\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1633\", token.INT, 0)),\n\t\t\"ETHERTYPE_DN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETHERTYPE_DOGFIGHT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6537\", token.INT, 0)),\n\t\t\"ETHERTYPE_DSMD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32825\", token.INT, 0)),\n\t\t\"ETHERTYPE_ECMA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2051\", token.INT, 0)),\n\t\t\"ETHERTYPE_ENCRYPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32829\", token.INT, 0)),\n\t\t\"ETHERTYPE_ES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32861\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXCELAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32784\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXPERDATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"32841\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33094\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLOWCONTROL\":             reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETHERTYPE_FRARP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2056\", token.INT, 0)),\n\t\t\"ETHERTYPE_GENDYN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32872\", token.INT, 0)),\n\t\t\"ETHERTYPE_HAYES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_HIPPI_FP\":                reflect.ValueOf(constant.MakeFromLiteral(\"33152\", token.INT, 0)),\n\t\t\"ETHERTYPE_HITACHI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34848\", token.INT, 0)),\n\t\t\"ETHERTYPE_HP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32773\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUPAT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19522\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBLDIAG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16972\", token.INT, 0)),\n\t\t\"ETHERTYPE_IP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPAS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34668\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPXNEW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32823\", token.INT, 0)),\n\t\t\"ETHERTYPE_KALPANA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34178\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANBRIDGE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32824\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANPROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"34952\", token.INT, 0)),\n\t\t\"ETHERTYPE_LAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETHERTYPE_LBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LITTLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LLDP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35020\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOGICRAFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"33096\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_MATRA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32890\", token.INT, 0)),\n\t\t\"ETHERTYPE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ETHERTYPE_MERIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32892\", token.INT, 0)),\n\t\t\"ETHERTYPE_MICP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34618\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPDL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOTOROLA\":                reflect.ValueOf(constant.MakeFromLiteral(\"33165\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS_MCAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETHERTYPE_MUMPS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33087\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15364\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLAIM\":                reflect.ValueOf(constant.MakeFromLiteral(\"15369\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLREQ\":                reflect.ValueOf(constant.MakeFromLiteral(\"15365\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLRSP\":                reflect.ValueOf(constant.MakeFromLiteral(\"15366\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCREQ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15362\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCRSP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15363\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15367\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDGB\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15368\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDLTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15370\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15372\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15371\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15373\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPSCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15361\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPVCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15360\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2050\", token.INT, 0)),\n\t\t\"ETHERTYPE_NCD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33097\", token.INT, 0)),\n\t\t\"ETHERTYPE_NESTAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32774\", token.INT, 0)),\n\t\t\"ETHERTYPE_NETBEUI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33169\", token.INT, 0)),\n\t\t\"ETHERTYPE_NOVELL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33080\", token.INT, 0)),\n\t\t\"ETHERTYPE_NS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1537\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSCOMPAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2055\", token.INT, 0)),\n\t\t\"ETHERTYPE_NTRAILER\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28679\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9NET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28681\", token.INT, 0)),\n\t\t\"ETHERTYPE_PACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32966\", token.INT, 0)),\n\t\t\"ETHERTYPE_PAE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETHERTYPE_PCS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16962\", token.INT, 0)),\n\t\t\"ETHERTYPE_PLANNING\":                reflect.ValueOf(constant.MakeFromLiteral(\"32836\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34827\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOEDISC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETHERTYPE_PRIMENTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28721\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUPAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_QINQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETHERTYPE_RACAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28720\", token.INT, 0)),\n\t\t\"ETHERTYPE_RATIONAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"33104\", token.INT, 0)),\n\t\t\"ETHERTYPE_RAWFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25945\", token.INT, 0)),\n\t\t\"ETHERTYPE_RCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6549\", token.INT, 0)),\n\t\t\"ETHERTYPE_RDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34617\", token.INT, 0)),\n\t\t\"ETHERTYPE_RETIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33010\", token.INT, 0)),\n\t\t\"ETHERTYPE_REVARP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETHERTYPE_SCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECTRA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34523\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECUREDATA\":              reflect.ValueOf(constant.MakeFromLiteral(\"34669\", token.INT, 0)),\n\t\t\"ETHERTYPE_SGITW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33150\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_BOUNCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32790\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_DIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32787\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_NETGAMES\":             reflect.ValueOf(constant.MakeFromLiteral(\"32788\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_RESV\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32789\", token.INT, 0)),\n\t\t\"ETHERTYPE_SIMNET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21000\", token.INT, 0)),\n\t\t\"ETHERTYPE_SLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32981\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33100\", token.INT, 0)),\n\t\t\"ETHERTYPE_SONIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64245\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPIDER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32927\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPRITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"ETHERTYPE_STP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33153\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARIS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33067\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARISMC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34091\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPCOMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34667\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36866\", token.INT, 0)),\n\t\t\"ETHERTYPE_TEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33103\", token.INT, 0)),\n\t\t\"ETHERTYPE_TIGAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32815\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRANSETHER\":              reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETHERTYPE_TYMSHARE\":                reflect.ValueOf(constant.MakeFromLiteral(\"32814\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBBST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28677\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDEBUG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2304\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDIAGLOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"28674\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28672\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNIU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28673\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNMC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28675\", token.INT, 0)),\n\t\t\"ETHERTYPE_VALID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5632\", token.INT, 0)),\n\t\t\"ETHERTYPE_VARIAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VAXELN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32827\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEECO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32871\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEXP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32859\", token.INT, 0)),\n\t\t\"ETHERTYPE_VGLAB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33073\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESECHO\":               reflect.ValueOf(constant.MakeFromLiteral(\"2991\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESLOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"2990\", token.INT, 0)),\n\t\t\"ETHERTYPE_VITAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65280\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLTLMAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32896\", token.INT, 0)),\n\t\t\"ETHERTYPE_VPROD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32860\", token.INT, 0)),\n\t\t\"ETHERTYPE_VURESERVED\":              reflect.ValueOf(constant.MakeFromLiteral(\"33095\", token.INT, 0)),\n\t\t\"ETHERTYPE_WATERLOO\":                reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_WELLFLEET\":               reflect.ValueOf(constant.MakeFromLiteral(\"33027\", token.INT, 0)),\n\t\t\"ETHERTYPE_X25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETHERTYPE_X75\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2049\", token.INT, 0)),\n\t\t\"ETHERTYPE_XNSSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36865\", token.INT, 0)),\n\t\t\"ETHERTYPE_XTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33149\", token.INT, 0)),\n\t\t\"ETHER_ADDR_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETHER_ALIGN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_CRC_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_BE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79764918\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_LE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3988292384\", token.INT, 0)),\n\t\t\"ETHER_HDR_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"ETHER_MAX_DIX_LEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1518\", token.INT, 0)),\n\t\t\"ETHER_MIN_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ETHER_TYPE_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_VLAN_ENCAP_LEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                         reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFA_ROUTE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36434\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAMCHANNEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DUMMY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"IFT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LINEGROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_PON155\":                        reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"IFT_PON622\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_Q2931\":                         reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SIPSIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"IFT_SIPTG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TELINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VIRTUALTG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"IFT_VOICEDID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEEMFGD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFGDEANA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERCABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_RFC3021_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_RFC3021_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967294\", token.INT, 0)),\n\t\t\"IN_RFC3021_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT_INIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT_RESP\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_AUTH_LEVEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_ESP_NETWORK_LEVEL\":            reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_ESP_TRANS_LEVEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPCOMP_LEVEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_OPTIONS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PIPEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTPORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTABLE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_AUTH_LEVEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DIVERTFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_ESP_NETWORK_LEVEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_ESP_TRANS_LEVEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPCOMP_LEVEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IP_IPSECFLOWINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_AUTH\":               reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_CRED\":               reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_ID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_AUTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_CRED\":              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_ID\":                reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PIPEX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVDSTPORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RTABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LCNT_OVERLOAD_FLUSH\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_SPACEAVAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_COPY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_FLAGMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16375\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_INHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_INHERIT_COPY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_INHERIT_SHARE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_INHERIT_ZERO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_NOEXTEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_TRYFIXED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_BCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_MCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_STATS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_TABLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EOF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_DSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PF_FLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_SRCMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_LABEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_SRC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTA_SRCMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_ANNOUNCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_CLONED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"7403528\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MASK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MPATH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_PERMANENT_ARP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_USETRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DESYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MAXSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RT_TABLEID_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHR\":                            reflect.ValueOf(syscall.SIGTHR),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCAIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149869959\", token.INT, 0)),\n\t\t\"SIOCALIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2182637852\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCBRDGADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2153015612\", token.INT, 0)),\n\t\t\"SIOCBRDGADDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2153015617\", token.INT, 0)),\n\t\t\"SIOCBRDGARL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2154719565\", token.INT, 0)),\n\t\t\"SIOCBRDGDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2166909255\", token.INT, 0)),\n\t\t\"SIOCBRDGDEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2153015613\", token.INT, 0)),\n\t\t\"SIOCBRDGDELS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2153015618\", token.INT, 0)),\n\t\t\"SIOCBRDGFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2153015624\", token.INT, 0)),\n\t\t\"SIOCBRDGFRL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2154719566\", token.INT, 0)),\n\t\t\"SIOCBRDGGCACHE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222563137\", token.INT, 0)),\n\t\t\"SIOCBRDGGFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563154\", token.INT, 0)),\n\t\t\"SIOCBRDGGHT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563153\", token.INT, 0)),\n\t\t\"SIOCBRDGGIFFLGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3226757438\", token.INT, 0)),\n\t\t\"SIOCBRDGGMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563155\", token.INT, 0)),\n\t\t\"SIOCBRDGGPARAM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3225184600\", token.INT, 0)),\n\t\t\"SIOCBRDGGPRI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222563152\", token.INT, 0)),\n\t\t\"SIOCBRDGGRL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223873871\", token.INT, 0)),\n\t\t\"SIOCBRDGGSIFS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3226757436\", token.INT, 0)),\n\t\t\"SIOCBRDGGTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563142\", token.INT, 0)),\n\t\t\"SIOCBRDGIFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3226757442\", token.INT, 0)),\n\t\t\"SIOCBRDGRTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222825283\", token.INT, 0)),\n\t\t\"SIOCBRDGSADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3240651076\", token.INT, 0)),\n\t\t\"SIOCBRDGSCACHE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2148821312\", token.INT, 0)),\n\t\t\"SIOCBRDGSFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821330\", token.INT, 0)),\n\t\t\"SIOCBRDGSHT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821329\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFCOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153015637\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFFLGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153015615\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFPRIO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153015636\", token.INT, 0)),\n\t\t\"SIOCBRDGSMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821331\", token.INT, 0)),\n\t\t\"SIOCBRDGSPRI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148821328\", token.INT, 0)),\n\t\t\"SIOCBRDGSPROTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2148821338\", token.INT, 0)),\n\t\t\"SIOCBRDGSTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821317\", token.INT, 0)),\n\t\t\"SIOCBRDGSTXHC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148821337\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149869961\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607753\", token.INT, 0)),\n\t\t\"SIOCDLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2182637854\", token.INT, 0)),\n\t\t\"SIOCGETKALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222825380\", token.INT, 0)),\n\t\t\"SIOCGETLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607834\", token.INT, 0)),\n\t\t\"SIOCGETPFLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349758\", token.INT, 0)),\n\t\t\"SIOCGETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349752\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222566196\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222566195\", token.INT, 0)),\n\t\t\"SIOCGETVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349648\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFASYNCMAP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349628\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3221776676\", token.INT, 0)),\n\t\t\"SIOCGIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349531\", token.INT, 0)),\n\t\t\"SIOCGIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349633\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223611787\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFGMEMB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223611786\", token.INT, 0)),\n\t\t\"SIOCGIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223611784\", token.INT, 0)),\n\t\t\"SIOCGIFHARDMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349669\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873846\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349630\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPDSTADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349576\", token.INT, 0)),\n\t\t\"SIOCGIFPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349660\", token.INT, 0)),\n\t\t\"SIOCGIFPSRCADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349575\", token.INT, 0)),\n\t\t\"SIOCGIFRDOMAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349664\", token.INT, 0)),\n\t\t\"SIOCGIFRTLABEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349635\", token.INT, 0)),\n\t\t\"SIOCGIFRXR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607850\", token.INT, 0)),\n\t\t\"SIOCGIFTIMESLOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349638\", token.INT, 0)),\n\t\t\"SIOCGIFXFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349662\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3256379677\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3256379723\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYRTABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3223349666\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349673\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGSPPPPARAMS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349652\", token.INT, 0)),\n\t\t\"SIOCGVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3223349750\", token.INT, 0)),\n\t\t\"SIOCGVNETID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349671\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607802\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222038904\", token.INT, 0)),\n\t\t\"SIOCSETKALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149083555\", token.INT, 0)),\n\t\t\"SIOCSETLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607833\", token.INT, 0)),\n\t\t\"SIOCSETPFLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607933\", token.INT, 0)),\n\t\t\"SIOCSETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607927\", token.INT, 0)),\n\t\t\"SIOCSETVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607823\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775232\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFASYNCMAP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607805\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607808\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149869964\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607711\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349557\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607807\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2151704902\", token.INT, 0)),\n\t\t\"SIOCSIFPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607835\", token.INT, 0)),\n\t\t\"SIOCSIFRDOMAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607839\", token.INT, 0)),\n\t\t\"SIOCSIFRTLABEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607810\", token.INT, 0)),\n\t\t\"SIOCSIFTIMESLOT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607813\", token.INT, 0)),\n\t\t\"SIOCSIFXFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607837\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2182637898\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYRTABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2149607841\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607848\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775234\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSSPPPPARAMS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607827\", token.INT, 0)),\n\t\t\"SIOCSVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3223349749\", token.INT, 0)),\n\t\t\"SIOCSVNETID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607846\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_BINDANY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_NETPROC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4128\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_RTABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_SPLICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4131\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJFREQ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHFLAGSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSEFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_FHSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTIMENS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_GETDTABLECOUNT\":                reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETENTROPY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTHRID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINCORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MQUERY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NFSSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_OBREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDSYSLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_STAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_SWAPCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS___GET_TCB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS___SET_TCB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS___TFORK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS___THREXIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS___THRSIGDIVERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS___THRSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS___THRWAKEUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                          reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_NSTATES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TCP_SACK_ENABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLAG_CLOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCFLAG_CRTSCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCFLAG_MDMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCFLAG_PPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCFLAG_SOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033757\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074558043\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775580\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775583\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775589\", token.INT, 0)),\n\t\t\"TIOCSTI\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147578994\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148037722\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WALTSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                   reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                  reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":               reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                  reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfTimeval\":               reflect.ValueOf((*syscall.BpfTimeval)(nil)),\n\t\t\"BpfVersion\":               reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                  reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                     reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":               reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                   reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                    reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                    reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                  reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                     reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":             reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                   reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":              reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                 reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":         reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                   reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                 reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":             reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":     reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":         reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"Iovec\":                    reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                 reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                   reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Mclpool\":                  reflect.ValueOf((*syscall.Mclpool)(nil)),\n\t\t\"Msghdr\":                   reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                 reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                  reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":              reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":           reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":      reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":         reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":         reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":          reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                   reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":             reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":           reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                 reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                   reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                   reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                 reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":         reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":            reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":            reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":             reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":     reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                   reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                 reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":              reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                  reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                 reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                  reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":               reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_openbsd_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ENCAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_KEY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_MPLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FRELAY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDIRFILT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020988\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222291067\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGFILDROP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020984\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020979\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887926\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDIRFILT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762810\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSETWF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148549239\", token.INT, 0)),\n\t\t\"BIOCSFILDROP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762809\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147762802\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIRECTION_IN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_DIRECTION_OUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_FILDROP_CAPTURE\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_FILDROP_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_FILDROP_PASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DIOCOSFPFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536888398\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_OPENFLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_USBPCAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"DLT_USER0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"DLT_USER1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"DLT_USER10\":                        reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"DLT_USER11\":                        reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"DLT_USER12\":                        reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"DLT_USER13\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"DLT_USER14\":                        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"DLT_USER15\":                        reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"DLT_USER2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"DLT_USER3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"DLT_USER4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"DLT_USER5\":                         reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"DLT_USER6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"DLT_USER7\":                         reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"DLT_USER8\":                         reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"DLT_USER9\":                         reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EIPSEC\":                            reflect.ValueOf(syscall.EIPSEC),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                       reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMT_TAGOVF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_ENABLED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_NATIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENDRUNDISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOMEDIUM\":                         reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":                   reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                        reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETHERMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"ETHERMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1500\", token.INT, 0)),\n\t\t\"ETHERTYPE_8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERTYPE_AARP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETHERTYPE_ACCTON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33680\", token.INT, 0)),\n\t\t\"ETHERTYPE_AEONIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32822\", token.INT, 0)),\n\t\t\"ETHERTYPE_ALPHA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33098\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMBER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24584\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMOEBA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33093\", token.INT, 0)),\n\t\t\"ETHERTYPE_AOE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33015\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLODOMAIN\":            reflect.ValueOf(constant.MakeFromLiteral(\"32793\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLETALK\":               reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLITEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"32967\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARGONAUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"32826\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETHERTYPE_AT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATALK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATOMIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34527\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32873\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATTSTANFORD\":             reflect.ValueOf(constant.MakeFromLiteral(\"32776\", token.INT, 0)),\n\t\t\"ETHERTYPE_AUTOPHON\":                reflect.ValueOf(constant.MakeFromLiteral(\"32874\", token.INT, 0)),\n\t\t\"ETHERTYPE_AXIS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34902\", token.INT, 0)),\n\t\t\"ETHERTYPE_BCLOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36867\", token.INT, 0)),\n\t\t\"ETHERTYPE_BOFL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33026\", token.INT, 0)),\n\t\t\"ETHERTYPE_CABLETRON\":               reflect.ValueOf(constant.MakeFromLiteral(\"28724\", token.INT, 0)),\n\t\t\"ETHERTYPE_CHAOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2052\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMDESIGN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32876\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMPUGRAPHIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"32877\", token.INT, 0)),\n\t\t\"ETHERTYPE_COUNTERPOINT\":            reflect.ValueOf(constant.MakeFromLiteral(\"32866\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32772\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUSVLN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32771\", token.INT, 0)),\n\t\t\"ETHERTYPE_DCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4660\", token.INT, 0)),\n\t\t\"ETHERTYPE_DDE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32891\", token.INT, 0)),\n\t\t\"ETHERTYPE_DEBNI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43690\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32840\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECCUST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32828\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32830\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECEXPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32833\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLTM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32831\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECMUMPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"24585\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECNETBIOS\":              reflect.ValueOf(constant.MakeFromLiteral(\"32832\", token.INT, 0)),\n\t\t\"ETHERTYPE_DELTACON\":                reflect.ValueOf(constant.MakeFromLiteral(\"34526\", token.INT, 0)),\n\t\t\"ETHERTYPE_DIDDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17185\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG1\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1632\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1633\", token.INT, 0)),\n\t\t\"ETHERTYPE_DN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETHERTYPE_DOGFIGHT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6537\", token.INT, 0)),\n\t\t\"ETHERTYPE_DSMD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32825\", token.INT, 0)),\n\t\t\"ETHERTYPE_ECMA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2051\", token.INT, 0)),\n\t\t\"ETHERTYPE_ENCRYPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32829\", token.INT, 0)),\n\t\t\"ETHERTYPE_ES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32861\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXCELAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32784\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXPERDATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"32841\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33094\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLOWCONTROL\":             reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETHERTYPE_FRARP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2056\", token.INT, 0)),\n\t\t\"ETHERTYPE_GENDYN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32872\", token.INT, 0)),\n\t\t\"ETHERTYPE_HAYES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_HIPPI_FP\":                reflect.ValueOf(constant.MakeFromLiteral(\"33152\", token.INT, 0)),\n\t\t\"ETHERTYPE_HITACHI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34848\", token.INT, 0)),\n\t\t\"ETHERTYPE_HP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32773\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUPAT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19522\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBLDIAG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16972\", token.INT, 0)),\n\t\t\"ETHERTYPE_IP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPAS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34668\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPXNEW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32823\", token.INT, 0)),\n\t\t\"ETHERTYPE_KALPANA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34178\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANBRIDGE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32824\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANPROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"34952\", token.INT, 0)),\n\t\t\"ETHERTYPE_LAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETHERTYPE_LBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LITTLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LLDP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35020\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOGICRAFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"33096\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_MATRA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32890\", token.INT, 0)),\n\t\t\"ETHERTYPE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ETHERTYPE_MERIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32892\", token.INT, 0)),\n\t\t\"ETHERTYPE_MICP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34618\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPDL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOTOROLA\":                reflect.ValueOf(constant.MakeFromLiteral(\"33165\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS_MCAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETHERTYPE_MUMPS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33087\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15364\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLAIM\":                reflect.ValueOf(constant.MakeFromLiteral(\"15369\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLREQ\":                reflect.ValueOf(constant.MakeFromLiteral(\"15365\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLRSP\":                reflect.ValueOf(constant.MakeFromLiteral(\"15366\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCREQ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15362\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCRSP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15363\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15367\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDGB\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15368\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDLTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15370\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15372\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15371\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15373\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPSCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15361\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPVCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15360\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2050\", token.INT, 0)),\n\t\t\"ETHERTYPE_NCD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33097\", token.INT, 0)),\n\t\t\"ETHERTYPE_NESTAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32774\", token.INT, 0)),\n\t\t\"ETHERTYPE_NETBEUI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33169\", token.INT, 0)),\n\t\t\"ETHERTYPE_NOVELL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33080\", token.INT, 0)),\n\t\t\"ETHERTYPE_NS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1537\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSCOMPAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2055\", token.INT, 0)),\n\t\t\"ETHERTYPE_NTRAILER\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28679\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9NET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28681\", token.INT, 0)),\n\t\t\"ETHERTYPE_PACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32966\", token.INT, 0)),\n\t\t\"ETHERTYPE_PAE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETHERTYPE_PBB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETHERTYPE_PCS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16962\", token.INT, 0)),\n\t\t\"ETHERTYPE_PLANNING\":                reflect.ValueOf(constant.MakeFromLiteral(\"32836\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34827\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOEDISC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETHERTYPE_PRIMENTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28721\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUPAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_QINQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETHERTYPE_RACAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28720\", token.INT, 0)),\n\t\t\"ETHERTYPE_RATIONAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"33104\", token.INT, 0)),\n\t\t\"ETHERTYPE_RAWFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25945\", token.INT, 0)),\n\t\t\"ETHERTYPE_RCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6549\", token.INT, 0)),\n\t\t\"ETHERTYPE_RDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34617\", token.INT, 0)),\n\t\t\"ETHERTYPE_RETIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33010\", token.INT, 0)),\n\t\t\"ETHERTYPE_REVARP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETHERTYPE_SCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECTRA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34523\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECUREDATA\":              reflect.ValueOf(constant.MakeFromLiteral(\"34669\", token.INT, 0)),\n\t\t\"ETHERTYPE_SGITW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33150\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_BOUNCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32790\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_DIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32787\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_NETGAMES\":             reflect.ValueOf(constant.MakeFromLiteral(\"32788\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_RESV\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32789\", token.INT, 0)),\n\t\t\"ETHERTYPE_SIMNET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21000\", token.INT, 0)),\n\t\t\"ETHERTYPE_SLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32981\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33100\", token.INT, 0)),\n\t\t\"ETHERTYPE_SONIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64245\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPIDER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32927\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPRITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"ETHERTYPE_STP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33153\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARIS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33067\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARISMC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34091\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPCOMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34667\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36866\", token.INT, 0)),\n\t\t\"ETHERTYPE_TEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33103\", token.INT, 0)),\n\t\t\"ETHERTYPE_TIGAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32815\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRANSETHER\":              reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETHERTYPE_TYMSHARE\":                reflect.ValueOf(constant.MakeFromLiteral(\"32814\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBBST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28677\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDEBUG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2304\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDIAGLOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"28674\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28672\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNIU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28673\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNMC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28675\", token.INT, 0)),\n\t\t\"ETHERTYPE_VALID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5632\", token.INT, 0)),\n\t\t\"ETHERTYPE_VARIAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VAXELN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32827\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEECO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32871\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEXP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32859\", token.INT, 0)),\n\t\t\"ETHERTYPE_VGLAB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33073\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESECHO\":               reflect.ValueOf(constant.MakeFromLiteral(\"2991\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESLOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"2990\", token.INT, 0)),\n\t\t\"ETHERTYPE_VITAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65280\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLTLMAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32896\", token.INT, 0)),\n\t\t\"ETHERTYPE_VPROD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32860\", token.INT, 0)),\n\t\t\"ETHERTYPE_VURESERVED\":              reflect.ValueOf(constant.MakeFromLiteral(\"33095\", token.INT, 0)),\n\t\t\"ETHERTYPE_WATERLOO\":                reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_WELLFLEET\":               reflect.ValueOf(constant.MakeFromLiteral(\"33027\", token.INT, 0)),\n\t\t\"ETHERTYPE_X25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETHERTYPE_X75\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2049\", token.INT, 0)),\n\t\t\"ETHERTYPE_XNSSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36865\", token.INT, 0)),\n\t\t\"ETHERTYPE_XTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33149\", token.INT, 0)),\n\t\t\"ETHER_ADDR_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETHER_ALIGN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_CRC_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_BE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79764918\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_LE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3988292384\", token.INT, 0)),\n\t\t\"ETHER_HDR_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"ETHER_MAX_DIX_LEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHER_MAX_HARDMTU_LEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"65435\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1518\", token.INT, 0)),\n\t\t\"ETHER_MIN_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ETHER_TYPE_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_VLAN_ENCAP_LEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_DEVICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-8\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EVL_ENCAPLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EVL_PRIO_BITS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"EVL_PRIO_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"EVL_VLID_MASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"EVL_VLID_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4094\", token.INT, 0)),\n\t\t\"EVL_VLID_MIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EVL_VLID_NULL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_DISPATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_RECEIPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_ISATTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                         reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36434\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_STATICARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAMCHANNEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DUMMY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"IFT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LINEGROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MBIM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_PON155\":                        reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"IFT_PON622\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_Q2931\":                         reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SIPSIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"IFT_SIPTG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TELINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VIRTUALTG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"IFT_VOICEDID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEEMFGD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFGDEANA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERCABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_RFC3021_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_RFC3021_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967294\", token.INT, 0)),\n\t\t\"IN_RFC3021_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_AUTH_LEVEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_ESP_NETWORK_LEVEL\":            reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_ESP_TRANS_LEVEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"4294967055\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPCOMP_LEVEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MINHOPCOUNT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_OPTIONS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PIPEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTPORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTABLE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_AUTH_LEVEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_ESP_NETWORK_LEVEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_ESP_TRANS_LEVEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPCOMP_LEVEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IP_IPDEFTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_IPSECFLOWINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_AUTH\":               reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_CRED\":               reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_ID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_AUTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_CRED\":              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_ID\":                reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PIPEX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVDSTPORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RTABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"IP_SENDSRCADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LCNT_OVERLOAD_FLUSH\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_SPACEAVAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_CONCEAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_COPY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_FLAGMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65527\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_INHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_INHERIT_COPY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_INHERIT_SHARE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_INHERIT_ZERO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_NOEXTEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_TRYFIXED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_BCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_MCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_IFNAMES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NET_RT_STATS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_TABLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHANGE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EOF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_DSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PF_FLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DNS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_SEARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_SRCMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DNS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_LABEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_SEARCH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTA_SRC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTA_SRCMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTA_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_ANNOUNCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_BFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_CACHED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_CLONED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_CONNECTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"17890312\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MPATH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_PERMANENT_ARP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_USETRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTM_80211INFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_BFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_CHGADDRATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DESYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MAXSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_PROPOSAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_RTTUNIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1000000\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RT_TABLEID_BITS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RT_TABLEID_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLEID_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHR\":                            reflect.ValueOf(syscall.SIGTHR),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCAIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132103\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCBRDGADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2153802044\", token.INT, 0)),\n\t\t\"SIOCBRDGADDL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2153802057\", token.INT, 0)),\n\t\t\"SIOCBRDGADDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2153802049\", token.INT, 0)),\n\t\t\"SIOCBRDGARL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156685645\", token.INT, 0)),\n\t\t\"SIOCBRDGDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2166909255\", token.INT, 0)),\n\t\t\"SIOCBRDGDEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2153802045\", token.INT, 0)),\n\t\t\"SIOCBRDGDELS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2153802050\", token.INT, 0)),\n\t\t\"SIOCBRDGFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2153802056\", token.INT, 0)),\n\t\t\"SIOCBRDGFRL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156685646\", token.INT, 0)),\n\t\t\"SIOCBRDGGCACHE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222825281\", token.INT, 0)),\n\t\t\"SIOCBRDGGFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222825298\", token.INT, 0)),\n\t\t\"SIOCBRDGGHT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222825297\", token.INT, 0)),\n\t\t\"SIOCBRDGGIFFLGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3227543870\", token.INT, 0)),\n\t\t\"SIOCBRDGGMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222825299\", token.INT, 0)),\n\t\t\"SIOCBRDGGPARAM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3225446744\", token.INT, 0)),\n\t\t\"SIOCBRDGGPRI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222825296\", token.INT, 0)),\n\t\t\"SIOCBRDGGRL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3224398159\", token.INT, 0)),\n\t\t\"SIOCBRDGGTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222825286\", token.INT, 0)),\n\t\t\"SIOCBRDGIFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3227543874\", token.INT, 0)),\n\t\t\"SIOCBRDGRTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349571\", token.INT, 0)),\n\t\t\"SIOCBRDGSADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3240651076\", token.INT, 0)),\n\t\t\"SIOCBRDGSCACHE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149083456\", token.INT, 0)),\n\t\t\"SIOCBRDGSFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149083474\", token.INT, 0)),\n\t\t\"SIOCBRDGSHT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149083473\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFCOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153802069\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFFLGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153802047\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFPRIO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153802068\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFPROT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153802058\", token.INT, 0)),\n\t\t\"SIOCBRDGSMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149083475\", token.INT, 0)),\n\t\t\"SIOCBRDGSPRI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149083472\", token.INT, 0)),\n\t\t\"SIOCBRDGSPROTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149083482\", token.INT, 0)),\n\t\t\"SIOCBRDGSTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149083461\", token.INT, 0)),\n\t\t\"SIOCBRDGSTXHC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149083481\", token.INT, 0)),\n\t\t\"SIOCDELLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607831\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132105\", token.INT, 0)),\n\t\t\"SIOCDIFPARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607860\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607753\", token.INT, 0)),\n\t\t\"SIOCDPWE3NEIGHBOR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2149607902\", token.INT, 0)),\n\t\t\"SIOCDVNETID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607855\", token.INT, 0)),\n\t\t\"SIOCGETKALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222825380\", token.INT, 0)),\n\t\t\"SIOCGETLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607834\", token.INT, 0)),\n\t\t\"SIOCGETMPWCFG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349678\", token.INT, 0)),\n\t\t\"SIOCGETPFLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349758\", token.INT, 0)),\n\t\t\"SIOCGETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349752\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223352628\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223876915\", token.INT, 0)),\n\t\t\"SIOCGETVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349648\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222300964\", token.INT, 0)),\n\t\t\"SIOCGIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349531\", token.INT, 0)),\n\t\t\"SIOCGIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349633\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873931\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFGLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873933\", token.INT, 0)),\n\t\t\"SIOCGIFGMEMB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873930\", token.INT, 0)),\n\t\t\"SIOCGIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873928\", token.INT, 0)),\n\t\t\"SIOCGIFHARDMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349669\", token.INT, 0)),\n\t\t\"SIOCGIFLLPRIO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349686\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3225446712\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349630\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPAIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349681\", token.INT, 0)),\n\t\t\"SIOCGIFPARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349683\", token.INT, 0)),\n\t\t\"SIOCGIFPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349660\", token.INT, 0)),\n\t\t\"SIOCGIFRDOMAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349664\", token.INT, 0)),\n\t\t\"SIOCGIFRTLABEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349635\", token.INT, 0)),\n\t\t\"SIOCGIFRXR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607850\", token.INT, 0)),\n\t\t\"SIOCGIFSFFPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3239209273\", token.INT, 0)),\n\t\t\"SIOCGIFXFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349662\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3256379723\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYDF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349698\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYECN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349704\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYRTABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3223349666\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349673\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGPWE3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349656\", token.INT, 0)),\n\t\t\"SIOCGPWE3CTRLWORD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3223349724\", token.INT, 0)),\n\t\t\"SIOCGPWE3FAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349725\", token.INT, 0)),\n\t\t\"SIOCGPWE3NEIGHBOR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3256379870\", token.INT, 0)),\n\t\t\"SIOCGSPPPPARAMS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349652\", token.INT, 0)),\n\t\t\"SIOCGTXHPRIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349702\", token.INT, 0)),\n\t\t\"SIOCGUMBINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349694\", token.INT, 0)),\n\t\t\"SIOCGUMBPARAM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349696\", token.INT, 0)),\n\t\t\"SIOCGVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3223349750\", token.INT, 0)),\n\t\t\"SIOCGVNETFLOWID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349700\", token.INT, 0)),\n\t\t\"SIOCGVNETID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349671\", token.INT, 0)),\n\t\t\"SIOCIFAFATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2148624811\", token.INT, 0)),\n\t\t\"SIOCIFAFDETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2148624812\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607802\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222301048\", token.INT, 0)),\n\t\t\"SIOCSETKALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149083555\", token.INT, 0)),\n\t\t\"SIOCSETLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607833\", token.INT, 0)),\n\t\t\"SIOCSETMPWCFG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607853\", token.INT, 0)),\n\t\t\"SIOCSETPFLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607933\", token.INT, 0)),\n\t\t\"SIOCSETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607927\", token.INT, 0)),\n\t\t\"SIOCSETVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607823\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607808\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132108\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607711\", token.INT, 0)),\n\t\t\"SIOCSIFLLPRIO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607861\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607807\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPAIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607856\", token.INT, 0)),\n\t\t\"SIOCSIFPARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607858\", token.INT, 0)),\n\t\t\"SIOCSIFPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607835\", token.INT, 0)),\n\t\t\"SIOCSIFRDOMAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607839\", token.INT, 0)),\n\t\t\"SIOCSIFRTLABEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607810\", token.INT, 0)),\n\t\t\"SIOCSIFXFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607837\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2182637898\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYDF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607873\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYECN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607879\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYRTABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2149607841\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607848\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSPWE3CTRLWORD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2149607900\", token.INT, 0)),\n\t\t\"SIOCSPWE3FAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607901\", token.INT, 0)),\n\t\t\"SIOCSPWE3NEIGHBOR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2182638046\", token.INT, 0)),\n\t\t\"SIOCSSPPPPARAMS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607827\", token.INT, 0)),\n\t\t\"SIOCSTXHPRIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607877\", token.INT, 0)),\n\t\t\"SIOCSUMBPARAM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607871\", token.INT, 0)),\n\t\t\"SIOCSVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3223349749\", token.INT, 0)),\n\t\t\"SIOCSVNETFLOWID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607875\", token.INT, 0)),\n\t\t\"SIOCSVNETID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607846\", token.INT, 0)),\n\t\t\"SIOCSWGDPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222825307\", token.INT, 0)),\n\t\t\"SIOCSWGMAXFLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222825312\", token.INT, 0)),\n\t\t\"SIOCSWGMAXGROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3222825309\", token.INT, 0)),\n\t\t\"SIOCSWSDPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149083484\", token.INT, 0)),\n\t\t\"SIOCSWSPORTNO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3227543903\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_DNS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_BINDANY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_NETPROC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4128\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_RTABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_SPLICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4131\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_ZEROIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJFREQ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHFLAGSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSEFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_FHSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_FUTIMENS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_GETDTABLECOUNT\":                reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETENTROPY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN_R\":                    reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTHRID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_KBIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MQUERY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NFSSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_OBREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_PLEDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDSYSLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_STAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_SWAPCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_SYSCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_THRKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UNVEIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS___GET_TCB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS___SET_TCB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS___TFORK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS___THREXIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS___THRSIGDIVERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS___THRSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS___THRWAKEUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                          reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXBURST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_SACK_ENABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCHKVERAUTH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536900638\", token.INT, 0)),\n\t\t\"TIOCCLRVERAUTH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536900637\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLAG_CLOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCFLAG_CRTSCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCFLAG_MDMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCFLAG_PPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCFLAG_SOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033757\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074820187\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSETVERAUTH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147775516\", token.INT, 0)),\n\t\t\"TIOCSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775580\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775583\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148037722\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TIOCUCNTL_CBRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"TIOCUCNTL_SBRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WALTSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                   reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                  reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":               reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                  reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfTimeval\":               reflect.ValueOf((*syscall.BpfTimeval)(nil)),\n\t\t\"BpfVersion\":               reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                  reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                     reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":               reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                   reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                    reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                    reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                  reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                     reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":             reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                   reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":              reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                 reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":         reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                   reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                 reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":             reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":     reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":         reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"Iovec\":                    reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                 reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                   reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Mclpool\":                  reflect.ValueOf((*syscall.Mclpool)(nil)),\n\t\t\"Msghdr\":                   reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                 reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                  reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":              reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":           reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":      reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":         reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":         reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":          reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                   reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":             reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":           reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                 reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                   reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                   reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                 reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":         reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":            reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":            reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":             reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":     reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                   reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                 reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":              reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                  reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                 reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                  reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":               reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_openbsd_ppc64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_APPLETALK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_BLUETOOTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_CCITT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_CNT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_COIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_E164\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ECMA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_ENCAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_IPX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_ISDN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_ISO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_KEY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_LAT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                            reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"AF_MPLS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"AF_NATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_NS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_PUP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_SIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_SNA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_UNIX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FRELAY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE1394\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"Accept\":                            reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                           reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                            reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                           reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                              reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"B115200\":                           reflect.ValueOf(constant.MakeFromLiteral(\"115200\", token.INT, 0)),\n\t\t\"B1200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1200\", token.INT, 0)),\n\t\t\"B134\":                              reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"B14400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14400\", token.INT, 0)),\n\t\t\"B150\":                              reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"B1800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1800\", token.INT, 0)),\n\t\t\"B19200\":                            reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"B200\":                              reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"B230400\":                           reflect.ValueOf(constant.MakeFromLiteral(\"230400\", token.INT, 0)),\n\t\t\"B2400\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2400\", token.INT, 0)),\n\t\t\"B28800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"28800\", token.INT, 0)),\n\t\t\"B300\":                              reflect.ValueOf(constant.MakeFromLiteral(\"300\", token.INT, 0)),\n\t\t\"B38400\":                            reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"B4800\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4800\", token.INT, 0)),\n\t\t\"B50\":                               reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"B57600\":                            reflect.ValueOf(constant.MakeFromLiteral(\"57600\", token.INT, 0)),\n\t\t\"B600\":                              reflect.ValueOf(constant.MakeFromLiteral(\"600\", token.INT, 0)),\n\t\t\"B7200\":                             reflect.ValueOf(constant.MakeFromLiteral(\"7200\", token.INT, 0)),\n\t\t\"B75\":                               reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"B76800\":                            reflect.ValueOf(constant.MakeFromLiteral(\"76800\", token.INT, 0)),\n\t\t\"B9600\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9600\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDIRFILT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020988\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222291067\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGFILDROP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020984\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074020979\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074807406\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762800\", token.INT, 0)),\n\t\t\"BIOCLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536887926\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3221504614\", token.INT, 0)),\n\t\t\"BIOCSDIRFILT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762813\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147762810\", token.INT, 0)),\n\t\t\"BIOCSETF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2148549223\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2149597804\", token.INT, 0)),\n\t\t\"BIOCSETWF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148549239\", token.INT, 0)),\n\t\t\"BIOCSFILDROP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2147762809\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2147762805\", token.INT, 0)),\n\t\t\"BIOCSRSIG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147762802\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148549229\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DIRECTION_IN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_DIRECTION_OUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_DIV\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_FILDROP_CAPTURE\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_FILDROP_DROP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_FILDROP_PASS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_F_DIR_IN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_F_DIR_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_F_DIR_OUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_F_DIR_SHIFT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_F_FLOWID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_F_PRI_MASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_H\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RND\":                           reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"BPF_RSH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                              reflect.ValueOf(syscall.Bind),\n\t\t\"BpfBuflen\":                         reflect.ValueOf(syscall.BpfBuflen),\n\t\t\"BpfDatalink\":                       reflect.ValueOf(syscall.BpfDatalink),\n\t\t\"BpfHeadercmpl\":                     reflect.ValueOf(syscall.BpfHeadercmpl),\n\t\t\"BpfInterface\":                      reflect.ValueOf(syscall.BpfInterface),\n\t\t\"BpfJump\":                           reflect.ValueOf(syscall.BpfJump),\n\t\t\"BpfStats\":                          reflect.ValueOf(syscall.BpfStats),\n\t\t\"BpfStmt\":                           reflect.ValueOf(syscall.BpfStmt),\n\t\t\"BpfTimeout\":                        reflect.ValueOf(syscall.BpfTimeout),\n\t\t\"BytePtrFromString\":                 reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":               reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CREAD\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CS5\":                               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CS7\":                               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CS8\":                               reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"768\", token.INT, 0)),\n\t\t\"CSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"CSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CTL_MAXNAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"CTL_NET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Chdir\":                             reflect.ValueOf(syscall.Chdir),\n\t\t\"CheckBpfVersion\":                   reflect.ValueOf(syscall.CheckBpfVersion),\n\t\t\"Chflags\":                           reflect.ValueOf(syscall.Chflags),\n\t\t\"Chmod\":                             reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                             reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                            reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                          reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                             reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                       reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                           reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                         reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                           reflect.ValueOf(syscall.Connect),\n\t\t\"DIOCOSFPFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536888398\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AX25\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":              reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"219\", token.INT, 0)),\n\t\t\"DLT_NULL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_OPENFLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_PPP_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"DLT_PPP_SERIAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAW\":                           reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_USBPCAP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"DLT_USER0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"DLT_USER1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"DLT_USER10\":                        reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"DLT_USER11\":                        reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"DLT_USER12\":                        reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"DLT_USER13\":                        reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"DLT_USER14\":                        reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"DLT_USER15\":                        reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"DLT_USER2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"DLT_USER3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"DLT_USER4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"DLT_USER5\":                         reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"DLT_USER6\":                         reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"DLT_USER7\":                         reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"DLT_USER8\":                         reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"DLT_USER9\":                         reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"DT_BLK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DT_CHR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DT_DIR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DT_FIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DT_LNK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DT_REG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DT_SOCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DT_UNKNOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Dup\":                               reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                              reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                             reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                            reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                        reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                     reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                      reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                            reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                          reflect.ValueOf(syscall.EALREADY),\n\t\t\"EAUTH\":                             reflect.ValueOf(syscall.EAUTH),\n\t\t\"EBADF\":                             reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                           reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADRPC\":                           reflect.ValueOf(syscall.EBADRPC),\n\t\t\"EBUSY\":                             reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                         reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                            reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ECHOK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ECHOKE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ECHONL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOPRT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECONNABORTED\":                      reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                      reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                        reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                           reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                      reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                              reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                            reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                            reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                            reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                             reflect.ValueOf(syscall.EFBIG),\n\t\t\"EFTYPE\":                            reflect.ValueOf(syscall.EFTYPE),\n\t\t\"EHOSTDOWN\":                         reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                      reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                             reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                            reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                       reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                             reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                            reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                               reflect.ValueOf(syscall.EIO),\n\t\t\"EIPSEC\":                            reflect.ValueOf(syscall.EIPSEC),\n\t\t\"EISCONN\":                           reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                            reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELAST\":                             reflect.ValueOf(syscall.ELAST),\n\t\t\"ELOOP\":                             reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                       reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                            reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                            reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                          reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMT_TAGOVF\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_ENABLED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMUL_NATIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ENAMETOOLONG\":                      reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENDRUNDISC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"ENEEDAUTH\":                         reflect.ValueOf(syscall.ENEEDAUTH),\n\t\t\"ENETDOWN\":                          reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                         reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                       reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                            reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOATTR\":                           reflect.ValueOf(syscall.ENOATTR),\n\t\t\"ENOBUFS\":                           reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                            reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                            reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                           reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                            reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOMEDIUM\":                         reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                            reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                            reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                       reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                            reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                            reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                           reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                          reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                           reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                         reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":                   reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                          reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                           reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                            reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                             reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                        reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                         reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                        reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                             reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                      reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                             reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROCLIM\":                          reflect.ValueOf(syscall.EPROCLIM),\n\t\t\"EPROCUNAVAIL\":                      reflect.ValueOf(syscall.EPROCUNAVAIL),\n\t\t\"EPROGMISMATCH\":                     reflect.ValueOf(syscall.EPROGMISMATCH),\n\t\t\"EPROGUNAVAIL\":                      reflect.ValueOf(syscall.EPROGUNAVAIL),\n\t\t\"EPROTO\":                            reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                   reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                        reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                            reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMOTE\":                           reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EROFS\":                             reflect.ValueOf(syscall.EROFS),\n\t\t\"ERPCMISMATCH\":                      reflect.ValueOf(syscall.ERPCMISMATCH),\n\t\t\"ESHUTDOWN\":                         reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                   reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                            reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                             reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                            reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETH64_8021_RSVD_MASK\":              reflect.ValueOf(constant.MakeFromLiteral(\"281474976710640\", token.INT, 0)),\n\t\t\"ETH64_8021_RSVD_PREFIX\":            reflect.ValueOf(constant.MakeFromLiteral(\"1652522221568\", token.INT, 0)),\n\t\t\"ETHERMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"ETHERMTU\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1500\", token.INT, 0)),\n\t\t\"ETHERTYPE_8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHERTYPE_AARP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33011\", token.INT, 0)),\n\t\t\"ETHERTYPE_ACCTON\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33680\", token.INT, 0)),\n\t\t\"ETHERTYPE_AEONIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32822\", token.INT, 0)),\n\t\t\"ETHERTYPE_ALPHA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33098\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMBER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24584\", token.INT, 0)),\n\t\t\"ETHERTYPE_AMOEBA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33093\", token.INT, 0)),\n\t\t\"ETHERTYPE_AOE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34978\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33015\", token.INT, 0)),\n\t\t\"ETHERTYPE_APOLLODOMAIN\":            reflect.ValueOf(constant.MakeFromLiteral(\"32793\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLETALK\":               reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_APPLITEK\":                reflect.ValueOf(constant.MakeFromLiteral(\"32967\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARGONAUT\":                reflect.ValueOf(constant.MakeFromLiteral(\"32826\", token.INT, 0)),\n\t\t\"ETHERTYPE_ARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2054\", token.INT, 0)),\n\t\t\"ETHERTYPE_AT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATALK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32923\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATOMIC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34527\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32873\", token.INT, 0)),\n\t\t\"ETHERTYPE_ATTSTANFORD\":             reflect.ValueOf(constant.MakeFromLiteral(\"32776\", token.INT, 0)),\n\t\t\"ETHERTYPE_AUTOPHON\":                reflect.ValueOf(constant.MakeFromLiteral(\"32874\", token.INT, 0)),\n\t\t\"ETHERTYPE_AXIS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34902\", token.INT, 0)),\n\t\t\"ETHERTYPE_BCLOOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36867\", token.INT, 0)),\n\t\t\"ETHERTYPE_BOFL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33026\", token.INT, 0)),\n\t\t\"ETHERTYPE_CABLETRON\":               reflect.ValueOf(constant.MakeFromLiteral(\"28724\", token.INT, 0)),\n\t\t\"ETHERTYPE_CHAOS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2052\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMDESIGN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32876\", token.INT, 0)),\n\t\t\"ETHERTYPE_COMPUGRAPHIC\":            reflect.ValueOf(constant.MakeFromLiteral(\"32877\", token.INT, 0)),\n\t\t\"ETHERTYPE_COUNTERPOINT\":            reflect.ValueOf(constant.MakeFromLiteral(\"32866\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32772\", token.INT, 0)),\n\t\t\"ETHERTYPE_CRONUSVLN\":               reflect.ValueOf(constant.MakeFromLiteral(\"32771\", token.INT, 0)),\n\t\t\"ETHERTYPE_DCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4660\", token.INT, 0)),\n\t\t\"ETHERTYPE_DDE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32891\", token.INT, 0)),\n\t\t\"ETHERTYPE_DEBNI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43690\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32840\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECCUST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24582\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24581\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32828\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECDTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32830\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECEXPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32833\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECLTM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32831\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECMUMPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"24585\", token.INT, 0)),\n\t\t\"ETHERTYPE_DECNETBIOS\":              reflect.ValueOf(constant.MakeFromLiteral(\"32832\", token.INT, 0)),\n\t\t\"ETHERTYPE_DELTACON\":                reflect.ValueOf(constant.MakeFromLiteral(\"34526\", token.INT, 0)),\n\t\t\"ETHERTYPE_DIDDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"17185\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG1\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1632\", token.INT, 0)),\n\t\t\"ETHERTYPE_DLOG2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1633\", token.INT, 0)),\n\t\t\"ETHERTYPE_DN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24579\", token.INT, 0)),\n\t\t\"ETHERTYPE_DOGFIGHT\":                reflect.ValueOf(constant.MakeFromLiteral(\"6537\", token.INT, 0)),\n\t\t\"ETHERTYPE_DSMD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32825\", token.INT, 0)),\n\t\t\"ETHERTYPE_EAPOL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34958\", token.INT, 0)),\n\t\t\"ETHERTYPE_ECMA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2051\", token.INT, 0)),\n\t\t\"ETHERTYPE_ENCRYPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32829\", token.INT, 0)),\n\t\t\"ETHERTYPE_ES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32861\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXCELAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32784\", token.INT, 0)),\n\t\t\"ETHERTYPE_EXPERDATA\":               reflect.ValueOf(constant.MakeFromLiteral(\"32841\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLIP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33094\", token.INT, 0)),\n\t\t\"ETHERTYPE_FLOWCONTROL\":             reflect.ValueOf(constant.MakeFromLiteral(\"34824\", token.INT, 0)),\n\t\t\"ETHERTYPE_FRARP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2056\", token.INT, 0)),\n\t\t\"ETHERTYPE_GENDYN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32872\", token.INT, 0)),\n\t\t\"ETHERTYPE_HAYES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_HIPPI_FP\":                reflect.ValueOf(constant.MakeFromLiteral(\"33152\", token.INT, 0)),\n\t\t\"ETHERTYPE_HITACHI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34848\", token.INT, 0)),\n\t\t\"ETHERTYPE_HP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32773\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2560\", token.INT, 0)),\n\t\t\"ETHERTYPE_IEEEPUPAT\":               reflect.ValueOf(constant.MakeFromLiteral(\"2561\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"19522\", token.INT, 0)),\n\t\t\"ETHERTYPE_IMLBLDIAG\":               reflect.ValueOf(constant.MakeFromLiteral(\"16972\", token.INT, 0)),\n\t\t\"ETHERTYPE_IP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPAS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34668\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34525\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33079\", token.INT, 0)),\n\t\t\"ETHERTYPE_IPXNEW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32823\", token.INT, 0)),\n\t\t\"ETHERTYPE_KALPANA\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34178\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANBRIDGE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32824\", token.INT, 0)),\n\t\t\"ETHERTYPE_LANPROBE\":                reflect.ValueOf(constant.MakeFromLiteral(\"34952\", token.INT, 0)),\n\t\t\"ETHERTYPE_LAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24580\", token.INT, 0)),\n\t\t\"ETHERTYPE_LBACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LITTLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32864\", token.INT, 0)),\n\t\t\"ETHERTYPE_LLDP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35020\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOGICRAFT\":               reflect.ValueOf(constant.MakeFromLiteral(\"33096\", token.INT, 0)),\n\t\t\"ETHERTYPE_LOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"36864\", token.INT, 0)),\n\t\t\"ETHERTYPE_MACSEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"35045\", token.INT, 0)),\n\t\t\"ETHERTYPE_MATRA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32890\", token.INT, 0)),\n\t\t\"ETHERTYPE_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"ETHERTYPE_MERIT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32892\", token.INT, 0)),\n\t\t\"ETHERTYPE_MICP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34618\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPDL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24577\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOPRC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24578\", token.INT, 0)),\n\t\t\"ETHERTYPE_MOTOROLA\":                reflect.ValueOf(constant.MakeFromLiteral(\"33165\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34887\", token.INT, 0)),\n\t\t\"ETHERTYPE_MPLS_MCAST\":              reflect.ValueOf(constant.MakeFromLiteral(\"34888\", token.INT, 0)),\n\t\t\"ETHERTYPE_MUMPS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33087\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15364\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLAIM\":                reflect.ValueOf(constant.MakeFromLiteral(\"15369\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLREQ\":                reflect.ValueOf(constant.MakeFromLiteral(\"15365\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCLRSP\":                reflect.ValueOf(constant.MakeFromLiteral(\"15366\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCREQ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15362\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPCRSP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15363\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15367\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDGB\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15368\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPDLTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"15370\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15372\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRAS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15371\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPRST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15373\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPSCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15361\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBPVCD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15360\", token.INT, 0)),\n\t\t\"ETHERTYPE_NBS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2050\", token.INT, 0)),\n\t\t\"ETHERTYPE_NCD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33097\", token.INT, 0)),\n\t\t\"ETHERTYPE_NESTAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32774\", token.INT, 0)),\n\t\t\"ETHERTYPE_NETBEUI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33169\", token.INT, 0)),\n\t\t\"ETHERTYPE_NHRP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8193\", token.INT, 0)),\n\t\t\"ETHERTYPE_NOVELL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33080\", token.INT, 0)),\n\t\t\"ETHERTYPE_NS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1537\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSCOMPAT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2055\", token.INT, 0)),\n\t\t\"ETHERTYPE_NSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"38991\", token.INT, 0)),\n\t\t\"ETHERTYPE_NTRAILER\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28679\", token.INT, 0)),\n\t\t\"ETHERTYPE_OS9NET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28681\", token.INT, 0)),\n\t\t\"ETHERTYPE_PACER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32966\", token.INT, 0)),\n\t\t\"ETHERTYPE_PBB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35047\", token.INT, 0)),\n\t\t\"ETHERTYPE_PCS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16962\", token.INT, 0)),\n\t\t\"ETHERTYPE_PLANNING\":                reflect.ValueOf(constant.MakeFromLiteral(\"32836\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34827\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"34916\", token.INT, 0)),\n\t\t\"ETHERTYPE_PPPOEDISC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34915\", token.INT, 0)),\n\t\t\"ETHERTYPE_PRIMENTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"28721\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_PUPAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ETHERTYPE_QINQ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34984\", token.INT, 0)),\n\t\t\"ETHERTYPE_RACAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28720\", token.INT, 0)),\n\t\t\"ETHERTYPE_RATIONAL\":                reflect.ValueOf(constant.MakeFromLiteral(\"33104\", token.INT, 0)),\n\t\t\"ETHERTYPE_RAWFR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"25945\", token.INT, 0)),\n\t\t\"ETHERTYPE_RCL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6549\", token.INT, 0)),\n\t\t\"ETHERTYPE_RDP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"34617\", token.INT, 0)),\n\t\t\"ETHERTYPE_RETIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33010\", token.INT, 0)),\n\t\t\"ETHERTYPE_REVARP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32821\", token.INT, 0)),\n\t\t\"ETHERTYPE_SCA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"24583\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECTRA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34523\", token.INT, 0)),\n\t\t\"ETHERTYPE_SECUREDATA\":              reflect.ValueOf(constant.MakeFromLiteral(\"34669\", token.INT, 0)),\n\t\t\"ETHERTYPE_SGITW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33150\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_BOUNCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"32790\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_DIAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32787\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_NETGAMES\":             reflect.ValueOf(constant.MakeFromLiteral(\"32788\", token.INT, 0)),\n\t\t\"ETHERTYPE_SG_RESV\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32789\", token.INT, 0)),\n\t\t\"ETHERTYPE_SIMNET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21000\", token.INT, 0)),\n\t\t\"ETHERTYPE_SLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34825\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32981\", token.INT, 0)),\n\t\t\"ETHERTYPE_SNMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33100\", token.INT, 0)),\n\t\t\"ETHERTYPE_SONIX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64245\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPIDER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32927\", token.INT, 0)),\n\t\t\"ETHERTYPE_SPRITE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"ETHERTYPE_STP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33153\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARIS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33067\", token.INT, 0)),\n\t\t\"ETHERTYPE_TALARISMC\":               reflect.ValueOf(constant.MakeFromLiteral(\"34091\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPCOMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34667\", token.INT, 0)),\n\t\t\"ETHERTYPE_TCPSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36866\", token.INT, 0)),\n\t\t\"ETHERTYPE_TEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33103\", token.INT, 0)),\n\t\t\"ETHERTYPE_TIGAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32815\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"ETHERTYPE_TRANSETHER\":              reflect.ValueOf(constant.MakeFromLiteral(\"25944\", token.INT, 0)),\n\t\t\"ETHERTYPE_TYMSHARE\":                reflect.ValueOf(constant.MakeFromLiteral(\"32814\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBBST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28677\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDEBUG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2304\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDIAGLOOP\":              reflect.ValueOf(constant.MakeFromLiteral(\"28674\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBDL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28672\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNIU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28673\", token.INT, 0)),\n\t\t\"ETHERTYPE_UBNMC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28675\", token.INT, 0)),\n\t\t\"ETHERTYPE_VALID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5632\", token.INT, 0)),\n\t\t\"ETHERTYPE_VARIAN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VAXELN\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32827\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEECO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32871\", token.INT, 0)),\n\t\t\"ETHERTYPE_VEXP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32859\", token.INT, 0)),\n\t\t\"ETHERTYPE_VGLAB\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33073\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2989\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESECHO\":               reflect.ValueOf(constant.MakeFromLiteral(\"2991\", token.INT, 0)),\n\t\t\"ETHERTYPE_VINESLOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"2990\", token.INT, 0)),\n\t\t\"ETHERTYPE_VITAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65280\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLAN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33024\", token.INT, 0)),\n\t\t\"ETHERTYPE_VLTLMAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32896\", token.INT, 0)),\n\t\t\"ETHERTYPE_VPROD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32860\", token.INT, 0)),\n\t\t\"ETHERTYPE_VURESERVED\":              reflect.ValueOf(constant.MakeFromLiteral(\"33095\", token.INT, 0)),\n\t\t\"ETHERTYPE_WATERLOO\":                reflect.ValueOf(constant.MakeFromLiteral(\"33072\", token.INT, 0)),\n\t\t\"ETHERTYPE_WELLFLEET\":               reflect.ValueOf(constant.MakeFromLiteral(\"33027\", token.INT, 0)),\n\t\t\"ETHERTYPE_X25\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2053\", token.INT, 0)),\n\t\t\"ETHERTYPE_X75\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2049\", token.INT, 0)),\n\t\t\"ETHERTYPE_XNSSM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"36865\", token.INT, 0)),\n\t\t\"ETHERTYPE_XTP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33149\", token.INT, 0)),\n\t\t\"ETHER_ADDR_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ETHER_ALIGN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_CRC_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_BE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"79764918\", token.INT, 0)),\n\t\t\"ETHER_CRC_POLY_LE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3988292384\", token.INT, 0)),\n\t\t\"ETHER_HDR_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"ETHER_MAX_DIX_LEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1536\", token.INT, 0)),\n\t\t\"ETHER_MAX_HARDMTU_LEN\":             reflect.ValueOf(constant.MakeFromLiteral(\"65435\", token.INT, 0)),\n\t\t\"ETHER_MAX_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1518\", token.INT, 0)),\n\t\t\"ETHER_MIN_LEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ETHER_TYPE_LEN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ETHER_VLAN_ENCAP_LEN\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ETIMEDOUT\":                         reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                      reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                           reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUSERS\":                            reflect.ValueOf(syscall.EUSERS),\n\t\t\"EVFILT_AIO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"EVFILT_DEVICE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-8\", token.INT, 0)),\n\t\t\"EVFILT_EXCEPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-9\", token.INT, 0)),\n\t\t\"EVFILT_PROC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-5\", token.INT, 0)),\n\t\t\"EVFILT_READ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"EVFILT_SIGNAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-6\", token.INT, 0)),\n\t\t\"EVFILT_SYSCOUNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"EVFILT_TIMER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-7\", token.INT, 0)),\n\t\t\"EVFILT_VNODE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-4\", token.INT, 0)),\n\t\t\"EVFILT_WRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2\", token.INT, 0)),\n\t\t\"EVL_ENCAPLEN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EVL_PRIO_BITS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"EVL_PRIO_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"EVL_VLID_MASK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"EVL_VLID_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4094\", token.INT, 0)),\n\t\t\"EVL_VLID_MIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EVL_VLID_NULL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EV_ADD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EV_CLEAR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"EV_DELETE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"EV_DISABLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"EV_DISPATCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"EV_ENABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"EV_EOF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"EV_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"EV_FLAG1\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"EV_ONESHOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"EV_RECEIPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"EV_SYSFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"63488\", token.INT, 0)),\n\t\t\"EWOULDBLOCK\":                       reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                             reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXTA\":                              reflect.ValueOf(constant.MakeFromLiteral(\"19200\", token.INT, 0)),\n\t\t\"EXTB\":                              reflect.ValueOf(constant.MakeFromLiteral(\"38400\", token.INT, 0)),\n\t\t\"EXTPROC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"Environ\":                           reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FLUSHO\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"F_DUPFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_GETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_ISATTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_RDLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_SETFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETOWN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"Fchdir\":                            reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchflags\":                          reflect.ValueOf(syscall.Fchflags),\n\t\t\"Fchmod\":                            reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                            reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                        reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"Flock\":                             reflect.ValueOf(syscall.Flock),\n\t\t\"FlushBpf\":                          reflect.ValueOf(syscall.FlushBpf),\n\t\t\"ForkLock\":                          reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                         reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                             reflect.ValueOf(syscall.Fstat),\n\t\t\"Fstatfs\":                           reflect.ValueOf(syscall.Fstatfs),\n\t\t\"Fsync\":                             reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                         reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Futimes\":                           reflect.ValueOf(syscall.Futimes),\n\t\t\"Getdirentries\":                     reflect.ValueOf(syscall.Getdirentries),\n\t\t\"Getegid\":                           reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                            reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                           reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getfsstat\":                         reflect.ValueOf(syscall.Getfsstat),\n\t\t\"Getgid\":                            reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                         reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                       reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                       reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpgid\":                           reflect.ValueOf(syscall.Getpgid),\n\t\t\"Getpgrp\":                           reflect.ValueOf(syscall.Getpgrp),\n\t\t\"Getpid\":                            reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                           reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                       reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                         reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                         reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsid\":                            reflect.ValueOf(syscall.Getsid),\n\t\t\"Getsockname\":                       reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptByte\":                    reflect.ValueOf(syscall.GetsockoptByte),\n\t\t\"GetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.GetsockoptICMPv6Filter),\n\t\t\"GetsockoptIPMreq\":                  reflect.ValueOf(syscall.GetsockoptIPMreq),\n\t\t\"GetsockoptIPv6MTUInfo\":             reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),\n\t\t\"GetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.GetsockoptIPv6Mreq),\n\t\t\"GetsockoptInet4Addr\":               reflect.ValueOf(syscall.GetsockoptInet4Addr),\n\t\t\"GetsockoptInt\":                     reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                      reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                            reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                             reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"ICANON\":                            reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"ICMP6_FILTER\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ICRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFAN_ARRIVAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IFAN_DEPARTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36434\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_LINK0\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_LINK1\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_LINK2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_OACTIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_SIMPLEX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_STATICARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_A12MPPSWITCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"IFT_AAL2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"187\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ADSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"IFT_AFLANE8023\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IFT_AFLANE8025\":                    reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IFT_ARAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ASYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"IFT_ATM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_ATMDXI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"IFT_ATMFUNI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"IFT_ATMIMA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"IFT_ATMLOGICAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IFT_ATMRADIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"189\", token.INT, 0)),\n\t\t\"IFT_ATMSUBINTERFACE\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"IFT_ATMVCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"IFT_ATMVIRTUAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"149\", token.INT, 0)),\n\t\t\"IFT_BGPPOLICYACCOUNTING\":           reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"IFT_BLUETOOTH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"IFT_BRIDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"IFT_BSC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"IFT_CARP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"247\", token.INT, 0)),\n\t\t\"IFT_CCTEMUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_CES\":                           reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"IFT_CHANNEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"IFT_CNR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"IFT_COFFEE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IFT_COMPOSITELINK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"IFT_DCN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"IFT_DIGITALPOWERLINE\":              reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"IFT_DIGITALWRAPPEROVERHEADCHANNEL\": reflect.ValueOf(constant.MakeFromLiteral(\"186\", token.INT, 0)),\n\t\t\"IFT_DLSW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEDOWNSTREAM\":           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEMACLAYER\":             reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAM\":             reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"IFT_DOCSCABLEUPSTREAMCHANNEL\":      reflect.ValueOf(constant.MakeFromLiteral(\"205\", token.INT, 0)),\n\t\t\"IFT_DS0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"IFT_DS0BUNDLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"IFT_DS1FDL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"IFT_DS3\":                           reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_DTM\":                           reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"IFT_DUMMY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"241\", token.INT, 0)),\n\t\t\"IFT_DVBASILN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"IFT_DVBASIOUT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"IFT_DVBRCCDOWNSTREAM\":              reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"IFT_DVBRCCMACLAYER\":                reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"IFT_DVBRCCUPSTREAM\":                reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"IFT_ECONET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"206\", token.INT, 0)),\n\t\t\"IFT_ENC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"244\", token.INT, 0)),\n\t\t\"IFT_EON\":                           reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_EPLRS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"IFT_ESCON\":                         reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FAITH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"243\", token.INT, 0)),\n\t\t\"IFT_FAST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"IFT_FASTETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IFT_FASTETHERFX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FIBRECHANNEL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYINTERCONNECT\":        reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IFT_FRAMERELAYMPI\":                 reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"IFT_FRDLCIENDPT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_FRF16MFRBUNDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"IFT_FRFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"158\", token.INT, 0)),\n\t\t\"IFT_G703AT2MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IFT_G703AT64K\":                     reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IFT_GIF\":                           reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IFT_GIGABITETHERNET\":               reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"IFT_GR303IDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"IFT_GR303RDT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"IFT_H323GATEKEEPER\":                reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"IFT_H323PROXY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"IFT_HDSL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"IFT_HIPERLAN2\":                     reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                         reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HIPPIINTERFACE\":                reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IFT_HOSTPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IBM370PARCHAN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"IFT_IDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"154\", token.INT, 0)),\n\t\t\"IFT_IEEE1394\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"IFT_IEEE80211\":                     reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"IFT_IEEE80212\":                     reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IFT_IEEE8023ADLAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"IFT_IFGSN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"IFT_IMT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"190\", token.INT, 0)),\n\t\t\"IFT_INFINIBAND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_INTERLEAVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"IFT_IP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"IFT_IPFORWARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"IFT_IPOVERATM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"IFT_IPOVERCDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"IFT_IPOVERCLAW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"IFT_IPSWITCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"IFT_ISDN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISDNS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"IFT_ISDNU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88025CRFPINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IFT_ISO88025DTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"IFT_ISO88025FIBER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_ISUP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"IFT_L2VLAN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"IFT_L3IPVLAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IFT_L3IPXVLAN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LAPD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IFT_LAPF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"IFT_LINEGROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"210\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MBIM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"IFT_MEDIAMAILOVERIP\":               reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"IFT_MFSIGLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_MPC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"IFT_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"IFT_MPLSTUNNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"IFT_MSDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"IFT_MVL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"IFT_MYRINET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"IFT_NFAS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OPTICALCHANNEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"IFT_OPTICALTRANSPORT\":              reflect.ValueOf(constant.MakeFromLiteral(\"196\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                           reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PFLOG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"245\", token.INT, 0)),\n\t\t\"IFT_PFLOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"IFT_PFSYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"246\", token.INT, 0)),\n\t\t\"IFT_PLC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"IFT_PON155\":                        reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"IFT_PON622\":                        reflect.ValueOf(constant.MakeFromLiteral(\"208\", token.INT, 0)),\n\t\t\"IFT_POS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"IFT_PPP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PPPMULTILINKBUNDLE\":            reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IFT_PROPATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"IFT_PROPBWAP2MP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"184\", token.INT, 0)),\n\t\t\"IFT_PROPCNLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSDOWNSTREAM\":    reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSMACLAYER\":      reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"IFT_PROPDOCSWIRELESSUPSTREAM\":      reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PROPWIRELESSP2P\":               reflect.ValueOf(constant.MakeFromLiteral(\"157\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_PVC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"242\", token.INT, 0)),\n\t\t\"IFT_Q2931\":                         reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"IFT_QLLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"IFT_RADIOMAC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"188\", token.INT, 0)),\n\t\t\"IFT_RADSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"IFT_REACHDSL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"IFT_RFC1483\":                       reflect.ValueOf(constant.MakeFromLiteral(\"159\", token.INT, 0)),\n\t\t\"IFT_RS232\":                         reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_RSRB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IFT_SHDSL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"IFT_SIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SIPSIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"IFT_SIPTG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETOVERHEADCHANNEL\":          reflect.ValueOf(constant.MakeFromLiteral(\"185\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_SRP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"151\", token.INT, 0)),\n\t\t\"IFT_SS7SIGLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"156\", token.INT, 0)),\n\t\t\"IFT_STACKTOSTACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_T1\":                            reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_TDLC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"IFT_TELINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"IFT_TERMPAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"IFT_TR008\":                         reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"IFT_TRANSPHDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"IFT_TUNNEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                         reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_USB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"IFT_V11\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFT_V35\":                           reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_V36\":                           reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IFT_V37\":                           reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IFT_VDSL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IFT_VIRTUALIPADDRESS\":              reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IFT_VIRTUALTG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"IFT_VOICEDID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"213\", token.INT, 0)),\n\t\t\"IFT_VOICEEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"IFT_VOICEEMFGD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"211\", token.INT, 0)),\n\t\t\"IFT_VOICEENCAP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IFT_VOICEFGDEANA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"212\", token.INT, 0)),\n\t\t\"IFT_VOICEFXO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"IFT_VOICEFXS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"152\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERCABLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"198\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERFRAMERELAY\":           reflect.ValueOf(constant.MakeFromLiteral(\"153\", token.INT, 0)),\n\t\t\"IFT_VOICEOVERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"IFT_WIREGUARD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"IFT_X213\":                          reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"IFT_X25\":                           reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25HUNTGROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"IFT_X25MLP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_RFC3021_HOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IN_RFC3021_NET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4294967294\", token.INT, 0)),\n\t\t\"IN_RFC3021_NSHIFT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_CARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"IPPROTO_DIVERT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"IPPROTO_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"257\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_ETHERIP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_GRE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                    reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPCOMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"IPPROTO_IPIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_MAXID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"259\", token.INT, 0)),\n\t\t\"IPPROTO_MOBILE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPPROTO_MPLS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_TP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPPROTO_UDPLITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"IPV6_AUTH_LEVEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IPV6_AUTOFLOWLABEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_HOPS\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFAULT_MULTICAST_LOOP\":       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_DEFHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPV6_ESP_NETWORK_LEVEL\":            reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"IPV6_ESP_TRANS_LEVEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IPV6_FAITH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IPV6_FLOWLABEL_MASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"IPV6_FRAGTTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"IPV6_HLIMDEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IPV6_IPCOMP_LEVEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MAXHLIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPV6_MAXPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IPV6_MINHOPCOUNT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPV6_MMTU\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1280\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_OPTIONS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                      reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPV6_PIPEX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_DEFAULT\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_HIGH\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PORTRANGE_LOW\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTPORT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"IPV6_RTABLE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_LOOSE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_STRICT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SOCKOPT_RESERVED1\":            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IPV6_VERSION\":                      reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"IPV6_VERSION_MASK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"240\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_AUTH_LEVEL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_ESP_NETWORK_LEVEL\":              reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_ESP_TRANS_LEVEL\":                reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_IPCOMP_LEVEL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IP_IPDEFTTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IP_IPSECFLOWINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_AUTH\":               reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_CRED\":               reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_IPSEC_LOCAL_ID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_AUTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_CRED\":              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_IPSEC_REMOTE_ID\":                reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MAX_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"4095\", token.INT, 0)),\n\t\t\"IP_MF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MINTTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IP_MIN_MEMBERSHIPS\":                reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IP_MSS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_OFFMASK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8191\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PIPEX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_PORTRANGE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_DEFAULT\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_HIGH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PORTRANGE_LOW\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVDSTPORT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_RF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IP_RTABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"IP_SENDSRCADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_TOS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ISIG\":                              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ISTRIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IXON\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                   reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Issetugid\":                         reflect.ValueOf(syscall.Issetugid),\n\t\t\"Kevent\":                            reflect.ValueOf(syscall.Kevent),\n\t\t\"Kqueue\":                            reflect.ValueOf(syscall.Kqueue),\n\t\t\"LCNT_OVERLOAD_FLUSH\":               reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"LOCK_EX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"LOCK_NB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"LOCK_SH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"LOCK_UN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"Lchown\":                            reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                              reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                            reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                             reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_DONTNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_SPACEAVAIL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_ANON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MAP_CONCEAL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAP_COPY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_FILE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_FLAGMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65527\", token.INT, 0)),\n\t\t\"MAP_HASSEMAPHORE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_INHERIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_INHERIT_COPY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_INHERIT_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_INHERIT_SHARE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_INHERIT_ZERO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_NOEXTEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_STACK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAP_TRYFIXED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_BCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_CMSG_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_EOR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_MCAST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MSG_NOSIGNAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MSG_OOB\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_WAITFORONE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MS_SYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Mkdir\":                             reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mkfifo\":                            reflect.ValueOf(syscall.Mkfifo),\n\t\t\"Mknod\":                             reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                              reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                            reflect.ValueOf(syscall.Munmap),\n\t\t\"NAME_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"NET_RT_DUMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NET_RT_FLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NET_RT_IFLIST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NET_RT_IFNAMES\":                    reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NET_RT_MAXID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NET_RT_SOURCE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NET_RT_STATS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NET_RT_TABLE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"NOFLSH\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_ATTRIB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NOTE_CHANGE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_CHILD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_DELETE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_EOF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"NOTE_EXIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"NOTE_EXTEND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_FORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"NOTE_LINK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"NOTE_LOWAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_OOB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"NOTE_PCTRLMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"NOTE_PDATAMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048575\", token.INT, 0)),\n\t\t\"NOTE_RENAME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"NOTE_REVOKE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"NOTE_TRACK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NOTE_TRACKERR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NOTE_TRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"NOTE_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Nanosleep\":                         reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                    reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                     reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ONLCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ONLRET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ONOCR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONOEOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OPOST\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_ASYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"O_CREAT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_DSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_EXCL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_EXLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_FSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NDELAY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_RDONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_SHLOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_SYNC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_TRUNC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_WRONLY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                              reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"PARMRK\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"PENDIN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"PF_FLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PTRACE_CONT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"PTRACE_KILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PTRACE_TRACEME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ParseDirent\":                       reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseRoutingMessage\":               reflect.ValueOf(syscall.ParseRoutingMessage),\n\t\t\"ParseRoutingSockaddr\":              reflect.ValueOf(syscall.ParseRoutingSockaddr),\n\t\t\"ParseSocketControlMessage\":         reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":                   reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"Pathconf\":                          reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                              reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                             reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                             reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                            reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_CORE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9223372036854775807\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BFD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DNS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTAX_DST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_LABEL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_SEARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTAX_SRC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTAX_SRCMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_STATIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTA_BRD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DNS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTA_DST\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_LABEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_SEARCH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTA_SRC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTA_SRCMASK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTA_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_ANNOUNCE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_BFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_BROADCAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RTF_CACHED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_CLONED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_CONNECTED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RTF_DONE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_FMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"17890312\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_LOCAL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MPATH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_MPLS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTF_MULTICAST\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_PERMANENT_ARP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_PROTO3\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_USETRAILERS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTM_80211INFO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"RTM_ADD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_BFD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_CHGADDRATTR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_DESYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IFANNOUNCE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_INVALIDATE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MAXSIZE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTM_MISS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_PROPOSAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_SOURCE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RT_TABLEID_BITS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RT_TABLEID_MASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RT_TABLEID_MAX\":                    reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RUSAGE_THREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                              reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                        reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                          reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                          reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                           reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                            reflect.ValueOf(syscall.Rename),\n\t\t\"Revoke\":                            reflect.ValueOf(syscall.Revoke),\n\t\t\"Rmdir\":                             reflect.ValueOf(syscall.Rmdir),\n\t\t\"RouteRIB\":                          reflect.ValueOf(syscall.RouteRIB),\n\t\t\"SCM_RIGHTS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SHUT_RD\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                           reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                           reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                            reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                           reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                           reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                            reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                            reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                            reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                            reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINFO\":                           reflect.ValueOf(syscall.SIGINFO),\n\t\t\"SIGINT\":                            reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                             reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                            reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGKILL\":                           reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                           reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPROF\":                           reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGQUIT\":                           reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                           reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                           reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                            reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                           reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHR\":                            reflect.ValueOf(syscall.SIGTHR),\n\t\t\"SIGTRAP\":                           reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                           reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                           reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                           reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                            reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                           reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                           reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                         reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWINCH\":                          reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                           reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                           reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIOCADDMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607729\", token.INT, 0)),\n\t\t\"SIOCAIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2151704858\", token.INT, 0)),\n\t\t\"SIOCAIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132103\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCBRDGADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2153802044\", token.INT, 0)),\n\t\t\"SIOCBRDGADDL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2153802057\", token.INT, 0)),\n\t\t\"SIOCBRDGADDS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2153802049\", token.INT, 0)),\n\t\t\"SIOCBRDGARL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156685645\", token.INT, 0)),\n\t\t\"SIOCBRDGDADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2166909255\", token.INT, 0)),\n\t\t\"SIOCBRDGDEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2153802045\", token.INT, 0)),\n\t\t\"SIOCBRDGDELS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2153802050\", token.INT, 0)),\n\t\t\"SIOCBRDGFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2153802056\", token.INT, 0)),\n\t\t\"SIOCBRDGFRL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2156685646\", token.INT, 0)),\n\t\t\"SIOCBRDGGCACHE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222563137\", token.INT, 0)),\n\t\t\"SIOCBRDGGFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563154\", token.INT, 0)),\n\t\t\"SIOCBRDGGHT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563153\", token.INT, 0)),\n\t\t\"SIOCBRDGGIFFLGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3227543870\", token.INT, 0)),\n\t\t\"SIOCBRDGGMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563155\", token.INT, 0)),\n\t\t\"SIOCBRDGGPARAM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3225446744\", token.INT, 0)),\n\t\t\"SIOCBRDGGPRI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3222563152\", token.INT, 0)),\n\t\t\"SIOCBRDGGRL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3224398159\", token.INT, 0)),\n\t\t\"SIOCBRDGGTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222563142\", token.INT, 0)),\n\t\t\"SIOCBRDGIFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3227543874\", token.INT, 0)),\n\t\t\"SIOCBRDGRTS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349571\", token.INT, 0)),\n\t\t\"SIOCBRDGSADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3240651076\", token.INT, 0)),\n\t\t\"SIOCBRDGSCACHE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2148821312\", token.INT, 0)),\n\t\t\"SIOCBRDGSFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821330\", token.INT, 0)),\n\t\t\"SIOCBRDGSHT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821329\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFCOST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153802069\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFFLGS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153802047\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFPRIO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153802068\", token.INT, 0)),\n\t\t\"SIOCBRDGSIFPROT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2153802058\", token.INT, 0)),\n\t\t\"SIOCBRDGSMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821331\", token.INT, 0)),\n\t\t\"SIOCBRDGSPRI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148821328\", token.INT, 0)),\n\t\t\"SIOCBRDGSPROTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2148821338\", token.INT, 0)),\n\t\t\"SIOCBRDGSTO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148821317\", token.INT, 0)),\n\t\t\"SIOCBRDGSTXHC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2148821337\", token.INT, 0)),\n\t\t\"SIOCDELLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607831\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607730\", token.INT, 0)),\n\t\t\"SIOCDIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607705\", token.INT, 0)),\n\t\t\"SIOCDIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132105\", token.INT, 0)),\n\t\t\"SIOCDIFPARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607860\", token.INT, 0)),\n\t\t\"SIOCDIFPHYADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607753\", token.INT, 0)),\n\t\t\"SIOCDPWE3NEIGHBOR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2149607902\", token.INT, 0)),\n\t\t\"SIOCDVNETID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607855\", token.INT, 0)),\n\t\t\"SIOCGETKALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3222825380\", token.INT, 0)),\n\t\t\"SIOCGETLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607834\", token.INT, 0)),\n\t\t\"SIOCGETMPWCFG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349678\", token.INT, 0)),\n\t\t\"SIOCGETPFLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349758\", token.INT, 0)),\n\t\t\"SIOCGETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349752\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223352628\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223876915\", token.INT, 0)),\n\t\t\"SIOCGETVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349648\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349537\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349539\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3222300964\", token.INT, 0)),\n\t\t\"SIOCGIFDATA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349531\", token.INT, 0)),\n\t\t\"SIOCGIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349633\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349538\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349521\", token.INT, 0)),\n\t\t\"SIOCGIFGATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873931\", token.INT, 0)),\n\t\t\"SIOCGIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349562\", token.INT, 0)),\n\t\t\"SIOCGIFGLIST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873933\", token.INT, 0)),\n\t\t\"SIOCGIFGMEMB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873930\", token.INT, 0)),\n\t\t\"SIOCGIFGROUP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223873928\", token.INT, 0)),\n\t\t\"SIOCGIFHARDMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349669\", token.INT, 0)),\n\t\t\"SIOCGIFLLPRIO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349686\", token.INT, 0)),\n\t\t\"SIOCGIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3225446712\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349527\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3223349630\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349541\", token.INT, 0)),\n\t\t\"SIOCGIFPAIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349681\", token.INT, 0)),\n\t\t\"SIOCGIFPARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349683\", token.INT, 0)),\n\t\t\"SIOCGIFPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349660\", token.INT, 0)),\n\t\t\"SIOCGIFRDOMAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349664\", token.INT, 0)),\n\t\t\"SIOCGIFRTLABEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349635\", token.INT, 0)),\n\t\t\"SIOCGIFRXR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607850\", token.INT, 0)),\n\t\t\"SIOCGIFSFFPAGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3239209273\", token.INT, 0)),\n\t\t\"SIOCGIFXFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349662\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3256379723\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYDF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349698\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYECN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349704\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYRTABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3223349666\", token.INT, 0)),\n\t\t\"SIOCGLIFPHYTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3223349673\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGPWE3\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3223349656\", token.INT, 0)),\n\t\t\"SIOCGPWE3CTRLWORD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3223349724\", token.INT, 0)),\n\t\t\"SIOCGPWE3FAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349725\", token.INT, 0)),\n\t\t\"SIOCGPWE3NEIGHBOR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3256379870\", token.INT, 0)),\n\t\t\"SIOCGRXHPRIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349723\", token.INT, 0)),\n\t\t\"SIOCGSPPPPARAMS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349652\", token.INT, 0)),\n\t\t\"SIOCGTXHPRIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349702\", token.INT, 0)),\n\t\t\"SIOCGUMBINFO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349694\", token.INT, 0)),\n\t\t\"SIOCGUMBPARAM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3223349696\", token.INT, 0)),\n\t\t\"SIOCGVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3223349750\", token.INT, 0)),\n\t\t\"SIOCGVNETFLOWID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3223349700\", token.INT, 0)),\n\t\t\"SIOCGVNETID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3223349671\", token.INT, 0)),\n\t\t\"SIOCIFAFATTACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2148624811\", token.INT, 0)),\n\t\t\"SIOCIFAFDETACH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2148624812\", token.INT, 0)),\n\t\t\"SIOCIFCREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607802\", token.INT, 0)),\n\t\t\"SIOCIFDESTROY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607801\", token.INT, 0)),\n\t\t\"SIOCIFGCLONERS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3222301048\", token.INT, 0)),\n\t\t\"SIOCSETKALIVE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149083555\", token.INT, 0)),\n\t\t\"SIOCSETLABEL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607833\", token.INT, 0)),\n\t\t\"SIOCSETMPWCFG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607853\", token.INT, 0)),\n\t\t\"SIOCSETPFLOW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607933\", token.INT, 0)),\n\t\t\"SIOCSETPFSYNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607927\", token.INT, 0)),\n\t\t\"SIOCSETVLAN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607823\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607692\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607699\", token.INT, 0)),\n\t\t\"SIOCSIFDESCR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607808\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607694\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607696\", token.INT, 0)),\n\t\t\"SIOCSIFGATTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2150132108\", token.INT, 0)),\n\t\t\"SIOCSIFGENERIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607737\", token.INT, 0)),\n\t\t\"SIOCSIFLLADDR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607711\", token.INT, 0)),\n\t\t\"SIOCSIFLLPRIO\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607861\", token.INT, 0)),\n\t\t\"SIOCSIFMEDIA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3223349559\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607704\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2149607807\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607702\", token.INT, 0)),\n\t\t\"SIOCSIFPAIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607856\", token.INT, 0)),\n\t\t\"SIOCSIFPARENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607858\", token.INT, 0)),\n\t\t\"SIOCSIFPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607835\", token.INT, 0)),\n\t\t\"SIOCSIFRDOMAIN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607839\", token.INT, 0)),\n\t\t\"SIOCSIFRTLABEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607810\", token.INT, 0)),\n\t\t\"SIOCSIFXFLAGS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607837\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2182637898\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYDF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607873\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYECN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607879\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYRTABLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2149607841\", token.INT, 0)),\n\t\t\"SIOCSLIFPHYTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2149607848\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775240\", token.INT, 0)),\n\t\t\"SIOCSPWE3CTRLWORD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2149607900\", token.INT, 0)),\n\t\t\"SIOCSPWE3FAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607901\", token.INT, 0)),\n\t\t\"SIOCSPWE3NEIGHBOR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2182638046\", token.INT, 0)),\n\t\t\"SIOCSRXHPRIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607899\", token.INT, 0)),\n\t\t\"SIOCSSPPPPARAMS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607827\", token.INT, 0)),\n\t\t\"SIOCSTXHPRIO\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2149607877\", token.INT, 0)),\n\t\t\"SIOCSUMBPARAM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2149607871\", token.INT, 0)),\n\t\t\"SIOCSVH\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3223349749\", token.INT, 0)),\n\t\t\"SIOCSVNETFLOWID\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2149607875\", token.INT, 0)),\n\t\t\"SIOCSVNETID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2149607846\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_DNS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_BINDANY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4132\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_NETPROC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4128\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PEERCRED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4130\", token.INT, 0)),\n\t\t\"SO_PROTOCOL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4133\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_REUSEPORT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_RTABLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4129\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_SPLICE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4131\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_TYPE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_ZEROIZE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SYS_ACCEPT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_ACCEPT4\":                       reflect.ValueOf(constant.MakeFromLiteral(\"93\", token.INT, 0)),\n\t\t\"SYS_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_ACCT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_ADJFREQ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"305\", token.INT, 0)),\n\t\t\"SYS_ADJTIME\":                       reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"SYS_BIND\":                          reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_CHFLAGS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_CHFLAGSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"SYS_CHMOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"SYS_CHOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_CHROOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETRES\":                  reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"SYS_CLOCK_GETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"87\", token.INT, 0)),\n\t\t\"SYS_CLOCK_SETTIME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"88\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_CLOSEFROM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"287\", token.INT, 0)),\n\t\t\"SYS_CONNECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"98\", token.INT, 0)),\n\t\t\"SYS_DUP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_DUP2\":                          reflect.ValueOf(constant.MakeFromLiteral(\"90\", token.INT, 0)),\n\t\t\"SYS_DUP3\":                          reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_EXIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYS_FACCESSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"313\", token.INT, 0)),\n\t\t\"SYS_FCHDIR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"SYS_FCHFLAGS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_FCHMOD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"SYS_FCHMODAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"314\", token.INT, 0)),\n\t\t\"SYS_FCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"SYS_FCHOWNAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"315\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"92\", token.INT, 0)),\n\t\t\"SYS_FHOPEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"264\", token.INT, 0)),\n\t\t\"SYS_FHSTAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"294\", token.INT, 0)),\n\t\t\"SYS_FHSTATFS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"SYS_FLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"SYS_FORK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FPATHCONF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"192\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_FSTATAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_FSTATFS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SYS_FSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"95\", token.INT, 0)),\n\t\t\"SYS_FTRUNCATE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SYS_FUTEX\":                         reflect.ValueOf(constant.MakeFromLiteral(\"83\", token.INT, 0)),\n\t\t\"SYS_FUTIMENS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"85\", token.INT, 0)),\n\t\t\"SYS_FUTIMES\":                       reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"SYS_GETDENTS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"SYS_GETDTABLECOUNT\":                reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"SYS_GETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_GETENTROPY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_GETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_GETFH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"161\", token.INT, 0)),\n\t\t\"SYS_GETFSSTAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"SYS_GETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_GETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"79\", token.INT, 0)),\n\t\t\"SYS_GETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"70\", token.INT, 0)),\n\t\t\"SYS_GETLOGIN_R\":                    reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"SYS_GETPEERNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_GETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"SYS_GETPGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81\", token.INT, 0)),\n\t\t\"SYS_GETPID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SYS_GETPPID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_GETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"SYS_GETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"283\", token.INT, 0)),\n\t\t\"SYS_GETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"281\", token.INT, 0)),\n\t\t\"SYS_GETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"194\", token.INT, 0)),\n\t\t\"SYS_GETRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"311\", token.INT, 0)),\n\t\t\"SYS_GETRUSAGE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_GETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"SYS_GETSOCKNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_GETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"SYS_GETTHRID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"299\", token.INT, 0)),\n\t\t\"SYS_GETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"SYS_GETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_IOCTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"SYS_ISSETUGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"SYS_KBIND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"86\", token.INT, 0)),\n\t\t\"SYS_KEVENT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"72\", token.INT, 0)),\n\t\t\"SYS_KILL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"SYS_KQUEUE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"269\", token.INT, 0)),\n\t\t\"SYS_KTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_LCHOWN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"SYS_LINK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SYS_LINKAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"317\", token.INT, 0)),\n\t\t\"SYS_LISTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SYS_LSEEK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"SYS_LSTAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_MADVISE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"75\", token.INT, 0)),\n\t\t\"SYS_MINHERIT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"SYS_MKDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"SYS_MKDIRAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"318\", token.INT, 0)),\n\t\t\"SYS_MKFIFO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"SYS_MKFIFOAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"319\", token.INT, 0)),\n\t\t\"SYS_MKNOD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_MKNODAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"320\", token.INT, 0)),\n\t\t\"SYS_MLOCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"203\", token.INT, 0)),\n\t\t\"SYS_MLOCKALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"271\", token.INT, 0)),\n\t\t\"SYS_MMAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_MPROTECT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"74\", token.INT, 0)),\n\t\t\"SYS_MQUERY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"78\", token.INT, 0)),\n\t\t\"SYS_MSGCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"297\", token.INT, 0)),\n\t\t\"SYS_MSGGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"225\", token.INT, 0)),\n\t\t\"SYS_MSGRCV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"227\", token.INT, 0)),\n\t\t\"SYS_MSGSND\":                        reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"SYS_MSYNC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SYS_MSYSCALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_MUNLOCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"204\", token.INT, 0)),\n\t\t\"SYS_MUNLOCKALL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"272\", token.INT, 0)),\n\t\t\"SYS_MUNMAP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"73\", token.INT, 0)),\n\t\t\"SYS_NANOSLEEP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"91\", token.INT, 0)),\n\t\t\"SYS_NFSSVC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"155\", token.INT, 0)),\n\t\t\"SYS_OBREAK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_OPEN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_OPENAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"321\", token.INT, 0)),\n\t\t\"SYS_PAD_FTRUNCATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"SYS_PAD_LSEEK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"SYS_PAD_MMAP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"197\", token.INT, 0)),\n\t\t\"SYS_PAD_MQUERY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"286\", token.INT, 0)),\n\t\t\"SYS_PAD_PREAD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"SYS_PAD_PREADV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"267\", token.INT, 0)),\n\t\t\"SYS_PAD_PWRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"SYS_PAD_PWRITEV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"268\", token.INT, 0)),\n\t\t\"SYS_PAD_TRUNCATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"SYS_PATHCONF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"191\", token.INT, 0)),\n\t\t\"SYS_PIPE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"263\", token.INT, 0)),\n\t\t\"SYS_PIPE2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"SYS_PLEDGE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SYS_POLL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SYS_PPOLL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"SYS_PREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"SYS_PREADV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"SYS_PROFIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"SYS_PSELECT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SYS_PTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"SYS_PWRITEV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"SYS_QUOTACTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"148\", token.INT, 0)),\n\t\t\"SYS_READ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_READLINK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"SYS_READLINKAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"322\", token.INT, 0)),\n\t\t\"SYS_READV\":                         reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"SYS_REBOOT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"55\", token.INT, 0)),\n\t\t\"SYS_RECVFROM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_RECVMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"116\", token.INT, 0)),\n\t\t\"SYS_RECVMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"SYS_RENAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SYS_RENAMEAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"323\", token.INT, 0)),\n\t\t\"SYS_REVOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SYS_RMDIR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"SYS_SCHED_YIELD\":                   reflect.ValueOf(constant.MakeFromLiteral(\"298\", token.INT, 0)),\n\t\t\"SYS_SELECT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"71\", token.INT, 0)),\n\t\t\"SYS_SEMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"221\", token.INT, 0)),\n\t\t\"SYS_SEMOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"290\", token.INT, 0)),\n\t\t\"SYS_SENDMMSG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"SYS_SENDMSG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_SENDSYSLOG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"SYS_SENDTO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"SYS_SETEGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"182\", token.INT, 0)),\n\t\t\"SYS_SETEUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"183\", token.INT, 0)),\n\t\t\"SYS_SETGID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"SYS_SETGROUPS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"SYS_SETITIMER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"SYS_SETLOGIN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_SETPGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"82\", token.INT, 0)),\n\t\t\"SYS_SETPRIORITY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SYS_SETREGID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"SYS_SETRESGID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"284\", token.INT, 0)),\n\t\t\"SYS_SETRESUID\":                     reflect.ValueOf(constant.MakeFromLiteral(\"282\", token.INT, 0)),\n\t\t\"SYS_SETREUID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"SYS_SETRLIMIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"195\", token.INT, 0)),\n\t\t\"SYS_SETRTABLE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"310\", token.INT, 0)),\n\t\t\"SYS_SETSID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"147\", token.INT, 0)),\n\t\t\"SYS_SETSOCKOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"SYS_SETTIMEOFDAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SYS_SETUID\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_SHMAT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"228\", token.INT, 0)),\n\t\t\"SYS_SHMCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"296\", token.INT, 0)),\n\t\t\"SYS_SHMDT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"230\", token.INT, 0)),\n\t\t\"SYS_SHMGET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"289\", token.INT, 0)),\n\t\t\"SYS_SHUTDOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"SYS_SIGACTION\":                     reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_SIGALTSTACK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"288\", token.INT, 0)),\n\t\t\"SYS_SIGPENDING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_SIGPROCMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SYS_SIGRETURN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"SYS_SIGSUSPEND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"111\", token.INT, 0)),\n\t\t\"SYS_SOCKET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"97\", token.INT, 0)),\n\t\t\"SYS_SOCKETPAIR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"SYS_STAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_STATFS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SYS_SWAPCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"193\", token.INT, 0)),\n\t\t\"SYS_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"57\", token.INT, 0)),\n\t\t\"SYS_SYMLINKAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"324\", token.INT, 0)),\n\t\t\"SYS_SYNC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SYS_SYSARCH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"SYS_SYSCTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS_THRKILL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"SYS_TRUNCATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"SYS_UMASK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"SYS_UNLINK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_UNLINKAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"325\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_UNVEIL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"SYS_UTIMENSAT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SYS_UTIMES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SYS_UTRACE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"209\", token.INT, 0)),\n\t\t\"SYS_VFORK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"SYS_WAIT4\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SYS_WRITE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_WRITEV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"SYS_YPCONNECT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"150\", token.INT, 0)),\n\t\t\"SYS___GETCWD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"304\", token.INT, 0)),\n\t\t\"SYS___GET_TCB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"330\", token.INT, 0)),\n\t\t\"SYS___REALPATH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"SYS___SEMCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"295\", token.INT, 0)),\n\t\t\"SYS___SET_TCB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"329\", token.INT, 0)),\n\t\t\"SYS___SYSCTL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"SYS___TFORK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS___THREXIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"302\", token.INT, 0)),\n\t\t\"SYS___THRSIGDIVERT\":                reflect.ValueOf(constant.MakeFromLiteral(\"303\", token.INT, 0)),\n\t\t\"SYS___THRSLEEP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"94\", token.INT, 0)),\n\t\t\"SYS___THRWAKEUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"301\", token.INT, 0)),\n\t\t\"SYS___TMPFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"S_IFBLK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                           reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                              reflect.ValueOf(syscall.Seek),\n\t\t\"Select\":                            reflect.ValueOf(syscall.Select),\n\t\t\"Sendfile\":                          reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                           reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                          reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                            reflect.ValueOf(syscall.Sendto),\n\t\t\"SetBpf\":                            reflect.ValueOf(syscall.SetBpf),\n\t\t\"SetBpfBuflen\":                      reflect.ValueOf(syscall.SetBpfBuflen),\n\t\t\"SetBpfDatalink\":                    reflect.ValueOf(syscall.SetBpfDatalink),\n\t\t\"SetBpfHeadercmpl\":                  reflect.ValueOf(syscall.SetBpfHeadercmpl),\n\t\t\"SetBpfImmediate\":                   reflect.ValueOf(syscall.SetBpfImmediate),\n\t\t\"SetBpfInterface\":                   reflect.ValueOf(syscall.SetBpfInterface),\n\t\t\"SetBpfPromisc\":                     reflect.ValueOf(syscall.SetBpfPromisc),\n\t\t\"SetBpfTimeout\":                     reflect.ValueOf(syscall.SetBpfTimeout),\n\t\t\"SetKevent\":                         reflect.ValueOf(syscall.SetKevent),\n\t\t\"SetNonblock\":                       reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                           reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                            reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                           reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                            reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                         reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setlogin\":                          reflect.ValueOf(syscall.Setlogin),\n\t\t\"Setpgid\":                           reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                       reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                          reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                          reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                         reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                            reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                    reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":            reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":                  reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":               reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                     reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                  reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":                  reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":                 reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Settimeofday\":                      reflect.ValueOf(syscall.Settimeofday),\n\t\t\"Setuid\":                            reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                    reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfAnnounceMsghdr\":            reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"SizeofIfData\":                      reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                      reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":                   reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                    reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":                 reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":               reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":                reflect.ValueOf(constant.MakeFromLiteral(\"106\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":               reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                            reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                 reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                        reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                              reflect.ValueOf(syscall.Stat),\n\t\t\"Statfs\":                            reflect.ValueOf(syscall.Statfs),\n\t\t\"Stderr\":                            reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                             reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                            reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                     reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                   reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                    reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                           reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                              reflect.ValueOf(syscall.Sync),\n\t\t\"Sysctl\":                            reflect.ValueOf(syscall.Sysctl),\n\t\t\"SysctlUint32\":                      reflect.ValueOf(syscall.SysctlUint32),\n\t\t\"TCIFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_INFO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MAXWIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"TCP_MAX_SACK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TCP_MAX_WINSHIFT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TCP_MD5SIG\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TCP_MSS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOPUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_SACKHOLE_LIMIT\":                reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TCP_SACK_ENABLE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900730\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900728\", token.INT, 0)),\n\t\t\"TIOCCHKVERAUTH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536900638\", token.INT, 0)),\n\t\t\"TIOCCLRVERAUTH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536900637\", token.INT, 0)),\n\t\t\"TIOCCONS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775586\", token.INT, 0)),\n\t\t\"TIOCDRAIN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900702\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900621\", token.INT, 0)),\n\t\t\"TIOCEXT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775584\", token.INT, 0)),\n\t\t\"TIOCFLAG_CLOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCFLAG_CRTSCTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCFLAG_MDMBUF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCFLAG_PPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCFLAG_SOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775504\", token.INT, 0)),\n\t\t\"TIOCGETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1076655123\", token.INT, 0)),\n\t\t\"TIOCGETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033690\", token.INT, 0)),\n\t\t\"TIOCGFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074033757\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1074033783\", token.INT, 0)),\n\t\t\"TIOCGSID\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033763\", token.INT, 0)),\n\t\t\"TIOCGTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074820187\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1074295912\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775595\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775596\", token.INT, 0)),\n\t\t\"TIOCMGET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033770\", token.INT, 0)),\n\t\t\"TIOCMODS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCMSET\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775597\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                          reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900721\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900622\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1074033779\", token.INT, 0)),\n\t\t\"TIOCPKT\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775600\", token.INT, 0)),\n\t\t\"TIOCPKT_DATA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TIOCPKT_DOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHREAD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCPKT_FLUSHWRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCPKT_IOCTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCPKT_NOSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCPKT_START\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCPKT_STOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775593\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900731\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900705\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900729\", token.INT, 0)),\n\t\t\"TIOCSETA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2150396948\", token.INT, 0)),\n\t\t\"TIOCSETAF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396950\", token.INT, 0)),\n\t\t\"TIOCSETAW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2150396949\", token.INT, 0)),\n\t\t\"TIOCSETD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147775515\", token.INT, 0)),\n\t\t\"TIOCSETVERAUTH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2147775516\", token.INT, 0)),\n\t\t\"TIOCSFLAGS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147775580\", token.INT, 0)),\n\t\t\"TIOCSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147775583\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775606\", token.INT, 0)),\n\t\t\"TIOCSTART\":                         reflect.ValueOf(constant.MakeFromLiteral(\"536900718\", token.INT, 0)),\n\t\t\"TIOCSTAT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900709\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"536900719\", token.INT, 0)),\n\t\t\"TIOCSTSTAMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2148037722\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2148037735\", token.INT, 0)),\n\t\t\"TIOCUCNTL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2147775590\", token.INT, 0)),\n\t\t\"TIOCUCNTL_CBRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"TIOCUCNTL_SBRK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"TOSTOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                    reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                     reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                          reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                             reflect.ValueOf(syscall.Umask),\n\t\t\"UnixRights\":                        reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                            reflect.ValueOf(syscall.Unlink),\n\t\t\"Unmount\":                           reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":                          reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                            reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                        reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VDISCARD\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VDSUSP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VEOL\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VEOL2\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VERASE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VINTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VKILL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VLNEXT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"VMIN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"VQUIT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VREPRINT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VSTART\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTATUS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"VSTOP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VSUSP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VTIME\":                             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"VWERASE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WALTSIG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WCONTINUED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WCOREFLAG\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WNOHANG\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WUNTRACED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Wait4\":                             reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                             reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":                   reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":                  reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":               reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":                  reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfTimeval\":               reflect.ValueOf((*syscall.BpfTimeval)(nil)),\n\t\t\"BpfVersion\":               reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":                  reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                     reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":               reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":                   reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                    reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                    reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":                  reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"Fsid\":                     reflect.ValueOf((*syscall.Fsid)(nil)),\n\t\t\"ICMPv6Filter\":             reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":                   reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":              reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":                 reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfAnnounceMsghdr\":         reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)),\n\t\t\"IfData\":                   reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":                 reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":                reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":             reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"InterfaceAddrMessage\":     reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),\n\t\t\"InterfaceAnnounceMessage\": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)),\n\t\t\"InterfaceMessage\":         reflect.ValueOf((*syscall.InterfaceMessage)(nil)),\n\t\t\"Iovec\":                    reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Kevent_t\":                 reflect.ValueOf((*syscall.Kevent_t)(nil)),\n\t\t\"Linger\":                   reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Mclpool\":                  reflect.ValueOf((*syscall.Mclpool)(nil)),\n\t\t\"Msghdr\":                   reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":                 reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":                  reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":              reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":           reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":      reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":         reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":         reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":          reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":                   reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RouteMessage\":             reflect.ValueOf((*syscall.RouteMessage)(nil)),\n\t\t\"RoutingMessage\":           reflect.ValueOf((*syscall.RoutingMessage)(nil)),\n\t\t\"RtMetrics\":                reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":                 reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":                   reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":                   reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                 reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":         reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":            reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":            reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":             reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\":     reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":                   reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"Statfs_t\":                 reflect.ValueOf((*syscall.Statfs_t)(nil)),\n\t\t\"SysProcAttr\":              reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":                  reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":                 reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                  reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":               reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":           reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":        reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_RoutingMessage\": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),\n\t\t\"_Sockaddr\":       reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type\ntype _syscall_RoutingMessage struct {\n\tIValue interface{}\n}\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_plan9_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Await\":               reflect.ValueOf(syscall.Await),\n\t\t\"Bind\":                reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":   reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\": reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"Chdir\":               reflect.ValueOf(syscall.Chdir),\n\t\t\"Clearenv\":            reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":               reflect.ValueOf(syscall.Close),\n\t\t\"Create\":              reflect.ValueOf(syscall.Create),\n\t\t\"DMAPPEND\":            reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"DMAUTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"DMDIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"DMEXCL\":              reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"DMEXEC\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DMMOUNT\":             reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"DMREAD\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DMTMP\":               reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"DMWRITE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Dup\":                 reflect.ValueOf(syscall.Dup),\n\t\t\"EACCES\":              reflect.ValueOf(&syscall.EACCES).Elem(),\n\t\t\"EAFNOSUPPORT\":        reflect.ValueOf(&syscall.EAFNOSUPPORT).Elem(),\n\t\t\"EBUSY\":               reflect.ValueOf(&syscall.EBUSY).Elem(),\n\t\t\"EEXIST\":              reflect.ValueOf(&syscall.EEXIST).Elem(),\n\t\t\"EINTR\":               reflect.ValueOf(&syscall.EINTR).Elem(),\n\t\t\"EINVAL\":              reflect.ValueOf(&syscall.EINVAL).Elem(),\n\t\t\"EIO\":                 reflect.ValueOf(&syscall.EIO).Elem(),\n\t\t\"EISDIR\":              reflect.ValueOf(&syscall.EISDIR).Elem(),\n\t\t\"EMFILE\":              reflect.ValueOf(&syscall.EMFILE).Elem(),\n\t\t\"ENAMETOOLONG\":        reflect.ValueOf(&syscall.ENAMETOOLONG).Elem(),\n\t\t\"ENOENT\":              reflect.ValueOf(&syscall.ENOENT).Elem(),\n\t\t\"ENOTDIR\":             reflect.ValueOf(&syscall.ENOTDIR).Elem(),\n\t\t\"EPERM\":               reflect.ValueOf(&syscall.EPERM).Elem(),\n\t\t\"EPLAN9\":              reflect.ValueOf(&syscall.EPLAN9).Elem(),\n\t\t\"ERRMAX\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ESPIPE\":              reflect.ValueOf(&syscall.ESPIPE).Elem(),\n\t\t\"ETIMEDOUT\":           reflect.ValueOf(&syscall.ETIMEDOUT).Elem(),\n\t\t\"Environ\":             reflect.ValueOf(syscall.Environ),\n\t\t\"ErrBadName\":          reflect.ValueOf(&syscall.ErrBadName).Elem(),\n\t\t\"ErrBadStat\":          reflect.ValueOf(&syscall.ErrBadStat).Elem(),\n\t\t\"ErrShortStat\":        reflect.ValueOf(&syscall.ErrShortStat).Elem(),\n\t\t\"Fchdir\":              reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fd2path\":             reflect.ValueOf(syscall.Fd2path),\n\t\t\"Fixwd\":               reflect.ValueOf(syscall.Fixwd),\n\t\t\"ForkLock\":            reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":               reflect.ValueOf(syscall.Fstat),\n\t\t\"Fwstat\":              reflect.ValueOf(syscall.Fwstat),\n\t\t\"Getegid\":             reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":              reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":             reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":              reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":           reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":         reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpid\":              reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":             reflect.ValueOf(syscall.Getppid),\n\t\t\"Gettimeofday\":        reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":              reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":               reflect.ValueOf(syscall.Getwd),\n\t\t\"ImplementsGetwd\":     reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"MAFTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MBEFORE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCACHE\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MCREATE\":             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"MORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MREPL\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Mkdir\":               reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mount\":               reflect.ValueOf(syscall.Mount),\n\t\t\"NewError\":            reflect.ValueOf(syscall.NewError),\n\t\t\"NsecToTimeval\":       reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"O_APPEND\":            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_CREAT\":             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_EXCL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_NOCTTY\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDONLY\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SYNC\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_TRUNC\":             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_WRONLY\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                reflect.ValueOf(syscall.Open),\n\t\t\"Pipe\":                reflect.ValueOf(syscall.Pipe),\n\t\t\"Pread\":               reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":              reflect.ValueOf(syscall.Pwrite),\n\t\t\"QTAPPEND\":            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"QTAUTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"QTDIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"QTEXCL\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"QTFILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"QTMOUNT\":             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"QTTMP\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RFCENVG\":             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RFCFDG\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RFCNAMEG\":            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RFENVG\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RFFDG\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RFMEM\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RFNAMEG\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RFNOMNT\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RFNOTEG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RFNOWAIT\":            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RFPROC\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RFREND\":              reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"Read\":                reflect.ValueOf(syscall.Read),\n\t\t\"Remove\":              reflect.ValueOf(syscall.Remove),\n\t\t\"SIGABRT\":             reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":             reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGHUP\":              reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGINT\":              reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGKILL\":             reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGTERM\":             reflect.ValueOf(syscall.SIGTERM),\n\t\t\"STATFIXLEN\":          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"STATMAX\":             reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SYS_ALARM\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_AWAIT\":           reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_BIND\":            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_BRK_\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_CREATE\":          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_DUP\":             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_ERRSTR\":          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_EXEC\":            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_EXITS\":           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_FAUTH\":           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_FD2PATH\":         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":           reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_FVERSION\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_FWSTAT\":          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":           reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_NOTED\":           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_NOTIFY\":          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_NSEC\":            reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_OPEN\":            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_OSEEK\":           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_PIPE\":            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_PREAD\":           reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_REMOVE\":          reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_RENDEZVOUS\":      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_RFORK\":           reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_SEEK\":            reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_SEGATTACH\":       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_SEGBRK\":          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_SEGDETACH\":       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_SEGFLUSH\":        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_SEGFREE\":         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_SEMACQUIRE\":      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_SEMRELEASE\":      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_SLEEP\":           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_STAT\":            reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_SYSR1\":           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_TSEMACQUIRE\":     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_WSTAT\":           reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"S_IFBLK\":             reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":             reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":             reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":              reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"S_IFREG\":             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":            reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"Seek\":                reflect.ValueOf(syscall.Seek),\n\t\t\"Setenv\":              reflect.ValueOf(syscall.Setenv),\n\t\t\"SlicePtrFromStrings\": reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"SocketDisableIPv6\":   reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Stat\":                reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":              reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":               reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":              reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":       reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":     reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":      reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"UnmarshalDir\":        reflect.ValueOf(syscall.UnmarshalDir),\n\t\t\"Unmount\":             reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":            reflect.ValueOf(syscall.Unsetenv),\n\t\t\"WaitProcess\":         reflect.ValueOf(syscall.WaitProcess),\n\t\t\"Write\":               reflect.ValueOf(syscall.Write),\n\t\t\"Wstat\":               reflect.ValueOf(syscall.Wstat),\n\n\t\t// type definitions\n\t\t\"Conn\":        reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Dir\":         reflect.ValueOf((*syscall.Dir)(nil)),\n\t\t\"ErrorString\": reflect.ValueOf((*syscall.ErrorString)(nil)),\n\t\t\"Note\":        reflect.ValueOf((*syscall.Note)(nil)),\n\t\t\"ProcAttr\":    reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"Qid\":         reflect.ValueOf((*syscall.Qid)(nil)),\n\t\t\"RawConn\":     reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"SysProcAttr\": reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Timespec\":    reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":     reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Waitmsg\":     reflect.ValueOf((*syscall.Waitmsg)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":    reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\": reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_plan9_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Await\":               reflect.ValueOf(syscall.Await),\n\t\t\"Bind\":                reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":   reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\": reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"Chdir\":               reflect.ValueOf(syscall.Chdir),\n\t\t\"Clearenv\":            reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":               reflect.ValueOf(syscall.Close),\n\t\t\"Create\":              reflect.ValueOf(syscall.Create),\n\t\t\"DMAPPEND\":            reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"DMAUTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"DMDIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"DMEXCL\":              reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"DMEXEC\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DMMOUNT\":             reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"DMREAD\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DMTMP\":               reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"DMWRITE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Dup\":                 reflect.ValueOf(syscall.Dup),\n\t\t\"EACCES\":              reflect.ValueOf(&syscall.EACCES).Elem(),\n\t\t\"EAFNOSUPPORT\":        reflect.ValueOf(&syscall.EAFNOSUPPORT).Elem(),\n\t\t\"EBUSY\":               reflect.ValueOf(&syscall.EBUSY).Elem(),\n\t\t\"EEXIST\":              reflect.ValueOf(&syscall.EEXIST).Elem(),\n\t\t\"EINTR\":               reflect.ValueOf(&syscall.EINTR).Elem(),\n\t\t\"EINVAL\":              reflect.ValueOf(&syscall.EINVAL).Elem(),\n\t\t\"EIO\":                 reflect.ValueOf(&syscall.EIO).Elem(),\n\t\t\"EISDIR\":              reflect.ValueOf(&syscall.EISDIR).Elem(),\n\t\t\"EMFILE\":              reflect.ValueOf(&syscall.EMFILE).Elem(),\n\t\t\"ENAMETOOLONG\":        reflect.ValueOf(&syscall.ENAMETOOLONG).Elem(),\n\t\t\"ENOENT\":              reflect.ValueOf(&syscall.ENOENT).Elem(),\n\t\t\"ENOTDIR\":             reflect.ValueOf(&syscall.ENOTDIR).Elem(),\n\t\t\"EPERM\":               reflect.ValueOf(&syscall.EPERM).Elem(),\n\t\t\"EPLAN9\":              reflect.ValueOf(&syscall.EPLAN9).Elem(),\n\t\t\"ERRMAX\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ESPIPE\":              reflect.ValueOf(&syscall.ESPIPE).Elem(),\n\t\t\"ETIMEDOUT\":           reflect.ValueOf(&syscall.ETIMEDOUT).Elem(),\n\t\t\"Environ\":             reflect.ValueOf(syscall.Environ),\n\t\t\"ErrBadName\":          reflect.ValueOf(&syscall.ErrBadName).Elem(),\n\t\t\"ErrBadStat\":          reflect.ValueOf(&syscall.ErrBadStat).Elem(),\n\t\t\"ErrShortStat\":        reflect.ValueOf(&syscall.ErrShortStat).Elem(),\n\t\t\"Fchdir\":              reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fd2path\":             reflect.ValueOf(syscall.Fd2path),\n\t\t\"Fixwd\":               reflect.ValueOf(syscall.Fixwd),\n\t\t\"ForkLock\":            reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":               reflect.ValueOf(syscall.Fstat),\n\t\t\"Fwstat\":              reflect.ValueOf(syscall.Fwstat),\n\t\t\"Getegid\":             reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":              reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":             reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":              reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":           reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":         reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpid\":              reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":             reflect.ValueOf(syscall.Getppid),\n\t\t\"Gettimeofday\":        reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":              reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":               reflect.ValueOf(syscall.Getwd),\n\t\t\"ImplementsGetwd\":     reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"MAFTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MBEFORE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCACHE\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MCREATE\":             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"MORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MREPL\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Mkdir\":               reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mount\":               reflect.ValueOf(syscall.Mount),\n\t\t\"NewError\":            reflect.ValueOf(syscall.NewError),\n\t\t\"NsecToTimeval\":       reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"O_APPEND\":            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_CREAT\":             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_EXCL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_NOCTTY\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDONLY\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SYNC\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_TRUNC\":             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_WRONLY\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                reflect.ValueOf(syscall.Open),\n\t\t\"Pipe\":                reflect.ValueOf(syscall.Pipe),\n\t\t\"Pread\":               reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":              reflect.ValueOf(syscall.Pwrite),\n\t\t\"QTAPPEND\":            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"QTAUTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"QTDIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"QTEXCL\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"QTFILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"QTMOUNT\":             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"QTTMP\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RFCENVG\":             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RFCFDG\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RFCNAMEG\":            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RFENVG\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RFFDG\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RFMEM\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RFNAMEG\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RFNOMNT\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RFNOTEG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RFNOWAIT\":            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RFPROC\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RFREND\":              reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"Read\":                reflect.ValueOf(syscall.Read),\n\t\t\"Remove\":              reflect.ValueOf(syscall.Remove),\n\t\t\"SIGABRT\":             reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":             reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGHUP\":              reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGINT\":              reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGKILL\":             reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGTERM\":             reflect.ValueOf(syscall.SIGTERM),\n\t\t\"STATFIXLEN\":          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"STATMAX\":             reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SYS_ALARM\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_AWAIT\":           reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_BIND\":            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_BRK_\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_CREATE\":          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_DUP\":             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_ERRSTR\":          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_EXEC\":            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_EXITS\":           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_FAUTH\":           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_FD2PATH\":         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":           reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_FVERSION\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_FWSTAT\":          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":           reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_NOTED\":           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_NOTIFY\":          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_NSEC\":            reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_OPEN\":            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_OSEEK\":           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_PIPE\":            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_PREAD\":           reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_REMOVE\":          reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_RENDEZVOUS\":      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_RFORK\":           reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_SEEK\":            reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_SEGATTACH\":       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_SEGBRK\":          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_SEGDETACH\":       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_SEGFLUSH\":        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_SEGFREE\":         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_SEMACQUIRE\":      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_SEMRELEASE\":      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_SLEEP\":           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_STAT\":            reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_SYSR1\":           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_TSEMACQUIRE\":     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_WSTAT\":           reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"S_IFBLK\":             reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":             reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":             reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":              reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"S_IFREG\":             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":            reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"Seek\":                reflect.ValueOf(syscall.Seek),\n\t\t\"Setenv\":              reflect.ValueOf(syscall.Setenv),\n\t\t\"SlicePtrFromStrings\": reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"SocketDisableIPv6\":   reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Stat\":                reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":              reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":               reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":              reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":       reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":     reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":      reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"UnmarshalDir\":        reflect.ValueOf(syscall.UnmarshalDir),\n\t\t\"Unmount\":             reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":            reflect.ValueOf(syscall.Unsetenv),\n\t\t\"WaitProcess\":         reflect.ValueOf(syscall.WaitProcess),\n\t\t\"Write\":               reflect.ValueOf(syscall.Write),\n\t\t\"Wstat\":               reflect.ValueOf(syscall.Wstat),\n\n\t\t// type definitions\n\t\t\"Conn\":        reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Dir\":         reflect.ValueOf((*syscall.Dir)(nil)),\n\t\t\"ErrorString\": reflect.ValueOf((*syscall.ErrorString)(nil)),\n\t\t\"Note\":        reflect.ValueOf((*syscall.Note)(nil)),\n\t\t\"ProcAttr\":    reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"Qid\":         reflect.ValueOf((*syscall.Qid)(nil)),\n\t\t\"RawConn\":     reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"SysProcAttr\": reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Timespec\":    reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":     reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Waitmsg\":     reflect.ValueOf((*syscall.Waitmsg)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":    reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\": reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_plan9_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Await\":               reflect.ValueOf(syscall.Await),\n\t\t\"Bind\":                reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":   reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\": reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"Chdir\":               reflect.ValueOf(syscall.Chdir),\n\t\t\"Clearenv\":            reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":               reflect.ValueOf(syscall.Close),\n\t\t\"Create\":              reflect.ValueOf(syscall.Create),\n\t\t\"DMAPPEND\":            reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"DMAUTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"DMDIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"DMEXCL\":              reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"DMEXEC\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DMMOUNT\":             reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"DMREAD\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DMTMP\":               reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"DMWRITE\":             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Dup\":                 reflect.ValueOf(syscall.Dup),\n\t\t\"EACCES\":              reflect.ValueOf(&syscall.EACCES).Elem(),\n\t\t\"EAFNOSUPPORT\":        reflect.ValueOf(&syscall.EAFNOSUPPORT).Elem(),\n\t\t\"EBUSY\":               reflect.ValueOf(&syscall.EBUSY).Elem(),\n\t\t\"EEXIST\":              reflect.ValueOf(&syscall.EEXIST).Elem(),\n\t\t\"EINTR\":               reflect.ValueOf(&syscall.EINTR).Elem(),\n\t\t\"EINVAL\":              reflect.ValueOf(&syscall.EINVAL).Elem(),\n\t\t\"EIO\":                 reflect.ValueOf(&syscall.EIO).Elem(),\n\t\t\"EISDIR\":              reflect.ValueOf(&syscall.EISDIR).Elem(),\n\t\t\"EMFILE\":              reflect.ValueOf(&syscall.EMFILE).Elem(),\n\t\t\"ENAMETOOLONG\":        reflect.ValueOf(&syscall.ENAMETOOLONG).Elem(),\n\t\t\"ENOENT\":              reflect.ValueOf(&syscall.ENOENT).Elem(),\n\t\t\"ENOTDIR\":             reflect.ValueOf(&syscall.ENOTDIR).Elem(),\n\t\t\"EPERM\":               reflect.ValueOf(&syscall.EPERM).Elem(),\n\t\t\"EPLAN9\":              reflect.ValueOf(&syscall.EPLAN9).Elem(),\n\t\t\"ERRMAX\":              reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"ESPIPE\":              reflect.ValueOf(&syscall.ESPIPE).Elem(),\n\t\t\"ETIMEDOUT\":           reflect.ValueOf(&syscall.ETIMEDOUT).Elem(),\n\t\t\"Environ\":             reflect.ValueOf(syscall.Environ),\n\t\t\"ErrBadName\":          reflect.ValueOf(&syscall.ErrBadName).Elem(),\n\t\t\"ErrBadStat\":          reflect.ValueOf(&syscall.ErrBadStat).Elem(),\n\t\t\"ErrShortStat\":        reflect.ValueOf(&syscall.ErrShortStat).Elem(),\n\t\t\"Fchdir\":              reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fd2path\":             reflect.ValueOf(syscall.Fd2path),\n\t\t\"Fixwd\":               reflect.ValueOf(syscall.Fixwd),\n\t\t\"ForkLock\":            reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fstat\":               reflect.ValueOf(syscall.Fstat),\n\t\t\"Fwstat\":              reflect.ValueOf(syscall.Fwstat),\n\t\t\"Getegid\":             reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":              reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":             reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":              reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":           reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":         reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpid\":              reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":             reflect.ValueOf(syscall.Getppid),\n\t\t\"Gettimeofday\":        reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":              reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":               reflect.ValueOf(syscall.Getwd),\n\t\t\"ImplementsGetwd\":     reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"MAFTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MBEFORE\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCACHE\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MCREATE\":             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"MORDER\":              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MREPL\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Mkdir\":               reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mount\":               reflect.ValueOf(syscall.Mount),\n\t\t\"NewError\":            reflect.ValueOf(syscall.NewError),\n\t\t\"NsecToTimeval\":       reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"O_APPEND\":            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"O_CREAT\":             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_EXCL\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_NOCTTY\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDONLY\":            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SYNC\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_TRUNC\":             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_WRONLY\":            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                reflect.ValueOf(syscall.Open),\n\t\t\"Pipe\":                reflect.ValueOf(syscall.Pipe),\n\t\t\"Pread\":               reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":              reflect.ValueOf(syscall.Pwrite),\n\t\t\"QTAPPEND\":            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"QTAUTH\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"QTDIR\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"QTEXCL\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"QTFILE\":              reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"QTMOUNT\":             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"QTTMP\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RFCENVG\":             reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RFCFDG\":              reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RFCNAMEG\":            reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RFENVG\":              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RFFDG\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RFMEM\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RFNAMEG\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RFNOMNT\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RFNOTEG\":             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RFNOWAIT\":            reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RFPROC\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RFREND\":              reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"Read\":                reflect.ValueOf(syscall.Read),\n\t\t\"Remove\":              reflect.ValueOf(syscall.Remove),\n\t\t\"SIGABRT\":             reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":             reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGHUP\":              reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGINT\":              reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGKILL\":             reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGTERM\":             reflect.ValueOf(syscall.SIGTERM),\n\t\t\"STATFIXLEN\":          reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"STATMAX\":             reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SYS_ALARM\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SYS_AWAIT\":           reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"SYS_BIND\":            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_BRK_\":            reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"SYS_CHDIR\":           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SYS_CLOSE\":           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SYS_CREATE\":          reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"SYS_DUP\":             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SYS_ERRSTR\":          reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"SYS_EXEC\":            reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SYS_EXITS\":           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SYS_FAUTH\":           reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SYS_FD2PATH\":         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"SYS_FSTAT\":           reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"SYS_FVERSION\":        reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SYS_FWSTAT\":          reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"SYS_MOUNT\":           reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"SYS_NOTED\":           reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"SYS_NOTIFY\":          reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"SYS_NSEC\":            reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"SYS_OPEN\":            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"SYS_OSEEK\":           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SYS_PIPE\":            reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"SYS_PREAD\":           reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"SYS_PWRITE\":          reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"SYS_REMOVE\":          reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"SYS_RENDEZVOUS\":      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"SYS_RFORK\":           reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"SYS_SEEK\":            reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"SYS_SEGATTACH\":       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"SYS_SEGBRK\":          reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SYS_SEGDETACH\":       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"SYS_SEGFLUSH\":        reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"SYS_SEGFREE\":         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SYS_SEMACQUIRE\":      reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"SYS_SEMRELEASE\":      reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"SYS_SLEEP\":           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"SYS_STAT\":            reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"SYS_SYSR1\":           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SYS_TSEMACQUIRE\":     reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"SYS_UNMOUNT\":         reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"SYS_WSTAT\":           reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"S_IFBLK\":             reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":             reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":             reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":             reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":              reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"S_IFREG\":             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":            reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"Seek\":                reflect.ValueOf(syscall.Seek),\n\t\t\"Setenv\":              reflect.ValueOf(syscall.Setenv),\n\t\t\"SlicePtrFromStrings\": reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"SocketDisableIPv6\":   reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Stat\":                reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":              reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":               reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":              reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":       reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":     reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":      reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"UnmarshalDir\":        reflect.ValueOf(syscall.UnmarshalDir),\n\t\t\"Unmount\":             reflect.ValueOf(syscall.Unmount),\n\t\t\"Unsetenv\":            reflect.ValueOf(syscall.Unsetenv),\n\t\t\"WaitProcess\":         reflect.ValueOf(syscall.WaitProcess),\n\t\t\"Write\":               reflect.ValueOf(syscall.Write),\n\t\t\"Wstat\":               reflect.ValueOf(syscall.Wstat),\n\n\t\t// type definitions\n\t\t\"Conn\":        reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Dir\":         reflect.ValueOf((*syscall.Dir)(nil)),\n\t\t\"ErrorString\": reflect.ValueOf((*syscall.ErrorString)(nil)),\n\t\t\"Note\":        reflect.ValueOf((*syscall.Note)(nil)),\n\t\t\"ProcAttr\":    reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"Qid\":         reflect.ValueOf((*syscall.Qid)(nil)),\n\t\t\"RawConn\":     reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"SysProcAttr\": reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Timespec\":    reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":     reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Waitmsg\":     reflect.ValueOf((*syscall.Waitmsg)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":    reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\": reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_solaris_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_802\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"AF_APPLETALK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"AF_CCITT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"AF_CHAOS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"AF_DATAKIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"AF_DECnet\":                     reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"AF_DLI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"AF_ECMA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"AF_FILE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_GOSIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"AF_HYLINK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"AF_IMPLINK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_INET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"AF_INET_OFFLOAD\":               reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"AF_IPX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_KEY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"AF_LAT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"AF_LINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"AF_LOCAL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_MAX\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_NBS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"AF_NCA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"AF_NIT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_NS\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"AF_OSI\":                        reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"AF_OSINET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"AF_PACKET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"AF_POLICY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"AF_PUP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AF_ROUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"AF_SNA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"AF_TRILL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"AF_UNIX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AF_X25\":                        reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"ARPHRD_ARCNET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"ARPHRD_ATM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ARPHRD_AX25\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"ARPHRD_CHAOS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"ARPHRD_EETHER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ARPHRD_ETHER\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ARPHRD_FC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"ARPHRD_FRAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"ARPHRD_HDLC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"ARPHRD_IB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ARPHRD_IEEE802\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"ARPHRD_IPATM\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"ARPHRD_METRICOM\":               reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"ARPHRD_TUNNEL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"Accept\":                        reflect.ValueOf(syscall.Accept),\n\t\t\"Accept4\":                       reflect.ValueOf(syscall.Accept4),\n\t\t\"Access\":                        reflect.ValueOf(syscall.Access),\n\t\t\"Adjtime\":                       reflect.ValueOf(syscall.Adjtime),\n\t\t\"B0\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"B110\":                          reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"B115200\":                       reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"B1200\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"B134\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"B150\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"B153600\":                       reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"B1800\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"B19200\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"B200\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"B230400\":                       reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"B2400\":                         reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"B300\":                          reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"B307200\":                       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"B38400\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"B460800\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"B4800\":                         reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"B50\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"B57600\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"B600\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"B75\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"B76800\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"B921600\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"B9600\":                         reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"BIOCFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"536887912\", token.INT, 0)),\n\t\t\"BIOCGBLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074020966\", token.INT, 0)),\n\t\t\"BIOCGDLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1074020970\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1072676233\", token.INT, 0)),\n\t\t\"BIOCGDLTLIST32\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1073200521\", token.INT, 0)),\n\t\t\"BIOCGETIF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1075855979\", token.INT, 0)),\n\t\t\"BIOCGETLIF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1081623147\", token.INT, 0)),\n\t\t\"BIOCGHDRCMPLT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1074020980\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1074807419\", token.INT, 0)),\n\t\t\"BIOCGRTIMEOUT32\":               reflect.ValueOf(constant.MakeFromLiteral(\"1074283131\", token.INT, 0)),\n\t\t\"BIOCGSEESENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1074020984\", token.INT, 0)),\n\t\t\"BIOCGSTATS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1082147439\", token.INT, 0)),\n\t\t\"BIOCGSTATSOLD\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1074283119\", token.INT, 0)),\n\t\t\"BIOCIMMEDIATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2147204496\", token.INT, 0)),\n\t\t\"BIOCPROMISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536887913\", token.INT, 0)),\n\t\t\"BIOCSBLEN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1073462682\", token.INT, 0)),\n\t\t\"BIOCSDLT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2147204490\", token.INT, 0)),\n\t\t\"BIOCSETF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2146418073\", token.INT, 0)),\n\t\t\"BIOCSETF32\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2146942361\", token.INT, 0)),\n\t\t\"BIOCSETIF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2145369492\", token.INT, 0)),\n\t\t\"BIOCSETLIF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2139602324\", token.INT, 0)),\n\t\t\"BIOCSHDRCMPLT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2147204491\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2146418054\", token.INT, 0)),\n\t\t\"BIOCSRTIMEOUT32\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2146942342\", token.INT, 0)),\n\t\t\"BIOCSSEESENT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2147204487\", token.INT, 0)),\n\t\t\"BIOCSTCPF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2146418062\", token.INT, 0)),\n\t\t\"BIOCSUDPF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2146418061\", token.INT, 0)),\n\t\t\"BIOCVERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074020977\", token.INT, 0)),\n\t\t\"BPF_A\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_ABS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_ALIGNMENT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_ALU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"BPF_AND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"BPF_B\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_DFLTBUFSIZE\":               reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"BPF_DIV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_H\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BPF_IMM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_IND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_JA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_JEQ\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_JGE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"BPF_JGT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_JMP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"BPF_JSET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_K\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_LDX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_LEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_LSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MAJOR_VERSION\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MAXBUFSIZE\":                reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"BPF_MAXINSNS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"BPF_MEM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"96\", token.INT, 0)),\n\t\t\"BPF_MEMWORDS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_MINBUFSIZE\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_MINOR_VERSION\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"BPF_MISC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"BPF_MSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"160\", token.INT, 0)),\n\t\t\"BPF_MUL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"BPF_NEG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_OR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"BPF_RELEASE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"199606\", token.INT, 0)),\n\t\t\"BPF_RET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"BPF_RSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"112\", token.INT, 0)),\n\t\t\"BPF_ST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"BPF_STX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"BPF_SUB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"BPF_TAX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_TXA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"BPF_W\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"BPF_X\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"BRKINT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Bind\":                          reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":             reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":           reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CFLUSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"CLOCAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CS5\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CS6\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CS7\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CS8\":                           reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSIZE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"CSTART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"CSTOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"CSTOPB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CSUSP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"CSWTCH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"Chdir\":                         reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                         reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                         reflect.ValueOf(syscall.Chown),\n\t\t\"Chroot\":                        reflect.ValueOf(syscall.Chroot),\n\t\t\"Clearenv\":                      reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                         reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                   reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"CmsgLen\":                       reflect.ValueOf(syscall.CmsgLen),\n\t\t\"CmsgSpace\":                     reflect.ValueOf(syscall.CmsgSpace),\n\t\t\"Connect\":                       reflect.ValueOf(syscall.Connect),\n\t\t\"DLT_AIRONET_HEADER\":            reflect.ValueOf(constant.MakeFromLiteral(\"120\", token.INT, 0)),\n\t\t\"DLT_APPLE_IP_OVER_IEEE1394\":    reflect.ValueOf(constant.MakeFromLiteral(\"138\", token.INT, 0)),\n\t\t\"DLT_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DLT_ARCNET_LINUX\":              reflect.ValueOf(constant.MakeFromLiteral(\"129\", token.INT, 0)),\n\t\t\"DLT_ATM_CLIP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DLT_ATM_RFC1483\":               reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DLT_AURORA\":                    reflect.ValueOf(constant.MakeFromLiteral(\"126\", token.INT, 0)),\n\t\t\"DLT_AX25\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DLT_BACNET_MS_TP\":              reflect.ValueOf(constant.MakeFromLiteral(\"165\", token.INT, 0)),\n\t\t\"DLT_CHAOS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DLT_CISCO_IOS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"118\", token.INT, 0)),\n\t\t\"DLT_C_HDLC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"104\", token.INT, 0)),\n\t\t\"DLT_DOCSIS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"143\", token.INT, 0)),\n\t\t\"DLT_ECONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"115\", token.INT, 0)),\n\t\t\"DLT_EN10MB\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DLT_EN3MB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DLT_ENC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"109\", token.INT, 0)),\n\t\t\"DLT_ERF_ETH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"175\", token.INT, 0)),\n\t\t\"DLT_ERF_POS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"176\", token.INT, 0)),\n\t\t\"DLT_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DLT_FRELAY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"107\", token.INT, 0)),\n\t\t\"DLT_GCOM_SERIAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"173\", token.INT, 0)),\n\t\t\"DLT_GCOM_T1E1\":                 reflect.ValueOf(constant.MakeFromLiteral(\"172\", token.INT, 0)),\n\t\t\"DLT_GPF_F\":                     reflect.ValueOf(constant.MakeFromLiteral(\"171\", token.INT, 0)),\n\t\t\"DLT_GPF_T\":                     reflect.ValueOf(constant.MakeFromLiteral(\"170\", token.INT, 0)),\n\t\t\"DLT_GPRS_LLC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"169\", token.INT, 0)),\n\t\t\"DLT_HDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DLT_HHDLC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"121\", token.INT, 0)),\n\t\t\"DLT_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DLT_IBM_SN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"146\", token.INT, 0)),\n\t\t\"DLT_IBM_SP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"145\", token.INT, 0)),\n\t\t\"DLT_IEEE802\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11\":                reflect.ValueOf(constant.MakeFromLiteral(\"105\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO\":          reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"DLT_IEEE802_11_RADIO_AVS\":      reflect.ValueOf(constant.MakeFromLiteral(\"163\", token.INT, 0)),\n\t\t\"DLT_IPNET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"226\", token.INT, 0)),\n\t\t\"DLT_IPOIB\":                     reflect.ValueOf(constant.MakeFromLiteral(\"162\", token.INT, 0)),\n\t\t\"DLT_IP_OVER_FC\":                reflect.ValueOf(constant.MakeFromLiteral(\"122\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM1\":              reflect.ValueOf(constant.MakeFromLiteral(\"137\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ATM2\":              reflect.ValueOf(constant.MakeFromLiteral(\"135\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_CHDLC\":             reflect.ValueOf(constant.MakeFromLiteral(\"181\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ES\":                reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_ETHER\":             reflect.ValueOf(constant.MakeFromLiteral(\"178\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_FRELAY\":            reflect.ValueOf(constant.MakeFromLiteral(\"180\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_GGSN\":              reflect.ValueOf(constant.MakeFromLiteral(\"133\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MFR\":               reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLFR\":              reflect.ValueOf(constant.MakeFromLiteral(\"131\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MLPPP\":             reflect.ValueOf(constant.MakeFromLiteral(\"130\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_MONITOR\":           reflect.ValueOf(constant.MakeFromLiteral(\"164\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PIC_PEER\":          reflect.ValueOf(constant.MakeFromLiteral(\"174\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPP\":               reflect.ValueOf(constant.MakeFromLiteral(\"179\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE\":             reflect.ValueOf(constant.MakeFromLiteral(\"167\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_PPPOE_ATM\":         reflect.ValueOf(constant.MakeFromLiteral(\"168\", token.INT, 0)),\n\t\t\"DLT_JUNIPER_SERVICES\":          reflect.ValueOf(constant.MakeFromLiteral(\"136\", token.INT, 0)),\n\t\t\"DLT_LINUX_IRDA\":                reflect.ValueOf(constant.MakeFromLiteral(\"144\", token.INT, 0)),\n\t\t\"DLT_LINUX_LAPD\":                reflect.ValueOf(constant.MakeFromLiteral(\"177\", token.INT, 0)),\n\t\t\"DLT_LINUX_SLL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"113\", token.INT, 0)),\n\t\t\"DLT_LOOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"DLT_LTALK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"114\", token.INT, 0)),\n\t\t\"DLT_MTP2\":                      reflect.ValueOf(constant.MakeFromLiteral(\"140\", token.INT, 0)),\n\t\t\"DLT_MTP2_WITH_PHDR\":            reflect.ValueOf(constant.MakeFromLiteral(\"139\", token.INT, 0)),\n\t\t\"DLT_MTP3\":                      reflect.ValueOf(constant.MakeFromLiteral(\"141\", token.INT, 0)),\n\t\t\"DLT_NULL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DLT_PCI_EXP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"125\", token.INT, 0)),\n\t\t\"DLT_PFLOG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"117\", token.INT, 0)),\n\t\t\"DLT_PFSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DLT_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DLT_PPP_BSDOS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DLT_PPP_PPPD\":                  reflect.ValueOf(constant.MakeFromLiteral(\"166\", token.INT, 0)),\n\t\t\"DLT_PRISM_HEADER\":              reflect.ValueOf(constant.MakeFromLiteral(\"119\", token.INT, 0)),\n\t\t\"DLT_PRONET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DLT_RAW\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DLT_RAWAF_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"35913728\", token.INT, 0)),\n\t\t\"DLT_RIO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"124\", token.INT, 0)),\n\t\t\"DLT_SCCP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"142\", token.INT, 0)),\n\t\t\"DLT_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DLT_SLIP_BSDOS\":                reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DLT_SUNATM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"123\", token.INT, 0)),\n\t\t\"DLT_SYMANTEC_FIREWALL\":         reflect.ValueOf(constant.MakeFromLiteral(\"99\", token.INT, 0)),\n\t\t\"DLT_TZSP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Dup\":                           reflect.ValueOf(syscall.Dup),\n\t\t\"E2BIG\":                         reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                        reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                    reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                 reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                          reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                  reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                        reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                      reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                         reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                         reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                        reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                       reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                         reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                       reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                       reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                        reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                         reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                     reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                        reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHO\":                          reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"ECHOCTL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"ECHOE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"ECHOK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ECHOKE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"ECHONL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ECHOPRT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ECHRNG\":                        reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                         reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                  reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                  reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                    reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                       reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                     reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                  reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                          reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                        reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                        reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                        reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                         reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                     reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                  reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                         reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                        reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                   reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                         reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                        reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                           reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                       reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                        reflect.ValueOf(syscall.EISDIR),\n\t\t\"EL2HLT\":                        reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                      reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                        reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                        reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                       reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                       reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                      reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                       reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                       reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                        reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOCKUNMAPPED\":                 reflect.ValueOf(syscall.ELOCKUNMAPPED),\n\t\t\"ELOOP\":                         reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                        reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                        reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMPTY_SET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"EMSGSIZE\":                      reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMT_CPCOVF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"EMULTIHOP\":                     reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                  reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENETDOWN\":                      reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                     reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                   reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                        reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                        reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                       reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                        reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                       reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                        reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                        reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                       reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                        reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                       reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                        reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                        reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                        reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                        reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                   reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                        reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                         reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                        reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                        reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTACTIVE\":                    reflect.ValueOf(syscall.ENOTACTIVE),\n\t\t\"ENOTBLK\":                       reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                      reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                       reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                     reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":               reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                      reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                       reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                        reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                      reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                         reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                    reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                     reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                    reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                         reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                  reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                         reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROTO\":                        reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":               reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                    reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"EQUALITY_CHECK\":                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"ERANGE\":                        reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                       reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                       reflect.ValueOf(syscall.EREMOTE),\n\t\t\"ERESTART\":                      reflect.ValueOf(syscall.ERESTART),\n\t\t\"EROFS\":                         reflect.ValueOf(syscall.EROFS),\n\t\t\"ESHUTDOWN\":                     reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":               reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                        reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                         reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                        reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                        reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                      reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETIME\":                         reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                     reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                  reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                       reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUNATCH\":                       reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                        reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWOULDBLOCK\":                   reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                         reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                        reflect.ValueOf(syscall.EXFULL),\n\t\t\"EXTA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"EXTB\":                          reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"Environ\":                       reflect.ValueOf(syscall.Environ),\n\t\t\"FD_CLOEXEC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FD_NFDBITS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"FD_SETSIZE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"FLUSHALL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FLUSHDATA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"FLUSHO\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"F_ALLOCSP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_ALLOCSP64\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_BADFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"F_BLKSIZE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"F_BLOCKS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"F_CHKFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_COMPAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_DUP2FD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_DUP2FD_CLOEXEC\":              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"F_DUPFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"F_FREESP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_FREESP64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_GETFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_GETLK64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"F_GETOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"F_GETXFL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"F_HASREMOTELOCKS\":              reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"F_ISSTREAM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_MANDDNY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_MDACC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"F_NODNY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_NPRIV\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"F_PRIV\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"F_QUOTACTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"F_RDACC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_RDDNY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_RDLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_REVOKE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"F_RMACC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_RMDNY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_RWACC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_RWDNY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_SETFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_SETLK64_NBMAND\":              reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"F_SETLKW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLKW64\":                    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_SETLK_NBMAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"F_SETOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"F_SHARE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"F_SHARE_NBMAND\":                reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"F_UNLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_UNLKSYS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_UNSHARE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"F_WRACC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRDNY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_WRLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Fchdir\":                        reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                        reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                        reflect.ValueOf(syscall.Fchown),\n\t\t\"FcntlFlock\":                    reflect.ValueOf(syscall.FcntlFlock),\n\t\t\"ForkLock\":                      reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"Fpathconf\":                     reflect.ValueOf(syscall.Fpathconf),\n\t\t\"Fstat\":                         reflect.ValueOf(syscall.Fstat),\n\t\t\"Fsync\":                         reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                     reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Getcwd\":                        reflect.ValueOf(syscall.Getcwd),\n\t\t\"Getdents\":                      reflect.ValueOf(syscall.Getdents),\n\t\t\"Getegid\":                       reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                        reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                       reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getexecname\":                   reflect.ValueOf(syscall.Getexecname),\n\t\t\"Getgid\":                        reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                     reflect.ValueOf(syscall.Getgroups),\n\t\t\"Gethostname\":                   reflect.ValueOf(syscall.Gethostname),\n\t\t\"Getpagesize\":                   reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                   reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpid\":                        reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                       reflect.ValueOf(syscall.Getppid),\n\t\t\"Getpriority\":                   reflect.ValueOf(syscall.Getpriority),\n\t\t\"Getrlimit\":                     reflect.ValueOf(syscall.Getrlimit),\n\t\t\"Getrusage\":                     reflect.ValueOf(syscall.Getrusage),\n\t\t\"Getsockname\":                   reflect.ValueOf(syscall.Getsockname),\n\t\t\"GetsockoptInt\":                 reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                  reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                        reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                         reflect.ValueOf(syscall.Getwd),\n\t\t\"HUPCL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ICANON\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ICRNL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IEXTEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_ADDRCONF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"IFF_ALLMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"IFF_ANYCAST\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_CANTCHANGE\":                reflect.ValueOf(constant.MakeFromLiteral(\"8736013826906\", token.INT, 0)),\n\t\t\"IFF_COS_ENABLED\":               reflect.ValueOf(constant.MakeFromLiteral(\"8589934592\", token.INT, 0)),\n\t\t\"IFF_DEBUG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_DEPRECATED\":                reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"IFF_DHCPRUNNING\":               reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IFF_DUPLICATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"274877906944\", token.INT, 0)),\n\t\t\"IFF_FAILED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"IFF_FIXEDMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"68719476736\", token.INT, 0)),\n\t\t\"IFF_INACTIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IFF_INTELLIGENT\":               reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"IFF_IPMP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"549755813888\", token.INT, 0)),\n\t\t\"IFF_IPMP_CANTCHANGE\":           reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"IFF_IPMP_INVALID\":              reflect.ValueOf(constant.MakeFromLiteral(\"8256487552\", token.INT, 0)),\n\t\t\"IFF_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"IFF_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"IFF_L3PROTECT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4398046511104\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IFF_MULTI_BCAST\":               reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IFF_NOACCEPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"IFF_NOARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IFF_NOFAILOVER\":                reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"IFF_NOLINKLOCAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"2199023255552\", token.INT, 0)),\n\t\t\"IFF_NOLOCAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"IFF_NONUD\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"IFF_NORTEXCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"IFF_NOTRAILERS\":                reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFF_NOXMIT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IFF_OFFLINE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IFF_POINTOPOINT\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_PREFERRED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"17179869184\", token.INT, 0)),\n\t\t\"IFF_PRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"IFF_PROMISC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IFF_ROUTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"IFF_RUNNING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"IFF_STANDBY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"IFF_TEMPORARY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"34359738368\", token.INT, 0)),\n\t\t\"IFF_UNNUMBERED\":                reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IFF_UP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFF_VIRTUAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"137438953472\", token.INT, 0)),\n\t\t\"IFF_VRRP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1099511627776\", token.INT, 0)),\n\t\t\"IFF_XRESOLV\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4294967296\", token.INT, 0)),\n\t\t\"IFNAMSIZ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_1822\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFT_6TO4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"202\", token.INT, 0)),\n\t\t\"IFT_AAL5\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"IFT_ARCNET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IFT_ARCNETPLUS\":                reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IFT_ATM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IFT_CEPT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IFT_DS3\":                       reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"IFT_EON\":                       reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IFT_ETHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IFT_FDDI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IFT_FRELAY\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IFT_FRELAYDCE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IFT_HDH1822\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IFT_HIPPI\":                     reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"IFT_HSSI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IFT_HY\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IFT_IB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"199\", token.INT, 0)),\n\t\t\"IFT_IPV4\":                      reflect.ValueOf(constant.MakeFromLiteral(\"200\", token.INT, 0)),\n\t\t\"IFT_IPV6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"201\", token.INT, 0)),\n\t\t\"IFT_ISDNBASIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IFT_ISDNPRIMARY\":               reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IFT_ISO88022LLC\":               reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IFT_ISO88023\":                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IFT_ISO88024\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFT_ISO88025\":                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IFT_ISO88026\":                  reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IFT_LAPB\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFT_LOCALTALK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"42\", token.INT, 0)),\n\t\t\"IFT_LOOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IFT_MIOX25\":                    reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IFT_MODEM\":                     reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IFT_NSIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IFT_OTHER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IFT_P10\":                       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IFT_P80\":                       reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IFT_PARA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IFT_PPP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IFT_PROPMUX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"54\", token.INT, 0)),\n\t\t\"IFT_PROPVIRTUAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"53\", token.INT, 0)),\n\t\t\"IFT_PTPSERIAL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IFT_RS232\":                     reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IFT_SDLC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IFT_SIP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"IFT_SLIP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IFT_SMDSDXI\":                   reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IFT_SMDSICIP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"52\", token.INT, 0)),\n\t\t\"IFT_SONET\":                     reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IFT_SONETPATH\":                 reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IFT_SONETVT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IFT_STARLAN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IFT_T1\":                        reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IFT_ULTRA\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"IFT_V35\":                       reflect.ValueOf(constant.MakeFromLiteral(\"45\", token.INT, 0)),\n\t\t\"IFT_X25\":                       reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IFT_X25DDN\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFT_X25PLE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IFT_XETHER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IGNBRK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IGNPAR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IMAXBEL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"INLCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"INPCK\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_AUTOCONF_MASK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_AUTOCONF_NET\":               reflect.ValueOf(constant.MakeFromLiteral(\"2851995648\", token.INT, 0)),\n\t\t\"IN_CLASSA_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"16777215\", token.INT, 0)),\n\t\t\"IN_CLASSA_MAX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"IN_CLASSA_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_CLASSA_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IN_CLASSB_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IN_CLASSB_MAX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"IN_CLASSB_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_CLASSB_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IN_CLASSC_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IN_CLASSC_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294967040\", token.INT, 0)),\n\t\t\"IN_CLASSC_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IN_CLASSD_HOST\":                reflect.ValueOf(constant.MakeFromLiteral(\"268435455\", token.INT, 0)),\n\t\t\"IN_CLASSD_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"IN_CLASSD_NSHIFT\":              reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"IN_CLASSE_NET\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"IN_LOOPBACKNET\":                reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"IN_PRIVATE12_MASK\":             reflect.ValueOf(constant.MakeFromLiteral(\"4293918720\", token.INT, 0)),\n\t\t\"IN_PRIVATE12_NET\":              reflect.ValueOf(constant.MakeFromLiteral(\"2886729728\", token.INT, 0)),\n\t\t\"IN_PRIVATE16_MASK\":             reflect.ValueOf(constant.MakeFromLiteral(\"4294901760\", token.INT, 0)),\n\t\t\"IN_PRIVATE16_NET\":              reflect.ValueOf(constant.MakeFromLiteral(\"3232235520\", token.INT, 0)),\n\t\t\"IN_PRIVATE8_MASK\":              reflect.ValueOf(constant.MakeFromLiteral(\"4278190080\", token.INT, 0)),\n\t\t\"IN_PRIVATE8_NET\":               reflect.ValueOf(constant.MakeFromLiteral(\"167772160\", token.INT, 0)),\n\t\t\"IPPROTO_AH\":                    reflect.ValueOf(constant.MakeFromLiteral(\"51\", token.INT, 0)),\n\t\t\"IPPROTO_DSTOPTS\":               reflect.ValueOf(constant.MakeFromLiteral(\"60\", token.INT, 0)),\n\t\t\"IPPROTO_EGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPPROTO_ENCAP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_EON\":                   reflect.ValueOf(constant.MakeFromLiteral(\"80\", token.INT, 0)),\n\t\t\"IPPROTO_ESP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"50\", token.INT, 0)),\n\t\t\"IPPROTO_FRAGMENT\":              reflect.ValueOf(constant.MakeFromLiteral(\"44\", token.INT, 0)),\n\t\t\"IPPROTO_GGP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPPROTO_HELLO\":                 reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPPROTO_HOPOPTS\":               reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_ICMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPPROTO_ICMPV6\":                reflect.ValueOf(constant.MakeFromLiteral(\"58\", token.INT, 0)),\n\t\t\"IPPROTO_IDP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPPROTO_IGMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"IPPROTO_ND\":                    reflect.ValueOf(constant.MakeFromLiteral(\"77\", token.INT, 0)),\n\t\t\"IPPROTO_NONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"IPPROTO_OSPF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"89\", token.INT, 0)),\n\t\t\"IPPROTO_PIM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"IPPROTO_PUP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPPROTO_RAW\":                   reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"IPPROTO_ROUTING\":               reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"IPPROTO_RSVP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"IPPROTO_SCTP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"132\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_ADD_MEMBERSHIP\":           reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_BOUND_IF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IPV6_CHECKSUM\":                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IPV6_DONTFRAG\":                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"IPV6_DROP_MEMBERSHIP\":          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_DSTOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_FLOWLABEL\":       reflect.ValueOf(constant.MakeFromLiteral(\"4294905600\", token.INT, 0)),\n\t\t\"IPV6_FLOWINFO_TCLASS\":          reflect.ValueOf(constant.MakeFromLiteral(\"61455\", token.INT, 0)),\n\t\t\"IPV6_HOPLIMIT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_HOPOPTS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":               reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_NEXTHOP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_PAD1_OPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_PATHMTU\":                  reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"IPV6_PKTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_CGA\":           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_CGADEFAULT\":    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_CGAMASK\":       reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_COA\":           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_DEFAULT\":       reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_HOME\":          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_MASK\":          reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_MIPDEFAULT\":    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_MIPMASK\":       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_NONCGA\":        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_PUBLIC\":        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_TMP\":           reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_TMPDEFAULT\":    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_PREFER_SRC_TMPMASK\":       reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_RECVDSTOPTS\":              reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPLIMIT\":             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IPV6_RECVHOPOPTS\":              reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IPV6_RECVPATHMTU\":              reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"IPV6_RECVPKTINFO\":              reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IPV6_RECVRTHDRDSTOPTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IPV6_RECVTCLASS\":               reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IPV6_RTHDR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IPV6_RTHDRDSTOPTS\":             reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_RTHDR_TYPE_0\":             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPV6_SEC_OPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IPV6_SRC_PREFERENCES\":          reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"IPV6_TCLASS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IPV6_UNSPEC_SRC\":               reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"IPV6_USE_MIN_MTU\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"IP_ADD_SOURCE_MEMBERSHIP\":      reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"IP_BLOCK_SOURCE\":               reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"IP_BOUND_IF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65\", token.INT, 0)),\n\t\t\"IP_BROADCAST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262\", token.INT, 0)),\n\t\t\"IP_BROADCAST_TTL\":              reflect.ValueOf(constant.MakeFromLiteral(\"67\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_LOOP\":     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DEFAULT_MULTICAST_TTL\":      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_DF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"IP_DHCPINIT_IF\":                reflect.ValueOf(constant.MakeFromLiteral(\"69\", token.INT, 0)),\n\t\t\"IP_DONTFRAG\":                   reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_DONTROUTE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"261\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"IP_DROP_SOURCE_MEMBERSHIP\":     reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"IP_HDRINCL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IP_MAXPACKET\":                  reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"IP_MF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"IP_MSS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"576\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":               reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":              reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IP_NEXTHOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"IP_OPTIONS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IP_PKTINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_RECVDSTADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"IP_RECVIF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_RECVOPTS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"IP_RECVPKTINFO\":                reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"IP_RECVRETOPTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IP_RECVSLLA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_RECVTTL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_RETOPTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IP_REUSEADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"IP_SEC_OPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"IP_TOS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IP_UNBLOCK_SOURCE\":             reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"IP_UNSPEC_SRC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"66\", token.INT, 0)),\n\t\t\"ISIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ISTRIP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"IXANY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"IXOFF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"IXON\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":               reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"Lchown\":                        reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                          reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                        reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                         reflect.ValueOf(syscall.Lstat),\n\t\t\"MADV_ACCESS_DEFAULT\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"MADV_ACCESS_LWP\":               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MADV_ACCESS_MANY\":              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MADV_DONTNEED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MADV_FREE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"MADV_NORMAL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MADV_RANDOM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MADV_SEQUENTIAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MADV_WILLNEED\":                 reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"MAP_32BIT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAP_ALIGN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"MAP_ANON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_ANONYMOUS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAP_FILE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MAP_FIXED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MAP_INITDATA\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MAP_NORESERVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MAP_PRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MAP_RENAME\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MAP_SHARED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MAP_TEXT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"MAP_TYPE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MCL_CURRENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MCL_FUTURE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_CTRUNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_DONTROUTE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"MSG_DONTWAIT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MSG_DUPCTRL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"MSG_EOR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MSG_MAXIOVLEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"MSG_NOTIFICATION\":              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MSG_OOB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MSG_PEEK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MSG_TRUNC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"MSG_WAITALL\":                   reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"MSG_XPG4_2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MS_ASYNC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"MS_INVALIDATE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"MS_OLDSYNC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"MS_SYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"M_FLUSH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"134\", token.INT, 0)),\n\t\t\"Mkdir\":                         reflect.ValueOf(syscall.Mkdir),\n\t\t\"Mknod\":                         reflect.ValueOf(syscall.Mknod),\n\t\t\"Mmap\":                          reflect.ValueOf(syscall.Mmap),\n\t\t\"Munmap\":                        reflect.ValueOf(syscall.Munmap),\n\t\t\"NOFLSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"Nanosleep\":                     reflect.ValueOf(syscall.Nanosleep),\n\t\t\"NsecToTimespec\":                reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                 reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OCRNL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"OFDEL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"OFILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"ONLCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ONLRET\":                        reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"ONOCR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"OPENFAIL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"OPOST\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_ACCMODE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6291459\", token.INT, 0)),\n\t\t\"O_APPEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"O_CREAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_DIRECTORY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"O_DSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_EXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_EXEC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"O_LARGEFILE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_NDELAY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_NOFOLLOW\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"O_NOLINKS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_RDONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_RSYNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"O_SEARCH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"O_SIOCGIFCONF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1073190636\", token.INT, 0)),\n\t\t\"O_SIOCGLIFCONF\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1072666248\", token.INT, 0)),\n\t\t\"O_SYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"O_TRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"O_XATTR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"Open\":                          reflect.ValueOf(syscall.Open),\n\t\t\"PARENB\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"PAREXT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"PARMRK\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PARODD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"PENDIN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"PRIO_PGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PRIO_PROCESS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PRIO_USER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROT_EXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROT_NONE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"PROT_READ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROT_WRITE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"ParseDirent\":                   reflect.ValueOf(syscall.ParseDirent),\n\t\t\"ParseSocketControlMessage\":     reflect.ValueOf(syscall.ParseSocketControlMessage),\n\t\t\"ParseUnixRights\":               reflect.ValueOf(syscall.ParseUnixRights),\n\t\t\"PathMax\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"Pathconf\":                      reflect.ValueOf(syscall.Pathconf),\n\t\t\"Pipe\":                          reflect.ValueOf(syscall.Pipe),\n\t\t\"Pipe2\":                         reflect.ValueOf(syscall.Pipe2),\n\t\t\"Pread\":                         reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                        reflect.ValueOf(syscall.Pwrite),\n\t\t\"RLIMIT_AS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RLIMIT_CORE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RLIMIT_CPU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RLIMIT_DATA\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RLIMIT_FSIZE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RLIMIT_STACK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RLIM_INFINITY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-3\", token.INT, 0)),\n\t\t\"RTAX_AUTHOR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTAX_BRD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTAX_DST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RTAX_GATEWAY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTAX_GENMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTAX_IFA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTAX_IFP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTAX_MAX\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTAX_NETMASK\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTAX_SRC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_AUTHOR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTA_BRD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTA_DST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTA_GATEWAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTA_GENMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTA_IFA\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTA_IFP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTA_NETMASK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTA_NUMBITS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTA_SRC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_BLACKHOLE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RTF_CLONING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RTF_DONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTF_DYNAMIC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTF_GATEWAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTF_HOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTF_INDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RTF_KERNEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"RTF_LLINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RTF_MASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTF_MODIFIED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RTF_MULTIRT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RTF_PRIVATE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RTF_PROTO1\":                    reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RTF_PROTO2\":                    reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RTF_REJECT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTF_SETSRC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RTF_STATIC\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RTF_UP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTF_XRESOLVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RTF_ZONE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RTM_ADD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTM_CHANGE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTM_CHGADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"RTM_DELADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"RTM_DELETE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTM_FREEADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTM_GET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTM_IFINFO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"RTM_LOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTM_LOSING\":                    reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"RTM_MISS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"RTM_NEWADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"RTM_OLDADD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"RTM_OLDDEL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"RTM_REDIRECT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"RTM_RESOLVE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"RTM_VERSION\":                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"RTV_EXPIRE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RTV_HOPCOUNT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RTV_MTU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RTV_RPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RTV_RTT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RTV_RTTVAR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RTV_SPIPE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RTV_SSTHRESH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RT_AWARE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RUSAGE_CHILDREN\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1\", token.INT, 0)),\n\t\t\"RUSAGE_SELF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Read\":                          reflect.ValueOf(syscall.Read),\n\t\t\"ReadDirent\":                    reflect.ValueOf(syscall.ReadDirent),\n\t\t\"Readlink\":                      reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                      reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                       reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                        reflect.ValueOf(syscall.Rename),\n\t\t\"Rmdir\":                         reflect.ValueOf(syscall.Rmdir),\n\t\t\"SCM_RIGHTS\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4112\", token.INT, 0)),\n\t\t\"SCM_TIMESTAMP\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SCM_UCRED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4114\", token.INT, 0)),\n\t\t\"SHUT_RD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIG2STR_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SIGABRT\":                       reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                       reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                        reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCANCEL\":                     reflect.ValueOf(syscall.SIGCANCEL),\n\t\t\"SIGCHLD\":                       reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCLD\":                        reflect.ValueOf(syscall.SIGCLD),\n\t\t\"SIGCONT\":                       reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGEMT\":                        reflect.ValueOf(syscall.SIGEMT),\n\t\t\"SIGFPE\":                        reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGFREEZE\":                     reflect.ValueOf(syscall.SIGFREEZE),\n\t\t\"SIGHUP\":                        reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                        reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                        reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGIO\":                         reflect.ValueOf(syscall.SIGIO),\n\t\t\"SIGIOT\":                        reflect.ValueOf(syscall.SIGIOT),\n\t\t\"SIGJVM1\":                       reflect.ValueOf(syscall.SIGJVM1),\n\t\t\"SIGJVM2\":                       reflect.ValueOf(syscall.SIGJVM2),\n\t\t\"SIGKILL\":                       reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGLOST\":                       reflect.ValueOf(syscall.SIGLOST),\n\t\t\"SIGLWP\":                        reflect.ValueOf(syscall.SIGLWP),\n\t\t\"SIGPIPE\":                       reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                       reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                       reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                        reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                       reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                       reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                       reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                        reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                       reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTHAW\":                       reflect.ValueOf(syscall.SIGTHAW),\n\t\t\"SIGTRAP\":                       reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                       reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                       reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                       reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                        reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                       reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                       reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTALRM\":                     reflect.ValueOf(syscall.SIGVTALRM),\n\t\t\"SIGWAITING\":                    reflect.ValueOf(syscall.SIGWAITING),\n\t\t\"SIGWINCH\":                      reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                       reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                       reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SIGXRES\":                       reflect.ValueOf(syscall.SIGXRES),\n\t\t\"SIOCADDMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359567\", token.INT, 0)),\n\t\t\"SIOCADDRT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2144308726\", token.INT, 0)),\n\t\t\"SIOCATMARK\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033415\", token.INT, 0)),\n\t\t\"SIOCDARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2145097440\", token.INT, 0)),\n\t\t\"SIOCDELMULTI\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359566\", token.INT, 0)),\n\t\t\"SIOCDELRT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2144308725\", token.INT, 0)),\n\t\t\"SIOCDIPSECONFIG\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147194473\", token.INT, 0)),\n\t\t\"SIOCDXARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2147456600\", token.INT, 0)),\n\t\t\"SIOCFIPSECONFIG\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147194475\", token.INT, 0)),\n\t\t\"SIOCGARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-1071355617\", token.INT, 0)),\n\t\t\"SIOCGDSTINFO\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1073714780\", token.INT, 0)),\n\t\t\"SIOCGENADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1071617707\", token.INT, 0)),\n\t\t\"SIOCGENPSTATS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1071617735\", token.INT, 0)),\n\t\t\"SIOCGETLSGCNT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1072664043\", token.INT, 0)),\n\t\t\"SIOCGETNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074819892\", token.INT, 0)),\n\t\t\"SIOCGETPEER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1074819893\", token.INT, 0)),\n\t\t\"SIOCGETPROP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073712964\", token.INT, 0)),\n\t\t\"SIOCGETSGCNT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1072401899\", token.INT, 0)),\n\t\t\"SIOCGETSYNC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1071617747\", token.INT, 0)),\n\t\t\"SIOCGETVIFCNT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1072401900\", token.INT, 0)),\n\t\t\"SIOCGHIWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033409\", token.INT, 0)),\n\t\t\"SIOCGIFADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1071617779\", token.INT, 0)),\n\t\t\"SIOCGIFBRDADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1071617769\", token.INT, 0)),\n\t\t\"SIOCGIFCONF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073190564\", token.INT, 0)),\n\t\t\"SIOCGIFDSTADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1071617777\", token.INT, 0)),\n\t\t\"SIOCGIFFLAGS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617775\", token.INT, 0)),\n\t\t\"SIOCGIFHWADDR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1071617607\", token.INT, 0)),\n\t\t\"SIOCGIFINDEX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617702\", token.INT, 0)),\n\t\t\"SIOCGIFMEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071617773\", token.INT, 0)),\n\t\t\"SIOCGIFMETRIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1071617765\", token.INT, 0)),\n\t\t\"SIOCGIFMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071617770\", token.INT, 0)),\n\t\t\"SIOCGIFMUXID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617704\", token.INT, 0)),\n\t\t\"SIOCGIFNETMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1071617767\", token.INT, 0)),\n\t\t\"SIOCGIFNUM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074030935\", token.INT, 0)),\n\t\t\"SIOCGIP6ADDRPOLICY\":            reflect.ValueOf(constant.MakeFromLiteral(\"-1073714782\", token.INT, 0)),\n\t\t\"SIOCGIPMSFILTER\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1073452620\", token.INT, 0)),\n\t\t\"SIOCGLIFADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1065850511\", token.INT, 0)),\n\t\t\"SIOCGLIFBINDING\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1065850470\", token.INT, 0)),\n\t\t\"SIOCGLIFBRDADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1065850501\", token.INT, 0)),\n\t\t\"SIOCGLIFCONF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1072666203\", token.INT, 0)),\n\t\t\"SIOCGLIFDADSTATE\":              reflect.ValueOf(constant.MakeFromLiteral(\"-1065850434\", token.INT, 0)),\n\t\t\"SIOCGLIFDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1065850509\", token.INT, 0)),\n\t\t\"SIOCGLIFFLAGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1065850507\", token.INT, 0)),\n\t\t\"SIOCGLIFGROUPINFO\":             reflect.ValueOf(constant.MakeFromLiteral(\"-1061918307\", token.INT, 0)),\n\t\t\"SIOCGLIFGROUPNAME\":             reflect.ValueOf(constant.MakeFromLiteral(\"-1065850468\", token.INT, 0)),\n\t\t\"SIOCGLIFHWADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1065850432\", token.INT, 0)),\n\t\t\"SIOCGLIFINDEX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1065850491\", token.INT, 0)),\n\t\t\"SIOCGLIFLNKINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1065850484\", token.INT, 0)),\n\t\t\"SIOCGLIFMETRIC\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1065850497\", token.INT, 0)),\n\t\t\"SIOCGLIFMTU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1065850502\", token.INT, 0)),\n\t\t\"SIOCGLIFMUXID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1065850493\", token.INT, 0)),\n\t\t\"SIOCGLIFNETMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1065850499\", token.INT, 0)),\n\t\t\"SIOCGLIFNUM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1072928382\", token.INT, 0)),\n\t\t\"SIOCGLIFSRCOF\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1072666191\", token.INT, 0)),\n\t\t\"SIOCGLIFSUBNET\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1065850486\", token.INT, 0)),\n\t\t\"SIOCGLIFTOKEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1065850488\", token.INT, 0)),\n\t\t\"SIOCGLIFUSESRC\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1065850449\", token.INT, 0)),\n\t\t\"SIOCGLIFZONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1065850454\", token.INT, 0)),\n\t\t\"SIOCGLOWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1074033411\", token.INT, 0)),\n\t\t\"SIOCGMSFILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-1073452622\", token.INT, 0)),\n\t\t\"SIOCGPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1074033417\", token.INT, 0)),\n\t\t\"SIOCGSTAMP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1072666182\", token.INT, 0)),\n\t\t\"SIOCGXARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1073714777\", token.INT, 0)),\n\t\t\"SIOCIFDETACH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359560\", token.INT, 0)),\n\t\t\"SIOCILB\":                       reflect.ValueOf(constant.MakeFromLiteral(\"-1073452613\", token.INT, 0)),\n\t\t\"SIOCLIFADDIF\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1065850513\", token.INT, 0)),\n\t\t\"SIOCLIFDELND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2139592307\", token.INT, 0)),\n\t\t\"SIOCLIFGETND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1065850482\", token.INT, 0)),\n\t\t\"SIOCLIFREMOVEIF\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2139592338\", token.INT, 0)),\n\t\t\"SIOCLIFSETND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2139592305\", token.INT, 0)),\n\t\t\"SIOCLIPSECONFIG\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147194472\", token.INT, 0)),\n\t\t\"SIOCLOWER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2145359575\", token.INT, 0)),\n\t\t\"SIOCSARP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"-2145097442\", token.INT, 0)),\n\t\t\"SIOCSCTPGOPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1072666195\", token.INT, 0)),\n\t\t\"SIOCSCTPPEELOFF\":               reflect.ValueOf(constant.MakeFromLiteral(\"-1073452626\", token.INT, 0)),\n\t\t\"SIOCSCTPSOPT\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2146408020\", token.INT, 0)),\n\t\t\"SIOCSENABLESDP\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1073452617\", token.INT, 0)),\n\t\t\"SIOCSETPROP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2147192643\", token.INT, 0)),\n\t\t\"SIOCSETSYNC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2145359572\", token.INT, 0)),\n\t\t\"SIOCSHIWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2147192064\", token.INT, 0)),\n\t\t\"SIOCSIFADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2145359604\", token.INT, 0)),\n\t\t\"SIOCSIFBRDADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2145359592\", token.INT, 0)),\n\t\t\"SIOCSIFDSTADDR\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2145359602\", token.INT, 0)),\n\t\t\"SIOCSIFFLAGS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359600\", token.INT, 0)),\n\t\t\"SIOCSIFINDEX\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359525\", token.INT, 0)),\n\t\t\"SIOCSIFMEM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2145359598\", token.INT, 0)),\n\t\t\"SIOCSIFMETRIC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2145359588\", token.INT, 0)),\n\t\t\"SIOCSIFMTU\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2145359595\", token.INT, 0)),\n\t\t\"SIOCSIFMUXID\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2145359527\", token.INT, 0)),\n\t\t\"SIOCSIFNAME\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2145359543\", token.INT, 0)),\n\t\t\"SIOCSIFNETMASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2145359590\", token.INT, 0)),\n\t\t\"SIOCSIP6ADDRPOLICY\":            reflect.ValueOf(constant.MakeFromLiteral(\"-2147456605\", token.INT, 0)),\n\t\t\"SIOCSIPMSFILTER\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147194443\", token.INT, 0)),\n\t\t\"SIOCSIPSECONFIG\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2147194474\", token.INT, 0)),\n\t\t\"SIOCSLGETREQ\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617721\", token.INT, 0)),\n\t\t\"SIOCSLIFADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2139592336\", token.INT, 0)),\n\t\t\"SIOCSLIFBRDADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2139592324\", token.INT, 0)),\n\t\t\"SIOCSLIFDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2139592334\", token.INT, 0)),\n\t\t\"SIOCSLIFFLAGS\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2139592332\", token.INT, 0)),\n\t\t\"SIOCSLIFGROUPNAME\":             reflect.ValueOf(constant.MakeFromLiteral(\"-2139592293\", token.INT, 0)),\n\t\t\"SIOCSLIFINDEX\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2139592314\", token.INT, 0)),\n\t\t\"SIOCSLIFLNKINFO\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2139592309\", token.INT, 0)),\n\t\t\"SIOCSLIFMETRIC\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2139592320\", token.INT, 0)),\n\t\t\"SIOCSLIFMTU\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-2139592327\", token.INT, 0)),\n\t\t\"SIOCSLIFMUXID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2139592316\", token.INT, 0)),\n\t\t\"SIOCSLIFNAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1065850495\", token.INT, 0)),\n\t\t\"SIOCSLIFNETMASK\":               reflect.ValueOf(constant.MakeFromLiteral(\"-2139592322\", token.INT, 0)),\n\t\t\"SIOCSLIFPREFIX\":                reflect.ValueOf(constant.MakeFromLiteral(\"-1065850433\", token.INT, 0)),\n\t\t\"SIOCSLIFSUBNET\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2139592311\", token.INT, 0)),\n\t\t\"SIOCSLIFTOKEN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2139592313\", token.INT, 0)),\n\t\t\"SIOCSLIFUSESRC\":                reflect.ValueOf(constant.MakeFromLiteral(\"-2139592272\", token.INT, 0)),\n\t\t\"SIOCSLIFZONE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2139592277\", token.INT, 0)),\n\t\t\"SIOCSLOWAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2147192062\", token.INT, 0)),\n\t\t\"SIOCSLSTAT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-2145359544\", token.INT, 0)),\n\t\t\"SIOCSMSFILTER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-2147194445\", token.INT, 0)),\n\t\t\"SIOCSPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2147192056\", token.INT, 0)),\n\t\t\"SIOCSPROMISC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-2147194576\", token.INT, 0)),\n\t\t\"SIOCSQPTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-1073452616\", token.INT, 0)),\n\t\t\"SIOCSSDSTATS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617746\", token.INT, 0)),\n\t\t\"SIOCSSESTATS\":                  reflect.ValueOf(constant.MakeFromLiteral(\"-1071617745\", token.INT, 0)),\n\t\t\"SIOCSXARP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2147456602\", token.INT, 0)),\n\t\t\"SIOCTMYADDR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073190512\", token.INT, 0)),\n\t\t\"SIOCTMYSITE\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073190510\", token.INT, 0)),\n\t\t\"SIOCTONLINK\":                   reflect.ValueOf(constant.MakeFromLiteral(\"-1073190511\", token.INT, 0)),\n\t\t\"SIOCUPPER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"-2145359576\", token.INT, 0)),\n\t\t\"SIOCX25RCV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071617732\", token.INT, 0)),\n\t\t\"SIOCX25TBL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071617731\", token.INT, 0)),\n\t\t\"SIOCX25XMT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"-1071617733\", token.INT, 0)),\n\t\t\"SIOCXPROTO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"536900407\", token.INT, 0)),\n\t\t\"SOCK_CLOEXEC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOCK_NDELAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"SOCK_NONBLOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_RDM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_TYPE_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOL_FILTER\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65532\", token.INT, 0)),\n\t\t\"SOL_PACKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65533\", token.INT, 0)),\n\t\t\"SOL_ROUTE\":                     reflect.ValueOf(constant.MakeFromLiteral(\"65534\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ACCEPTCONN\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SO_ALL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"63\", token.INT, 0)),\n\t\t\"SO_ALLZONES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4116\", token.INT, 0)),\n\t\t\"SO_ANON_MLP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4106\", token.INT, 0)),\n\t\t\"SO_ATTACH_FILTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"1073741825\", token.INT, 0)),\n\t\t\"SO_BAND\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                  reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_COPYOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"SO_DEBUG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_DELIM\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"SO_DETACH_FILTER\":              reflect.ValueOf(constant.MakeFromLiteral(\"1073741826\", token.INT, 0)),\n\t\t\"SO_DGRAM_ERRIND\":               reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_DOMAIN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4108\", token.INT, 0)),\n\t\t\"SO_DONTLINGER\":                 reflect.ValueOf(constant.MakeFromLiteral(\"-129\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ERROPT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"SO_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4103\", token.INT, 0)),\n\t\t\"SO_EXCLBIND\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4117\", token.INT, 0)),\n\t\t\"SO_HIWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_ISNTTY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"SO_ISTTY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_LOWAT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_MAC_EXEMPT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4107\", token.INT, 0)),\n\t\t\"SO_MAC_IMPLICIT\":               reflect.ValueOf(constant.MakeFromLiteral(\"4118\", token.INT, 0)),\n\t\t\"SO_MAXBLK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"SO_MAXPSZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_MINPSZ\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_MREADOFF\":                   reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_MREADON\":                    reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_NDELOFF\":                    reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"SO_NDELON\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_NODELIM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"SO_OOBINLINE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"SO_PROTOTYPE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4105\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_RCVLOWAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4100\", token.INT, 0)),\n\t\t\"SO_RCVPSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4109\", token.INT, 0)),\n\t\t\"SO_RCVTIMEO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4102\", token.INT, 0)),\n\t\t\"SO_READOPT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SO_RECVUCRED\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_SECATTR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4113\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_SNDLOWAT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4099\", token.INT, 0)),\n\t\t\"SO_SNDTIMEO\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4101\", token.INT, 0)),\n\t\t\"SO_STRHOLD\":                    reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"SO_TAIL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"SO_TIMESTAMP\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4115\", token.INT, 0)),\n\t\t\"SO_TONSTOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"SO_TOSTOP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"SO_TYPE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4104\", token.INT, 0)),\n\t\t\"SO_USELOOPBACK\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"SO_VRRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4119\", token.INT, 0)),\n\t\t\"SO_WROFF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_EXECVE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"59\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"62\", token.INT, 0)),\n\t\t\"S_IFBLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"61440\", token.INT, 0)),\n\t\t\"S_IFREG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_ISGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                          reflect.ValueOf(syscall.Seek),\n\t\t\"Sendfile\":                      reflect.ValueOf(syscall.Sendfile),\n\t\t\"Sendmsg\":                       reflect.ValueOf(syscall.Sendmsg),\n\t\t\"SendmsgN\":                      reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                        reflect.ValueOf(syscall.Sendto),\n\t\t\"SetNonblock\":                   reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setegid\":                       reflect.ValueOf(syscall.Setegid),\n\t\t\"Setenv\":                        reflect.ValueOf(syscall.Setenv),\n\t\t\"Seteuid\":                       reflect.ValueOf(syscall.Seteuid),\n\t\t\"Setgid\":                        reflect.ValueOf(syscall.Setgid),\n\t\t\"Setgroups\":                     reflect.ValueOf(syscall.Setgroups),\n\t\t\"Setpgid\":                       reflect.ValueOf(syscall.Setpgid),\n\t\t\"Setpriority\":                   reflect.ValueOf(syscall.Setpriority),\n\t\t\"Setregid\":                      reflect.ValueOf(syscall.Setregid),\n\t\t\"Setreuid\":                      reflect.ValueOf(syscall.Setreuid),\n\t\t\"Setrlimit\":                     reflect.ValueOf(syscall.Setrlimit),\n\t\t\"Setsid\":                        reflect.ValueOf(syscall.Setsid),\n\t\t\"SetsockoptByte\":                reflect.ValueOf(syscall.SetsockoptByte),\n\t\t\"SetsockoptICMPv6Filter\":        reflect.ValueOf(syscall.SetsockoptICMPv6Filter),\n\t\t\"SetsockoptIPMreq\":              reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":            reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":           reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                 reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":              reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptString\":              reflect.ValueOf(syscall.SetsockoptString),\n\t\t\"SetsockoptTimeval\":             reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"Setuid\":                        reflect.ValueOf(syscall.Setuid),\n\t\t\"SizeofBpfHdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofBpfInsn\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofBpfProgram\":              reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofBpfStat\":                 reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SizeofBpfVersion\":              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SizeofCmsghdr\":                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"SizeofICMPv6Filter\":            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofIPMreq\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofIPv6MTUInfo\":             reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"SizeofIPv6Mreq\":                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofIfData\":                  reflect.ValueOf(constant.MakeFromLiteral(\"68\", token.INT, 0)),\n\t\t\"SizeofIfMsghdr\":                reflect.ValueOf(constant.MakeFromLiteral(\"84\", token.INT, 0)),\n\t\t\"SizeofIfaMsghdr\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofInet6Pktinfo\":            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"SizeofLinger\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SizeofMsghdr\":                  reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"SizeofRtMetrics\":               reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"SizeofRtMsghdr\":                reflect.ValueOf(constant.MakeFromLiteral(\"76\", token.INT, 0)),\n\t\t\"SizeofSockaddrAny\":             reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SizeofSockaddrDatalink\":        reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet4\":           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SizeofSockaddrInet6\":           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SizeofSockaddrUnix\":            reflect.ValueOf(constant.MakeFromLiteral(\"110\", token.INT, 0)),\n\t\t\"SlicePtrFromStrings\":           reflect.ValueOf(syscall.SlicePtrFromStrings),\n\t\t\"Socket\":                        reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":             reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Socketpair\":                    reflect.ValueOf(syscall.Socketpair),\n\t\t\"Stat\":                          reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":                        reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                         reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                        reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                 reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":               reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringSlicePtr\":                reflect.ValueOf(syscall.StringSlicePtr),\n\t\t\"Symlink\":                       reflect.ValueOf(syscall.Symlink),\n\t\t\"Sync\":                          reflect.ValueOf(syscall.Sync),\n\t\t\"TCFLSH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"21511\", token.INT, 0)),\n\t\t\"TCIFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TCIOFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCOFLUSH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_ABORT_THRESHOLD\":           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TCP_ANONPRIVBIND\":              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TCP_CONN_ABORT_THRESHOLD\":      reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TCP_CONN_NOTIFY_THRESHOLD\":     reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TCP_CORK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TCP_EXCLBIND\":                  reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"TCP_INIT_CWND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TCP_KEEPALIVE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TCP_KEEPALIVE_ABORT_THRESHOLD\": reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TCP_KEEPALIVE_THRESHOLD\":       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TCP_KEEPCNT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"TCP_KEEPIDLE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"TCP_KEEPINTVL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"TCP_LINGER2\":                   reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"TCP_MAXSEG\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TCP_MSS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"536\", token.INT, 0)),\n\t\t\"TCP_NODELAY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TCP_NOTIFY_THRESHOLD\":          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TCP_RECVDSTADDR\":               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TCP_RTO_INITIAL\":               reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"TCP_RTO_MAX\":                   reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"TCP_RTO_MIN\":                   reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"TCSAFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"21520\", token.INT, 0)),\n\t\t\"TIOC\":                          reflect.ValueOf(constant.MakeFromLiteral(\"21504\", token.INT, 0)),\n\t\t\"TIOCCBRK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29818\", token.INT, 0)),\n\t\t\"TIOCCDTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29816\", token.INT, 0)),\n\t\t\"TIOCCILOOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29804\", token.INT, 0)),\n\t\t\"TIOCEXCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29709\", token.INT, 0)),\n\t\t\"TIOCFLUSH\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29712\", token.INT, 0)),\n\t\t\"TIOCGETC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29714\", token.INT, 0)),\n\t\t\"TIOCGETD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29696\", token.INT, 0)),\n\t\t\"TIOCGETP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29704\", token.INT, 0)),\n\t\t\"TIOCGLTC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29812\", token.INT, 0)),\n\t\t\"TIOCGPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29716\", token.INT, 0)),\n\t\t\"TIOCGPPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21629\", token.INT, 0)),\n\t\t\"TIOCGPPSEV\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21631\", token.INT, 0)),\n\t\t\"TIOCGSID\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29718\", token.INT, 0)),\n\t\t\"TIOCGSOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21609\", token.INT, 0)),\n\t\t\"TIOCGWINSZ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21608\", token.INT, 0)),\n\t\t\"TIOCHPCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29698\", token.INT, 0)),\n\t\t\"TIOCKBOF\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21513\", token.INT, 0)),\n\t\t\"TIOCKBON\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21512\", token.INT, 0)),\n\t\t\"TIOCLBIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29822\", token.INT, 0)),\n\t\t\"TIOCLBIS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29823\", token.INT, 0)),\n\t\t\"TIOCLGET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29820\", token.INT, 0)),\n\t\t\"TIOCLSET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29821\", token.INT, 0)),\n\t\t\"TIOCMBIC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29724\", token.INT, 0)),\n\t\t\"TIOCMBIS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29723\", token.INT, 0)),\n\t\t\"TIOCMGET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29725\", token.INT, 0)),\n\t\t\"TIOCMSET\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29722\", token.INT, 0)),\n\t\t\"TIOCM_CAR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TIOCM_CTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TIOCM_DSR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TIOCM_DTR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIOCM_LE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIOCM_RI\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RNG\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TIOCM_RTS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIOCM_SR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TIOCM_ST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TIOCNOTTY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29809\", token.INT, 0)),\n\t\t\"TIOCNXCL\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29710\", token.INT, 0)),\n\t\t\"TIOCOUTQ\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29811\", token.INT, 0)),\n\t\t\"TIOCREMOTE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29726\", token.INT, 0)),\n\t\t\"TIOCSBRK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29819\", token.INT, 0)),\n\t\t\"TIOCSCTTY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29828\", token.INT, 0)),\n\t\t\"TIOCSDTR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29817\", token.INT, 0)),\n\t\t\"TIOCSETC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29713\", token.INT, 0)),\n\t\t\"TIOCSETD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29697\", token.INT, 0)),\n\t\t\"TIOCSETN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29706\", token.INT, 0)),\n\t\t\"TIOCSETP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29705\", token.INT, 0)),\n\t\t\"TIOCSIGNAL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29727\", token.INT, 0)),\n\t\t\"TIOCSILOOP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"29805\", token.INT, 0)),\n\t\t\"TIOCSLTC\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29813\", token.INT, 0)),\n\t\t\"TIOCSPGRP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29717\", token.INT, 0)),\n\t\t\"TIOCSPPS\":                      reflect.ValueOf(constant.MakeFromLiteral(\"21630\", token.INT, 0)),\n\t\t\"TIOCSSOFTCAR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"21610\", token.INT, 0)),\n\t\t\"TIOCSTART\":                     reflect.ValueOf(constant.MakeFromLiteral(\"29806\", token.INT, 0)),\n\t\t\"TIOCSTI\":                       reflect.ValueOf(constant.MakeFromLiteral(\"29719\", token.INT, 0)),\n\t\t\"TIOCSTOP\":                      reflect.ValueOf(constant.MakeFromLiteral(\"29807\", token.INT, 0)),\n\t\t\"TIOCSWINSZ\":                    reflect.ValueOf(constant.MakeFromLiteral(\"21607\", token.INT, 0)),\n\t\t\"TOSTOP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TimespecToNsec\":                reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                 reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                      reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                         reflect.ValueOf(syscall.Umask),\n\t\t\"UnixRights\":                    reflect.ValueOf(syscall.UnixRights),\n\t\t\"Unlink\":                        reflect.ValueOf(syscall.Unlink),\n\t\t\"Unsetenv\":                      reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                        reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                    reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VCEOF\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VCEOL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VDISCARD\":                      reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"VDSUSP\":                        reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"VEOF\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VEOL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VEOL2\":                         reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"VERASE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"VINTR\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VKILL\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"VLNEXT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"VMIN\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"VQUIT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"VREPRINT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"VSTART\":                        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"VSTOP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"VSUSP\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"VSWTCH\":                        reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"VT0\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"VT1\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTDLY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"VTIME\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"VWERASE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"WCONTFLG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"WCONTINUED\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"WCOREFLG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WEXITED\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WNOHANG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"WNOWAIT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WOPTMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"207\", token.INT, 0)),\n\t\t\"WRAP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"WSIGMASK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WSTOPFLG\":                      reflect.ValueOf(constant.MakeFromLiteral(\"127\", token.INT, 0)),\n\t\t\"WSTOPPED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"WTRAPPED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WUNTRACED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"Wait4\":                         reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                         reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"BpfHdr\":               reflect.ValueOf((*syscall.BpfHdr)(nil)),\n\t\t\"BpfInsn\":              reflect.ValueOf((*syscall.BpfInsn)(nil)),\n\t\t\"BpfProgram\":           reflect.ValueOf((*syscall.BpfProgram)(nil)),\n\t\t\"BpfStat\":              reflect.ValueOf((*syscall.BpfStat)(nil)),\n\t\t\"BpfTimeval\":           reflect.ValueOf((*syscall.BpfTimeval)(nil)),\n\t\t\"BpfVersion\":           reflect.ValueOf((*syscall.BpfVersion)(nil)),\n\t\t\"Cmsghdr\":              reflect.ValueOf((*syscall.Cmsghdr)(nil)),\n\t\t\"Conn\":                 reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Credential\":           reflect.ValueOf((*syscall.Credential)(nil)),\n\t\t\"Dirent\":               reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":                reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FdSet\":                reflect.ValueOf((*syscall.FdSet)(nil)),\n\t\t\"Flock_t\":              reflect.ValueOf((*syscall.Flock_t)(nil)),\n\t\t\"ICMPv6Filter\":         reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),\n\t\t\"IPMreq\":               reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6MTUInfo\":          reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),\n\t\t\"IPv6Mreq\":             reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"IfData\":               reflect.ValueOf((*syscall.IfData)(nil)),\n\t\t\"IfMsghdr\":             reflect.ValueOf((*syscall.IfMsghdr)(nil)),\n\t\t\"IfaMsghdr\":            reflect.ValueOf((*syscall.IfaMsghdr)(nil)),\n\t\t\"Inet6Pktinfo\":         reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),\n\t\t\"Iovec\":                reflect.ValueOf((*syscall.Iovec)(nil)),\n\t\t\"Linger\":               reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"Msghdr\":               reflect.ValueOf((*syscall.Msghdr)(nil)),\n\t\t\"ProcAttr\":             reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":              reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":          reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":       reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrDatalink\":  reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),\n\t\t\"RawSockaddrInet4\":     reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":     reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":      reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rlimit\":               reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"RtMetrics\":            reflect.ValueOf((*syscall.RtMetrics)(nil)),\n\t\t\"RtMsghdr\":             reflect.ValueOf((*syscall.RtMsghdr)(nil)),\n\t\t\"Rusage\":               reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":               reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":             reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrDatalink\":     reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),\n\t\t\"SockaddrInet4\":        reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":        reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":         reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"SocketControlMessage\": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),\n\t\t\"Stat_t\":               reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"SysProcAttr\":          reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Termios\":              reflect.ValueOf((*syscall.Termios)(nil)),\n\t\t\"Timespec\":             reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":              reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timeval32\":            reflect.ValueOf((*syscall.Timeval32)(nil)),\n\t\t\"WaitStatus\":           reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_wasip1_wasm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_INET\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"AF_UNIX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Accept\":                        reflect.ValueOf(syscall.Accept),\n\t\t\"Bind\":                          reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":             reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":           reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"Chdir\":                         reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                         reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                         reflect.ValueOf(syscall.Chown),\n\t\t\"Clearenv\":                      reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                         reflect.ValueOf(syscall.Close),\n\t\t\"CloseOnExec\":                   reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"Connect\":                       reflect.ValueOf(syscall.Connect),\n\t\t\"Dup\":                           reflect.ValueOf(syscall.Dup),\n\t\t\"Dup2\":                          reflect.ValueOf(syscall.Dup2),\n\t\t\"E2BIG\":                         reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                        reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                    reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                 reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EAFNOSUPPORT\":                  reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                        reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                      reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADF\":                         reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADMSG\":                       reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBUSY\":                         reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                     reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                        reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECONNABORTED\":                  reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                  reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                    reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                       reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDESTADDRREQ\":                  reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                          reflect.ValueOf(syscall.EDOM),\n\t\t\"EDQUOT\":                        reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                        reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                        reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                         reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTUNREACH\":                  reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                         reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                        reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                   reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                         reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                        reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                           reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                       reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                        reflect.ValueOf(syscall.EISDIR),\n\t\t\"ELOOP\":                         reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMFILE\":                        reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                        reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                      reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                     reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                  reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENETDOWN\":                      reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                     reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                   reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                        reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOBUFS\":                       reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENODEV\":                        reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                        reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                       reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOLCK\":                        reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                       reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEM\":                        reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                        reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENOPROTOOPT\":                   reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                        reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSYS\":                        reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTCAPABLE\":                   reflect.ValueOf(syscall.ENOTCAPABLE),\n\t\t\"ENOTCONN\":                      reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                       reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                     reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTRECOVERABLE\":               reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                      reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                       reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                        reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENXIO\":                         reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                    reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                     reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                    reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                         reflect.ValueOf(syscall.EPERM),\n\t\t\"EPIPE\":                         reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROTO\":                        reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":               reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                    reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                        reflect.ValueOf(syscall.ERANGE),\n\t\t\"EROFS\":                         reflect.ValueOf(syscall.EROFS),\n\t\t\"ESPIPE\":                        reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                         reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESTALE\":                        reflect.ValueOf(syscall.ESTALE),\n\t\t\"ETIMEDOUT\":                     reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETXTBSY\":                       reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EXDEV\":                         reflect.ValueOf(syscall.EXDEV),\n\t\t\"Environ\":                       reflect.ValueOf(syscall.Environ),\n\t\t\"FDFLAG_APPEND\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FDFLAG_DSYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FDFLAG_NONBLOCK\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FDFLAG_RSYNC\":                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"FDFLAG_SYNC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"FILESTAT_SET_ATIM\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILESTAT_SET_ATIM_NOW\":         reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILESTAT_SET_MTIM\":             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILESTAT_SET_MTIM_NOW\":         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"FILETYPE_BLOCK_DEVICE\":         reflect.ValueOf(syscall.FILETYPE_BLOCK_DEVICE),\n\t\t\"FILETYPE_CHARACTER_DEVICE\":     reflect.ValueOf(syscall.FILETYPE_CHARACTER_DEVICE),\n\t\t\"FILETYPE_DIRECTORY\":            reflect.ValueOf(syscall.FILETYPE_DIRECTORY),\n\t\t\"FILETYPE_REGULAR_FILE\":         reflect.ValueOf(syscall.FILETYPE_REGULAR_FILE),\n\t\t\"FILETYPE_SOCKET_DGRAM\":         reflect.ValueOf(syscall.FILETYPE_SOCKET_DGRAM),\n\t\t\"FILETYPE_SOCKET_STREAM\":        reflect.ValueOf(syscall.FILETYPE_SOCKET_STREAM),\n\t\t\"FILETYPE_SYMBOLIC_LINK\":        reflect.ValueOf(syscall.FILETYPE_SYMBOLIC_LINK),\n\t\t\"FILETYPE_UNKNOWN\":              reflect.ValueOf(syscall.FILETYPE_UNKNOWN),\n\t\t\"F_CNVT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"F_DUPFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"F_DUPFD_CLOEXEC\":               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_GETFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_GETLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"F_GETOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"F_RDLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"F_RGETLK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"F_RSETLK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"F_RSETLKW\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"F_SETFD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"F_SETFL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_SETLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"F_SETLKW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"F_SETOWN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"F_UNLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"F_UNLKSYS\":                     reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"F_WRLCK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Fchmod\":                        reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                        reflect.ValueOf(syscall.Fchown),\n\t\t\"Fstat\":                         reflect.ValueOf(syscall.Fstat),\n\t\t\"Fsync\":                         reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                     reflect.ValueOf(syscall.Ftruncate),\n\t\t\"Getegid\":                       reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                        reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                       reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                        reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                     reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                   reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpid\":                        reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                       reflect.ValueOf(syscall.Getppid),\n\t\t\"Getrlimit\":                     reflect.ValueOf(syscall.Getrlimit),\n\t\t\"GetsockoptInt\":                 reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                  reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                        reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                         reflect.ValueOf(syscall.Getwd),\n\t\t\"IPPROTO_IP\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPV4\":                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                  reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                   reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":               reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"LOOKUP_SYMLINK_FOLLOW\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Lchown\":                        reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                          reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                        reflect.ValueOf(syscall.Listen),\n\t\t\"Lstat\":                         reflect.ValueOf(syscall.Lstat),\n\t\t\"Mkdir\":                         reflect.ValueOf(syscall.Mkdir),\n\t\t\"NsecToTimespec\":                reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                 reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"OFLAG_CREATE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"OFLAG_DIRECTORY\":               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"OFLAG_EXCL\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"OFLAG_TRUNC\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"O_APPEND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_CREAT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_CREATE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_EXCL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_RDONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SYNC\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_TRUNC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                          reflect.ValueOf(syscall.Open),\n\t\t\"ParseDirent\":                   reflect.ValueOf(syscall.ParseDirent),\n\t\t\"Pipe\":                          reflect.ValueOf(syscall.Pipe),\n\t\t\"Pread\":                         reflect.ValueOf(syscall.Pread),\n\t\t\"Pwrite\":                        reflect.ValueOf(syscall.Pwrite),\n\t\t\"RIGHT_FDSTAT_SET_FLAGS\":        reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"RIGHT_FD_ADVISE\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"RIGHT_FD_ALLOCATE\":             reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"RIGHT_FD_DATASYNC\":             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"RIGHT_FD_FILESTAT_GET\":         reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"RIGHT_FD_FILESTAT_SET_SIZE\":    reflect.ValueOf(constant.MakeFromLiteral(\"4194304\", token.INT, 0)),\n\t\t\"RIGHT_FD_FILESTAT_SET_TIMES\":   reflect.ValueOf(constant.MakeFromLiteral(\"8388608\", token.INT, 0)),\n\t\t\"RIGHT_FD_READ\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"RIGHT_FD_READDIR\":              reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"RIGHT_FD_SEEK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"RIGHT_FD_SYNC\":                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"RIGHT_FD_TELL\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"RIGHT_FD_WRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"RIGHT_PATH_CREATE_DIRECTORY\":   reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"RIGHT_PATH_CREATE_FILE\":        reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"RIGHT_PATH_FILESTAT_GET\":       reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"RIGHT_PATH_FILESTAT_SET_SIZE\":  reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"RIGHT_PATH_FILESTAT_SET_TIMES\": reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"RIGHT_PATH_LINK_SOURCE\":        reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"RIGHT_PATH_LINK_TARGET\":        reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"RIGHT_PATH_OPEN\":               reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"RIGHT_PATH_READLINK\":           reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"RIGHT_PATH_REMOVE_DIRECTORY\":   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"RIGHT_PATH_RENAME_SOURCE\":      reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"RIGHT_PATH_RENAME_TARGET\":      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"RIGHT_PATH_SYMLINK\":            reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"RIGHT_PATH_UNLINK_FILE\":        reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"RIGHT_POLL_FD_READWRITE\":       reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"RIGHT_SOCK_ACCEPT\":             reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"RIGHT_SOCK_SHUTDOWN\":           reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"RLIMIT_NOFILE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"RandomGet\":                     reflect.ValueOf(syscall.RandomGet),\n\t\t\"Read\":                          reflect.ValueOf(syscall.Read),\n\t\t\"ReadDir\":                       reflect.ValueOf(syscall.ReadDir),\n\t\t\"Readlink\":                      reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                      reflect.ValueOf(syscall.Recvfrom),\n\t\t\"Recvmsg\":                       reflect.ValueOf(syscall.Recvmsg),\n\t\t\"Rename\":                        reflect.ValueOf(syscall.Rename),\n\t\t\"Rmdir\":                         reflect.ValueOf(syscall.Rmdir),\n\t\t\"SHUT_RD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SHUT_WR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SIGABRT\":                       reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                       reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                        reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGCHLD\":                       reflect.ValueOf(syscall.SIGCHLD),\n\t\t\"SIGCONT\":                       reflect.ValueOf(syscall.SIGCONT),\n\t\t\"SIGFPE\":                        reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                        reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                        reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                        reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGKILL\":                       reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGNONE\":                       reflect.ValueOf(syscall.SIGNONE),\n\t\t\"SIGPIPE\":                       reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGPOLL\":                       reflect.ValueOf(syscall.SIGPOLL),\n\t\t\"SIGPROF\":                       reflect.ValueOf(syscall.SIGPROF),\n\t\t\"SIGPWR\":                        reflect.ValueOf(syscall.SIGPWR),\n\t\t\"SIGQUIT\":                       reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                       reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGSTOP\":                       reflect.ValueOf(syscall.SIGSTOP),\n\t\t\"SIGSYS\":                        reflect.ValueOf(syscall.SIGSYS),\n\t\t\"SIGTERM\":                       reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                       reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIGTSTP\":                       reflect.ValueOf(syscall.SIGTSTP),\n\t\t\"SIGTTIN\":                       reflect.ValueOf(syscall.SIGTTIN),\n\t\t\"SIGTTOU\":                       reflect.ValueOf(syscall.SIGTTOU),\n\t\t\"SIGURG\":                        reflect.ValueOf(syscall.SIGURG),\n\t\t\"SIGUSR1\":                       reflect.ValueOf(syscall.SIGUSR1),\n\t\t\"SIGUSR2\":                       reflect.ValueOf(syscall.SIGUSR2),\n\t\t\"SIGVTARLM\":                     reflect.ValueOf(syscall.SIGVTARLM),\n\t\t\"SIGWINCH\":                      reflect.ValueOf(syscall.SIGWINCH),\n\t\t\"SIGXCPU\":                       reflect.ValueOf(syscall.SIGXCPU),\n\t\t\"SIGXFSZ\":                       reflect.ValueOf(syscall.SIGXFSZ),\n\t\t\"SOCK_DGRAM\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                      reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_ERROR\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SYS_FCNTL\":                     reflect.ValueOf(constant.MakeFromLiteral(\"500\", token.INT, 0)),\n\t\t\"S_IEXEC\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_IFBLK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFBOUNDSOCK\":                 reflect.ValueOf(constant.MakeFromLiteral(\"77824\", token.INT, 0)),\n\t\t\"S_IFCHR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFCOND\":                      reflect.ValueOf(constant.MakeFromLiteral(\"90112\", token.INT, 0)),\n\t\t\"S_IFDIR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFDSOCK\":                     reflect.ValueOf(constant.MakeFromLiteral(\"69632\", token.INT, 0)),\n\t\t\"S_IFIFO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"S_IFMUTEX\":                     reflect.ValueOf(constant.MakeFromLiteral(\"86016\", token.INT, 0)),\n\t\t\"S_IFREG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSEMA\":                      reflect.ValueOf(constant.MakeFromLiteral(\"94208\", token.INT, 0)),\n\t\t\"S_IFSHM\":                       reflect.ValueOf(constant.MakeFromLiteral(\"81920\", token.INT, 0)),\n\t\t\"S_IFSHM_SYSV\":                  reflect.ValueOf(constant.MakeFromLiteral(\"98304\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                      reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IFSOCKADDR\":                  reflect.ValueOf(constant.MakeFromLiteral(\"73728\", token.INT, 0)),\n\t\t\"S_IREAD\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"S_IROTH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"S_IRUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_IRWXG\":                       reflect.ValueOf(constant.MakeFromLiteral(\"56\", token.INT, 0)),\n\t\t\"S_IRWXO\":                       reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"S_IRWXU\":                       reflect.ValueOf(constant.MakeFromLiteral(\"448\", token.INT, 0)),\n\t\t\"S_ISGID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                       reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"S_IWOTH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"S_IWRITE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXGRP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"S_IXOTH\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"S_IXUSR\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"S_UNSUP\":                       reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"Seek\":                          reflect.ValueOf(syscall.Seek),\n\t\t\"Sendfile\":                      reflect.ValueOf(syscall.Sendfile),\n\t\t\"SendmsgN\":                      reflect.ValueOf(syscall.SendmsgN),\n\t\t\"Sendto\":                        reflect.ValueOf(syscall.Sendto),\n\t\t\"SetNonblock\":                   reflect.ValueOf(syscall.SetNonblock),\n\t\t\"SetReadDeadline\":               reflect.ValueOf(syscall.SetReadDeadline),\n\t\t\"SetWriteDeadline\":              reflect.ValueOf(syscall.SetWriteDeadline),\n\t\t\"Setenv\":                        reflect.ValueOf(syscall.Setenv),\n\t\t\"SetsockoptInt\":                 reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"Socket\":                        reflect.ValueOf(syscall.Socket),\n\t\t\"Stat\":                          reflect.ValueOf(syscall.Stat),\n\t\t\"Stderr\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Stdin\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Stdout\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"StopIO\":                        reflect.ValueOf(syscall.StopIO),\n\t\t\"StringBytePtr\":                 reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":               reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"Symlink\":                       reflect.ValueOf(syscall.Symlink),\n\t\t\"Sysctl\":                        reflect.ValueOf(syscall.Sysctl),\n\t\t\"TimespecToNsec\":                reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TimevalToNsec\":                 reflect.ValueOf(syscall.TimevalToNsec),\n\t\t\"Truncate\":                      reflect.ValueOf(syscall.Truncate),\n\t\t\"Umask\":                         reflect.ValueOf(syscall.Umask),\n\t\t\"Unlink\":                        reflect.ValueOf(syscall.Unlink),\n\t\t\"Unsetenv\":                      reflect.ValueOf(syscall.Unsetenv),\n\t\t\"UtimesNano\":                    reflect.ValueOf(syscall.UtimesNano),\n\t\t\"WHENCE_CUR\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"WHENCE_END\":                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"WHENCE_SET\":                    reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Wait4\":                         reflect.ValueOf(syscall.Wait4),\n\t\t\"Write\":                         reflect.ValueOf(syscall.Write),\n\n\t\t// type definitions\n\t\t\"Conn\":          reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"Dircookie\":     reflect.ValueOf((*syscall.Dircookie)(nil)),\n\t\t\"Dirent\":        reflect.ValueOf((*syscall.Dirent)(nil)),\n\t\t\"Errno\":         reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"Filetype\":      reflect.ValueOf((*syscall.Filetype)(nil)),\n\t\t\"ProcAttr\":      reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"RawConn\":       reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"Rlimit\":        reflect.ValueOf((*syscall.Rlimit)(nil)),\n\t\t\"Rusage\":        reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"Signal\":        reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":      reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrInet4\": reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\": reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":  reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"Stat_t\":        reflect.ValueOf((*syscall.Stat_t)(nil)),\n\t\t\"SysProcAttr\":   reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Timespec\":      reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":       reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"WaitStatus\":    reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_windows_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_INET\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_UNIX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AI_CANONNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AI_NUMERICHOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AI_PASSIVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"APPLICATION_ERROR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"AUTHTYPE_CLIENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AUTHTYPE_SERVER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Accept\":                              reflect.ValueOf(syscall.Accept),\n\t\t\"AcceptEx\":                            reflect.ValueOf(syscall.AcceptEx),\n\t\t\"BASE_PROTOCOL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Bind\":                                reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":                   reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":                 reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CERT_CHAIN_POLICY_AUTHENTICODE\":      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_AUTHENTICODE_TS\":   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_BASE\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_BASIC_CONSTRAINTS\": reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_EV\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_MICROSOFT_ROOT\":    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_NT_AUTH\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_SSL\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_E_CN_NO_MATCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148204815\", token.INT, 0)),\n\t\t\"CERT_E_EXPIRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148204801\", token.INT, 0)),\n\t\t\"CERT_E_PURPOSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148204806\", token.INT, 0)),\n\t\t\"CERT_E_ROLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148204803\", token.INT, 0)),\n\t\t\"CERT_E_UNTRUSTEDROOT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2148204809\", token.INT, 0)),\n\t\t\"CERT_STORE_ADD_ALWAYS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG\":  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_STORE_PROV_MEMORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT\":      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT\":   reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT\": reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT\":    reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT\": reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_BASIC_CONSTRAINTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_EXTENSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_NAME_CONSTRAINTS\":          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_POLICY_CONSTRAINTS\":        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_CYCLIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_EXPLICIT_DISTRUST\":              reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_SIGNATURE_VALID\":            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_TIME_VALID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_VALID_FOR_USAGE\":            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_OFFLINE_REVOCATION\":             reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_REVOKED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_UNTRUSTED_ROOT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CERT_TRUST_NO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY\":          reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CERT_TRUST_REVOCATION_STATUS_UNKNOWN\":         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CREATE_ALWAYS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CREATE_NEW\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CREATE_NEW_PROCESS_GROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CREATE_UNICODE_ENVIRONMENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CRYPT_DEFAULT_CONTAINER_OPTIONAL\":             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CRYPT_DELETEKEYSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CRYPT_MACHINE_KEYSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CRYPT_NEWKEYSET\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CRYPT_SILENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CRYPT_VERIFYCONTEXT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"CTRL_BREAK_EVENT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CTRL_CLOSE_EVENT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CTRL_C_EVENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CTRL_LOGOFF_EVENT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"CTRL_SHUTDOWN_EVENT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"CancelIo\":                                     reflect.ValueOf(syscall.CancelIo),\n\t\t\"CancelIoEx\":                                   reflect.ValueOf(syscall.CancelIoEx),\n\t\t\"CertAddCertificateContextToStore\":             reflect.ValueOf(syscall.CertAddCertificateContextToStore),\n\t\t\"CertCloseStore\":                               reflect.ValueOf(syscall.CertCloseStore),\n\t\t\"CertCreateCertificateContext\":                 reflect.ValueOf(syscall.CertCreateCertificateContext),\n\t\t\"CertEnumCertificatesInStore\":                  reflect.ValueOf(syscall.CertEnumCertificatesInStore),\n\t\t\"CertFreeCertificateChain\":                     reflect.ValueOf(syscall.CertFreeCertificateChain),\n\t\t\"CertFreeCertificateContext\":                   reflect.ValueOf(syscall.CertFreeCertificateContext),\n\t\t\"CertGetCertificateChain\":                      reflect.ValueOf(syscall.CertGetCertificateChain),\n\t\t\"CertOpenStore\":                                reflect.ValueOf(syscall.CertOpenStore),\n\t\t\"CertOpenSystemStore\":                          reflect.ValueOf(syscall.CertOpenSystemStore),\n\t\t\"CertVerifyCertificateChainPolicy\":             reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy),\n\t\t\"Chdir\":                                        reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                                        reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                                        reflect.ValueOf(syscall.Chown),\n\t\t\"Clearenv\":                                     reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                                        reflect.ValueOf(syscall.Close),\n\t\t\"CloseHandle\":                                  reflect.ValueOf(syscall.CloseHandle),\n\t\t\"CloseOnExec\":                                  reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"Closesocket\":                                  reflect.ValueOf(syscall.Closesocket),\n\t\t\"CommandLineToArgv\":                            reflect.ValueOf(syscall.CommandLineToArgv),\n\t\t\"ComputerName\":                                 reflect.ValueOf(syscall.ComputerName),\n\t\t\"Connect\":                                      reflect.ValueOf(syscall.Connect),\n\t\t\"ConnectEx\":                                    reflect.ValueOf(syscall.ConnectEx),\n\t\t\"ConvertSidToStringSid\":                        reflect.ValueOf(syscall.ConvertSidToStringSid),\n\t\t\"ConvertStringSidToSid\":                        reflect.ValueOf(syscall.ConvertStringSidToSid),\n\t\t\"CopySid\":                                      reflect.ValueOf(syscall.CopySid),\n\t\t\"CreateDirectory\":                              reflect.ValueOf(syscall.CreateDirectory),\n\t\t\"CreateFile\":                                   reflect.ValueOf(syscall.CreateFile),\n\t\t\"CreateFileMapping\":                            reflect.ValueOf(syscall.CreateFileMapping),\n\t\t\"CreateHardLink\":                               reflect.ValueOf(syscall.CreateHardLink),\n\t\t\"CreateIoCompletionPort\":                       reflect.ValueOf(syscall.CreateIoCompletionPort),\n\t\t\"CreatePipe\":                                   reflect.ValueOf(syscall.CreatePipe),\n\t\t\"CreateProcess\":                                reflect.ValueOf(syscall.CreateProcess),\n\t\t\"CreateProcessAsUser\":                          reflect.ValueOf(syscall.CreateProcessAsUser),\n\t\t\"CreateSymbolicLink\":                           reflect.ValueOf(syscall.CreateSymbolicLink),\n\t\t\"CreateToolhelp32Snapshot\":                     reflect.ValueOf(syscall.CreateToolhelp32Snapshot),\n\t\t\"CryptAcquireContext\":                          reflect.ValueOf(syscall.CryptAcquireContext),\n\t\t\"CryptGenRandom\":                               reflect.ValueOf(syscall.CryptGenRandom),\n\t\t\"CryptReleaseContext\":                          reflect.ValueOf(syscall.CryptReleaseContext),\n\t\t\"DNS_INFO_NO_RECORDS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9501\", token.INT, 0)),\n\t\t\"DNS_TYPE_A\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DNS_TYPE_A6\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"DNS_TYPE_AAAA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"DNS_TYPE_ADDRS\":                               reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"DNS_TYPE_AFSDB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DNS_TYPE_ALL\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"DNS_TYPE_ANY\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"DNS_TYPE_ATMA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"DNS_TYPE_AXFR\":                                reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"DNS_TYPE_CERT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"DNS_TYPE_CNAME\":                               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DNS_TYPE_DHCID\":                               reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"DNS_TYPE_DNAME\":                               reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"DNS_TYPE_DNSKEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"DNS_TYPE_DS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"DNS_TYPE_EID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"DNS_TYPE_GID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"DNS_TYPE_GPOS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"DNS_TYPE_HINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DNS_TYPE_ISDN\":                                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"DNS_TYPE_IXFR\":                                reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"DNS_TYPE_KEY\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"DNS_TYPE_KX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"DNS_TYPE_LOC\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"DNS_TYPE_MAILA\":                               reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"DNS_TYPE_MAILB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"DNS_TYPE_MB\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DNS_TYPE_MD\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DNS_TYPE_MF\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DNS_TYPE_MG\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DNS_TYPE_MINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DNS_TYPE_MR\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DNS_TYPE_MX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DNS_TYPE_NAPTR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"DNS_TYPE_NBSTAT\":                              reflect.ValueOf(constant.MakeFromLiteral(\"65281\", token.INT, 0)),\n\t\t\"DNS_TYPE_NIMLOC\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"DNS_TYPE_NS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSAP\":                                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSAPPTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSEC\":                                reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"DNS_TYPE_NULL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DNS_TYPE_NXT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"DNS_TYPE_OPT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"DNS_TYPE_PTR\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DNS_TYPE_PX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"DNS_TYPE_RP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"DNS_TYPE_RRSIG\":                               reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"DNS_TYPE_RT\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"DNS_TYPE_SIG\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"DNS_TYPE_SINK\":                                reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"DNS_TYPE_SOA\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DNS_TYPE_SRV\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"DNS_TYPE_TEXT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DNS_TYPE_TKEY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"DNS_TYPE_TSIG\":                                reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"DNS_TYPE_UID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"DNS_TYPE_UINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"DNS_TYPE_UNSPEC\":                              reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"DNS_TYPE_WINS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"65281\", token.INT, 0)),\n\t\t\"DNS_TYPE_WINSR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"65282\", token.INT, 0)),\n\t\t\"DNS_TYPE_WKS\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DNS_TYPE_X25\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DUPLICATE_CLOSE_SOURCE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DUPLICATE_SAME_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DeleteFile\":                                   reflect.ValueOf(syscall.DeleteFile),\n\t\t\"DeviceIoControl\":                              reflect.ValueOf(syscall.DeviceIoControl),\n\t\t\"DnsNameCompare\":                               reflect.ValueOf(syscall.DnsNameCompare),\n\t\t\"DnsQuery\":                                     reflect.ValueOf(syscall.DnsQuery),\n\t\t\"DnsRecordListFree\":                            reflect.ValueOf(syscall.DnsRecordListFree),\n\t\t\"DnsSectionAdditional\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DnsSectionAnswer\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DnsSectionAuthority\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DnsSectionQuestion\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DuplicateHandle\":                              reflect.ValueOf(syscall.DuplicateHandle),\n\t\t\"E2BIG\":                                        reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                                       reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                                   reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                                reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                                         reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                                 reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                                       reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                                     reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                                        reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                                        reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                                       reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                                      reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                                        reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                                      reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                                      reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                                       reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                                        reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                                    reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                                       reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHRNG\":                                       reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                                        reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                                 reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                                 reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                                   reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                                      reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                                    reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                                 reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                                         reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                                      reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                                       reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                                       reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                                       reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                                        reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                                    reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                                 reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                                        reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                                       reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                                  reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                                        reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                                       reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                                          reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                                      reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                                       reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                                       reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                                  reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                                 reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                                  reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                                       reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                                     reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                                       reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                                       reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                                      reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                                      reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                                     reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                                      reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                                      reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                                       reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                                        reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                                  reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                                       reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                                       reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                                     reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                                    reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                                 reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                                      reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENETDOWN\":                                     reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                                    reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                                  reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                                       reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                                       reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                                      reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                                       reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                                      reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                                       reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                                       reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                                      reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                                       reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                                       reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                                      reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                                    reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                                       reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                                       reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                                       reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                                       reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                                  reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                                       reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                                        reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                                       reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                                       reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                                      reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                                     reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                                      reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                                    reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                                      reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                              reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                                     reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                                      reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                                       reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                                     reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                                        reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                                   reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                                    reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                                   reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                                        reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                                 reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                                        reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROTO\":                                       reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                              reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                                   reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                                       reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                                      reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                                      reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                                    reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                                     reflect.ValueOf(syscall.ERESTART),\n\t\t\"EROFS\":                                        reflect.ValueOf(syscall.EROFS),\n\t\t\"ERROR_ACCESS_DENIED\":                          reflect.ValueOf(syscall.ERROR_ACCESS_DENIED),\n\t\t\"ERROR_ALREADY_EXISTS\":                         reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS),\n\t\t\"ERROR_BROKEN_PIPE\":                            reflect.ValueOf(syscall.ERROR_BROKEN_PIPE),\n\t\t\"ERROR_BUFFER_OVERFLOW\":                        reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW),\n\t\t\"ERROR_DIR_NOT_EMPTY\":                          reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY),\n\t\t\"ERROR_ENVVAR_NOT_FOUND\":                       reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND),\n\t\t\"ERROR_FILE_EXISTS\":                            reflect.ValueOf(syscall.ERROR_FILE_EXISTS),\n\t\t\"ERROR_FILE_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND),\n\t\t\"ERROR_HANDLE_EOF\":                             reflect.ValueOf(syscall.ERROR_HANDLE_EOF),\n\t\t\"ERROR_INSUFFICIENT_BUFFER\":                    reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER),\n\t\t\"ERROR_IO_PENDING\":                             reflect.ValueOf(syscall.ERROR_IO_PENDING),\n\t\t\"ERROR_MOD_NOT_FOUND\":                          reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND),\n\t\t\"ERROR_MORE_DATA\":                              reflect.ValueOf(syscall.ERROR_MORE_DATA),\n\t\t\"ERROR_NETNAME_DELETED\":                        reflect.ValueOf(syscall.ERROR_NETNAME_DELETED),\n\t\t\"ERROR_NOT_FOUND\":                              reflect.ValueOf(syscall.ERROR_NOT_FOUND),\n\t\t\"ERROR_NO_MORE_FILES\":                          reflect.ValueOf(syscall.ERROR_NO_MORE_FILES),\n\t\t\"ERROR_OPERATION_ABORTED\":                      reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED),\n\t\t\"ERROR_PATH_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND),\n\t\t\"ERROR_PRIVILEGE_NOT_HELD\":                     reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD),\n\t\t\"ERROR_PROC_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND),\n\t\t\"ESHUTDOWN\":                                    reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                              reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                                       reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                                        reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                                       reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                                       reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                                     reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETIME\":                                        reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                                    reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                                 reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                                      reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                                      reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                                      reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                                       reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWINDOWS\":                                     reflect.ValueOf(syscall.EWINDOWS),\n\t\t\"EWOULDBLOCK\":                                  reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                                        reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                                       reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":                                      reflect.ValueOf(syscall.Environ),\n\t\t\"EscapeArg\":                                    reflect.ValueOf(syscall.EscapeArg),\n\t\t\"FILE_ACTION_ADDED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_ACTION_MODIFIED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"FILE_ACTION_REMOVED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_ACTION_RENAMED_NEW_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"FILE_ACTION_RENAMED_OLD_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_APPEND_DATA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_ARCHIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_DIRECTORY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_HIDDEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_NORMAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_READONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_REPARSE_POINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_SYSTEM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_BEGIN\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"FILE_CURRENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_END\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_FLAG_BACKUP_SEMANTICS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"FILE_FLAG_OPEN_REPARSE_POINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"FILE_FLAG_OVERLAPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"FILE_LIST_DIRECTORY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_MAP_COPY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_MAP_EXECUTE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_MAP_READ\":                                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_MAP_WRITE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_ATTRIBUTES\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_CREATION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_DIR_NAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_FILE_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_LAST_ACCESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_LAST_WRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_SIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"FILE_SHARE_DELETE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_SHARE_READ\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_SHARE_WRITE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_SKIP_COMPLETION_PORT_ON_SUCCESS\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_SKIP_SET_EVENT_ON_HANDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_TYPE_CHAR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_TYPE_DISK\":                               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_TYPE_PIPE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"FILE_TYPE_REMOTE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"FILE_TYPE_UNKNOWN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"FILE_WRITE_ATTRIBUTES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_ALLOCATE_BUFFER\":               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_ARGUMENT_ARRAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_HMODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_STRING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_SYSTEM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_IGNORE_INSERTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_MAX_WIDTH_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"FSCTL_GET_REPARSE_POINT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"589992\", token.INT, 0)),\n\t\t\"Fchdir\":                                       reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                                       reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                                       reflect.ValueOf(syscall.Fchown),\n\t\t\"FindClose\":                                    reflect.ValueOf(syscall.FindClose),\n\t\t\"FindFirstFile\":                                reflect.ValueOf(syscall.FindFirstFile),\n\t\t\"FindNextFile\":                                 reflect.ValueOf(syscall.FindNextFile),\n\t\t\"FlushFileBuffers\":                             reflect.ValueOf(syscall.FlushFileBuffers),\n\t\t\"FlushViewOfFile\":                              reflect.ValueOf(syscall.FlushViewOfFile),\n\t\t\"ForkLock\":                                     reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"FormatMessage\":                                reflect.ValueOf(syscall.FormatMessage),\n\t\t\"FreeAddrInfoW\":                                reflect.ValueOf(syscall.FreeAddrInfoW),\n\t\t\"FreeEnvironmentStrings\":                       reflect.ValueOf(syscall.FreeEnvironmentStrings),\n\t\t\"FreeLibrary\":                                  reflect.ValueOf(syscall.FreeLibrary),\n\t\t\"Fsync\":                                        reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                                    reflect.ValueOf(syscall.Ftruncate),\n\t\t\"FullPath\":                                     reflect.ValueOf(syscall.FullPath),\n\t\t\"GENERIC_ALL\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"GENERIC_EXECUTE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"GENERIC_READ\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"GENERIC_WRITE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"GetAcceptExSockaddrs\":                         reflect.ValueOf(syscall.GetAcceptExSockaddrs),\n\t\t\"GetAdaptersInfo\":                              reflect.ValueOf(syscall.GetAdaptersInfo),\n\t\t\"GetAddrInfoW\":                                 reflect.ValueOf(syscall.GetAddrInfoW),\n\t\t\"GetCommandLine\":                               reflect.ValueOf(syscall.GetCommandLine),\n\t\t\"GetComputerName\":                              reflect.ValueOf(syscall.GetComputerName),\n\t\t\"GetConsoleMode\":                               reflect.ValueOf(syscall.GetConsoleMode),\n\t\t\"GetCurrentDirectory\":                          reflect.ValueOf(syscall.GetCurrentDirectory),\n\t\t\"GetCurrentProcess\":                            reflect.ValueOf(syscall.GetCurrentProcess),\n\t\t\"GetEnvironmentStrings\":                        reflect.ValueOf(syscall.GetEnvironmentStrings),\n\t\t\"GetEnvironmentVariable\":                       reflect.ValueOf(syscall.GetEnvironmentVariable),\n\t\t\"GetFileAttributes\":                            reflect.ValueOf(syscall.GetFileAttributes),\n\t\t\"GetFileAttributesEx\":                          reflect.ValueOf(syscall.GetFileAttributesEx),\n\t\t\"GetFileExInfoStandard\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"GetFileExMaxInfoLevel\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"GetFileInformationByHandle\":                   reflect.ValueOf(syscall.GetFileInformationByHandle),\n\t\t\"GetFileType\":                                  reflect.ValueOf(syscall.GetFileType),\n\t\t\"GetFullPathName\":                              reflect.ValueOf(syscall.GetFullPathName),\n\t\t\"GetHostByName\":                                reflect.ValueOf(syscall.GetHostByName),\n\t\t\"GetIfEntry\":                                   reflect.ValueOf(syscall.GetIfEntry),\n\t\t\"GetLastError\":                                 reflect.ValueOf(syscall.GetLastError),\n\t\t\"GetLengthSid\":                                 reflect.ValueOf(syscall.GetLengthSid),\n\t\t\"GetLongPathName\":                              reflect.ValueOf(syscall.GetLongPathName),\n\t\t\"GetProcAddress\":                               reflect.ValueOf(syscall.GetProcAddress),\n\t\t\"GetProcessTimes\":                              reflect.ValueOf(syscall.GetProcessTimes),\n\t\t\"GetProtoByName\":                               reflect.ValueOf(syscall.GetProtoByName),\n\t\t\"GetQueuedCompletionStatus\":                    reflect.ValueOf(syscall.GetQueuedCompletionStatus),\n\t\t\"GetServByName\":                                reflect.ValueOf(syscall.GetServByName),\n\t\t\"GetShortPathName\":                             reflect.ValueOf(syscall.GetShortPathName),\n\t\t\"GetStartupInfo\":                               reflect.ValueOf(syscall.GetStartupInfo),\n\t\t\"GetStdHandle\":                                 reflect.ValueOf(syscall.GetStdHandle),\n\t\t\"GetSystemTimeAsFileTime\":                      reflect.ValueOf(syscall.GetSystemTimeAsFileTime),\n\t\t\"GetTempPath\":                                  reflect.ValueOf(syscall.GetTempPath),\n\t\t\"GetTimeZoneInformation\":                       reflect.ValueOf(syscall.GetTimeZoneInformation),\n\t\t\"GetTokenInformation\":                          reflect.ValueOf(syscall.GetTokenInformation),\n\t\t\"GetUserNameEx\":                                reflect.ValueOf(syscall.GetUserNameEx),\n\t\t\"GetUserProfileDirectory\":                      reflect.ValueOf(syscall.GetUserProfileDirectory),\n\t\t\"GetVersion\":                                   reflect.ValueOf(syscall.GetVersion),\n\t\t\"Getegid\":                                      reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                                       reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                                      reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                                       reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                                    reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                                  reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                                  reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpid\":                                       reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                                      reflect.ValueOf(syscall.Getppid),\n\t\t\"Getsockname\":                                  reflect.ValueOf(syscall.Getsockname),\n\t\t\"Getsockopt\":                                   reflect.ValueOf(syscall.Getsockopt),\n\t\t\"GetsockoptInt\":                                reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                                 reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                                       reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                                        reflect.ValueOf(syscall.Getwd),\n\t\t\"HANDLE_FLAG_INHERIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"HKEY_CLASSES_ROOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"HKEY_CURRENT_CONFIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483653\", token.INT, 0)),\n\t\t\"HKEY_CURRENT_USER\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483649\", token.INT, 0)),\n\t\t\"HKEY_DYN_DATA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2147483654\", token.INT, 0)),\n\t\t\"HKEY_LOCAL_MACHINE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483650\", token.INT, 0)),\n\t\t\"HKEY_PERFORMANCE_DATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483652\", token.INT, 0)),\n\t\t\"HKEY_USERS\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483651\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_POINTTOPOINT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_UP\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNORE\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"INFINITE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"INVALID_FILE_ATTRIBUTES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"IOC_IN\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IOC_INOUT\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"IOC_OUT\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IOC_VENDOR\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"402653184\", token.INT, 0)),\n\t\t\"IOC_WS2\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"IO_REPARSE_TAG_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2684354572\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_TOS\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                              reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InvalidHandle\":                                reflect.ValueOf(syscall.InvalidHandle),\n\t\t\"KEY_ALL_ACCESS\":                               reflect.ValueOf(constant.MakeFromLiteral(\"983103\", token.INT, 0)),\n\t\t\"KEY_CREATE_LINK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"KEY_CREATE_SUB_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"KEY_ENUMERATE_SUB_KEYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"KEY_EXECUTE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"131097\", token.INT, 0)),\n\t\t\"KEY_NOTIFY\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"KEY_QUERY_VALUE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"KEY_READ\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"131097\", token.INT, 0)),\n\t\t\"KEY_SET_VALUE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"KEY_WOW64_32KEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"KEY_WOW64_64KEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"KEY_WRITE\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"131078\", token.INT, 0)),\n\t\t\"LANG_ENGLISH\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"LAYERED_PROTOCOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Lchown\":                                       reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                                         reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                                       reflect.ValueOf(syscall.Listen),\n\t\t\"LoadCancelIoEx\":                               reflect.ValueOf(syscall.LoadCancelIoEx),\n\t\t\"LoadConnectEx\":                                reflect.ValueOf(syscall.LoadConnectEx),\n\t\t\"LoadCreateSymbolicLink\":                       reflect.ValueOf(syscall.LoadCreateSymbolicLink),\n\t\t\"LoadDLL\":                                      reflect.ValueOf(syscall.LoadDLL),\n\t\t\"LoadGetAddrInfo\":                              reflect.ValueOf(syscall.LoadGetAddrInfo),\n\t\t\"LoadLibrary\":                                  reflect.ValueOf(syscall.LoadLibrary),\n\t\t\"LoadSetFileCompletionNotificationModes\":       reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes),\n\t\t\"LocalFree\":                                    reflect.ValueOf(syscall.LocalFree),\n\t\t\"LookupAccountName\":                            reflect.ValueOf(syscall.LookupAccountName),\n\t\t\"LookupAccountSid\":                             reflect.ValueOf(syscall.LookupAccountSid),\n\t\t\"LookupSID\":                                    reflect.ValueOf(syscall.LookupSID),\n\t\t\"MAXIMUM_REPARSE_DATA_BUFFER_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAXLEN_IFDESCR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAXLEN_PHYSADDR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_ADDRESS_LENGTH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_DESCRIPTION_LENGTH\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_NAME_LENGTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAX_COMPUTERNAME_LENGTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MAX_INTERFACE_NAME_LEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAX_LONG_PATH\":                                reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAX_PATH\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"MAX_PROTOCOL_CHAIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MapViewOfFile\":                                reflect.ValueOf(syscall.MapViewOfFile),\n\t\t\"MaxTokenInfoClass\":                            reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"Mkdir\":                                        reflect.ValueOf(syscall.Mkdir),\n\t\t\"MoveFile\":                                     reflect.ValueOf(syscall.MoveFile),\n\t\t\"MustLoadDLL\":                                  reflect.ValueOf(syscall.MustLoadDLL),\n\t\t\"NameCanonical\":                                reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NameCanonicalEx\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NameDisplay\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NameDnsDomain\":                                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NameFullyQualifiedDN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NameSamCompatible\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NameServicePrincipal\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NameUniqueId\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NameUnknown\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NameUserPrincipal\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NetApiBufferFree\":                             reflect.ValueOf(syscall.NetApiBufferFree),\n\t\t\"NetGetJoinInformation\":                        reflect.ValueOf(syscall.NetGetJoinInformation),\n\t\t\"NetSetupDomainName\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NetSetupUnjoined\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NetSetupUnknownStatus\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NetSetupWorkgroupName\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NetUserGetInfo\":                               reflect.ValueOf(syscall.NetUserGetInfo),\n\t\t\"NewCallback\":                                  reflect.ValueOf(syscall.NewCallback),\n\t\t\"NewCallbackCDecl\":                             reflect.ValueOf(syscall.NewCallbackCDecl),\n\t\t\"NewLazyDLL\":                                   reflect.ValueOf(syscall.NewLazyDLL),\n\t\t\"NsecToFiletime\":                               reflect.ValueOf(syscall.NsecToFiletime),\n\t\t\"NsecToTimespec\":                               reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                                reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"Ntohs\":                                        reflect.ValueOf(syscall.Ntohs),\n\t\t\"OID_PKIX_KP_SERVER_AUTH\":                      reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(),\n\t\t\"OID_SERVER_GATED_CRYPTO\":                      reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(),\n\t\t\"OID_SGC_NETSCAPE\":                             reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(),\n\t\t\"OPEN_ALWAYS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"OPEN_EXISTING\":                                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_EXCL\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_RDONLY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SYNC\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_TRUNC\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                                         reflect.ValueOf(syscall.Open),\n\t\t\"OpenCurrentProcessToken\":                      reflect.ValueOf(syscall.OpenCurrentProcessToken),\n\t\t\"OpenProcess\":                                  reflect.ValueOf(syscall.OpenProcess),\n\t\t\"OpenProcessToken\":                             reflect.ValueOf(syscall.OpenProcessToken),\n\t\t\"PAGE_EXECUTE_READ\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PAGE_EXECUTE_READWRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PAGE_EXECUTE_WRITECOPY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PAGE_READONLY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PAGE_READWRITE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PAGE_WRITECOPY\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PFL_HIDDEN\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PFL_MATCHES_PROTOCOL_ZERO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PFL_MULTIPLE_PROTO_ENTRIES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PFL_NETWORKDIRECT_PROVIDER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PFL_RECOMMENDED_PROTO_ENTRY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PKCS_7_ASN_ENCODING\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PROCESS_QUERY_INFORMATION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"PROCESS_TERMINATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROV_DH_SCHANNEL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PROV_DSS\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PROV_DSS_DH\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PROV_EC_ECDSA_FULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PROV_EC_ECDSA_SIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PROV_EC_ECNRA_FULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PROV_EC_ECNRA_SIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PROV_FORTEZZA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROV_INTEL_SEC\":                               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PROV_MS_EXCHANGE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PROV_REPLACE_OWF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PROV_RNG\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PROV_RSA_AES\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PROV_RSA_FULL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROV_RSA_SCHANNEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PROV_RSA_SIG\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROV_SPYRUS_LYNKS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PROV_SSL\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"Pipe\":                                         reflect.ValueOf(syscall.Pipe),\n\t\t\"PostQueuedCompletionStatus\":                   reflect.ValueOf(syscall.PostQueuedCompletionStatus),\n\t\t\"Process32First\":                               reflect.ValueOf(syscall.Process32First),\n\t\t\"Process32Next\":                                reflect.ValueOf(syscall.Process32Next),\n\t\t\"REG_BINARY\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"REG_DWORD\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"REG_DWORD_BIG_ENDIAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"REG_DWORD_LITTLE_ENDIAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"REG_EXPAND_SZ\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"REG_FULL_RESOURCE_DESCRIPTOR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"REG_LINK\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"REG_MULTI_SZ\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"REG_NONE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"REG_QWORD\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"REG_QWORD_LITTLE_ENDIAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"REG_RESOURCE_LIST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"REG_RESOURCE_REQUIREMENTS_LIST\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"REG_SZ\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                                         reflect.ValueOf(syscall.Read),\n\t\t\"ReadConsole\":                                  reflect.ValueOf(syscall.ReadConsole),\n\t\t\"ReadDirectoryChanges\":                         reflect.ValueOf(syscall.ReadDirectoryChanges),\n\t\t\"ReadFile\":                                     reflect.ValueOf(syscall.ReadFile),\n\t\t\"Readlink\":                                     reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                                     reflect.ValueOf(syscall.Recvfrom),\n\t\t\"RegCloseKey\":                                  reflect.ValueOf(syscall.RegCloseKey),\n\t\t\"RegEnumKeyEx\":                                 reflect.ValueOf(syscall.RegEnumKeyEx),\n\t\t\"RegOpenKeyEx\":                                 reflect.ValueOf(syscall.RegOpenKeyEx),\n\t\t\"RegQueryInfoKey\":                              reflect.ValueOf(syscall.RegQueryInfoKey),\n\t\t\"RegQueryValueEx\":                              reflect.ValueOf(syscall.RegQueryValueEx),\n\t\t\"RemoveDirectory\":                              reflect.ValueOf(syscall.RemoveDirectory),\n\t\t\"Rename\":                                       reflect.ValueOf(syscall.Rename),\n\t\t\"Rmdir\":                                        reflect.ValueOf(syscall.Rmdir),\n\t\t\"SHUT_RD\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                                      reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                                      reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                                       reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGFPE\":                                       reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                                       reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                                       reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                                       reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGKILL\":                                      reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                                      reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGQUIT\":                                      reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                                      reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGTERM\":                                      reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                                      reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIO_GET_EXTENSION_FUNCTION_POINTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3355443206\", token.INT, 0)),\n\t\t\"SIO_GET_INTERFACE_LIST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074033791\", token.INT, 0)),\n\t\t\"SIO_KEEPALIVE_VALS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2550136836\", token.INT, 0)),\n\t\t\"SIO_UDP_CONNRESET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2550136844\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"2147483647\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_UPDATE_ACCEPT_CONTEXT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28683\", token.INT, 0)),\n\t\t\"SO_UPDATE_CONNECT_CONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28688\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_ALL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2031616\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_EXECUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_REQUIRED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"983040\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STARTF_USESHOWWINDOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"STARTF_USESTDHANDLES\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"STD_ERROR_HANDLE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"-12\", token.INT, 0)),\n\t\t\"STD_INPUT_HANDLE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"STD_OUTPUT_HANDLE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"-11\", token.INT, 0)),\n\t\t\"SUBLANG_ENGLISH_US\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SW_FORCEMINIMIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SW_HIDE\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SW_MAXIMIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SW_MINIMIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SW_NORMAL\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SW_RESTORE\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SW_SHOW\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SW_SHOWDEFAULT\":                               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SW_SHOWMAXIMIZED\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SW_SHOWMINIMIZED\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SW_SHOWMINNOACTIVE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SW_SHOWNA\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SW_SHOWNOACTIVATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SW_SHOWNORMAL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYMBOLIC_LINK_FLAG_DIRECTORY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYNCHRONIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"S_IFBLK\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"S_IFREG\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_ISGID\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWRITE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                                         reflect.ValueOf(syscall.Seek),\n\t\t\"Sendto\":                                       reflect.ValueOf(syscall.Sendto),\n\t\t\"SetCurrentDirectory\":                          reflect.ValueOf(syscall.SetCurrentDirectory),\n\t\t\"SetEndOfFile\":                                 reflect.ValueOf(syscall.SetEndOfFile),\n\t\t\"SetEnvironmentVariable\":                       reflect.ValueOf(syscall.SetEnvironmentVariable),\n\t\t\"SetFileAttributes\":                            reflect.ValueOf(syscall.SetFileAttributes),\n\t\t\"SetFileCompletionNotificationModes\":           reflect.ValueOf(syscall.SetFileCompletionNotificationModes),\n\t\t\"SetFilePointer\":                               reflect.ValueOf(syscall.SetFilePointer),\n\t\t\"SetFileTime\":                                  reflect.ValueOf(syscall.SetFileTime),\n\t\t\"SetHandleInformation\":                         reflect.ValueOf(syscall.SetHandleInformation),\n\t\t\"SetNonblock\":                                  reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setenv\":                                       reflect.ValueOf(syscall.Setenv),\n\t\t\"Setsockopt\":                                   reflect.ValueOf(syscall.Setsockopt),\n\t\t\"SetsockoptIPMreq\":                             reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                           reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":                          reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                                reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                             reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptTimeval\":                            reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"SidTypeAlias\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SidTypeComputer\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SidTypeDeletedAccount\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SidTypeDomain\":                                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SidTypeGroup\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SidTypeInvalid\":                               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SidTypeLabel\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SidTypeUnknown\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SidTypeUser\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SidTypeWellKnownGroup\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"Socket\":                                       reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                            reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Stderr\":                                       reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                                        reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                                       reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                                reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                              reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringToSid\":                                  reflect.ValueOf(syscall.StringToSid),\n\t\t\"StringToUTF16\":                                reflect.ValueOf(syscall.StringToUTF16),\n\t\t\"StringToUTF16Ptr\":                             reflect.ValueOf(syscall.StringToUTF16Ptr),\n\t\t\"Symlink\":                                      reflect.ValueOf(syscall.Symlink),\n\t\t\"TCP_NODELAY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TF_DISCONNECT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TF_REUSE_SOCKET\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TF_USE_DEFAULT_WORKER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TF_USE_KERNEL_APC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TF_USE_SYSTEM_THREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TF_WRITE_BEHIND\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TH32CS_INHERIT\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"TH32CS_SNAPALL\":                               reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TH32CS_SNAPHEAPLIST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TH32CS_SNAPMODULE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TH32CS_SNAPMODULE32\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TH32CS_SNAPPROCESS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TH32CS_SNAPTHREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_DAYLIGHT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_STANDARD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_UNKNOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_DEFAULT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_GROUPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_PRIVILEGES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_SESSIONID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TOKEN_ALL_ACCESS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"983551\", token.INT, 0)),\n\t\t\"TOKEN_ASSIGN_PRIMARY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TOKEN_DUPLICATE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TOKEN_EXECUTE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"TOKEN_IMPERSONATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TOKEN_QUERY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TOKEN_QUERY_SOURCE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TOKEN_READ\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"131080\", token.INT, 0)),\n\t\t\"TOKEN_WRITE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"131296\", token.INT, 0)),\n\t\t\"TRUNCATE_EXISTING\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TerminateProcess\":                             reflect.ValueOf(syscall.TerminateProcess),\n\t\t\"TimespecToNsec\":                               reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TokenAccessInformation\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TokenAuditPolicy\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TokenDefaultDacl\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TokenElevation\":                               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TokenElevationType\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TokenGroups\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TokenGroupsAndPrivileges\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TokenHasRestrictions\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TokenImpersonationLevel\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TokenIntegrityLevel\":                          reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"TokenLinkedToken\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TokenLogonSid\":                                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"TokenMandatoryPolicy\":                         reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"TokenOrigin\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TokenOwner\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TokenPrimaryGroup\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TokenPrivileges\":                              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TokenRestrictedSids\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TokenSandBoxInert\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TokenSessionId\":                               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TokenSessionReference\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TokenSource\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TokenStatistics\":                              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TokenType\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TokenUIAccess\":                                reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"TokenUser\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TokenVirtualizationAllowed\":                   reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TokenVirtualizationEnabled\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TranslateAccountName\":                         reflect.ValueOf(syscall.TranslateAccountName),\n\t\t\"TranslateName\":                                reflect.ValueOf(syscall.TranslateName),\n\t\t\"TransmitFile\":                                 reflect.ValueOf(syscall.TransmitFile),\n\t\t\"UNIX_PATH_MAX\":                                reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"USAGE_MATCH_TYPE_AND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"USAGE_MATCH_TYPE_OR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"UTF16FromString\":                              reflect.ValueOf(syscall.UTF16FromString),\n\t\t\"UTF16PtrFromString\":                           reflect.ValueOf(syscall.UTF16PtrFromString),\n\t\t\"UTF16ToString\":                                reflect.ValueOf(syscall.UTF16ToString),\n\t\t\"Unlink\":                                       reflect.ValueOf(syscall.Unlink),\n\t\t\"UnmapViewOfFile\":                              reflect.ValueOf(syscall.UnmapViewOfFile),\n\t\t\"Unsetenv\":                                     reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                                       reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                                   reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VirtualLock\":                                  reflect.ValueOf(syscall.VirtualLock),\n\t\t\"VirtualUnlock\":                                reflect.ValueOf(syscall.VirtualUnlock),\n\t\t\"WAIT_ABANDONED\":                               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WAIT_FAILED\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"WAIT_OBJECT_0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"WAIT_TIMEOUT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"WSACleanup\":                                   reflect.ValueOf(syscall.WSACleanup),\n\t\t\"WSADESCRIPTION_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"WSAEACCES\":                                    reflect.ValueOf(syscall.WSAEACCES),\n\t\t\"WSAECONNABORTED\":                              reflect.ValueOf(syscall.WSAECONNABORTED),\n\t\t\"WSAECONNRESET\":                                reflect.ValueOf(syscall.WSAECONNRESET),\n\t\t\"WSAEnumProtocols\":                             reflect.ValueOf(syscall.WSAEnumProtocols),\n\t\t\"WSAID_CONNECTEX\":                              reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(),\n\t\t\"WSAIoctl\":                                     reflect.ValueOf(syscall.WSAIoctl),\n\t\t\"WSAPROTOCOL_LEN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"WSARecv\":                                      reflect.ValueOf(syscall.WSARecv),\n\t\t\"WSARecvFrom\":                                  reflect.ValueOf(syscall.WSARecvFrom),\n\t\t\"WSASYS_STATUS_LEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WSASend\":                                      reflect.ValueOf(syscall.WSASend),\n\t\t\"WSASendTo\":                                    reflect.ValueOf(syscall.WSASendTo),\n\t\t\"WSASendto\":                                    reflect.ValueOf(syscall.WSASendto),\n\t\t\"WSAStartup\":                                   reflect.ValueOf(syscall.WSAStartup),\n\t\t\"WaitForSingleObject\":                          reflect.ValueOf(syscall.WaitForSingleObject),\n\t\t\"Write\":                                        reflect.ValueOf(syscall.Write),\n\t\t\"WriteConsole\":                                 reflect.ValueOf(syscall.WriteConsole),\n\t\t\"WriteFile\":                                    reflect.ValueOf(syscall.WriteFile),\n\t\t\"X509_ASN_ENCODING\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"XP1_CONNECTIONLESS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"XP1_CONNECT_DATA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"XP1_DISCONNECT_DATA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"XP1_EXPEDITED_DATA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"XP1_GRACEFUL_CLOSE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"XP1_GUARANTEED_DELIVERY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"XP1_GUARANTEED_ORDER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"XP1_IFS_HANDLES\":                              reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"XP1_MESSAGE_ORIENTED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"XP1_MULTIPOINT_CONTROL_PLANE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"XP1_MULTIPOINT_DATA_PLANE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"XP1_PARTIAL_MESSAGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"XP1_PSEUDO_STREAM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"XP1_QOS_SUPPORTED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"XP1_SAN_SUPPORT_SDP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"XP1_SUPPORT_BROADCAST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"XP1_SUPPORT_MULTIPOINT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"XP1_UNI_RECV\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"XP1_UNI_SEND\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"AddrinfoW\":                   reflect.ValueOf((*syscall.AddrinfoW)(nil)),\n\t\t\"ByHandleFileInformation\":     reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)),\n\t\t\"CertChainContext\":            reflect.ValueOf((*syscall.CertChainContext)(nil)),\n\t\t\"CertChainElement\":            reflect.ValueOf((*syscall.CertChainElement)(nil)),\n\t\t\"CertChainPara\":               reflect.ValueOf((*syscall.CertChainPara)(nil)),\n\t\t\"CertChainPolicyPara\":         reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)),\n\t\t\"CertChainPolicyStatus\":       reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)),\n\t\t\"CertContext\":                 reflect.ValueOf((*syscall.CertContext)(nil)),\n\t\t\"CertEnhKeyUsage\":             reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)),\n\t\t\"CertInfo\":                    reflect.ValueOf((*syscall.CertInfo)(nil)),\n\t\t\"CertRevocationCrlInfo\":       reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)),\n\t\t\"CertRevocationInfo\":          reflect.ValueOf((*syscall.CertRevocationInfo)(nil)),\n\t\t\"CertSimpleChain\":             reflect.ValueOf((*syscall.CertSimpleChain)(nil)),\n\t\t\"CertTrustListInfo\":           reflect.ValueOf((*syscall.CertTrustListInfo)(nil)),\n\t\t\"CertTrustStatus\":             reflect.ValueOf((*syscall.CertTrustStatus)(nil)),\n\t\t\"CertUsageMatch\":              reflect.ValueOf((*syscall.CertUsageMatch)(nil)),\n\t\t\"Conn\":                        reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"DLL\":                         reflect.ValueOf((*syscall.DLL)(nil)),\n\t\t\"DLLError\":                    reflect.ValueOf((*syscall.DLLError)(nil)),\n\t\t\"DNSMXData\":                   reflect.ValueOf((*syscall.DNSMXData)(nil)),\n\t\t\"DNSPTRData\":                  reflect.ValueOf((*syscall.DNSPTRData)(nil)),\n\t\t\"DNSRecord\":                   reflect.ValueOf((*syscall.DNSRecord)(nil)),\n\t\t\"DNSSRVData\":                  reflect.ValueOf((*syscall.DNSSRVData)(nil)),\n\t\t\"DNSTXTData\":                  reflect.ValueOf((*syscall.DNSTXTData)(nil)),\n\t\t\"Errno\":                       reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FileNotifyInformation\":       reflect.ValueOf((*syscall.FileNotifyInformation)(nil)),\n\t\t\"Filetime\":                    reflect.ValueOf((*syscall.Filetime)(nil)),\n\t\t\"GUID\":                        reflect.ValueOf((*syscall.GUID)(nil)),\n\t\t\"Handle\":                      reflect.ValueOf((*syscall.Handle)(nil)),\n\t\t\"Hostent\":                     reflect.ValueOf((*syscall.Hostent)(nil)),\n\t\t\"IPMreq\":                      reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6Mreq\":                    reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"InterfaceInfo\":               reflect.ValueOf((*syscall.InterfaceInfo)(nil)),\n\t\t\"IpAdapterInfo\":               reflect.ValueOf((*syscall.IpAdapterInfo)(nil)),\n\t\t\"IpAddrString\":                reflect.ValueOf((*syscall.IpAddrString)(nil)),\n\t\t\"IpAddressString\":             reflect.ValueOf((*syscall.IpAddressString)(nil)),\n\t\t\"IpMaskString\":                reflect.ValueOf((*syscall.IpMaskString)(nil)),\n\t\t\"LazyDLL\":                     reflect.ValueOf((*syscall.LazyDLL)(nil)),\n\t\t\"LazyProc\":                    reflect.ValueOf((*syscall.LazyProc)(nil)),\n\t\t\"Linger\":                      reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"MibIfRow\":                    reflect.ValueOf((*syscall.MibIfRow)(nil)),\n\t\t\"Overlapped\":                  reflect.ValueOf((*syscall.Overlapped)(nil)),\n\t\t\"Pointer\":                     reflect.ValueOf((*syscall.Pointer)(nil)),\n\t\t\"Proc\":                        reflect.ValueOf((*syscall.Proc)(nil)),\n\t\t\"ProcAttr\":                    reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"ProcessEntry32\":              reflect.ValueOf((*syscall.ProcessEntry32)(nil)),\n\t\t\"ProcessInformation\":          reflect.ValueOf((*syscall.ProcessInformation)(nil)),\n\t\t\"Protoent\":                    reflect.ValueOf((*syscall.Protoent)(nil)),\n\t\t\"RawConn\":                     reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                 reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":              reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":            reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":            reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":             reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rusage\":                      reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"SID\":                         reflect.ValueOf((*syscall.SID)(nil)),\n\t\t\"SIDAndAttributes\":            reflect.ValueOf((*syscall.SIDAndAttributes)(nil)),\n\t\t\"SSLExtraCertChainPolicyPara\": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)),\n\t\t\"SecurityAttributes\":          reflect.ValueOf((*syscall.SecurityAttributes)(nil)),\n\t\t\"Servent\":                     reflect.ValueOf((*syscall.Servent)(nil)),\n\t\t\"Signal\":                      reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                    reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrGen\":                 reflect.ValueOf((*syscall.SockaddrGen)(nil)),\n\t\t\"SockaddrInet4\":               reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":               reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"StartupInfo\":                 reflect.ValueOf((*syscall.StartupInfo)(nil)),\n\t\t\"SysProcAttr\":                 reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Systemtime\":                  reflect.ValueOf((*syscall.Systemtime)(nil)),\n\t\t\"TCPKeepalive\":                reflect.ValueOf((*syscall.TCPKeepalive)(nil)),\n\t\t\"Timespec\":                    reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                     reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timezoneinformation\":         reflect.ValueOf((*syscall.Timezoneinformation)(nil)),\n\t\t\"Token\":                       reflect.ValueOf((*syscall.Token)(nil)),\n\t\t\"Tokenprimarygroup\":           reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)),\n\t\t\"Tokenuser\":                   reflect.ValueOf((*syscall.Tokenuser)(nil)),\n\t\t\"TransmitFileBuffers\":         reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)),\n\t\t\"UserInfo10\":                  reflect.ValueOf((*syscall.UserInfo10)(nil)),\n\t\t\"WSABuf\":                      reflect.ValueOf((*syscall.WSABuf)(nil)),\n\t\t\"WSAData\":                     reflect.ValueOf((*syscall.WSAData)(nil)),\n\t\t\"WSAProtocolChain\":            reflect.ValueOf((*syscall.WSAProtocolChain)(nil)),\n\t\t\"WSAProtocolInfo\":             reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)),\n\t\t\"WaitStatus\":                  reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\t\t\"Win32FileAttributeData\":      reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)),\n\t\t\"Win32finddata\":               reflect.ValueOf((*syscall.Win32finddata)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_windows_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_INET\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_UNIX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AI_CANONNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AI_NUMERICHOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AI_PASSIVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"APPLICATION_ERROR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"AUTHTYPE_CLIENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AUTHTYPE_SERVER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Accept\":                              reflect.ValueOf(syscall.Accept),\n\t\t\"AcceptEx\":                            reflect.ValueOf(syscall.AcceptEx),\n\t\t\"BASE_PROTOCOL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Bind\":                                reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":                   reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":                 reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CERT_CHAIN_POLICY_AUTHENTICODE\":      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_AUTHENTICODE_TS\":   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_BASE\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_BASIC_CONSTRAINTS\": reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_EV\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_MICROSOFT_ROOT\":    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_NT_AUTH\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_SSL\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_E_CN_NO_MATCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148204815\", token.INT, 0)),\n\t\t\"CERT_E_EXPIRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148204801\", token.INT, 0)),\n\t\t\"CERT_E_PURPOSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148204806\", token.INT, 0)),\n\t\t\"CERT_E_ROLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148204803\", token.INT, 0)),\n\t\t\"CERT_E_UNTRUSTEDROOT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2148204809\", token.INT, 0)),\n\t\t\"CERT_STORE_ADD_ALWAYS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG\":  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_STORE_PROV_MEMORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT\":      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT\":   reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT\": reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT\":    reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT\": reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_BASIC_CONSTRAINTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_EXTENSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_NAME_CONSTRAINTS\":          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_POLICY_CONSTRAINTS\":        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_CYCLIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_EXPLICIT_DISTRUST\":              reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_SIGNATURE_VALID\":            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_TIME_VALID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_VALID_FOR_USAGE\":            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_OFFLINE_REVOCATION\":             reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_REVOKED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_UNTRUSTED_ROOT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CERT_TRUST_NO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY\":          reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CERT_TRUST_REVOCATION_STATUS_UNKNOWN\":         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CREATE_ALWAYS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CREATE_NEW\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CREATE_NEW_PROCESS_GROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CREATE_UNICODE_ENVIRONMENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CRYPT_DEFAULT_CONTAINER_OPTIONAL\":             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CRYPT_DELETEKEYSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CRYPT_MACHINE_KEYSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CRYPT_NEWKEYSET\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CRYPT_SILENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CRYPT_VERIFYCONTEXT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"CTRL_BREAK_EVENT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CTRL_CLOSE_EVENT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CTRL_C_EVENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CTRL_LOGOFF_EVENT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"CTRL_SHUTDOWN_EVENT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"CancelIo\":                                     reflect.ValueOf(syscall.CancelIo),\n\t\t\"CancelIoEx\":                                   reflect.ValueOf(syscall.CancelIoEx),\n\t\t\"CertAddCertificateContextToStore\":             reflect.ValueOf(syscall.CertAddCertificateContextToStore),\n\t\t\"CertCloseStore\":                               reflect.ValueOf(syscall.CertCloseStore),\n\t\t\"CertCreateCertificateContext\":                 reflect.ValueOf(syscall.CertCreateCertificateContext),\n\t\t\"CertEnumCertificatesInStore\":                  reflect.ValueOf(syscall.CertEnumCertificatesInStore),\n\t\t\"CertFreeCertificateChain\":                     reflect.ValueOf(syscall.CertFreeCertificateChain),\n\t\t\"CertFreeCertificateContext\":                   reflect.ValueOf(syscall.CertFreeCertificateContext),\n\t\t\"CertGetCertificateChain\":                      reflect.ValueOf(syscall.CertGetCertificateChain),\n\t\t\"CertOpenStore\":                                reflect.ValueOf(syscall.CertOpenStore),\n\t\t\"CertOpenSystemStore\":                          reflect.ValueOf(syscall.CertOpenSystemStore),\n\t\t\"CertVerifyCertificateChainPolicy\":             reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy),\n\t\t\"Chdir\":                                        reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                                        reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                                        reflect.ValueOf(syscall.Chown),\n\t\t\"Clearenv\":                                     reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                                        reflect.ValueOf(syscall.Close),\n\t\t\"CloseHandle\":                                  reflect.ValueOf(syscall.CloseHandle),\n\t\t\"CloseOnExec\":                                  reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"Closesocket\":                                  reflect.ValueOf(syscall.Closesocket),\n\t\t\"CommandLineToArgv\":                            reflect.ValueOf(syscall.CommandLineToArgv),\n\t\t\"ComputerName\":                                 reflect.ValueOf(syscall.ComputerName),\n\t\t\"Connect\":                                      reflect.ValueOf(syscall.Connect),\n\t\t\"ConnectEx\":                                    reflect.ValueOf(syscall.ConnectEx),\n\t\t\"ConvertSidToStringSid\":                        reflect.ValueOf(syscall.ConvertSidToStringSid),\n\t\t\"ConvertStringSidToSid\":                        reflect.ValueOf(syscall.ConvertStringSidToSid),\n\t\t\"CopySid\":                                      reflect.ValueOf(syscall.CopySid),\n\t\t\"CreateDirectory\":                              reflect.ValueOf(syscall.CreateDirectory),\n\t\t\"CreateFile\":                                   reflect.ValueOf(syscall.CreateFile),\n\t\t\"CreateFileMapping\":                            reflect.ValueOf(syscall.CreateFileMapping),\n\t\t\"CreateHardLink\":                               reflect.ValueOf(syscall.CreateHardLink),\n\t\t\"CreateIoCompletionPort\":                       reflect.ValueOf(syscall.CreateIoCompletionPort),\n\t\t\"CreatePipe\":                                   reflect.ValueOf(syscall.CreatePipe),\n\t\t\"CreateProcess\":                                reflect.ValueOf(syscall.CreateProcess),\n\t\t\"CreateProcessAsUser\":                          reflect.ValueOf(syscall.CreateProcessAsUser),\n\t\t\"CreateSymbolicLink\":                           reflect.ValueOf(syscall.CreateSymbolicLink),\n\t\t\"CreateToolhelp32Snapshot\":                     reflect.ValueOf(syscall.CreateToolhelp32Snapshot),\n\t\t\"CryptAcquireContext\":                          reflect.ValueOf(syscall.CryptAcquireContext),\n\t\t\"CryptGenRandom\":                               reflect.ValueOf(syscall.CryptGenRandom),\n\t\t\"CryptReleaseContext\":                          reflect.ValueOf(syscall.CryptReleaseContext),\n\t\t\"DNS_INFO_NO_RECORDS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9501\", token.INT, 0)),\n\t\t\"DNS_TYPE_A\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DNS_TYPE_A6\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"DNS_TYPE_AAAA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"DNS_TYPE_ADDRS\":                               reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"DNS_TYPE_AFSDB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DNS_TYPE_ALL\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"DNS_TYPE_ANY\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"DNS_TYPE_ATMA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"DNS_TYPE_AXFR\":                                reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"DNS_TYPE_CERT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"DNS_TYPE_CNAME\":                               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DNS_TYPE_DHCID\":                               reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"DNS_TYPE_DNAME\":                               reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"DNS_TYPE_DNSKEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"DNS_TYPE_DS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"DNS_TYPE_EID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"DNS_TYPE_GID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"DNS_TYPE_GPOS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"DNS_TYPE_HINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DNS_TYPE_ISDN\":                                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"DNS_TYPE_IXFR\":                                reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"DNS_TYPE_KEY\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"DNS_TYPE_KX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"DNS_TYPE_LOC\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"DNS_TYPE_MAILA\":                               reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"DNS_TYPE_MAILB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"DNS_TYPE_MB\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DNS_TYPE_MD\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DNS_TYPE_MF\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DNS_TYPE_MG\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DNS_TYPE_MINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DNS_TYPE_MR\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DNS_TYPE_MX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DNS_TYPE_NAPTR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"DNS_TYPE_NBSTAT\":                              reflect.ValueOf(constant.MakeFromLiteral(\"65281\", token.INT, 0)),\n\t\t\"DNS_TYPE_NIMLOC\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"DNS_TYPE_NS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSAP\":                                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSAPPTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSEC\":                                reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"DNS_TYPE_NULL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DNS_TYPE_NXT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"DNS_TYPE_OPT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"DNS_TYPE_PTR\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DNS_TYPE_PX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"DNS_TYPE_RP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"DNS_TYPE_RRSIG\":                               reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"DNS_TYPE_RT\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"DNS_TYPE_SIG\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"DNS_TYPE_SINK\":                                reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"DNS_TYPE_SOA\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DNS_TYPE_SRV\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"DNS_TYPE_TEXT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DNS_TYPE_TKEY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"DNS_TYPE_TSIG\":                                reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"DNS_TYPE_UID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"DNS_TYPE_UINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"DNS_TYPE_UNSPEC\":                              reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"DNS_TYPE_WINS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"65281\", token.INT, 0)),\n\t\t\"DNS_TYPE_WINSR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"65282\", token.INT, 0)),\n\t\t\"DNS_TYPE_WKS\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DNS_TYPE_X25\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DUPLICATE_CLOSE_SOURCE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DUPLICATE_SAME_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DeleteFile\":                                   reflect.ValueOf(syscall.DeleteFile),\n\t\t\"DeviceIoControl\":                              reflect.ValueOf(syscall.DeviceIoControl),\n\t\t\"DnsNameCompare\":                               reflect.ValueOf(syscall.DnsNameCompare),\n\t\t\"DnsQuery\":                                     reflect.ValueOf(syscall.DnsQuery),\n\t\t\"DnsRecordListFree\":                            reflect.ValueOf(syscall.DnsRecordListFree),\n\t\t\"DnsSectionAdditional\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DnsSectionAnswer\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DnsSectionAuthority\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DnsSectionQuestion\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DuplicateHandle\":                              reflect.ValueOf(syscall.DuplicateHandle),\n\t\t\"E2BIG\":                                        reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                                       reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                                   reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                                reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                                         reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                                 reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                                       reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                                     reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                                        reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                                        reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                                       reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                                      reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                                        reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                                      reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                                      reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                                       reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                                        reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                                    reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                                       reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHRNG\":                                       reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                                        reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                                 reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                                 reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                                   reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                                      reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                                    reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                                 reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                                         reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                                      reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                                       reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                                       reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                                       reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                                        reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                                    reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                                 reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                                        reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                                       reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                                  reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                                        reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                                       reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                                          reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                                      reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                                       reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                                       reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                                  reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                                 reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                                  reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                                       reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                                     reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                                       reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                                       reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                                      reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                                      reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                                     reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                                      reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                                      reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                                       reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                                        reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                                  reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                                       reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                                       reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                                     reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                                    reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                                 reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                                      reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENETDOWN\":                                     reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                                    reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                                  reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                                       reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                                       reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                                      reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                                       reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                                      reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                                       reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                                       reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                                      reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                                       reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                                       reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                                      reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                                    reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                                       reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                                       reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                                       reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                                       reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                                  reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                                       reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                                        reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                                       reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                                       reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                                      reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                                     reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                                      reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                                    reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                                      reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                              reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                                     reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                                      reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                                       reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                                     reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                                        reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                                   reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                                    reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                                   reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                                        reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                                 reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                                        reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROTO\":                                       reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                              reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                                   reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                                       reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                                      reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                                      reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                                    reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                                     reflect.ValueOf(syscall.ERESTART),\n\t\t\"EROFS\":                                        reflect.ValueOf(syscall.EROFS),\n\t\t\"ERROR_ACCESS_DENIED\":                          reflect.ValueOf(syscall.ERROR_ACCESS_DENIED),\n\t\t\"ERROR_ALREADY_EXISTS\":                         reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS),\n\t\t\"ERROR_BROKEN_PIPE\":                            reflect.ValueOf(syscall.ERROR_BROKEN_PIPE),\n\t\t\"ERROR_BUFFER_OVERFLOW\":                        reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW),\n\t\t\"ERROR_DIR_NOT_EMPTY\":                          reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY),\n\t\t\"ERROR_ENVVAR_NOT_FOUND\":                       reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND),\n\t\t\"ERROR_FILE_EXISTS\":                            reflect.ValueOf(syscall.ERROR_FILE_EXISTS),\n\t\t\"ERROR_FILE_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND),\n\t\t\"ERROR_HANDLE_EOF\":                             reflect.ValueOf(syscall.ERROR_HANDLE_EOF),\n\t\t\"ERROR_INSUFFICIENT_BUFFER\":                    reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER),\n\t\t\"ERROR_IO_PENDING\":                             reflect.ValueOf(syscall.ERROR_IO_PENDING),\n\t\t\"ERROR_MOD_NOT_FOUND\":                          reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND),\n\t\t\"ERROR_MORE_DATA\":                              reflect.ValueOf(syscall.ERROR_MORE_DATA),\n\t\t\"ERROR_NETNAME_DELETED\":                        reflect.ValueOf(syscall.ERROR_NETNAME_DELETED),\n\t\t\"ERROR_NOT_FOUND\":                              reflect.ValueOf(syscall.ERROR_NOT_FOUND),\n\t\t\"ERROR_NO_MORE_FILES\":                          reflect.ValueOf(syscall.ERROR_NO_MORE_FILES),\n\t\t\"ERROR_OPERATION_ABORTED\":                      reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED),\n\t\t\"ERROR_PATH_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND),\n\t\t\"ERROR_PRIVILEGE_NOT_HELD\":                     reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD),\n\t\t\"ERROR_PROC_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND),\n\t\t\"ESHUTDOWN\":                                    reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                              reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                                       reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                                        reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                                       reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                                       reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                                     reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETIME\":                                        reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                                    reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                                 reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                                      reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                                      reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                                      reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                                       reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWINDOWS\":                                     reflect.ValueOf(syscall.EWINDOWS),\n\t\t\"EWOULDBLOCK\":                                  reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                                        reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                                       reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":                                      reflect.ValueOf(syscall.Environ),\n\t\t\"EscapeArg\":                                    reflect.ValueOf(syscall.EscapeArg),\n\t\t\"FILE_ACTION_ADDED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_ACTION_MODIFIED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"FILE_ACTION_REMOVED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_ACTION_RENAMED_NEW_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"FILE_ACTION_RENAMED_OLD_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_APPEND_DATA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_ARCHIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_DIRECTORY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_HIDDEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_NORMAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_READONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_REPARSE_POINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_SYSTEM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_BEGIN\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"FILE_CURRENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_END\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_FLAG_BACKUP_SEMANTICS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"FILE_FLAG_OPEN_REPARSE_POINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"FILE_FLAG_OVERLAPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"FILE_LIST_DIRECTORY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_MAP_COPY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_MAP_EXECUTE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_MAP_READ\":                                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_MAP_WRITE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_ATTRIBUTES\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_CREATION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_DIR_NAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_FILE_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_LAST_ACCESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_LAST_WRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_SIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"FILE_SHARE_DELETE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_SHARE_READ\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_SHARE_WRITE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_SKIP_COMPLETION_PORT_ON_SUCCESS\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_SKIP_SET_EVENT_ON_HANDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_TYPE_CHAR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_TYPE_DISK\":                               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_TYPE_PIPE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"FILE_TYPE_REMOTE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"FILE_TYPE_UNKNOWN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"FILE_WRITE_ATTRIBUTES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_ALLOCATE_BUFFER\":               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_ARGUMENT_ARRAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_HMODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_STRING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_SYSTEM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_IGNORE_INSERTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_MAX_WIDTH_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"FSCTL_GET_REPARSE_POINT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"589992\", token.INT, 0)),\n\t\t\"Fchdir\":                                       reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                                       reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                                       reflect.ValueOf(syscall.Fchown),\n\t\t\"FindClose\":                                    reflect.ValueOf(syscall.FindClose),\n\t\t\"FindFirstFile\":                                reflect.ValueOf(syscall.FindFirstFile),\n\t\t\"FindNextFile\":                                 reflect.ValueOf(syscall.FindNextFile),\n\t\t\"FlushFileBuffers\":                             reflect.ValueOf(syscall.FlushFileBuffers),\n\t\t\"FlushViewOfFile\":                              reflect.ValueOf(syscall.FlushViewOfFile),\n\t\t\"ForkLock\":                                     reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"FormatMessage\":                                reflect.ValueOf(syscall.FormatMessage),\n\t\t\"FreeAddrInfoW\":                                reflect.ValueOf(syscall.FreeAddrInfoW),\n\t\t\"FreeEnvironmentStrings\":                       reflect.ValueOf(syscall.FreeEnvironmentStrings),\n\t\t\"FreeLibrary\":                                  reflect.ValueOf(syscall.FreeLibrary),\n\t\t\"Fsync\":                                        reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                                    reflect.ValueOf(syscall.Ftruncate),\n\t\t\"FullPath\":                                     reflect.ValueOf(syscall.FullPath),\n\t\t\"GENERIC_ALL\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"GENERIC_EXECUTE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"GENERIC_READ\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"GENERIC_WRITE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"GetAcceptExSockaddrs\":                         reflect.ValueOf(syscall.GetAcceptExSockaddrs),\n\t\t\"GetAdaptersInfo\":                              reflect.ValueOf(syscall.GetAdaptersInfo),\n\t\t\"GetAddrInfoW\":                                 reflect.ValueOf(syscall.GetAddrInfoW),\n\t\t\"GetCommandLine\":                               reflect.ValueOf(syscall.GetCommandLine),\n\t\t\"GetComputerName\":                              reflect.ValueOf(syscall.GetComputerName),\n\t\t\"GetConsoleMode\":                               reflect.ValueOf(syscall.GetConsoleMode),\n\t\t\"GetCurrentDirectory\":                          reflect.ValueOf(syscall.GetCurrentDirectory),\n\t\t\"GetCurrentProcess\":                            reflect.ValueOf(syscall.GetCurrentProcess),\n\t\t\"GetEnvironmentStrings\":                        reflect.ValueOf(syscall.GetEnvironmentStrings),\n\t\t\"GetEnvironmentVariable\":                       reflect.ValueOf(syscall.GetEnvironmentVariable),\n\t\t\"GetFileAttributes\":                            reflect.ValueOf(syscall.GetFileAttributes),\n\t\t\"GetFileAttributesEx\":                          reflect.ValueOf(syscall.GetFileAttributesEx),\n\t\t\"GetFileExInfoStandard\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"GetFileExMaxInfoLevel\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"GetFileInformationByHandle\":                   reflect.ValueOf(syscall.GetFileInformationByHandle),\n\t\t\"GetFileType\":                                  reflect.ValueOf(syscall.GetFileType),\n\t\t\"GetFullPathName\":                              reflect.ValueOf(syscall.GetFullPathName),\n\t\t\"GetHostByName\":                                reflect.ValueOf(syscall.GetHostByName),\n\t\t\"GetIfEntry\":                                   reflect.ValueOf(syscall.GetIfEntry),\n\t\t\"GetLastError\":                                 reflect.ValueOf(syscall.GetLastError),\n\t\t\"GetLengthSid\":                                 reflect.ValueOf(syscall.GetLengthSid),\n\t\t\"GetLongPathName\":                              reflect.ValueOf(syscall.GetLongPathName),\n\t\t\"GetProcAddress\":                               reflect.ValueOf(syscall.GetProcAddress),\n\t\t\"GetProcessTimes\":                              reflect.ValueOf(syscall.GetProcessTimes),\n\t\t\"GetProtoByName\":                               reflect.ValueOf(syscall.GetProtoByName),\n\t\t\"GetQueuedCompletionStatus\":                    reflect.ValueOf(syscall.GetQueuedCompletionStatus),\n\t\t\"GetServByName\":                                reflect.ValueOf(syscall.GetServByName),\n\t\t\"GetShortPathName\":                             reflect.ValueOf(syscall.GetShortPathName),\n\t\t\"GetStartupInfo\":                               reflect.ValueOf(syscall.GetStartupInfo),\n\t\t\"GetStdHandle\":                                 reflect.ValueOf(syscall.GetStdHandle),\n\t\t\"GetSystemTimeAsFileTime\":                      reflect.ValueOf(syscall.GetSystemTimeAsFileTime),\n\t\t\"GetTempPath\":                                  reflect.ValueOf(syscall.GetTempPath),\n\t\t\"GetTimeZoneInformation\":                       reflect.ValueOf(syscall.GetTimeZoneInformation),\n\t\t\"GetTokenInformation\":                          reflect.ValueOf(syscall.GetTokenInformation),\n\t\t\"GetUserNameEx\":                                reflect.ValueOf(syscall.GetUserNameEx),\n\t\t\"GetUserProfileDirectory\":                      reflect.ValueOf(syscall.GetUserProfileDirectory),\n\t\t\"GetVersion\":                                   reflect.ValueOf(syscall.GetVersion),\n\t\t\"Getegid\":                                      reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                                       reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                                      reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                                       reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                                    reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                                  reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                                  reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpid\":                                       reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                                      reflect.ValueOf(syscall.Getppid),\n\t\t\"Getsockname\":                                  reflect.ValueOf(syscall.Getsockname),\n\t\t\"Getsockopt\":                                   reflect.ValueOf(syscall.Getsockopt),\n\t\t\"GetsockoptInt\":                                reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                                 reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                                       reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                                        reflect.ValueOf(syscall.Getwd),\n\t\t\"HANDLE_FLAG_INHERIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"HKEY_CLASSES_ROOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"HKEY_CURRENT_CONFIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483653\", token.INT, 0)),\n\t\t\"HKEY_CURRENT_USER\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483649\", token.INT, 0)),\n\t\t\"HKEY_DYN_DATA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2147483654\", token.INT, 0)),\n\t\t\"HKEY_LOCAL_MACHINE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483650\", token.INT, 0)),\n\t\t\"HKEY_PERFORMANCE_DATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483652\", token.INT, 0)),\n\t\t\"HKEY_USERS\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483651\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_POINTTOPOINT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_UP\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNORE\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"INFINITE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"INVALID_FILE_ATTRIBUTES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"IOC_IN\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IOC_INOUT\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"IOC_OUT\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IOC_VENDOR\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"402653184\", token.INT, 0)),\n\t\t\"IOC_WS2\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"IO_REPARSE_TAG_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2684354572\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_TOS\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                              reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InvalidHandle\":                                reflect.ValueOf(syscall.InvalidHandle),\n\t\t\"KEY_ALL_ACCESS\":                               reflect.ValueOf(constant.MakeFromLiteral(\"983103\", token.INT, 0)),\n\t\t\"KEY_CREATE_LINK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"KEY_CREATE_SUB_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"KEY_ENUMERATE_SUB_KEYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"KEY_EXECUTE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"131097\", token.INT, 0)),\n\t\t\"KEY_NOTIFY\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"KEY_QUERY_VALUE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"KEY_READ\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"131097\", token.INT, 0)),\n\t\t\"KEY_SET_VALUE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"KEY_WOW64_32KEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"KEY_WOW64_64KEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"KEY_WRITE\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"131078\", token.INT, 0)),\n\t\t\"LANG_ENGLISH\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"LAYERED_PROTOCOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Lchown\":                                       reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                                         reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                                       reflect.ValueOf(syscall.Listen),\n\t\t\"LoadCancelIoEx\":                               reflect.ValueOf(syscall.LoadCancelIoEx),\n\t\t\"LoadConnectEx\":                                reflect.ValueOf(syscall.LoadConnectEx),\n\t\t\"LoadCreateSymbolicLink\":                       reflect.ValueOf(syscall.LoadCreateSymbolicLink),\n\t\t\"LoadDLL\":                                      reflect.ValueOf(syscall.LoadDLL),\n\t\t\"LoadGetAddrInfo\":                              reflect.ValueOf(syscall.LoadGetAddrInfo),\n\t\t\"LoadLibrary\":                                  reflect.ValueOf(syscall.LoadLibrary),\n\t\t\"LoadSetFileCompletionNotificationModes\":       reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes),\n\t\t\"LocalFree\":                                    reflect.ValueOf(syscall.LocalFree),\n\t\t\"LookupAccountName\":                            reflect.ValueOf(syscall.LookupAccountName),\n\t\t\"LookupAccountSid\":                             reflect.ValueOf(syscall.LookupAccountSid),\n\t\t\"LookupSID\":                                    reflect.ValueOf(syscall.LookupSID),\n\t\t\"MAXIMUM_REPARSE_DATA_BUFFER_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAXLEN_IFDESCR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAXLEN_PHYSADDR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_ADDRESS_LENGTH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_DESCRIPTION_LENGTH\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_NAME_LENGTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAX_COMPUTERNAME_LENGTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MAX_INTERFACE_NAME_LEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAX_LONG_PATH\":                                reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAX_PATH\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"MAX_PROTOCOL_CHAIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MapViewOfFile\":                                reflect.ValueOf(syscall.MapViewOfFile),\n\t\t\"MaxTokenInfoClass\":                            reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"Mkdir\":                                        reflect.ValueOf(syscall.Mkdir),\n\t\t\"MoveFile\":                                     reflect.ValueOf(syscall.MoveFile),\n\t\t\"MustLoadDLL\":                                  reflect.ValueOf(syscall.MustLoadDLL),\n\t\t\"NameCanonical\":                                reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NameCanonicalEx\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NameDisplay\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NameDnsDomain\":                                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NameFullyQualifiedDN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NameSamCompatible\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NameServicePrincipal\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NameUniqueId\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NameUnknown\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NameUserPrincipal\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NetApiBufferFree\":                             reflect.ValueOf(syscall.NetApiBufferFree),\n\t\t\"NetGetJoinInformation\":                        reflect.ValueOf(syscall.NetGetJoinInformation),\n\t\t\"NetSetupDomainName\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NetSetupUnjoined\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NetSetupUnknownStatus\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NetSetupWorkgroupName\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NetUserGetInfo\":                               reflect.ValueOf(syscall.NetUserGetInfo),\n\t\t\"NewCallback\":                                  reflect.ValueOf(syscall.NewCallback),\n\t\t\"NewCallbackCDecl\":                             reflect.ValueOf(syscall.NewCallbackCDecl),\n\t\t\"NewLazyDLL\":                                   reflect.ValueOf(syscall.NewLazyDLL),\n\t\t\"NsecToFiletime\":                               reflect.ValueOf(syscall.NsecToFiletime),\n\t\t\"NsecToTimespec\":                               reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                                reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"Ntohs\":                                        reflect.ValueOf(syscall.Ntohs),\n\t\t\"OID_PKIX_KP_SERVER_AUTH\":                      reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(),\n\t\t\"OID_SERVER_GATED_CRYPTO\":                      reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(),\n\t\t\"OID_SGC_NETSCAPE\":                             reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(),\n\t\t\"OPEN_ALWAYS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"OPEN_EXISTING\":                                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_EXCL\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_RDONLY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SYNC\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_TRUNC\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                                         reflect.ValueOf(syscall.Open),\n\t\t\"OpenCurrentProcessToken\":                      reflect.ValueOf(syscall.OpenCurrentProcessToken),\n\t\t\"OpenProcess\":                                  reflect.ValueOf(syscall.OpenProcess),\n\t\t\"OpenProcessToken\":                             reflect.ValueOf(syscall.OpenProcessToken),\n\t\t\"PAGE_EXECUTE_READ\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PAGE_EXECUTE_READWRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PAGE_EXECUTE_WRITECOPY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PAGE_READONLY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PAGE_READWRITE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PAGE_WRITECOPY\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PFL_HIDDEN\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PFL_MATCHES_PROTOCOL_ZERO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PFL_MULTIPLE_PROTO_ENTRIES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PFL_NETWORKDIRECT_PROVIDER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PFL_RECOMMENDED_PROTO_ENTRY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PKCS_7_ASN_ENCODING\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PROCESS_QUERY_INFORMATION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"PROCESS_TERMINATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROV_DH_SCHANNEL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PROV_DSS\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PROV_DSS_DH\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PROV_EC_ECDSA_FULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PROV_EC_ECDSA_SIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PROV_EC_ECNRA_FULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PROV_EC_ECNRA_SIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PROV_FORTEZZA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROV_INTEL_SEC\":                               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PROV_MS_EXCHANGE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PROV_REPLACE_OWF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PROV_RNG\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PROV_RSA_AES\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PROV_RSA_FULL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROV_RSA_SCHANNEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PROV_RSA_SIG\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROV_SPYRUS_LYNKS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PROV_SSL\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"Pipe\":                                         reflect.ValueOf(syscall.Pipe),\n\t\t\"PostQueuedCompletionStatus\":                   reflect.ValueOf(syscall.PostQueuedCompletionStatus),\n\t\t\"Process32First\":                               reflect.ValueOf(syscall.Process32First),\n\t\t\"Process32Next\":                                reflect.ValueOf(syscall.Process32Next),\n\t\t\"REG_BINARY\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"REG_DWORD\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"REG_DWORD_BIG_ENDIAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"REG_DWORD_LITTLE_ENDIAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"REG_EXPAND_SZ\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"REG_FULL_RESOURCE_DESCRIPTOR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"REG_LINK\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"REG_MULTI_SZ\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"REG_NONE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"REG_QWORD\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"REG_QWORD_LITTLE_ENDIAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"REG_RESOURCE_LIST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"REG_RESOURCE_REQUIREMENTS_LIST\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"REG_SZ\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                                         reflect.ValueOf(syscall.Read),\n\t\t\"ReadConsole\":                                  reflect.ValueOf(syscall.ReadConsole),\n\t\t\"ReadDirectoryChanges\":                         reflect.ValueOf(syscall.ReadDirectoryChanges),\n\t\t\"ReadFile\":                                     reflect.ValueOf(syscall.ReadFile),\n\t\t\"Readlink\":                                     reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                                     reflect.ValueOf(syscall.Recvfrom),\n\t\t\"RegCloseKey\":                                  reflect.ValueOf(syscall.RegCloseKey),\n\t\t\"RegEnumKeyEx\":                                 reflect.ValueOf(syscall.RegEnumKeyEx),\n\t\t\"RegOpenKeyEx\":                                 reflect.ValueOf(syscall.RegOpenKeyEx),\n\t\t\"RegQueryInfoKey\":                              reflect.ValueOf(syscall.RegQueryInfoKey),\n\t\t\"RegQueryValueEx\":                              reflect.ValueOf(syscall.RegQueryValueEx),\n\t\t\"RemoveDirectory\":                              reflect.ValueOf(syscall.RemoveDirectory),\n\t\t\"Rename\":                                       reflect.ValueOf(syscall.Rename),\n\t\t\"Rmdir\":                                        reflect.ValueOf(syscall.Rmdir),\n\t\t\"SHUT_RD\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                                      reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                                      reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                                       reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGFPE\":                                       reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                                       reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                                       reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                                       reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGKILL\":                                      reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                                      reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGQUIT\":                                      reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                                      reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGTERM\":                                      reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                                      reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIO_GET_EXTENSION_FUNCTION_POINTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3355443206\", token.INT, 0)),\n\t\t\"SIO_GET_INTERFACE_LIST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074033791\", token.INT, 0)),\n\t\t\"SIO_KEEPALIVE_VALS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2550136836\", token.INT, 0)),\n\t\t\"SIO_UDP_CONNRESET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2550136844\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"2147483647\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_UPDATE_ACCEPT_CONTEXT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28683\", token.INT, 0)),\n\t\t\"SO_UPDATE_CONNECT_CONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28688\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_ALL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2031616\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_EXECUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_REQUIRED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"983040\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STARTF_USESHOWWINDOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"STARTF_USESTDHANDLES\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"STD_ERROR_HANDLE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"-12\", token.INT, 0)),\n\t\t\"STD_INPUT_HANDLE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"STD_OUTPUT_HANDLE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"-11\", token.INT, 0)),\n\t\t\"SUBLANG_ENGLISH_US\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SW_FORCEMINIMIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SW_HIDE\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SW_MAXIMIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SW_MINIMIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SW_NORMAL\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SW_RESTORE\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SW_SHOW\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SW_SHOWDEFAULT\":                               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SW_SHOWMAXIMIZED\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SW_SHOWMINIMIZED\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SW_SHOWMINNOACTIVE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SW_SHOWNA\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SW_SHOWNOACTIVATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SW_SHOWNORMAL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYMBOLIC_LINK_FLAG_DIRECTORY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYNCHRONIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"S_IFBLK\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"S_IFREG\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_ISGID\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWRITE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                                         reflect.ValueOf(syscall.Seek),\n\t\t\"Sendto\":                                       reflect.ValueOf(syscall.Sendto),\n\t\t\"SetCurrentDirectory\":                          reflect.ValueOf(syscall.SetCurrentDirectory),\n\t\t\"SetEndOfFile\":                                 reflect.ValueOf(syscall.SetEndOfFile),\n\t\t\"SetEnvironmentVariable\":                       reflect.ValueOf(syscall.SetEnvironmentVariable),\n\t\t\"SetFileAttributes\":                            reflect.ValueOf(syscall.SetFileAttributes),\n\t\t\"SetFileCompletionNotificationModes\":           reflect.ValueOf(syscall.SetFileCompletionNotificationModes),\n\t\t\"SetFilePointer\":                               reflect.ValueOf(syscall.SetFilePointer),\n\t\t\"SetFileTime\":                                  reflect.ValueOf(syscall.SetFileTime),\n\t\t\"SetHandleInformation\":                         reflect.ValueOf(syscall.SetHandleInformation),\n\t\t\"SetNonblock\":                                  reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setenv\":                                       reflect.ValueOf(syscall.Setenv),\n\t\t\"Setsockopt\":                                   reflect.ValueOf(syscall.Setsockopt),\n\t\t\"SetsockoptIPMreq\":                             reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                           reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":                          reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                                reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                             reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptTimeval\":                            reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"SidTypeAlias\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SidTypeComputer\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SidTypeDeletedAccount\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SidTypeDomain\":                                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SidTypeGroup\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SidTypeInvalid\":                               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SidTypeLabel\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SidTypeUnknown\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SidTypeUser\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SidTypeWellKnownGroup\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"Socket\":                                       reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                            reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Stderr\":                                       reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                                        reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                                       reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                                reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                              reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringToSid\":                                  reflect.ValueOf(syscall.StringToSid),\n\t\t\"StringToUTF16\":                                reflect.ValueOf(syscall.StringToUTF16),\n\t\t\"StringToUTF16Ptr\":                             reflect.ValueOf(syscall.StringToUTF16Ptr),\n\t\t\"Symlink\":                                      reflect.ValueOf(syscall.Symlink),\n\t\t\"TCP_NODELAY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TF_DISCONNECT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TF_REUSE_SOCKET\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TF_USE_DEFAULT_WORKER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TF_USE_KERNEL_APC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TF_USE_SYSTEM_THREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TF_WRITE_BEHIND\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TH32CS_INHERIT\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"TH32CS_SNAPALL\":                               reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TH32CS_SNAPHEAPLIST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TH32CS_SNAPMODULE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TH32CS_SNAPMODULE32\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TH32CS_SNAPPROCESS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TH32CS_SNAPTHREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_DAYLIGHT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_STANDARD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_UNKNOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_DEFAULT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_GROUPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_PRIVILEGES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_SESSIONID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TOKEN_ALL_ACCESS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"983551\", token.INT, 0)),\n\t\t\"TOKEN_ASSIGN_PRIMARY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TOKEN_DUPLICATE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TOKEN_EXECUTE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"TOKEN_IMPERSONATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TOKEN_QUERY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TOKEN_QUERY_SOURCE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TOKEN_READ\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"131080\", token.INT, 0)),\n\t\t\"TOKEN_WRITE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"131296\", token.INT, 0)),\n\t\t\"TRUNCATE_EXISTING\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TerminateProcess\":                             reflect.ValueOf(syscall.TerminateProcess),\n\t\t\"TimespecToNsec\":                               reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TokenAccessInformation\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TokenAuditPolicy\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TokenDefaultDacl\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TokenElevation\":                               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TokenElevationType\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TokenGroups\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TokenGroupsAndPrivileges\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TokenHasRestrictions\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TokenImpersonationLevel\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TokenIntegrityLevel\":                          reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"TokenLinkedToken\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TokenLogonSid\":                                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"TokenMandatoryPolicy\":                         reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"TokenOrigin\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TokenOwner\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TokenPrimaryGroup\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TokenPrivileges\":                              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TokenRestrictedSids\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TokenSandBoxInert\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TokenSessionId\":                               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TokenSessionReference\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TokenSource\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TokenStatistics\":                              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TokenType\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TokenUIAccess\":                                reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"TokenUser\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TokenVirtualizationAllowed\":                   reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TokenVirtualizationEnabled\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TranslateAccountName\":                         reflect.ValueOf(syscall.TranslateAccountName),\n\t\t\"TranslateName\":                                reflect.ValueOf(syscall.TranslateName),\n\t\t\"TransmitFile\":                                 reflect.ValueOf(syscall.TransmitFile),\n\t\t\"UNIX_PATH_MAX\":                                reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"USAGE_MATCH_TYPE_AND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"USAGE_MATCH_TYPE_OR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"UTF16FromString\":                              reflect.ValueOf(syscall.UTF16FromString),\n\t\t\"UTF16PtrFromString\":                           reflect.ValueOf(syscall.UTF16PtrFromString),\n\t\t\"UTF16ToString\":                                reflect.ValueOf(syscall.UTF16ToString),\n\t\t\"Unlink\":                                       reflect.ValueOf(syscall.Unlink),\n\t\t\"UnmapViewOfFile\":                              reflect.ValueOf(syscall.UnmapViewOfFile),\n\t\t\"Unsetenv\":                                     reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                                       reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                                   reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VirtualLock\":                                  reflect.ValueOf(syscall.VirtualLock),\n\t\t\"VirtualUnlock\":                                reflect.ValueOf(syscall.VirtualUnlock),\n\t\t\"WAIT_ABANDONED\":                               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WAIT_FAILED\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"WAIT_OBJECT_0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"WAIT_TIMEOUT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"WSACleanup\":                                   reflect.ValueOf(syscall.WSACleanup),\n\t\t\"WSADESCRIPTION_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"WSAEACCES\":                                    reflect.ValueOf(syscall.WSAEACCES),\n\t\t\"WSAECONNABORTED\":                              reflect.ValueOf(syscall.WSAECONNABORTED),\n\t\t\"WSAECONNRESET\":                                reflect.ValueOf(syscall.WSAECONNRESET),\n\t\t\"WSAEnumProtocols\":                             reflect.ValueOf(syscall.WSAEnumProtocols),\n\t\t\"WSAID_CONNECTEX\":                              reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(),\n\t\t\"WSAIoctl\":                                     reflect.ValueOf(syscall.WSAIoctl),\n\t\t\"WSAPROTOCOL_LEN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"WSARecv\":                                      reflect.ValueOf(syscall.WSARecv),\n\t\t\"WSARecvFrom\":                                  reflect.ValueOf(syscall.WSARecvFrom),\n\t\t\"WSASYS_STATUS_LEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WSASend\":                                      reflect.ValueOf(syscall.WSASend),\n\t\t\"WSASendTo\":                                    reflect.ValueOf(syscall.WSASendTo),\n\t\t\"WSASendto\":                                    reflect.ValueOf(syscall.WSASendto),\n\t\t\"WSAStartup\":                                   reflect.ValueOf(syscall.WSAStartup),\n\t\t\"WaitForSingleObject\":                          reflect.ValueOf(syscall.WaitForSingleObject),\n\t\t\"Write\":                                        reflect.ValueOf(syscall.Write),\n\t\t\"WriteConsole\":                                 reflect.ValueOf(syscall.WriteConsole),\n\t\t\"WriteFile\":                                    reflect.ValueOf(syscall.WriteFile),\n\t\t\"X509_ASN_ENCODING\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"XP1_CONNECTIONLESS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"XP1_CONNECT_DATA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"XP1_DISCONNECT_DATA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"XP1_EXPEDITED_DATA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"XP1_GRACEFUL_CLOSE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"XP1_GUARANTEED_DELIVERY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"XP1_GUARANTEED_ORDER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"XP1_IFS_HANDLES\":                              reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"XP1_MESSAGE_ORIENTED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"XP1_MULTIPOINT_CONTROL_PLANE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"XP1_MULTIPOINT_DATA_PLANE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"XP1_PARTIAL_MESSAGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"XP1_PSEUDO_STREAM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"XP1_QOS_SUPPORTED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"XP1_SAN_SUPPORT_SDP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"XP1_SUPPORT_BROADCAST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"XP1_SUPPORT_MULTIPOINT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"XP1_UNI_RECV\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"XP1_UNI_SEND\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"AddrinfoW\":                   reflect.ValueOf((*syscall.AddrinfoW)(nil)),\n\t\t\"ByHandleFileInformation\":     reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)),\n\t\t\"CertChainContext\":            reflect.ValueOf((*syscall.CertChainContext)(nil)),\n\t\t\"CertChainElement\":            reflect.ValueOf((*syscall.CertChainElement)(nil)),\n\t\t\"CertChainPara\":               reflect.ValueOf((*syscall.CertChainPara)(nil)),\n\t\t\"CertChainPolicyPara\":         reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)),\n\t\t\"CertChainPolicyStatus\":       reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)),\n\t\t\"CertContext\":                 reflect.ValueOf((*syscall.CertContext)(nil)),\n\t\t\"CertEnhKeyUsage\":             reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)),\n\t\t\"CertInfo\":                    reflect.ValueOf((*syscall.CertInfo)(nil)),\n\t\t\"CertRevocationCrlInfo\":       reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)),\n\t\t\"CertRevocationInfo\":          reflect.ValueOf((*syscall.CertRevocationInfo)(nil)),\n\t\t\"CertSimpleChain\":             reflect.ValueOf((*syscall.CertSimpleChain)(nil)),\n\t\t\"CertTrustListInfo\":           reflect.ValueOf((*syscall.CertTrustListInfo)(nil)),\n\t\t\"CertTrustStatus\":             reflect.ValueOf((*syscall.CertTrustStatus)(nil)),\n\t\t\"CertUsageMatch\":              reflect.ValueOf((*syscall.CertUsageMatch)(nil)),\n\t\t\"Conn\":                        reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"DLL\":                         reflect.ValueOf((*syscall.DLL)(nil)),\n\t\t\"DLLError\":                    reflect.ValueOf((*syscall.DLLError)(nil)),\n\t\t\"DNSMXData\":                   reflect.ValueOf((*syscall.DNSMXData)(nil)),\n\t\t\"DNSPTRData\":                  reflect.ValueOf((*syscall.DNSPTRData)(nil)),\n\t\t\"DNSRecord\":                   reflect.ValueOf((*syscall.DNSRecord)(nil)),\n\t\t\"DNSSRVData\":                  reflect.ValueOf((*syscall.DNSSRVData)(nil)),\n\t\t\"DNSTXTData\":                  reflect.ValueOf((*syscall.DNSTXTData)(nil)),\n\t\t\"Errno\":                       reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FileNotifyInformation\":       reflect.ValueOf((*syscall.FileNotifyInformation)(nil)),\n\t\t\"Filetime\":                    reflect.ValueOf((*syscall.Filetime)(nil)),\n\t\t\"GUID\":                        reflect.ValueOf((*syscall.GUID)(nil)),\n\t\t\"Handle\":                      reflect.ValueOf((*syscall.Handle)(nil)),\n\t\t\"Hostent\":                     reflect.ValueOf((*syscall.Hostent)(nil)),\n\t\t\"IPMreq\":                      reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6Mreq\":                    reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"InterfaceInfo\":               reflect.ValueOf((*syscall.InterfaceInfo)(nil)),\n\t\t\"IpAdapterInfo\":               reflect.ValueOf((*syscall.IpAdapterInfo)(nil)),\n\t\t\"IpAddrString\":                reflect.ValueOf((*syscall.IpAddrString)(nil)),\n\t\t\"IpAddressString\":             reflect.ValueOf((*syscall.IpAddressString)(nil)),\n\t\t\"IpMaskString\":                reflect.ValueOf((*syscall.IpMaskString)(nil)),\n\t\t\"LazyDLL\":                     reflect.ValueOf((*syscall.LazyDLL)(nil)),\n\t\t\"LazyProc\":                    reflect.ValueOf((*syscall.LazyProc)(nil)),\n\t\t\"Linger\":                      reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"MibIfRow\":                    reflect.ValueOf((*syscall.MibIfRow)(nil)),\n\t\t\"Overlapped\":                  reflect.ValueOf((*syscall.Overlapped)(nil)),\n\t\t\"Pointer\":                     reflect.ValueOf((*syscall.Pointer)(nil)),\n\t\t\"Proc\":                        reflect.ValueOf((*syscall.Proc)(nil)),\n\t\t\"ProcAttr\":                    reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"ProcessEntry32\":              reflect.ValueOf((*syscall.ProcessEntry32)(nil)),\n\t\t\"ProcessInformation\":          reflect.ValueOf((*syscall.ProcessInformation)(nil)),\n\t\t\"Protoent\":                    reflect.ValueOf((*syscall.Protoent)(nil)),\n\t\t\"RawConn\":                     reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                 reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":              reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":            reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":            reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":             reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rusage\":                      reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"SID\":                         reflect.ValueOf((*syscall.SID)(nil)),\n\t\t\"SIDAndAttributes\":            reflect.ValueOf((*syscall.SIDAndAttributes)(nil)),\n\t\t\"SSLExtraCertChainPolicyPara\": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)),\n\t\t\"SecurityAttributes\":          reflect.ValueOf((*syscall.SecurityAttributes)(nil)),\n\t\t\"Servent\":                     reflect.ValueOf((*syscall.Servent)(nil)),\n\t\t\"Signal\":                      reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                    reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrGen\":                 reflect.ValueOf((*syscall.SockaddrGen)(nil)),\n\t\t\"SockaddrInet4\":               reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":               reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"StartupInfo\":                 reflect.ValueOf((*syscall.StartupInfo)(nil)),\n\t\t\"SysProcAttr\":                 reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Systemtime\":                  reflect.ValueOf((*syscall.Systemtime)(nil)),\n\t\t\"TCPKeepalive\":                reflect.ValueOf((*syscall.TCPKeepalive)(nil)),\n\t\t\"Timespec\":                    reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                     reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timezoneinformation\":         reflect.ValueOf((*syscall.Timezoneinformation)(nil)),\n\t\t\"Token\":                       reflect.ValueOf((*syscall.Token)(nil)),\n\t\t\"Tokenprimarygroup\":           reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)),\n\t\t\"Tokenuser\":                   reflect.ValueOf((*syscall.Tokenuser)(nil)),\n\t\t\"TransmitFileBuffers\":         reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)),\n\t\t\"UserInfo10\":                  reflect.ValueOf((*syscall.UserInfo10)(nil)),\n\t\t\"WSABuf\":                      reflect.ValueOf((*syscall.WSABuf)(nil)),\n\t\t\"WSAData\":                     reflect.ValueOf((*syscall.WSAData)(nil)),\n\t\t\"WSAProtocolChain\":            reflect.ValueOf((*syscall.WSAProtocolChain)(nil)),\n\t\t\"WSAProtocolInfo\":             reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)),\n\t\t\"WaitStatus\":                  reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\t\t\"Win32FileAttributeData\":      reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)),\n\t\t\"Win32finddata\":               reflect.ValueOf((*syscall.Win32finddata)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_windows_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_INET\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_UNIX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AI_CANONNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AI_NUMERICHOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AI_PASSIVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"APPLICATION_ERROR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"AUTHTYPE_CLIENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AUTHTYPE_SERVER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Accept\":                              reflect.ValueOf(syscall.Accept),\n\t\t\"AcceptEx\":                            reflect.ValueOf(syscall.AcceptEx),\n\t\t\"BASE_PROTOCOL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Bind\":                                reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":                   reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":                 reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CERT_CHAIN_POLICY_AUTHENTICODE\":      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_AUTHENTICODE_TS\":   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_BASE\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_BASIC_CONSTRAINTS\": reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_EV\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_MICROSOFT_ROOT\":    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_NT_AUTH\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_SSL\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_E_CN_NO_MATCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148204815\", token.INT, 0)),\n\t\t\"CERT_E_EXPIRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148204801\", token.INT, 0)),\n\t\t\"CERT_E_PURPOSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148204806\", token.INT, 0)),\n\t\t\"CERT_E_ROLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148204803\", token.INT, 0)),\n\t\t\"CERT_E_UNTRUSTEDROOT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2148204809\", token.INT, 0)),\n\t\t\"CERT_STORE_ADD_ALWAYS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG\":  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_STORE_PROV_MEMORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT\":      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT\":   reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT\": reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT\":    reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT\": reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_BASIC_CONSTRAINTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_EXTENSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_NAME_CONSTRAINTS\":          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_POLICY_CONSTRAINTS\":        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_CYCLIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_EXPLICIT_DISTRUST\":              reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_SIGNATURE_VALID\":            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_TIME_VALID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_VALID_FOR_USAGE\":            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_OFFLINE_REVOCATION\":             reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_REVOKED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_UNTRUSTED_ROOT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CERT_TRUST_NO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY\":          reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CERT_TRUST_REVOCATION_STATUS_UNKNOWN\":         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CREATE_ALWAYS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CREATE_NEW\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CREATE_NEW_PROCESS_GROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CREATE_UNICODE_ENVIRONMENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CRYPT_DEFAULT_CONTAINER_OPTIONAL\":             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CRYPT_DELETEKEYSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CRYPT_MACHINE_KEYSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CRYPT_NEWKEYSET\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CRYPT_SILENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CRYPT_VERIFYCONTEXT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"CTRL_BREAK_EVENT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CTRL_CLOSE_EVENT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CTRL_C_EVENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CTRL_LOGOFF_EVENT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"CTRL_SHUTDOWN_EVENT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"CancelIo\":                                     reflect.ValueOf(syscall.CancelIo),\n\t\t\"CancelIoEx\":                                   reflect.ValueOf(syscall.CancelIoEx),\n\t\t\"CertAddCertificateContextToStore\":             reflect.ValueOf(syscall.CertAddCertificateContextToStore),\n\t\t\"CertCloseStore\":                               reflect.ValueOf(syscall.CertCloseStore),\n\t\t\"CertCreateCertificateContext\":                 reflect.ValueOf(syscall.CertCreateCertificateContext),\n\t\t\"CertEnumCertificatesInStore\":                  reflect.ValueOf(syscall.CertEnumCertificatesInStore),\n\t\t\"CertFreeCertificateChain\":                     reflect.ValueOf(syscall.CertFreeCertificateChain),\n\t\t\"CertFreeCertificateContext\":                   reflect.ValueOf(syscall.CertFreeCertificateContext),\n\t\t\"CertGetCertificateChain\":                      reflect.ValueOf(syscall.CertGetCertificateChain),\n\t\t\"CertOpenStore\":                                reflect.ValueOf(syscall.CertOpenStore),\n\t\t\"CertOpenSystemStore\":                          reflect.ValueOf(syscall.CertOpenSystemStore),\n\t\t\"CertVerifyCertificateChainPolicy\":             reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy),\n\t\t\"Chdir\":                                        reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                                        reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                                        reflect.ValueOf(syscall.Chown),\n\t\t\"Clearenv\":                                     reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                                        reflect.ValueOf(syscall.Close),\n\t\t\"CloseHandle\":                                  reflect.ValueOf(syscall.CloseHandle),\n\t\t\"CloseOnExec\":                                  reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"Closesocket\":                                  reflect.ValueOf(syscall.Closesocket),\n\t\t\"CommandLineToArgv\":                            reflect.ValueOf(syscall.CommandLineToArgv),\n\t\t\"ComputerName\":                                 reflect.ValueOf(syscall.ComputerName),\n\t\t\"Connect\":                                      reflect.ValueOf(syscall.Connect),\n\t\t\"ConnectEx\":                                    reflect.ValueOf(syscall.ConnectEx),\n\t\t\"ConvertSidToStringSid\":                        reflect.ValueOf(syscall.ConvertSidToStringSid),\n\t\t\"ConvertStringSidToSid\":                        reflect.ValueOf(syscall.ConvertStringSidToSid),\n\t\t\"CopySid\":                                      reflect.ValueOf(syscall.CopySid),\n\t\t\"CreateDirectory\":                              reflect.ValueOf(syscall.CreateDirectory),\n\t\t\"CreateFile\":                                   reflect.ValueOf(syscall.CreateFile),\n\t\t\"CreateFileMapping\":                            reflect.ValueOf(syscall.CreateFileMapping),\n\t\t\"CreateHardLink\":                               reflect.ValueOf(syscall.CreateHardLink),\n\t\t\"CreateIoCompletionPort\":                       reflect.ValueOf(syscall.CreateIoCompletionPort),\n\t\t\"CreatePipe\":                                   reflect.ValueOf(syscall.CreatePipe),\n\t\t\"CreateProcess\":                                reflect.ValueOf(syscall.CreateProcess),\n\t\t\"CreateProcessAsUser\":                          reflect.ValueOf(syscall.CreateProcessAsUser),\n\t\t\"CreateSymbolicLink\":                           reflect.ValueOf(syscall.CreateSymbolicLink),\n\t\t\"CreateToolhelp32Snapshot\":                     reflect.ValueOf(syscall.CreateToolhelp32Snapshot),\n\t\t\"CryptAcquireContext\":                          reflect.ValueOf(syscall.CryptAcquireContext),\n\t\t\"CryptGenRandom\":                               reflect.ValueOf(syscall.CryptGenRandom),\n\t\t\"CryptReleaseContext\":                          reflect.ValueOf(syscall.CryptReleaseContext),\n\t\t\"DNS_INFO_NO_RECORDS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9501\", token.INT, 0)),\n\t\t\"DNS_TYPE_A\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DNS_TYPE_A6\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"DNS_TYPE_AAAA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"DNS_TYPE_ADDRS\":                               reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"DNS_TYPE_AFSDB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DNS_TYPE_ALL\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"DNS_TYPE_ANY\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"DNS_TYPE_ATMA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"DNS_TYPE_AXFR\":                                reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"DNS_TYPE_CERT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"DNS_TYPE_CNAME\":                               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DNS_TYPE_DHCID\":                               reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"DNS_TYPE_DNAME\":                               reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"DNS_TYPE_DNSKEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"DNS_TYPE_DS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"DNS_TYPE_EID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"DNS_TYPE_GID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"DNS_TYPE_GPOS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"DNS_TYPE_HINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DNS_TYPE_ISDN\":                                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"DNS_TYPE_IXFR\":                                reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"DNS_TYPE_KEY\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"DNS_TYPE_KX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"DNS_TYPE_LOC\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"DNS_TYPE_MAILA\":                               reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"DNS_TYPE_MAILB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"DNS_TYPE_MB\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DNS_TYPE_MD\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DNS_TYPE_MF\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DNS_TYPE_MG\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DNS_TYPE_MINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DNS_TYPE_MR\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DNS_TYPE_MX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DNS_TYPE_NAPTR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"DNS_TYPE_NBSTAT\":                              reflect.ValueOf(constant.MakeFromLiteral(\"65281\", token.INT, 0)),\n\t\t\"DNS_TYPE_NIMLOC\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"DNS_TYPE_NS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSAP\":                                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSAPPTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSEC\":                                reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"DNS_TYPE_NULL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DNS_TYPE_NXT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"DNS_TYPE_OPT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"DNS_TYPE_PTR\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DNS_TYPE_PX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"DNS_TYPE_RP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"DNS_TYPE_RRSIG\":                               reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"DNS_TYPE_RT\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"DNS_TYPE_SIG\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"DNS_TYPE_SINK\":                                reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"DNS_TYPE_SOA\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DNS_TYPE_SRV\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"DNS_TYPE_TEXT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DNS_TYPE_TKEY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"DNS_TYPE_TSIG\":                                reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"DNS_TYPE_UID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"DNS_TYPE_UINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"DNS_TYPE_UNSPEC\":                              reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"DNS_TYPE_WINS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"65281\", token.INT, 0)),\n\t\t\"DNS_TYPE_WINSR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"65282\", token.INT, 0)),\n\t\t\"DNS_TYPE_WKS\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DNS_TYPE_X25\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DUPLICATE_CLOSE_SOURCE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DUPLICATE_SAME_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DeleteFile\":                                   reflect.ValueOf(syscall.DeleteFile),\n\t\t\"DeviceIoControl\":                              reflect.ValueOf(syscall.DeviceIoControl),\n\t\t\"DnsNameCompare\":                               reflect.ValueOf(syscall.DnsNameCompare),\n\t\t\"DnsQuery\":                                     reflect.ValueOf(syscall.DnsQuery),\n\t\t\"DnsRecordListFree\":                            reflect.ValueOf(syscall.DnsRecordListFree),\n\t\t\"DnsSectionAdditional\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DnsSectionAnswer\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DnsSectionAuthority\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DnsSectionQuestion\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DuplicateHandle\":                              reflect.ValueOf(syscall.DuplicateHandle),\n\t\t\"E2BIG\":                                        reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                                       reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                                   reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                                reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                                         reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                                 reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                                       reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                                     reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                                        reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                                        reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                                       reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                                      reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                                        reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                                      reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                                      reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                                       reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                                        reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                                    reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                                       reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHRNG\":                                       reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                                        reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                                 reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                                 reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                                   reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                                      reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                                    reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                                 reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                                         reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                                      reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                                       reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                                       reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                                       reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                                        reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                                    reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                                 reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                                        reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                                       reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                                  reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                                        reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                                       reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                                          reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                                      reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                                       reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                                       reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                                  reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                                 reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                                  reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                                       reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                                     reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                                       reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                                       reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                                      reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                                      reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                                     reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                                      reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                                      reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                                       reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                                        reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                                  reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                                       reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                                       reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                                     reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                                    reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                                 reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                                      reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENETDOWN\":                                     reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                                    reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                                  reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                                       reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                                       reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                                      reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                                       reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                                      reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                                       reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                                       reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                                      reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                                       reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                                       reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                                      reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                                    reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                                       reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                                       reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                                       reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                                       reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                                  reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                                       reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                                        reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                                       reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                                       reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                                      reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                                     reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                                      reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                                    reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                                      reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                              reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                                     reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                                      reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                                       reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                                     reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                                        reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                                   reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                                    reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                                   reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                                        reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                                 reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                                        reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROTO\":                                       reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                              reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                                   reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                                       reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                                      reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                                      reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                                    reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                                     reflect.ValueOf(syscall.ERESTART),\n\t\t\"EROFS\":                                        reflect.ValueOf(syscall.EROFS),\n\t\t\"ERROR_ACCESS_DENIED\":                          reflect.ValueOf(syscall.ERROR_ACCESS_DENIED),\n\t\t\"ERROR_ALREADY_EXISTS\":                         reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS),\n\t\t\"ERROR_BROKEN_PIPE\":                            reflect.ValueOf(syscall.ERROR_BROKEN_PIPE),\n\t\t\"ERROR_BUFFER_OVERFLOW\":                        reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW),\n\t\t\"ERROR_DIR_NOT_EMPTY\":                          reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY),\n\t\t\"ERROR_ENVVAR_NOT_FOUND\":                       reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND),\n\t\t\"ERROR_FILE_EXISTS\":                            reflect.ValueOf(syscall.ERROR_FILE_EXISTS),\n\t\t\"ERROR_FILE_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND),\n\t\t\"ERROR_HANDLE_EOF\":                             reflect.ValueOf(syscall.ERROR_HANDLE_EOF),\n\t\t\"ERROR_INSUFFICIENT_BUFFER\":                    reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER),\n\t\t\"ERROR_IO_PENDING\":                             reflect.ValueOf(syscall.ERROR_IO_PENDING),\n\t\t\"ERROR_MOD_NOT_FOUND\":                          reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND),\n\t\t\"ERROR_MORE_DATA\":                              reflect.ValueOf(syscall.ERROR_MORE_DATA),\n\t\t\"ERROR_NETNAME_DELETED\":                        reflect.ValueOf(syscall.ERROR_NETNAME_DELETED),\n\t\t\"ERROR_NOT_FOUND\":                              reflect.ValueOf(syscall.ERROR_NOT_FOUND),\n\t\t\"ERROR_NO_MORE_FILES\":                          reflect.ValueOf(syscall.ERROR_NO_MORE_FILES),\n\t\t\"ERROR_OPERATION_ABORTED\":                      reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED),\n\t\t\"ERROR_PATH_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND),\n\t\t\"ERROR_PRIVILEGE_NOT_HELD\":                     reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD),\n\t\t\"ERROR_PROC_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND),\n\t\t\"ESHUTDOWN\":                                    reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                              reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                                       reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                                        reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                                       reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                                       reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                                     reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETIME\":                                        reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                                    reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                                 reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                                      reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                                      reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                                      reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                                       reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWINDOWS\":                                     reflect.ValueOf(syscall.EWINDOWS),\n\t\t\"EWOULDBLOCK\":                                  reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                                        reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                                       reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":                                      reflect.ValueOf(syscall.Environ),\n\t\t\"EscapeArg\":                                    reflect.ValueOf(syscall.EscapeArg),\n\t\t\"FILE_ACTION_ADDED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_ACTION_MODIFIED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"FILE_ACTION_REMOVED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_ACTION_RENAMED_NEW_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"FILE_ACTION_RENAMED_OLD_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_APPEND_DATA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_ARCHIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_DIRECTORY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_HIDDEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_NORMAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_READONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_REPARSE_POINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_SYSTEM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_BEGIN\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"FILE_CURRENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_END\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_FLAG_BACKUP_SEMANTICS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"FILE_FLAG_OPEN_REPARSE_POINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"FILE_FLAG_OVERLAPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"FILE_LIST_DIRECTORY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_MAP_COPY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_MAP_EXECUTE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_MAP_READ\":                                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_MAP_WRITE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_ATTRIBUTES\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_CREATION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_DIR_NAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_FILE_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_LAST_ACCESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_LAST_WRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_SIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"FILE_SHARE_DELETE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_SHARE_READ\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_SHARE_WRITE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_SKIP_COMPLETION_PORT_ON_SUCCESS\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_SKIP_SET_EVENT_ON_HANDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_TYPE_CHAR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_TYPE_DISK\":                               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_TYPE_PIPE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"FILE_TYPE_REMOTE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"FILE_TYPE_UNKNOWN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"FILE_WRITE_ATTRIBUTES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_ALLOCATE_BUFFER\":               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_ARGUMENT_ARRAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_HMODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_STRING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_SYSTEM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_IGNORE_INSERTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_MAX_WIDTH_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"FSCTL_GET_REPARSE_POINT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"589992\", token.INT, 0)),\n\t\t\"Fchdir\":                                       reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                                       reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                                       reflect.ValueOf(syscall.Fchown),\n\t\t\"FindClose\":                                    reflect.ValueOf(syscall.FindClose),\n\t\t\"FindFirstFile\":                                reflect.ValueOf(syscall.FindFirstFile),\n\t\t\"FindNextFile\":                                 reflect.ValueOf(syscall.FindNextFile),\n\t\t\"FlushFileBuffers\":                             reflect.ValueOf(syscall.FlushFileBuffers),\n\t\t\"FlushViewOfFile\":                              reflect.ValueOf(syscall.FlushViewOfFile),\n\t\t\"ForkLock\":                                     reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"FormatMessage\":                                reflect.ValueOf(syscall.FormatMessage),\n\t\t\"FreeAddrInfoW\":                                reflect.ValueOf(syscall.FreeAddrInfoW),\n\t\t\"FreeEnvironmentStrings\":                       reflect.ValueOf(syscall.FreeEnvironmentStrings),\n\t\t\"FreeLibrary\":                                  reflect.ValueOf(syscall.FreeLibrary),\n\t\t\"Fsync\":                                        reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                                    reflect.ValueOf(syscall.Ftruncate),\n\t\t\"FullPath\":                                     reflect.ValueOf(syscall.FullPath),\n\t\t\"GENERIC_ALL\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"GENERIC_EXECUTE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"GENERIC_READ\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"GENERIC_WRITE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"GetAcceptExSockaddrs\":                         reflect.ValueOf(syscall.GetAcceptExSockaddrs),\n\t\t\"GetAdaptersInfo\":                              reflect.ValueOf(syscall.GetAdaptersInfo),\n\t\t\"GetAddrInfoW\":                                 reflect.ValueOf(syscall.GetAddrInfoW),\n\t\t\"GetCommandLine\":                               reflect.ValueOf(syscall.GetCommandLine),\n\t\t\"GetComputerName\":                              reflect.ValueOf(syscall.GetComputerName),\n\t\t\"GetConsoleMode\":                               reflect.ValueOf(syscall.GetConsoleMode),\n\t\t\"GetCurrentDirectory\":                          reflect.ValueOf(syscall.GetCurrentDirectory),\n\t\t\"GetCurrentProcess\":                            reflect.ValueOf(syscall.GetCurrentProcess),\n\t\t\"GetEnvironmentStrings\":                        reflect.ValueOf(syscall.GetEnvironmentStrings),\n\t\t\"GetEnvironmentVariable\":                       reflect.ValueOf(syscall.GetEnvironmentVariable),\n\t\t\"GetFileAttributes\":                            reflect.ValueOf(syscall.GetFileAttributes),\n\t\t\"GetFileAttributesEx\":                          reflect.ValueOf(syscall.GetFileAttributesEx),\n\t\t\"GetFileExInfoStandard\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"GetFileExMaxInfoLevel\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"GetFileInformationByHandle\":                   reflect.ValueOf(syscall.GetFileInformationByHandle),\n\t\t\"GetFileType\":                                  reflect.ValueOf(syscall.GetFileType),\n\t\t\"GetFullPathName\":                              reflect.ValueOf(syscall.GetFullPathName),\n\t\t\"GetHostByName\":                                reflect.ValueOf(syscall.GetHostByName),\n\t\t\"GetIfEntry\":                                   reflect.ValueOf(syscall.GetIfEntry),\n\t\t\"GetLastError\":                                 reflect.ValueOf(syscall.GetLastError),\n\t\t\"GetLengthSid\":                                 reflect.ValueOf(syscall.GetLengthSid),\n\t\t\"GetLongPathName\":                              reflect.ValueOf(syscall.GetLongPathName),\n\t\t\"GetProcAddress\":                               reflect.ValueOf(syscall.GetProcAddress),\n\t\t\"GetProcessTimes\":                              reflect.ValueOf(syscall.GetProcessTimes),\n\t\t\"GetProtoByName\":                               reflect.ValueOf(syscall.GetProtoByName),\n\t\t\"GetQueuedCompletionStatus\":                    reflect.ValueOf(syscall.GetQueuedCompletionStatus),\n\t\t\"GetServByName\":                                reflect.ValueOf(syscall.GetServByName),\n\t\t\"GetShortPathName\":                             reflect.ValueOf(syscall.GetShortPathName),\n\t\t\"GetStartupInfo\":                               reflect.ValueOf(syscall.GetStartupInfo),\n\t\t\"GetStdHandle\":                                 reflect.ValueOf(syscall.GetStdHandle),\n\t\t\"GetSystemTimeAsFileTime\":                      reflect.ValueOf(syscall.GetSystemTimeAsFileTime),\n\t\t\"GetTempPath\":                                  reflect.ValueOf(syscall.GetTempPath),\n\t\t\"GetTimeZoneInformation\":                       reflect.ValueOf(syscall.GetTimeZoneInformation),\n\t\t\"GetTokenInformation\":                          reflect.ValueOf(syscall.GetTokenInformation),\n\t\t\"GetUserNameEx\":                                reflect.ValueOf(syscall.GetUserNameEx),\n\t\t\"GetUserProfileDirectory\":                      reflect.ValueOf(syscall.GetUserProfileDirectory),\n\t\t\"GetVersion\":                                   reflect.ValueOf(syscall.GetVersion),\n\t\t\"Getegid\":                                      reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                                       reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                                      reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                                       reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                                    reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                                  reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                                  reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpid\":                                       reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                                      reflect.ValueOf(syscall.Getppid),\n\t\t\"Getsockname\":                                  reflect.ValueOf(syscall.Getsockname),\n\t\t\"Getsockopt\":                                   reflect.ValueOf(syscall.Getsockopt),\n\t\t\"GetsockoptInt\":                                reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                                 reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                                       reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                                        reflect.ValueOf(syscall.Getwd),\n\t\t\"HANDLE_FLAG_INHERIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"HKEY_CLASSES_ROOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"HKEY_CURRENT_CONFIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483653\", token.INT, 0)),\n\t\t\"HKEY_CURRENT_USER\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483649\", token.INT, 0)),\n\t\t\"HKEY_DYN_DATA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2147483654\", token.INT, 0)),\n\t\t\"HKEY_LOCAL_MACHINE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483650\", token.INT, 0)),\n\t\t\"HKEY_PERFORMANCE_DATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483652\", token.INT, 0)),\n\t\t\"HKEY_USERS\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483651\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_POINTTOPOINT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_UP\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNORE\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"INFINITE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"INVALID_FILE_ATTRIBUTES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"IOC_IN\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IOC_INOUT\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"IOC_OUT\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IOC_VENDOR\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"402653184\", token.INT, 0)),\n\t\t\"IOC_WS2\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"IO_REPARSE_TAG_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2684354572\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_TOS\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                              reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InvalidHandle\":                                reflect.ValueOf(syscall.InvalidHandle),\n\t\t\"KEY_ALL_ACCESS\":                               reflect.ValueOf(constant.MakeFromLiteral(\"983103\", token.INT, 0)),\n\t\t\"KEY_CREATE_LINK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"KEY_CREATE_SUB_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"KEY_ENUMERATE_SUB_KEYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"KEY_EXECUTE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"131097\", token.INT, 0)),\n\t\t\"KEY_NOTIFY\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"KEY_QUERY_VALUE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"KEY_READ\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"131097\", token.INT, 0)),\n\t\t\"KEY_SET_VALUE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"KEY_WOW64_32KEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"KEY_WOW64_64KEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"KEY_WRITE\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"131078\", token.INT, 0)),\n\t\t\"LANG_ENGLISH\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"LAYERED_PROTOCOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Lchown\":                                       reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                                         reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                                       reflect.ValueOf(syscall.Listen),\n\t\t\"LoadCancelIoEx\":                               reflect.ValueOf(syscall.LoadCancelIoEx),\n\t\t\"LoadConnectEx\":                                reflect.ValueOf(syscall.LoadConnectEx),\n\t\t\"LoadCreateSymbolicLink\":                       reflect.ValueOf(syscall.LoadCreateSymbolicLink),\n\t\t\"LoadDLL\":                                      reflect.ValueOf(syscall.LoadDLL),\n\t\t\"LoadGetAddrInfo\":                              reflect.ValueOf(syscall.LoadGetAddrInfo),\n\t\t\"LoadLibrary\":                                  reflect.ValueOf(syscall.LoadLibrary),\n\t\t\"LoadSetFileCompletionNotificationModes\":       reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes),\n\t\t\"LocalFree\":                                    reflect.ValueOf(syscall.LocalFree),\n\t\t\"LookupAccountName\":                            reflect.ValueOf(syscall.LookupAccountName),\n\t\t\"LookupAccountSid\":                             reflect.ValueOf(syscall.LookupAccountSid),\n\t\t\"LookupSID\":                                    reflect.ValueOf(syscall.LookupSID),\n\t\t\"MAXIMUM_REPARSE_DATA_BUFFER_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAXLEN_IFDESCR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAXLEN_PHYSADDR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_ADDRESS_LENGTH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_DESCRIPTION_LENGTH\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_NAME_LENGTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAX_COMPUTERNAME_LENGTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MAX_INTERFACE_NAME_LEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAX_LONG_PATH\":                                reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAX_PATH\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"MAX_PROTOCOL_CHAIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MapViewOfFile\":                                reflect.ValueOf(syscall.MapViewOfFile),\n\t\t\"MaxTokenInfoClass\":                            reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"Mkdir\":                                        reflect.ValueOf(syscall.Mkdir),\n\t\t\"MoveFile\":                                     reflect.ValueOf(syscall.MoveFile),\n\t\t\"MustLoadDLL\":                                  reflect.ValueOf(syscall.MustLoadDLL),\n\t\t\"NameCanonical\":                                reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NameCanonicalEx\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NameDisplay\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NameDnsDomain\":                                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NameFullyQualifiedDN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NameSamCompatible\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NameServicePrincipal\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NameUniqueId\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NameUnknown\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NameUserPrincipal\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NetApiBufferFree\":                             reflect.ValueOf(syscall.NetApiBufferFree),\n\t\t\"NetGetJoinInformation\":                        reflect.ValueOf(syscall.NetGetJoinInformation),\n\t\t\"NetSetupDomainName\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NetSetupUnjoined\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NetSetupUnknownStatus\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NetSetupWorkgroupName\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NetUserGetInfo\":                               reflect.ValueOf(syscall.NetUserGetInfo),\n\t\t\"NewCallback\":                                  reflect.ValueOf(syscall.NewCallback),\n\t\t\"NewCallbackCDecl\":                             reflect.ValueOf(syscall.NewCallbackCDecl),\n\t\t\"NewLazyDLL\":                                   reflect.ValueOf(syscall.NewLazyDLL),\n\t\t\"NsecToFiletime\":                               reflect.ValueOf(syscall.NsecToFiletime),\n\t\t\"NsecToTimespec\":                               reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                                reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"Ntohs\":                                        reflect.ValueOf(syscall.Ntohs),\n\t\t\"OID_PKIX_KP_SERVER_AUTH\":                      reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(),\n\t\t\"OID_SERVER_GATED_CRYPTO\":                      reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(),\n\t\t\"OID_SGC_NETSCAPE\":                             reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(),\n\t\t\"OPEN_ALWAYS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"OPEN_EXISTING\":                                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_EXCL\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_RDONLY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SYNC\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_TRUNC\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                                         reflect.ValueOf(syscall.Open),\n\t\t\"OpenCurrentProcessToken\":                      reflect.ValueOf(syscall.OpenCurrentProcessToken),\n\t\t\"OpenProcess\":                                  reflect.ValueOf(syscall.OpenProcess),\n\t\t\"OpenProcessToken\":                             reflect.ValueOf(syscall.OpenProcessToken),\n\t\t\"PAGE_EXECUTE_READ\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PAGE_EXECUTE_READWRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PAGE_EXECUTE_WRITECOPY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PAGE_READONLY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PAGE_READWRITE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PAGE_WRITECOPY\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PFL_HIDDEN\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PFL_MATCHES_PROTOCOL_ZERO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PFL_MULTIPLE_PROTO_ENTRIES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PFL_NETWORKDIRECT_PROVIDER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PFL_RECOMMENDED_PROTO_ENTRY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PKCS_7_ASN_ENCODING\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PROCESS_QUERY_INFORMATION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"PROCESS_TERMINATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROV_DH_SCHANNEL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PROV_DSS\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PROV_DSS_DH\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PROV_EC_ECDSA_FULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PROV_EC_ECDSA_SIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PROV_EC_ECNRA_FULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PROV_EC_ECNRA_SIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PROV_FORTEZZA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROV_INTEL_SEC\":                               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PROV_MS_EXCHANGE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PROV_REPLACE_OWF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PROV_RNG\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PROV_RSA_AES\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PROV_RSA_FULL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROV_RSA_SCHANNEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PROV_RSA_SIG\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROV_SPYRUS_LYNKS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PROV_SSL\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"Pipe\":                                         reflect.ValueOf(syscall.Pipe),\n\t\t\"PostQueuedCompletionStatus\":                   reflect.ValueOf(syscall.PostQueuedCompletionStatus),\n\t\t\"Process32First\":                               reflect.ValueOf(syscall.Process32First),\n\t\t\"Process32Next\":                                reflect.ValueOf(syscall.Process32Next),\n\t\t\"REG_BINARY\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"REG_DWORD\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"REG_DWORD_BIG_ENDIAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"REG_DWORD_LITTLE_ENDIAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"REG_EXPAND_SZ\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"REG_FULL_RESOURCE_DESCRIPTOR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"REG_LINK\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"REG_MULTI_SZ\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"REG_NONE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"REG_QWORD\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"REG_QWORD_LITTLE_ENDIAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"REG_RESOURCE_LIST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"REG_RESOURCE_REQUIREMENTS_LIST\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"REG_SZ\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                                         reflect.ValueOf(syscall.Read),\n\t\t\"ReadConsole\":                                  reflect.ValueOf(syscall.ReadConsole),\n\t\t\"ReadDirectoryChanges\":                         reflect.ValueOf(syscall.ReadDirectoryChanges),\n\t\t\"ReadFile\":                                     reflect.ValueOf(syscall.ReadFile),\n\t\t\"Readlink\":                                     reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                                     reflect.ValueOf(syscall.Recvfrom),\n\t\t\"RegCloseKey\":                                  reflect.ValueOf(syscall.RegCloseKey),\n\t\t\"RegEnumKeyEx\":                                 reflect.ValueOf(syscall.RegEnumKeyEx),\n\t\t\"RegOpenKeyEx\":                                 reflect.ValueOf(syscall.RegOpenKeyEx),\n\t\t\"RegQueryInfoKey\":                              reflect.ValueOf(syscall.RegQueryInfoKey),\n\t\t\"RegQueryValueEx\":                              reflect.ValueOf(syscall.RegQueryValueEx),\n\t\t\"RemoveDirectory\":                              reflect.ValueOf(syscall.RemoveDirectory),\n\t\t\"Rename\":                                       reflect.ValueOf(syscall.Rename),\n\t\t\"Rmdir\":                                        reflect.ValueOf(syscall.Rmdir),\n\t\t\"SHUT_RD\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                                      reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                                      reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                                       reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGFPE\":                                       reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                                       reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                                       reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                                       reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGKILL\":                                      reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                                      reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGQUIT\":                                      reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                                      reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGTERM\":                                      reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                                      reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIO_GET_EXTENSION_FUNCTION_POINTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3355443206\", token.INT, 0)),\n\t\t\"SIO_GET_INTERFACE_LIST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074033791\", token.INT, 0)),\n\t\t\"SIO_KEEPALIVE_VALS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2550136836\", token.INT, 0)),\n\t\t\"SIO_UDP_CONNRESET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2550136844\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"2147483647\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_UPDATE_ACCEPT_CONTEXT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28683\", token.INT, 0)),\n\t\t\"SO_UPDATE_CONNECT_CONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28688\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_ALL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2031616\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_EXECUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_REQUIRED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"983040\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STARTF_USESHOWWINDOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"STARTF_USESTDHANDLES\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"STD_ERROR_HANDLE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"-12\", token.INT, 0)),\n\t\t\"STD_INPUT_HANDLE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"STD_OUTPUT_HANDLE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"-11\", token.INT, 0)),\n\t\t\"SUBLANG_ENGLISH_US\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SW_FORCEMINIMIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SW_HIDE\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SW_MAXIMIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SW_MINIMIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SW_NORMAL\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SW_RESTORE\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SW_SHOW\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SW_SHOWDEFAULT\":                               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SW_SHOWMAXIMIZED\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SW_SHOWMINIMIZED\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SW_SHOWMINNOACTIVE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SW_SHOWNA\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SW_SHOWNOACTIVATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SW_SHOWNORMAL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYMBOLIC_LINK_FLAG_DIRECTORY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYNCHRONIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"S_IFBLK\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"S_IFREG\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_ISGID\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWRITE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                                         reflect.ValueOf(syscall.Seek),\n\t\t\"Sendto\":                                       reflect.ValueOf(syscall.Sendto),\n\t\t\"SetCurrentDirectory\":                          reflect.ValueOf(syscall.SetCurrentDirectory),\n\t\t\"SetEndOfFile\":                                 reflect.ValueOf(syscall.SetEndOfFile),\n\t\t\"SetEnvironmentVariable\":                       reflect.ValueOf(syscall.SetEnvironmentVariable),\n\t\t\"SetFileAttributes\":                            reflect.ValueOf(syscall.SetFileAttributes),\n\t\t\"SetFileCompletionNotificationModes\":           reflect.ValueOf(syscall.SetFileCompletionNotificationModes),\n\t\t\"SetFilePointer\":                               reflect.ValueOf(syscall.SetFilePointer),\n\t\t\"SetFileTime\":                                  reflect.ValueOf(syscall.SetFileTime),\n\t\t\"SetHandleInformation\":                         reflect.ValueOf(syscall.SetHandleInformation),\n\t\t\"SetNonblock\":                                  reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setenv\":                                       reflect.ValueOf(syscall.Setenv),\n\t\t\"Setsockopt\":                                   reflect.ValueOf(syscall.Setsockopt),\n\t\t\"SetsockoptIPMreq\":                             reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                           reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":                          reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                                reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                             reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptTimeval\":                            reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"SidTypeAlias\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SidTypeComputer\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SidTypeDeletedAccount\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SidTypeDomain\":                                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SidTypeGroup\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SidTypeInvalid\":                               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SidTypeLabel\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SidTypeUnknown\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SidTypeUser\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SidTypeWellKnownGroup\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"Socket\":                                       reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                            reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Stderr\":                                       reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                                        reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                                       reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                                reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                              reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringToSid\":                                  reflect.ValueOf(syscall.StringToSid),\n\t\t\"StringToUTF16\":                                reflect.ValueOf(syscall.StringToUTF16),\n\t\t\"StringToUTF16Ptr\":                             reflect.ValueOf(syscall.StringToUTF16Ptr),\n\t\t\"Symlink\":                                      reflect.ValueOf(syscall.Symlink),\n\t\t\"TCP_NODELAY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TF_DISCONNECT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TF_REUSE_SOCKET\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TF_USE_DEFAULT_WORKER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TF_USE_KERNEL_APC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TF_USE_SYSTEM_THREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TF_WRITE_BEHIND\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TH32CS_INHERIT\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"TH32CS_SNAPALL\":                               reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TH32CS_SNAPHEAPLIST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TH32CS_SNAPMODULE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TH32CS_SNAPMODULE32\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TH32CS_SNAPPROCESS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TH32CS_SNAPTHREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_DAYLIGHT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_STANDARD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_UNKNOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_DEFAULT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_GROUPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_PRIVILEGES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_SESSIONID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TOKEN_ALL_ACCESS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"983551\", token.INT, 0)),\n\t\t\"TOKEN_ASSIGN_PRIMARY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TOKEN_DUPLICATE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TOKEN_EXECUTE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"TOKEN_IMPERSONATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TOKEN_QUERY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TOKEN_QUERY_SOURCE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TOKEN_READ\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"131080\", token.INT, 0)),\n\t\t\"TOKEN_WRITE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"131296\", token.INT, 0)),\n\t\t\"TRUNCATE_EXISTING\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TerminateProcess\":                             reflect.ValueOf(syscall.TerminateProcess),\n\t\t\"TimespecToNsec\":                               reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TokenAccessInformation\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TokenAuditPolicy\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TokenDefaultDacl\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TokenElevation\":                               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TokenElevationType\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TokenGroups\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TokenGroupsAndPrivileges\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TokenHasRestrictions\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TokenImpersonationLevel\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TokenIntegrityLevel\":                          reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"TokenLinkedToken\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TokenLogonSid\":                                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"TokenMandatoryPolicy\":                         reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"TokenOrigin\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TokenOwner\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TokenPrimaryGroup\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TokenPrivileges\":                              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TokenRestrictedSids\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TokenSandBoxInert\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TokenSessionId\":                               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TokenSessionReference\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TokenSource\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TokenStatistics\":                              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TokenType\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TokenUIAccess\":                                reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"TokenUser\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TokenVirtualizationAllowed\":                   reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TokenVirtualizationEnabled\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TranslateAccountName\":                         reflect.ValueOf(syscall.TranslateAccountName),\n\t\t\"TranslateName\":                                reflect.ValueOf(syscall.TranslateName),\n\t\t\"TransmitFile\":                                 reflect.ValueOf(syscall.TransmitFile),\n\t\t\"UNIX_PATH_MAX\":                                reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"USAGE_MATCH_TYPE_AND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"USAGE_MATCH_TYPE_OR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"UTF16FromString\":                              reflect.ValueOf(syscall.UTF16FromString),\n\t\t\"UTF16PtrFromString\":                           reflect.ValueOf(syscall.UTF16PtrFromString),\n\t\t\"UTF16ToString\":                                reflect.ValueOf(syscall.UTF16ToString),\n\t\t\"Unlink\":                                       reflect.ValueOf(syscall.Unlink),\n\t\t\"UnmapViewOfFile\":                              reflect.ValueOf(syscall.UnmapViewOfFile),\n\t\t\"Unsetenv\":                                     reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                                       reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                                   reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VirtualLock\":                                  reflect.ValueOf(syscall.VirtualLock),\n\t\t\"VirtualUnlock\":                                reflect.ValueOf(syscall.VirtualUnlock),\n\t\t\"WAIT_ABANDONED\":                               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WAIT_FAILED\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"WAIT_OBJECT_0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"WAIT_TIMEOUT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"WSACleanup\":                                   reflect.ValueOf(syscall.WSACleanup),\n\t\t\"WSADESCRIPTION_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"WSAEACCES\":                                    reflect.ValueOf(syscall.WSAEACCES),\n\t\t\"WSAECONNABORTED\":                              reflect.ValueOf(syscall.WSAECONNABORTED),\n\t\t\"WSAECONNRESET\":                                reflect.ValueOf(syscall.WSAECONNRESET),\n\t\t\"WSAEnumProtocols\":                             reflect.ValueOf(syscall.WSAEnumProtocols),\n\t\t\"WSAID_CONNECTEX\":                              reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(),\n\t\t\"WSAIoctl\":                                     reflect.ValueOf(syscall.WSAIoctl),\n\t\t\"WSAPROTOCOL_LEN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"WSARecv\":                                      reflect.ValueOf(syscall.WSARecv),\n\t\t\"WSARecvFrom\":                                  reflect.ValueOf(syscall.WSARecvFrom),\n\t\t\"WSASYS_STATUS_LEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WSASend\":                                      reflect.ValueOf(syscall.WSASend),\n\t\t\"WSASendTo\":                                    reflect.ValueOf(syscall.WSASendTo),\n\t\t\"WSASendto\":                                    reflect.ValueOf(syscall.WSASendto),\n\t\t\"WSAStartup\":                                   reflect.ValueOf(syscall.WSAStartup),\n\t\t\"WaitForSingleObject\":                          reflect.ValueOf(syscall.WaitForSingleObject),\n\t\t\"Write\":                                        reflect.ValueOf(syscall.Write),\n\t\t\"WriteConsole\":                                 reflect.ValueOf(syscall.WriteConsole),\n\t\t\"WriteFile\":                                    reflect.ValueOf(syscall.WriteFile),\n\t\t\"X509_ASN_ENCODING\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"XP1_CONNECTIONLESS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"XP1_CONNECT_DATA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"XP1_DISCONNECT_DATA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"XP1_EXPEDITED_DATA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"XP1_GRACEFUL_CLOSE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"XP1_GUARANTEED_DELIVERY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"XP1_GUARANTEED_ORDER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"XP1_IFS_HANDLES\":                              reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"XP1_MESSAGE_ORIENTED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"XP1_MULTIPOINT_CONTROL_PLANE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"XP1_MULTIPOINT_DATA_PLANE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"XP1_PARTIAL_MESSAGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"XP1_PSEUDO_STREAM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"XP1_QOS_SUPPORTED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"XP1_SAN_SUPPORT_SDP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"XP1_SUPPORT_BROADCAST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"XP1_SUPPORT_MULTIPOINT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"XP1_UNI_RECV\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"XP1_UNI_SEND\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"AddrinfoW\":                   reflect.ValueOf((*syscall.AddrinfoW)(nil)),\n\t\t\"ByHandleFileInformation\":     reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)),\n\t\t\"CertChainContext\":            reflect.ValueOf((*syscall.CertChainContext)(nil)),\n\t\t\"CertChainElement\":            reflect.ValueOf((*syscall.CertChainElement)(nil)),\n\t\t\"CertChainPara\":               reflect.ValueOf((*syscall.CertChainPara)(nil)),\n\t\t\"CertChainPolicyPara\":         reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)),\n\t\t\"CertChainPolicyStatus\":       reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)),\n\t\t\"CertContext\":                 reflect.ValueOf((*syscall.CertContext)(nil)),\n\t\t\"CertEnhKeyUsage\":             reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)),\n\t\t\"CertInfo\":                    reflect.ValueOf((*syscall.CertInfo)(nil)),\n\t\t\"CertRevocationCrlInfo\":       reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)),\n\t\t\"CertRevocationInfo\":          reflect.ValueOf((*syscall.CertRevocationInfo)(nil)),\n\t\t\"CertSimpleChain\":             reflect.ValueOf((*syscall.CertSimpleChain)(nil)),\n\t\t\"CertTrustListInfo\":           reflect.ValueOf((*syscall.CertTrustListInfo)(nil)),\n\t\t\"CertTrustStatus\":             reflect.ValueOf((*syscall.CertTrustStatus)(nil)),\n\t\t\"CertUsageMatch\":              reflect.ValueOf((*syscall.CertUsageMatch)(nil)),\n\t\t\"Conn\":                        reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"DLL\":                         reflect.ValueOf((*syscall.DLL)(nil)),\n\t\t\"DLLError\":                    reflect.ValueOf((*syscall.DLLError)(nil)),\n\t\t\"DNSMXData\":                   reflect.ValueOf((*syscall.DNSMXData)(nil)),\n\t\t\"DNSPTRData\":                  reflect.ValueOf((*syscall.DNSPTRData)(nil)),\n\t\t\"DNSRecord\":                   reflect.ValueOf((*syscall.DNSRecord)(nil)),\n\t\t\"DNSSRVData\":                  reflect.ValueOf((*syscall.DNSSRVData)(nil)),\n\t\t\"DNSTXTData\":                  reflect.ValueOf((*syscall.DNSTXTData)(nil)),\n\t\t\"Errno\":                       reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FileNotifyInformation\":       reflect.ValueOf((*syscall.FileNotifyInformation)(nil)),\n\t\t\"Filetime\":                    reflect.ValueOf((*syscall.Filetime)(nil)),\n\t\t\"GUID\":                        reflect.ValueOf((*syscall.GUID)(nil)),\n\t\t\"Handle\":                      reflect.ValueOf((*syscall.Handle)(nil)),\n\t\t\"Hostent\":                     reflect.ValueOf((*syscall.Hostent)(nil)),\n\t\t\"IPMreq\":                      reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6Mreq\":                    reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"InterfaceInfo\":               reflect.ValueOf((*syscall.InterfaceInfo)(nil)),\n\t\t\"IpAdapterInfo\":               reflect.ValueOf((*syscall.IpAdapterInfo)(nil)),\n\t\t\"IpAddrString\":                reflect.ValueOf((*syscall.IpAddrString)(nil)),\n\t\t\"IpAddressString\":             reflect.ValueOf((*syscall.IpAddressString)(nil)),\n\t\t\"IpMaskString\":                reflect.ValueOf((*syscall.IpMaskString)(nil)),\n\t\t\"LazyDLL\":                     reflect.ValueOf((*syscall.LazyDLL)(nil)),\n\t\t\"LazyProc\":                    reflect.ValueOf((*syscall.LazyProc)(nil)),\n\t\t\"Linger\":                      reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"MibIfRow\":                    reflect.ValueOf((*syscall.MibIfRow)(nil)),\n\t\t\"Overlapped\":                  reflect.ValueOf((*syscall.Overlapped)(nil)),\n\t\t\"Pointer\":                     reflect.ValueOf((*syscall.Pointer)(nil)),\n\t\t\"Proc\":                        reflect.ValueOf((*syscall.Proc)(nil)),\n\t\t\"ProcAttr\":                    reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"ProcessEntry32\":              reflect.ValueOf((*syscall.ProcessEntry32)(nil)),\n\t\t\"ProcessInformation\":          reflect.ValueOf((*syscall.ProcessInformation)(nil)),\n\t\t\"Protoent\":                    reflect.ValueOf((*syscall.Protoent)(nil)),\n\t\t\"RawConn\":                     reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                 reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":              reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":            reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":            reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":             reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rusage\":                      reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"SID\":                         reflect.ValueOf((*syscall.SID)(nil)),\n\t\t\"SIDAndAttributes\":            reflect.ValueOf((*syscall.SIDAndAttributes)(nil)),\n\t\t\"SSLExtraCertChainPolicyPara\": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)),\n\t\t\"SecurityAttributes\":          reflect.ValueOf((*syscall.SecurityAttributes)(nil)),\n\t\t\"Servent\":                     reflect.ValueOf((*syscall.Servent)(nil)),\n\t\t\"Signal\":                      reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                    reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrGen\":                 reflect.ValueOf((*syscall.SockaddrGen)(nil)),\n\t\t\"SockaddrInet4\":               reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":               reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"StartupInfo\":                 reflect.ValueOf((*syscall.StartupInfo)(nil)),\n\t\t\"SysProcAttr\":                 reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Systemtime\":                  reflect.ValueOf((*syscall.Systemtime)(nil)),\n\t\t\"TCPKeepalive\":                reflect.ValueOf((*syscall.TCPKeepalive)(nil)),\n\t\t\"Timespec\":                    reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                     reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timezoneinformation\":         reflect.ValueOf((*syscall.Timezoneinformation)(nil)),\n\t\t\"Token\":                       reflect.ValueOf((*syscall.Token)(nil)),\n\t\t\"Tokenprimarygroup\":           reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)),\n\t\t\"Tokenuser\":                   reflect.ValueOf((*syscall.Tokenuser)(nil)),\n\t\t\"TransmitFileBuffers\":         reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)),\n\t\t\"UserInfo10\":                  reflect.ValueOf((*syscall.UserInfo10)(nil)),\n\t\t\"WSABuf\":                      reflect.ValueOf((*syscall.WSABuf)(nil)),\n\t\t\"WSAData\":                     reflect.ValueOf((*syscall.WSAData)(nil)),\n\t\t\"WSAProtocolChain\":            reflect.ValueOf((*syscall.WSAProtocolChain)(nil)),\n\t\t\"WSAProtocolInfo\":             reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)),\n\t\t\"WaitStatus\":                  reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\t\t\"Win32FileAttributeData\":      reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)),\n\t\t\"Win32finddata\":               reflect.ValueOf((*syscall.Win32finddata)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/go1_22_syscall_windows_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage syscall\n\nimport (\n\t\"go/constant\"\n\t\"go/token\"\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AF_INET\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AF_INET6\":                            reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"AF_NETBIOS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"AF_UNIX\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AF_UNSPEC\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"AI_CANONNAME\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"AI_NUMERICHOST\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"AI_PASSIVE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"APPLICATION_ERROR\":                   reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"AUTHTYPE_CLIENT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"AUTHTYPE_SERVER\":                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"Accept\":                              reflect.ValueOf(syscall.Accept),\n\t\t\"AcceptEx\":                            reflect.ValueOf(syscall.AcceptEx),\n\t\t\"BASE_PROTOCOL\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Bind\":                                reflect.ValueOf(syscall.Bind),\n\t\t\"BytePtrFromString\":                   reflect.ValueOf(syscall.BytePtrFromString),\n\t\t\"ByteSliceFromString\":                 reflect.ValueOf(syscall.ByteSliceFromString),\n\t\t\"CERT_CHAIN_POLICY_AUTHENTICODE\":      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_AUTHENTICODE_TS\":   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_BASE\":              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_BASIC_CONSTRAINTS\": reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_EV\":                reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_MICROSOFT_ROOT\":    reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_NT_AUTH\":           reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"CERT_CHAIN_POLICY_SSL\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_E_CN_NO_MATCH\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2148204815\", token.INT, 0)),\n\t\t\"CERT_E_EXPIRED\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148204801\", token.INT, 0)),\n\t\t\"CERT_E_PURPOSE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2148204806\", token.INT, 0)),\n\t\t\"CERT_E_ROLE\":                         reflect.ValueOf(constant.MakeFromLiteral(\"2148204803\", token.INT, 0)),\n\t\t\"CERT_E_UNTRUSTEDROOT\":                reflect.ValueOf(constant.MakeFromLiteral(\"2148204809\", token.INT, 0)),\n\t\t\"CERT_STORE_ADD_ALWAYS\":               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG\":  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_STORE_PROV_MEMORY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT\":      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT\":   reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT\": reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT\":    reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT\": reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_BASIC_CONSTRAINTS\":         reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_EXTENSION\":                 reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_NAME_CONSTRAINTS\":          reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"CERT_TRUST_INVALID_POLICY_CONSTRAINTS\":        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_CYCLIC\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_EXPLICIT_DISTRUST\":              reflect.ValueOf(constant.MakeFromLiteral(\"67108864\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_SIGNATURE_VALID\":            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_TIME_VALID\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_NOT_VALID_FOR_USAGE\":            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_OFFLINE_REVOCATION\":             reflect.ValueOf(constant.MakeFromLiteral(\"16777216\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_REVOKED\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"CERT_TRUST_IS_UNTRUSTED_ROOT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CERT_TRUST_NO_ERROR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY\":          reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"CERT_TRUST_REVOCATION_STATUS_UNKNOWN\":         reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CREATE_ALWAYS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CREATE_NEW\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CREATE_NEW_PROCESS_GROUP\":                     reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"CREATE_UNICODE_ENVIRONMENT\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"CRYPT_DEFAULT_CONTAINER_OPTIONAL\":             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"CRYPT_DELETEKEYSET\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"CRYPT_MACHINE_KEYSET\":                         reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"CRYPT_NEWKEYSET\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"CRYPT_SILENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"CRYPT_VERIFYCONTEXT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"4026531840\", token.INT, 0)),\n\t\t\"CTRL_BREAK_EVENT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"CTRL_CLOSE_EVENT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"CTRL_C_EVENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"CTRL_LOGOFF_EVENT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"CTRL_SHUTDOWN_EVENT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"CancelIo\":                                     reflect.ValueOf(syscall.CancelIo),\n\t\t\"CancelIoEx\":                                   reflect.ValueOf(syscall.CancelIoEx),\n\t\t\"CertAddCertificateContextToStore\":             reflect.ValueOf(syscall.CertAddCertificateContextToStore),\n\t\t\"CertCloseStore\":                               reflect.ValueOf(syscall.CertCloseStore),\n\t\t\"CertCreateCertificateContext\":                 reflect.ValueOf(syscall.CertCreateCertificateContext),\n\t\t\"CertEnumCertificatesInStore\":                  reflect.ValueOf(syscall.CertEnumCertificatesInStore),\n\t\t\"CertFreeCertificateChain\":                     reflect.ValueOf(syscall.CertFreeCertificateChain),\n\t\t\"CertFreeCertificateContext\":                   reflect.ValueOf(syscall.CertFreeCertificateContext),\n\t\t\"CertGetCertificateChain\":                      reflect.ValueOf(syscall.CertGetCertificateChain),\n\t\t\"CertOpenStore\":                                reflect.ValueOf(syscall.CertOpenStore),\n\t\t\"CertOpenSystemStore\":                          reflect.ValueOf(syscall.CertOpenSystemStore),\n\t\t\"CertVerifyCertificateChainPolicy\":             reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy),\n\t\t\"Chdir\":                                        reflect.ValueOf(syscall.Chdir),\n\t\t\"Chmod\":                                        reflect.ValueOf(syscall.Chmod),\n\t\t\"Chown\":                                        reflect.ValueOf(syscall.Chown),\n\t\t\"Clearenv\":                                     reflect.ValueOf(syscall.Clearenv),\n\t\t\"Close\":                                        reflect.ValueOf(syscall.Close),\n\t\t\"CloseHandle\":                                  reflect.ValueOf(syscall.CloseHandle),\n\t\t\"CloseOnExec\":                                  reflect.ValueOf(syscall.CloseOnExec),\n\t\t\"Closesocket\":                                  reflect.ValueOf(syscall.Closesocket),\n\t\t\"CommandLineToArgv\":                            reflect.ValueOf(syscall.CommandLineToArgv),\n\t\t\"ComputerName\":                                 reflect.ValueOf(syscall.ComputerName),\n\t\t\"Connect\":                                      reflect.ValueOf(syscall.Connect),\n\t\t\"ConnectEx\":                                    reflect.ValueOf(syscall.ConnectEx),\n\t\t\"ConvertSidToStringSid\":                        reflect.ValueOf(syscall.ConvertSidToStringSid),\n\t\t\"ConvertStringSidToSid\":                        reflect.ValueOf(syscall.ConvertStringSidToSid),\n\t\t\"CopySid\":                                      reflect.ValueOf(syscall.CopySid),\n\t\t\"CreateDirectory\":                              reflect.ValueOf(syscall.CreateDirectory),\n\t\t\"CreateFile\":                                   reflect.ValueOf(syscall.CreateFile),\n\t\t\"CreateFileMapping\":                            reflect.ValueOf(syscall.CreateFileMapping),\n\t\t\"CreateHardLink\":                               reflect.ValueOf(syscall.CreateHardLink),\n\t\t\"CreateIoCompletionPort\":                       reflect.ValueOf(syscall.CreateIoCompletionPort),\n\t\t\"CreatePipe\":                                   reflect.ValueOf(syscall.CreatePipe),\n\t\t\"CreateProcess\":                                reflect.ValueOf(syscall.CreateProcess),\n\t\t\"CreateProcessAsUser\":                          reflect.ValueOf(syscall.CreateProcessAsUser),\n\t\t\"CreateSymbolicLink\":                           reflect.ValueOf(syscall.CreateSymbolicLink),\n\t\t\"CreateToolhelp32Snapshot\":                     reflect.ValueOf(syscall.CreateToolhelp32Snapshot),\n\t\t\"CryptAcquireContext\":                          reflect.ValueOf(syscall.CryptAcquireContext),\n\t\t\"CryptGenRandom\":                               reflect.ValueOf(syscall.CryptGenRandom),\n\t\t\"CryptReleaseContext\":                          reflect.ValueOf(syscall.CryptReleaseContext),\n\t\t\"DNS_INFO_NO_RECORDS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"9501\", token.INT, 0)),\n\t\t\"DNS_TYPE_A\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DNS_TYPE_A6\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"38\", token.INT, 0)),\n\t\t\"DNS_TYPE_AAAA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"DNS_TYPE_ADDRS\":                               reflect.ValueOf(constant.MakeFromLiteral(\"248\", token.INT, 0)),\n\t\t\"DNS_TYPE_AFSDB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"DNS_TYPE_ALL\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"DNS_TYPE_ANY\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"DNS_TYPE_ATMA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"34\", token.INT, 0)),\n\t\t\"DNS_TYPE_AXFR\":                                reflect.ValueOf(constant.MakeFromLiteral(\"252\", token.INT, 0)),\n\t\t\"DNS_TYPE_CERT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"37\", token.INT, 0)),\n\t\t\"DNS_TYPE_CNAME\":                               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"DNS_TYPE_DHCID\":                               reflect.ValueOf(constant.MakeFromLiteral(\"49\", token.INT, 0)),\n\t\t\"DNS_TYPE_DNAME\":                               reflect.ValueOf(constant.MakeFromLiteral(\"39\", token.INT, 0)),\n\t\t\"DNS_TYPE_DNSKEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"48\", token.INT, 0)),\n\t\t\"DNS_TYPE_DS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"43\", token.INT, 0)),\n\t\t\"DNS_TYPE_EID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"31\", token.INT, 0)),\n\t\t\"DNS_TYPE_GID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"102\", token.INT, 0)),\n\t\t\"DNS_TYPE_GPOS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"DNS_TYPE_HINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"DNS_TYPE_ISDN\":                                reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"DNS_TYPE_IXFR\":                                reflect.ValueOf(constant.MakeFromLiteral(\"251\", token.INT, 0)),\n\t\t\"DNS_TYPE_KEY\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"DNS_TYPE_KX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"36\", token.INT, 0)),\n\t\t\"DNS_TYPE_LOC\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"DNS_TYPE_MAILA\":                               reflect.ValueOf(constant.MakeFromLiteral(\"254\", token.INT, 0)),\n\t\t\"DNS_TYPE_MAILB\":                               reflect.ValueOf(constant.MakeFromLiteral(\"253\", token.INT, 0)),\n\t\t\"DNS_TYPE_MB\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"DNS_TYPE_MD\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DNS_TYPE_MF\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"DNS_TYPE_MG\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"DNS_TYPE_MINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"DNS_TYPE_MR\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"DNS_TYPE_MX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"DNS_TYPE_NAPTR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"35\", token.INT, 0)),\n\t\t\"DNS_TYPE_NBSTAT\":                              reflect.ValueOf(constant.MakeFromLiteral(\"65281\", token.INT, 0)),\n\t\t\"DNS_TYPE_NIMLOC\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"DNS_TYPE_NS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSAP\":                                reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSAPPTR\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"DNS_TYPE_NSEC\":                                reflect.ValueOf(constant.MakeFromLiteral(\"47\", token.INT, 0)),\n\t\t\"DNS_TYPE_NULL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"DNS_TYPE_NXT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"30\", token.INT, 0)),\n\t\t\"DNS_TYPE_OPT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"DNS_TYPE_PTR\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"DNS_TYPE_PX\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"DNS_TYPE_RP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"DNS_TYPE_RRSIG\":                               reflect.ValueOf(constant.MakeFromLiteral(\"46\", token.INT, 0)),\n\t\t\"DNS_TYPE_RT\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"DNS_TYPE_SIG\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"DNS_TYPE_SINK\":                                reflect.ValueOf(constant.MakeFromLiteral(\"40\", token.INT, 0)),\n\t\t\"DNS_TYPE_SOA\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"DNS_TYPE_SRV\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"33\", token.INT, 0)),\n\t\t\"DNS_TYPE_TEXT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"DNS_TYPE_TKEY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"249\", token.INT, 0)),\n\t\t\"DNS_TYPE_TSIG\":                                reflect.ValueOf(constant.MakeFromLiteral(\"250\", token.INT, 0)),\n\t\t\"DNS_TYPE_UID\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"101\", token.INT, 0)),\n\t\t\"DNS_TYPE_UINFO\":                               reflect.ValueOf(constant.MakeFromLiteral(\"100\", token.INT, 0)),\n\t\t\"DNS_TYPE_UNSPEC\":                              reflect.ValueOf(constant.MakeFromLiteral(\"103\", token.INT, 0)),\n\t\t\"DNS_TYPE_WINS\":                                reflect.ValueOf(constant.MakeFromLiteral(\"65281\", token.INT, 0)),\n\t\t\"DNS_TYPE_WINSR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"65282\", token.INT, 0)),\n\t\t\"DNS_TYPE_WKS\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"DNS_TYPE_X25\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"DUPLICATE_CLOSE_SOURCE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DUPLICATE_SAME_ACCESS\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DeleteFile\":                                   reflect.ValueOf(syscall.DeleteFile),\n\t\t\"DeviceIoControl\":                              reflect.ValueOf(syscall.DeviceIoControl),\n\t\t\"DnsNameCompare\":                               reflect.ValueOf(syscall.DnsNameCompare),\n\t\t\"DnsQuery\":                                     reflect.ValueOf(syscall.DnsQuery),\n\t\t\"DnsRecordListFree\":                            reflect.ValueOf(syscall.DnsRecordListFree),\n\t\t\"DnsSectionAdditional\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"DnsSectionAnswer\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"DnsSectionAuthority\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"DnsSectionQuestion\":                           reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"DuplicateHandle\":                              reflect.ValueOf(syscall.DuplicateHandle),\n\t\t\"E2BIG\":                                        reflect.ValueOf(syscall.E2BIG),\n\t\t\"EACCES\":                                       reflect.ValueOf(syscall.EACCES),\n\t\t\"EADDRINUSE\":                                   reflect.ValueOf(syscall.EADDRINUSE),\n\t\t\"EADDRNOTAVAIL\":                                reflect.ValueOf(syscall.EADDRNOTAVAIL),\n\t\t\"EADV\":                                         reflect.ValueOf(syscall.EADV),\n\t\t\"EAFNOSUPPORT\":                                 reflect.ValueOf(syscall.EAFNOSUPPORT),\n\t\t\"EAGAIN\":                                       reflect.ValueOf(syscall.EAGAIN),\n\t\t\"EALREADY\":                                     reflect.ValueOf(syscall.EALREADY),\n\t\t\"EBADE\":                                        reflect.ValueOf(syscall.EBADE),\n\t\t\"EBADF\":                                        reflect.ValueOf(syscall.EBADF),\n\t\t\"EBADFD\":                                       reflect.ValueOf(syscall.EBADFD),\n\t\t\"EBADMSG\":                                      reflect.ValueOf(syscall.EBADMSG),\n\t\t\"EBADR\":                                        reflect.ValueOf(syscall.EBADR),\n\t\t\"EBADRQC\":                                      reflect.ValueOf(syscall.EBADRQC),\n\t\t\"EBADSLT\":                                      reflect.ValueOf(syscall.EBADSLT),\n\t\t\"EBFONT\":                                       reflect.ValueOf(syscall.EBFONT),\n\t\t\"EBUSY\":                                        reflect.ValueOf(syscall.EBUSY),\n\t\t\"ECANCELED\":                                    reflect.ValueOf(syscall.ECANCELED),\n\t\t\"ECHILD\":                                       reflect.ValueOf(syscall.ECHILD),\n\t\t\"ECHRNG\":                                       reflect.ValueOf(syscall.ECHRNG),\n\t\t\"ECOMM\":                                        reflect.ValueOf(syscall.ECOMM),\n\t\t\"ECONNABORTED\":                                 reflect.ValueOf(syscall.ECONNABORTED),\n\t\t\"ECONNREFUSED\":                                 reflect.ValueOf(syscall.ECONNREFUSED),\n\t\t\"ECONNRESET\":                                   reflect.ValueOf(syscall.ECONNRESET),\n\t\t\"EDEADLK\":                                      reflect.ValueOf(syscall.EDEADLK),\n\t\t\"EDEADLOCK\":                                    reflect.ValueOf(syscall.EDEADLOCK),\n\t\t\"EDESTADDRREQ\":                                 reflect.ValueOf(syscall.EDESTADDRREQ),\n\t\t\"EDOM\":                                         reflect.ValueOf(syscall.EDOM),\n\t\t\"EDOTDOT\":                                      reflect.ValueOf(syscall.EDOTDOT),\n\t\t\"EDQUOT\":                                       reflect.ValueOf(syscall.EDQUOT),\n\t\t\"EEXIST\":                                       reflect.ValueOf(syscall.EEXIST),\n\t\t\"EFAULT\":                                       reflect.ValueOf(syscall.EFAULT),\n\t\t\"EFBIG\":                                        reflect.ValueOf(syscall.EFBIG),\n\t\t\"EHOSTDOWN\":                                    reflect.ValueOf(syscall.EHOSTDOWN),\n\t\t\"EHOSTUNREACH\":                                 reflect.ValueOf(syscall.EHOSTUNREACH),\n\t\t\"EIDRM\":                                        reflect.ValueOf(syscall.EIDRM),\n\t\t\"EILSEQ\":                                       reflect.ValueOf(syscall.EILSEQ),\n\t\t\"EINPROGRESS\":                                  reflect.ValueOf(syscall.EINPROGRESS),\n\t\t\"EINTR\":                                        reflect.ValueOf(syscall.EINTR),\n\t\t\"EINVAL\":                                       reflect.ValueOf(syscall.EINVAL),\n\t\t\"EIO\":                                          reflect.ValueOf(syscall.EIO),\n\t\t\"EISCONN\":                                      reflect.ValueOf(syscall.EISCONN),\n\t\t\"EISDIR\":                                       reflect.ValueOf(syscall.EISDIR),\n\t\t\"EISNAM\":                                       reflect.ValueOf(syscall.EISNAM),\n\t\t\"EKEYEXPIRED\":                                  reflect.ValueOf(syscall.EKEYEXPIRED),\n\t\t\"EKEYREJECTED\":                                 reflect.ValueOf(syscall.EKEYREJECTED),\n\t\t\"EKEYREVOKED\":                                  reflect.ValueOf(syscall.EKEYREVOKED),\n\t\t\"EL2HLT\":                                       reflect.ValueOf(syscall.EL2HLT),\n\t\t\"EL2NSYNC\":                                     reflect.ValueOf(syscall.EL2NSYNC),\n\t\t\"EL3HLT\":                                       reflect.ValueOf(syscall.EL3HLT),\n\t\t\"EL3RST\":                                       reflect.ValueOf(syscall.EL3RST),\n\t\t\"ELIBACC\":                                      reflect.ValueOf(syscall.ELIBACC),\n\t\t\"ELIBBAD\":                                      reflect.ValueOf(syscall.ELIBBAD),\n\t\t\"ELIBEXEC\":                                     reflect.ValueOf(syscall.ELIBEXEC),\n\t\t\"ELIBMAX\":                                      reflect.ValueOf(syscall.ELIBMAX),\n\t\t\"ELIBSCN\":                                      reflect.ValueOf(syscall.ELIBSCN),\n\t\t\"ELNRNG\":                                       reflect.ValueOf(syscall.ELNRNG),\n\t\t\"ELOOP\":                                        reflect.ValueOf(syscall.ELOOP),\n\t\t\"EMEDIUMTYPE\":                                  reflect.ValueOf(syscall.EMEDIUMTYPE),\n\t\t\"EMFILE\":                                       reflect.ValueOf(syscall.EMFILE),\n\t\t\"EMLINK\":                                       reflect.ValueOf(syscall.EMLINK),\n\t\t\"EMSGSIZE\":                                     reflect.ValueOf(syscall.EMSGSIZE),\n\t\t\"EMULTIHOP\":                                    reflect.ValueOf(syscall.EMULTIHOP),\n\t\t\"ENAMETOOLONG\":                                 reflect.ValueOf(syscall.ENAMETOOLONG),\n\t\t\"ENAVAIL\":                                      reflect.ValueOf(syscall.ENAVAIL),\n\t\t\"ENETDOWN\":                                     reflect.ValueOf(syscall.ENETDOWN),\n\t\t\"ENETRESET\":                                    reflect.ValueOf(syscall.ENETRESET),\n\t\t\"ENETUNREACH\":                                  reflect.ValueOf(syscall.ENETUNREACH),\n\t\t\"ENFILE\":                                       reflect.ValueOf(syscall.ENFILE),\n\t\t\"ENOANO\":                                       reflect.ValueOf(syscall.ENOANO),\n\t\t\"ENOBUFS\":                                      reflect.ValueOf(syscall.ENOBUFS),\n\t\t\"ENOCSI\":                                       reflect.ValueOf(syscall.ENOCSI),\n\t\t\"ENODATA\":                                      reflect.ValueOf(syscall.ENODATA),\n\t\t\"ENODEV\":                                       reflect.ValueOf(syscall.ENODEV),\n\t\t\"ENOENT\":                                       reflect.ValueOf(syscall.ENOENT),\n\t\t\"ENOEXEC\":                                      reflect.ValueOf(syscall.ENOEXEC),\n\t\t\"ENOKEY\":                                       reflect.ValueOf(syscall.ENOKEY),\n\t\t\"ENOLCK\":                                       reflect.ValueOf(syscall.ENOLCK),\n\t\t\"ENOLINK\":                                      reflect.ValueOf(syscall.ENOLINK),\n\t\t\"ENOMEDIUM\":                                    reflect.ValueOf(syscall.ENOMEDIUM),\n\t\t\"ENOMEM\":                                       reflect.ValueOf(syscall.ENOMEM),\n\t\t\"ENOMSG\":                                       reflect.ValueOf(syscall.ENOMSG),\n\t\t\"ENONET\":                                       reflect.ValueOf(syscall.ENONET),\n\t\t\"ENOPKG\":                                       reflect.ValueOf(syscall.ENOPKG),\n\t\t\"ENOPROTOOPT\":                                  reflect.ValueOf(syscall.ENOPROTOOPT),\n\t\t\"ENOSPC\":                                       reflect.ValueOf(syscall.ENOSPC),\n\t\t\"ENOSR\":                                        reflect.ValueOf(syscall.ENOSR),\n\t\t\"ENOSTR\":                                       reflect.ValueOf(syscall.ENOSTR),\n\t\t\"ENOSYS\":                                       reflect.ValueOf(syscall.ENOSYS),\n\t\t\"ENOTBLK\":                                      reflect.ValueOf(syscall.ENOTBLK),\n\t\t\"ENOTCONN\":                                     reflect.ValueOf(syscall.ENOTCONN),\n\t\t\"ENOTDIR\":                                      reflect.ValueOf(syscall.ENOTDIR),\n\t\t\"ENOTEMPTY\":                                    reflect.ValueOf(syscall.ENOTEMPTY),\n\t\t\"ENOTNAM\":                                      reflect.ValueOf(syscall.ENOTNAM),\n\t\t\"ENOTRECOVERABLE\":                              reflect.ValueOf(syscall.ENOTRECOVERABLE),\n\t\t\"ENOTSOCK\":                                     reflect.ValueOf(syscall.ENOTSOCK),\n\t\t\"ENOTSUP\":                                      reflect.ValueOf(syscall.ENOTSUP),\n\t\t\"ENOTTY\":                                       reflect.ValueOf(syscall.ENOTTY),\n\t\t\"ENOTUNIQ\":                                     reflect.ValueOf(syscall.ENOTUNIQ),\n\t\t\"ENXIO\":                                        reflect.ValueOf(syscall.ENXIO),\n\t\t\"EOPNOTSUPP\":                                   reflect.ValueOf(syscall.EOPNOTSUPP),\n\t\t\"EOVERFLOW\":                                    reflect.ValueOf(syscall.EOVERFLOW),\n\t\t\"EOWNERDEAD\":                                   reflect.ValueOf(syscall.EOWNERDEAD),\n\t\t\"EPERM\":                                        reflect.ValueOf(syscall.EPERM),\n\t\t\"EPFNOSUPPORT\":                                 reflect.ValueOf(syscall.EPFNOSUPPORT),\n\t\t\"EPIPE\":                                        reflect.ValueOf(syscall.EPIPE),\n\t\t\"EPROTO\":                                       reflect.ValueOf(syscall.EPROTO),\n\t\t\"EPROTONOSUPPORT\":                              reflect.ValueOf(syscall.EPROTONOSUPPORT),\n\t\t\"EPROTOTYPE\":                                   reflect.ValueOf(syscall.EPROTOTYPE),\n\t\t\"ERANGE\":                                       reflect.ValueOf(syscall.ERANGE),\n\t\t\"EREMCHG\":                                      reflect.ValueOf(syscall.EREMCHG),\n\t\t\"EREMOTE\":                                      reflect.ValueOf(syscall.EREMOTE),\n\t\t\"EREMOTEIO\":                                    reflect.ValueOf(syscall.EREMOTEIO),\n\t\t\"ERESTART\":                                     reflect.ValueOf(syscall.ERESTART),\n\t\t\"EROFS\":                                        reflect.ValueOf(syscall.EROFS),\n\t\t\"ERROR_ACCESS_DENIED\":                          reflect.ValueOf(syscall.ERROR_ACCESS_DENIED),\n\t\t\"ERROR_ALREADY_EXISTS\":                         reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS),\n\t\t\"ERROR_BROKEN_PIPE\":                            reflect.ValueOf(syscall.ERROR_BROKEN_PIPE),\n\t\t\"ERROR_BUFFER_OVERFLOW\":                        reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW),\n\t\t\"ERROR_DIR_NOT_EMPTY\":                          reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY),\n\t\t\"ERROR_ENVVAR_NOT_FOUND\":                       reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND),\n\t\t\"ERROR_FILE_EXISTS\":                            reflect.ValueOf(syscall.ERROR_FILE_EXISTS),\n\t\t\"ERROR_FILE_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND),\n\t\t\"ERROR_HANDLE_EOF\":                             reflect.ValueOf(syscall.ERROR_HANDLE_EOF),\n\t\t\"ERROR_INSUFFICIENT_BUFFER\":                    reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER),\n\t\t\"ERROR_IO_PENDING\":                             reflect.ValueOf(syscall.ERROR_IO_PENDING),\n\t\t\"ERROR_MOD_NOT_FOUND\":                          reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND),\n\t\t\"ERROR_MORE_DATA\":                              reflect.ValueOf(syscall.ERROR_MORE_DATA),\n\t\t\"ERROR_NETNAME_DELETED\":                        reflect.ValueOf(syscall.ERROR_NETNAME_DELETED),\n\t\t\"ERROR_NOT_FOUND\":                              reflect.ValueOf(syscall.ERROR_NOT_FOUND),\n\t\t\"ERROR_NO_MORE_FILES\":                          reflect.ValueOf(syscall.ERROR_NO_MORE_FILES),\n\t\t\"ERROR_OPERATION_ABORTED\":                      reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED),\n\t\t\"ERROR_PATH_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND),\n\t\t\"ERROR_PRIVILEGE_NOT_HELD\":                     reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD),\n\t\t\"ERROR_PROC_NOT_FOUND\":                         reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND),\n\t\t\"ESHUTDOWN\":                                    reflect.ValueOf(syscall.ESHUTDOWN),\n\t\t\"ESOCKTNOSUPPORT\":                              reflect.ValueOf(syscall.ESOCKTNOSUPPORT),\n\t\t\"ESPIPE\":                                       reflect.ValueOf(syscall.ESPIPE),\n\t\t\"ESRCH\":                                        reflect.ValueOf(syscall.ESRCH),\n\t\t\"ESRMNT\":                                       reflect.ValueOf(syscall.ESRMNT),\n\t\t\"ESTALE\":                                       reflect.ValueOf(syscall.ESTALE),\n\t\t\"ESTRPIPE\":                                     reflect.ValueOf(syscall.ESTRPIPE),\n\t\t\"ETIME\":                                        reflect.ValueOf(syscall.ETIME),\n\t\t\"ETIMEDOUT\":                                    reflect.ValueOf(syscall.ETIMEDOUT),\n\t\t\"ETOOMANYREFS\":                                 reflect.ValueOf(syscall.ETOOMANYREFS),\n\t\t\"ETXTBSY\":                                      reflect.ValueOf(syscall.ETXTBSY),\n\t\t\"EUCLEAN\":                                      reflect.ValueOf(syscall.EUCLEAN),\n\t\t\"EUNATCH\":                                      reflect.ValueOf(syscall.EUNATCH),\n\t\t\"EUSERS\":                                       reflect.ValueOf(syscall.EUSERS),\n\t\t\"EWINDOWS\":                                     reflect.ValueOf(syscall.EWINDOWS),\n\t\t\"EWOULDBLOCK\":                                  reflect.ValueOf(syscall.EWOULDBLOCK),\n\t\t\"EXDEV\":                                        reflect.ValueOf(syscall.EXDEV),\n\t\t\"EXFULL\":                                       reflect.ValueOf(syscall.EXFULL),\n\t\t\"Environ\":                                      reflect.ValueOf(syscall.Environ),\n\t\t\"EscapeArg\":                                    reflect.ValueOf(syscall.EscapeArg),\n\t\t\"FILE_ACTION_ADDED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_ACTION_MODIFIED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"FILE_ACTION_REMOVED\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_ACTION_RENAMED_NEW_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"FILE_ACTION_RENAMED_OLD_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_APPEND_DATA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_ARCHIVE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_DIRECTORY\":                     reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_HIDDEN\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_NORMAL\":                        reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_READONLY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_REPARSE_POINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FILE_ATTRIBUTE_SYSTEM\":                        reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_BEGIN\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"FILE_CURRENT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_END\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_FLAG_BACKUP_SEMANTICS\":                   reflect.ValueOf(constant.MakeFromLiteral(\"33554432\", token.INT, 0)),\n\t\t\"FILE_FLAG_OPEN_REPARSE_POINT\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2097152\", token.INT, 0)),\n\t\t\"FILE_FLAG_OVERLAPPED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"FILE_LIST_DIRECTORY\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_MAP_COPY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_MAP_EXECUTE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_MAP_READ\":                                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_MAP_WRITE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_ATTRIBUTES\":                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_CREATION\":                  reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_DIR_NAME\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_FILE_NAME\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_LAST_ACCESS\":               reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_LAST_WRITE\":                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"FILE_NOTIFY_CHANGE_SIZE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"FILE_SHARE_DELETE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"FILE_SHARE_READ\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_SHARE_WRITE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_SKIP_COMPLETION_PORT_ON_SUCCESS\":         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_SKIP_SET_EVENT_ON_HANDLE\":                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_TYPE_CHAR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"FILE_TYPE_DISK\":                               reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"FILE_TYPE_PIPE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"FILE_TYPE_REMOTE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"FILE_TYPE_UNKNOWN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"FILE_WRITE_ATTRIBUTES\":                        reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_ALLOCATE_BUFFER\":               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_ARGUMENT_ARRAY\":                reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_HMODULE\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_STRING\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_FROM_SYSTEM\":                   reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_IGNORE_INSERTS\":                reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"FORMAT_MESSAGE_MAX_WIDTH_MASK\":                reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"FSCTL_GET_REPARSE_POINT\":                      reflect.ValueOf(constant.MakeFromLiteral(\"589992\", token.INT, 0)),\n\t\t\"Fchdir\":                                       reflect.ValueOf(syscall.Fchdir),\n\t\t\"Fchmod\":                                       reflect.ValueOf(syscall.Fchmod),\n\t\t\"Fchown\":                                       reflect.ValueOf(syscall.Fchown),\n\t\t\"FindClose\":                                    reflect.ValueOf(syscall.FindClose),\n\t\t\"FindFirstFile\":                                reflect.ValueOf(syscall.FindFirstFile),\n\t\t\"FindNextFile\":                                 reflect.ValueOf(syscall.FindNextFile),\n\t\t\"FlushFileBuffers\":                             reflect.ValueOf(syscall.FlushFileBuffers),\n\t\t\"FlushViewOfFile\":                              reflect.ValueOf(syscall.FlushViewOfFile),\n\t\t\"ForkLock\":                                     reflect.ValueOf(&syscall.ForkLock).Elem(),\n\t\t\"FormatMessage\":                                reflect.ValueOf(syscall.FormatMessage),\n\t\t\"FreeAddrInfoW\":                                reflect.ValueOf(syscall.FreeAddrInfoW),\n\t\t\"FreeEnvironmentStrings\":                       reflect.ValueOf(syscall.FreeEnvironmentStrings),\n\t\t\"FreeLibrary\":                                  reflect.ValueOf(syscall.FreeLibrary),\n\t\t\"Fsync\":                                        reflect.ValueOf(syscall.Fsync),\n\t\t\"Ftruncate\":                                    reflect.ValueOf(syscall.Ftruncate),\n\t\t\"FullPath\":                                     reflect.ValueOf(syscall.FullPath),\n\t\t\"GENERIC_ALL\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"268435456\", token.INT, 0)),\n\t\t\"GENERIC_EXECUTE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"536870912\", token.INT, 0)),\n\t\t\"GENERIC_READ\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"GENERIC_WRITE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"GetAcceptExSockaddrs\":                         reflect.ValueOf(syscall.GetAcceptExSockaddrs),\n\t\t\"GetAdaptersInfo\":                              reflect.ValueOf(syscall.GetAdaptersInfo),\n\t\t\"GetAddrInfoW\":                                 reflect.ValueOf(syscall.GetAddrInfoW),\n\t\t\"GetCommandLine\":                               reflect.ValueOf(syscall.GetCommandLine),\n\t\t\"GetComputerName\":                              reflect.ValueOf(syscall.GetComputerName),\n\t\t\"GetConsoleMode\":                               reflect.ValueOf(syscall.GetConsoleMode),\n\t\t\"GetCurrentDirectory\":                          reflect.ValueOf(syscall.GetCurrentDirectory),\n\t\t\"GetCurrentProcess\":                            reflect.ValueOf(syscall.GetCurrentProcess),\n\t\t\"GetEnvironmentStrings\":                        reflect.ValueOf(syscall.GetEnvironmentStrings),\n\t\t\"GetEnvironmentVariable\":                       reflect.ValueOf(syscall.GetEnvironmentVariable),\n\t\t\"GetFileAttributes\":                            reflect.ValueOf(syscall.GetFileAttributes),\n\t\t\"GetFileAttributesEx\":                          reflect.ValueOf(syscall.GetFileAttributesEx),\n\t\t\"GetFileExInfoStandard\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"GetFileExMaxInfoLevel\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"GetFileInformationByHandle\":                   reflect.ValueOf(syscall.GetFileInformationByHandle),\n\t\t\"GetFileType\":                                  reflect.ValueOf(syscall.GetFileType),\n\t\t\"GetFullPathName\":                              reflect.ValueOf(syscall.GetFullPathName),\n\t\t\"GetHostByName\":                                reflect.ValueOf(syscall.GetHostByName),\n\t\t\"GetIfEntry\":                                   reflect.ValueOf(syscall.GetIfEntry),\n\t\t\"GetLastError\":                                 reflect.ValueOf(syscall.GetLastError),\n\t\t\"GetLengthSid\":                                 reflect.ValueOf(syscall.GetLengthSid),\n\t\t\"GetLongPathName\":                              reflect.ValueOf(syscall.GetLongPathName),\n\t\t\"GetProcAddress\":                               reflect.ValueOf(syscall.GetProcAddress),\n\t\t\"GetProcessTimes\":                              reflect.ValueOf(syscall.GetProcessTimes),\n\t\t\"GetProtoByName\":                               reflect.ValueOf(syscall.GetProtoByName),\n\t\t\"GetQueuedCompletionStatus\":                    reflect.ValueOf(syscall.GetQueuedCompletionStatus),\n\t\t\"GetServByName\":                                reflect.ValueOf(syscall.GetServByName),\n\t\t\"GetShortPathName\":                             reflect.ValueOf(syscall.GetShortPathName),\n\t\t\"GetStartupInfo\":                               reflect.ValueOf(syscall.GetStartupInfo),\n\t\t\"GetStdHandle\":                                 reflect.ValueOf(syscall.GetStdHandle),\n\t\t\"GetSystemTimeAsFileTime\":                      reflect.ValueOf(syscall.GetSystemTimeAsFileTime),\n\t\t\"GetTempPath\":                                  reflect.ValueOf(syscall.GetTempPath),\n\t\t\"GetTimeZoneInformation\":                       reflect.ValueOf(syscall.GetTimeZoneInformation),\n\t\t\"GetTokenInformation\":                          reflect.ValueOf(syscall.GetTokenInformation),\n\t\t\"GetUserNameEx\":                                reflect.ValueOf(syscall.GetUserNameEx),\n\t\t\"GetUserProfileDirectory\":                      reflect.ValueOf(syscall.GetUserProfileDirectory),\n\t\t\"GetVersion\":                                   reflect.ValueOf(syscall.GetVersion),\n\t\t\"Getegid\":                                      reflect.ValueOf(syscall.Getegid),\n\t\t\"Getenv\":                                       reflect.ValueOf(syscall.Getenv),\n\t\t\"Geteuid\":                                      reflect.ValueOf(syscall.Geteuid),\n\t\t\"Getgid\":                                       reflect.ValueOf(syscall.Getgid),\n\t\t\"Getgroups\":                                    reflect.ValueOf(syscall.Getgroups),\n\t\t\"Getpagesize\":                                  reflect.ValueOf(syscall.Getpagesize),\n\t\t\"Getpeername\":                                  reflect.ValueOf(syscall.Getpeername),\n\t\t\"Getpid\":                                       reflect.ValueOf(syscall.Getpid),\n\t\t\"Getppid\":                                      reflect.ValueOf(syscall.Getppid),\n\t\t\"Getsockname\":                                  reflect.ValueOf(syscall.Getsockname),\n\t\t\"Getsockopt\":                                   reflect.ValueOf(syscall.Getsockopt),\n\t\t\"GetsockoptInt\":                                reflect.ValueOf(syscall.GetsockoptInt),\n\t\t\"Gettimeofday\":                                 reflect.ValueOf(syscall.Gettimeofday),\n\t\t\"Getuid\":                                       reflect.ValueOf(syscall.Getuid),\n\t\t\"Getwd\":                                        reflect.ValueOf(syscall.Getwd),\n\t\t\"HANDLE_FLAG_INHERIT\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"HKEY_CLASSES_ROOT\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"HKEY_CURRENT_CONFIG\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2147483653\", token.INT, 0)),\n\t\t\"HKEY_CURRENT_USER\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2147483649\", token.INT, 0)),\n\t\t\"HKEY_DYN_DATA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2147483654\", token.INT, 0)),\n\t\t\"HKEY_LOCAL_MACHINE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2147483650\", token.INT, 0)),\n\t\t\"HKEY_PERFORMANCE_DATA\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2147483652\", token.INT, 0)),\n\t\t\"HKEY_USERS\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2147483651\", token.INT, 0)),\n\t\t\"IFF_BROADCAST\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"IFF_LOOPBACK\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IFF_MULTICAST\":                                reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"IFF_POINTTOPOINT\":                             reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"IFF_UP\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"IGNORE\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"INFINITE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"INVALID_FILE_ATTRIBUTES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"IOC_IN\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"IOC_INOUT\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"3221225472\", token.INT, 0)),\n\t\t\"IOC_OUT\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1073741824\", token.INT, 0)),\n\t\t\"IOC_VENDOR\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"402653184\", token.INT, 0)),\n\t\t\"IOC_WS2\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"134217728\", token.INT, 0)),\n\t\t\"IO_REPARSE_TAG_SYMLINK\":                       reflect.ValueOf(constant.MakeFromLiteral(\"2684354572\", token.INT, 0)),\n\t\t\"IPPROTO_IP\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"IPPROTO_IPV6\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"41\", token.INT, 0)),\n\t\t\"IPPROTO_TCP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"IPPROTO_UDP\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"IPV6_JOIN_GROUP\":                              reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IPV6_LEAVE_GROUP\":                             reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_HOPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_IF\":                            reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IPV6_MULTICAST_LOOP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IPV6_UNICAST_HOPS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"IPV6_V6ONLY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"IP_ADD_MEMBERSHIP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"IP_DROP_MEMBERSHIP\":                           reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"IP_MULTICAST_IF\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"IP_MULTICAST_LOOP\":                            reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"IP_MULTICAST_TTL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"IP_TOS\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"IP_TTL\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"ImplementsGetwd\":                              reflect.ValueOf(syscall.ImplementsGetwd),\n\t\t\"InvalidHandle\":                                reflect.ValueOf(syscall.InvalidHandle),\n\t\t\"KEY_ALL_ACCESS\":                               reflect.ValueOf(constant.MakeFromLiteral(\"983103\", token.INT, 0)),\n\t\t\"KEY_CREATE_LINK\":                              reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"KEY_CREATE_SUB_KEY\":                           reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"KEY_ENUMERATE_SUB_KEYS\":                       reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"KEY_EXECUTE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"131097\", token.INT, 0)),\n\t\t\"KEY_NOTIFY\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"KEY_QUERY_VALUE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"KEY_READ\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"131097\", token.INT, 0)),\n\t\t\"KEY_SET_VALUE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"KEY_WOW64_32KEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"KEY_WOW64_64KEY\":                              reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"KEY_WRITE\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"131078\", token.INT, 0)),\n\t\t\"LANG_ENGLISH\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"LAYERED_PROTOCOL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"Lchown\":                                       reflect.ValueOf(syscall.Lchown),\n\t\t\"Link\":                                         reflect.ValueOf(syscall.Link),\n\t\t\"Listen\":                                       reflect.ValueOf(syscall.Listen),\n\t\t\"LoadCancelIoEx\":                               reflect.ValueOf(syscall.LoadCancelIoEx),\n\t\t\"LoadConnectEx\":                                reflect.ValueOf(syscall.LoadConnectEx),\n\t\t\"LoadCreateSymbolicLink\":                       reflect.ValueOf(syscall.LoadCreateSymbolicLink),\n\t\t\"LoadDLL\":                                      reflect.ValueOf(syscall.LoadDLL),\n\t\t\"LoadGetAddrInfo\":                              reflect.ValueOf(syscall.LoadGetAddrInfo),\n\t\t\"LoadLibrary\":                                  reflect.ValueOf(syscall.LoadLibrary),\n\t\t\"LoadSetFileCompletionNotificationModes\":       reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes),\n\t\t\"LocalFree\":                                    reflect.ValueOf(syscall.LocalFree),\n\t\t\"LookupAccountName\":                            reflect.ValueOf(syscall.LookupAccountName),\n\t\t\"LookupAccountSid\":                             reflect.ValueOf(syscall.LookupAccountSid),\n\t\t\"LookupSID\":                                    reflect.ValueOf(syscall.LookupSID),\n\t\t\"MAXIMUM_REPARSE_DATA_BUFFER_SIZE\":             reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"MAXLEN_IFDESCR\":                               reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAXLEN_PHYSADDR\":                              reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_ADDRESS_LENGTH\":                   reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_DESCRIPTION_LENGTH\":               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"MAX_ADAPTER_NAME_LENGTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAX_COMPUTERNAME_LENGTH\":                      reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"MAX_INTERFACE_NAME_LEN\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"MAX_LONG_PATH\":                                reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"MAX_PATH\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"260\", token.INT, 0)),\n\t\t\"MAX_PROTOCOL_CHAIN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"MapViewOfFile\":                                reflect.ValueOf(syscall.MapViewOfFile),\n\t\t\"MaxTokenInfoClass\":                            reflect.ValueOf(constant.MakeFromLiteral(\"29\", token.INT, 0)),\n\t\t\"Mkdir\":                                        reflect.ValueOf(syscall.Mkdir),\n\t\t\"MoveFile\":                                     reflect.ValueOf(syscall.MoveFile),\n\t\t\"MustLoadDLL\":                                  reflect.ValueOf(syscall.MustLoadDLL),\n\t\t\"NameCanonical\":                                reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"NameCanonicalEx\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"NameDisplay\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NameDnsDomain\":                                reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"NameFullyQualifiedDN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NameSamCompatible\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NameServicePrincipal\":                         reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"NameUniqueId\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"NameUnknown\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NameUserPrincipal\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"NetApiBufferFree\":                             reflect.ValueOf(syscall.NetApiBufferFree),\n\t\t\"NetGetJoinInformation\":                        reflect.ValueOf(syscall.NetGetJoinInformation),\n\t\t\"NetSetupDomainName\":                           reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"NetSetupUnjoined\":                             reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"NetSetupUnknownStatus\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"NetSetupWorkgroupName\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"NetUserGetInfo\":                               reflect.ValueOf(syscall.NetUserGetInfo),\n\t\t\"NewCallback\":                                  reflect.ValueOf(syscall.NewCallback),\n\t\t\"NewCallbackCDecl\":                             reflect.ValueOf(syscall.NewCallbackCDecl),\n\t\t\"NewLazyDLL\":                                   reflect.ValueOf(syscall.NewLazyDLL),\n\t\t\"NsecToFiletime\":                               reflect.ValueOf(syscall.NsecToFiletime),\n\t\t\"NsecToTimespec\":                               reflect.ValueOf(syscall.NsecToTimespec),\n\t\t\"NsecToTimeval\":                                reflect.ValueOf(syscall.NsecToTimeval),\n\t\t\"Ntohs\":                                        reflect.ValueOf(syscall.Ntohs),\n\t\t\"OID_PKIX_KP_SERVER_AUTH\":                      reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(),\n\t\t\"OID_SERVER_GATED_CRYPTO\":                      reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(),\n\t\t\"OID_SGC_NETSCAPE\":                             reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(),\n\t\t\"OPEN_ALWAYS\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"OPEN_EXISTING\":                                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"O_APPEND\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"O_ASYNC\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"O_CLOEXEC\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"O_CREAT\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"O_EXCL\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"O_NOCTTY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"O_NONBLOCK\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"O_RDONLY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"O_RDWR\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"O_SYNC\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"O_TRUNC\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"O_WRONLY\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Open\":                                         reflect.ValueOf(syscall.Open),\n\t\t\"OpenCurrentProcessToken\":                      reflect.ValueOf(syscall.OpenCurrentProcessToken),\n\t\t\"OpenProcess\":                                  reflect.ValueOf(syscall.OpenProcess),\n\t\t\"OpenProcessToken\":                             reflect.ValueOf(syscall.OpenProcessToken),\n\t\t\"PAGE_EXECUTE_READ\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"PAGE_EXECUTE_READWRITE\":                       reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"PAGE_EXECUTE_WRITECOPY\":                       reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"PAGE_READONLY\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PAGE_READWRITE\":                               reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PAGE_WRITECOPY\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PFL_HIDDEN\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PFL_MATCHES_PROTOCOL_ZERO\":                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"PFL_MULTIPLE_PROTO_ENTRIES\":                   reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PFL_NETWORKDIRECT_PROVIDER\":                   reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PFL_RECOMMENDED_PROTO_ENTRY\":                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PKCS_7_ASN_ENCODING\":                          reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"PROCESS_QUERY_INFORMATION\":                    reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"PROCESS_TERMINATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROV_DH_SCHANNEL\":                             reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"PROV_DSS\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"PROV_DSS_DH\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"PROV_EC_ECDSA_FULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"PROV_EC_ECDSA_SIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"PROV_EC_ECNRA_FULL\":                           reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"PROV_EC_ECNRA_SIG\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"PROV_FORTEZZA\":                                reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"PROV_INTEL_SEC\":                               reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"PROV_MS_EXCHANGE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"PROV_REPLACE_OWF\":                             reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"PROV_RNG\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"PROV_RSA_AES\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"PROV_RSA_FULL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"PROV_RSA_SCHANNEL\":                            reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"PROV_RSA_SIG\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"PROV_SPYRUS_LYNKS\":                            reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"PROV_SSL\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"Pipe\":                                         reflect.ValueOf(syscall.Pipe),\n\t\t\"PostQueuedCompletionStatus\":                   reflect.ValueOf(syscall.PostQueuedCompletionStatus),\n\t\t\"Process32First\":                               reflect.ValueOf(syscall.Process32First),\n\t\t\"Process32Next\":                                reflect.ValueOf(syscall.Process32Next),\n\t\t\"REG_BINARY\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"REG_DWORD\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"REG_DWORD_BIG_ENDIAN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"REG_DWORD_LITTLE_ENDIAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"REG_EXPAND_SZ\":                                reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"REG_FULL_RESOURCE_DESCRIPTOR\":                 reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"REG_LINK\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"REG_MULTI_SZ\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"REG_NONE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"REG_QWORD\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"REG_QWORD_LITTLE_ENDIAN\":                      reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"REG_RESOURCE_LIST\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"REG_RESOURCE_REQUIREMENTS_LIST\":               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"REG_SZ\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"Read\":                                         reflect.ValueOf(syscall.Read),\n\t\t\"ReadConsole\":                                  reflect.ValueOf(syscall.ReadConsole),\n\t\t\"ReadDirectoryChanges\":                         reflect.ValueOf(syscall.ReadDirectoryChanges),\n\t\t\"ReadFile\":                                     reflect.ValueOf(syscall.ReadFile),\n\t\t\"Readlink\":                                     reflect.ValueOf(syscall.Readlink),\n\t\t\"Recvfrom\":                                     reflect.ValueOf(syscall.Recvfrom),\n\t\t\"RegCloseKey\":                                  reflect.ValueOf(syscall.RegCloseKey),\n\t\t\"RegEnumKeyEx\":                                 reflect.ValueOf(syscall.RegEnumKeyEx),\n\t\t\"RegOpenKeyEx\":                                 reflect.ValueOf(syscall.RegOpenKeyEx),\n\t\t\"RegQueryInfoKey\":                              reflect.ValueOf(syscall.RegQueryInfoKey),\n\t\t\"RegQueryValueEx\":                              reflect.ValueOf(syscall.RegQueryValueEx),\n\t\t\"RemoveDirectory\":                              reflect.ValueOf(syscall.RemoveDirectory),\n\t\t\"Rename\":                                       reflect.ValueOf(syscall.Rename),\n\t\t\"Rmdir\":                                        reflect.ValueOf(syscall.Rmdir),\n\t\t\"SHUT_RD\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SHUT_RDWR\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SHUT_WR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SIGABRT\":                                      reflect.ValueOf(syscall.SIGABRT),\n\t\t\"SIGALRM\":                                      reflect.ValueOf(syscall.SIGALRM),\n\t\t\"SIGBUS\":                                       reflect.ValueOf(syscall.SIGBUS),\n\t\t\"SIGFPE\":                                       reflect.ValueOf(syscall.SIGFPE),\n\t\t\"SIGHUP\":                                       reflect.ValueOf(syscall.SIGHUP),\n\t\t\"SIGILL\":                                       reflect.ValueOf(syscall.SIGILL),\n\t\t\"SIGINT\":                                       reflect.ValueOf(syscall.SIGINT),\n\t\t\"SIGKILL\":                                      reflect.ValueOf(syscall.SIGKILL),\n\t\t\"SIGPIPE\":                                      reflect.ValueOf(syscall.SIGPIPE),\n\t\t\"SIGQUIT\":                                      reflect.ValueOf(syscall.SIGQUIT),\n\t\t\"SIGSEGV\":                                      reflect.ValueOf(syscall.SIGSEGV),\n\t\t\"SIGTERM\":                                      reflect.ValueOf(syscall.SIGTERM),\n\t\t\"SIGTRAP\":                                      reflect.ValueOf(syscall.SIGTRAP),\n\t\t\"SIO_GET_EXTENSION_FUNCTION_POINTER\":           reflect.ValueOf(constant.MakeFromLiteral(\"3355443206\", token.INT, 0)),\n\t\t\"SIO_GET_INTERFACE_LIST\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1074033791\", token.INT, 0)),\n\t\t\"SIO_KEEPALIVE_VALS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2550136836\", token.INT, 0)),\n\t\t\"SIO_UDP_CONNRESET\":                            reflect.ValueOf(constant.MakeFromLiteral(\"2550136844\", token.INT, 0)),\n\t\t\"SOCK_DGRAM\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SOCK_RAW\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SOCK_SEQPACKET\":                               reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SOCK_STREAM\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SOL_SOCKET\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"65535\", token.INT, 0)),\n\t\t\"SOMAXCONN\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"2147483647\", token.INT, 0)),\n\t\t\"SO_BROADCAST\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"SO_DONTROUTE\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"SO_KEEPALIVE\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SO_LINGER\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"SO_RCVBUF\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4098\", token.INT, 0)),\n\t\t\"SO_REUSEADDR\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SO_SNDBUF\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"4097\", token.INT, 0)),\n\t\t\"SO_UPDATE_ACCEPT_CONTEXT\":                     reflect.ValueOf(constant.MakeFromLiteral(\"28683\", token.INT, 0)),\n\t\t\"SO_UPDATE_CONNECT_CONTEXT\":                    reflect.ValueOf(constant.MakeFromLiteral(\"28688\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_ALL\":                          reflect.ValueOf(constant.MakeFromLiteral(\"2031616\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_EXECUTE\":                      reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_READ\":                         reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_REQUIRED\":                     reflect.ValueOf(constant.MakeFromLiteral(\"983040\", token.INT, 0)),\n\t\t\"STANDARD_RIGHTS_WRITE\":                        reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"STARTF_USESHOWWINDOW\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"STARTF_USESTDHANDLES\":                         reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"STD_ERROR_HANDLE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"-12\", token.INT, 0)),\n\t\t\"STD_INPUT_HANDLE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"-10\", token.INT, 0)),\n\t\t\"STD_OUTPUT_HANDLE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"-11\", token.INT, 0)),\n\t\t\"SUBLANG_ENGLISH_US\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SW_FORCEMINIMIZE\":                             reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"SW_HIDE\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"SW_MAXIMIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SW_MINIMIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SW_NORMAL\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SW_RESTORE\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SW_SHOW\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"SW_SHOWDEFAULT\":                               reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SW_SHOWMAXIMIZED\":                             reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SW_SHOWMINIMIZED\":                             reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SW_SHOWMINNOACTIVE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SW_SHOWNA\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SW_SHOWNOACTIVATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SW_SHOWNORMAL\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYMBOLIC_LINK_FLAG_DIRECTORY\":                 reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SYNCHRONIZE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1048576\", token.INT, 0)),\n\t\t\"S_IFBLK\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"24576\", token.INT, 0)),\n\t\t\"S_IFCHR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"S_IFDIR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"16384\", token.INT, 0)),\n\t\t\"S_IFIFO\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"S_IFLNK\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"40960\", token.INT, 0)),\n\t\t\"S_IFMT\":                                       reflect.ValueOf(constant.MakeFromLiteral(\"126976\", token.INT, 0)),\n\t\t\"S_IFREG\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\t\t\"S_IFSOCK\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"49152\", token.INT, 0)),\n\t\t\"S_IRUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"S_ISGID\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"S_ISUID\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"S_ISVTX\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"S_IWRITE\":                                     reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IWUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"S_IXUSR\":                                      reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"Seek\":                                         reflect.ValueOf(syscall.Seek),\n\t\t\"Sendto\":                                       reflect.ValueOf(syscall.Sendto),\n\t\t\"SetCurrentDirectory\":                          reflect.ValueOf(syscall.SetCurrentDirectory),\n\t\t\"SetEndOfFile\":                                 reflect.ValueOf(syscall.SetEndOfFile),\n\t\t\"SetEnvironmentVariable\":                       reflect.ValueOf(syscall.SetEnvironmentVariable),\n\t\t\"SetFileAttributes\":                            reflect.ValueOf(syscall.SetFileAttributes),\n\t\t\"SetFileCompletionNotificationModes\":           reflect.ValueOf(syscall.SetFileCompletionNotificationModes),\n\t\t\"SetFilePointer\":                               reflect.ValueOf(syscall.SetFilePointer),\n\t\t\"SetFileTime\":                                  reflect.ValueOf(syscall.SetFileTime),\n\t\t\"SetHandleInformation\":                         reflect.ValueOf(syscall.SetHandleInformation),\n\t\t\"SetNonblock\":                                  reflect.ValueOf(syscall.SetNonblock),\n\t\t\"Setenv\":                                       reflect.ValueOf(syscall.Setenv),\n\t\t\"Setsockopt\":                                   reflect.ValueOf(syscall.Setsockopt),\n\t\t\"SetsockoptIPMreq\":                             reflect.ValueOf(syscall.SetsockoptIPMreq),\n\t\t\"SetsockoptIPv6Mreq\":                           reflect.ValueOf(syscall.SetsockoptIPv6Mreq),\n\t\t\"SetsockoptInet4Addr\":                          reflect.ValueOf(syscall.SetsockoptInet4Addr),\n\t\t\"SetsockoptInt\":                                reflect.ValueOf(syscall.SetsockoptInt),\n\t\t\"SetsockoptLinger\":                             reflect.ValueOf(syscall.SetsockoptLinger),\n\t\t\"SetsockoptTimeval\":                            reflect.ValueOf(syscall.SetsockoptTimeval),\n\t\t\"SidTypeAlias\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"SidTypeComputer\":                              reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"SidTypeDeletedAccount\":                        reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"SidTypeDomain\":                                reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"SidTypeGroup\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"SidTypeInvalid\":                               reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"SidTypeLabel\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"SidTypeUnknown\":                               reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"SidTypeUser\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"SidTypeWellKnownGroup\":                        reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"Socket\":                                       reflect.ValueOf(syscall.Socket),\n\t\t\"SocketDisableIPv6\":                            reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),\n\t\t\"Stderr\":                                       reflect.ValueOf(&syscall.Stderr).Elem(),\n\t\t\"Stdin\":                                        reflect.ValueOf(&syscall.Stdin).Elem(),\n\t\t\"Stdout\":                                       reflect.ValueOf(&syscall.Stdout).Elem(),\n\t\t\"StringBytePtr\":                                reflect.ValueOf(syscall.StringBytePtr),\n\t\t\"StringByteSlice\":                              reflect.ValueOf(syscall.StringByteSlice),\n\t\t\"StringToSid\":                                  reflect.ValueOf(syscall.StringToSid),\n\t\t\"StringToUTF16\":                                reflect.ValueOf(syscall.StringToUTF16),\n\t\t\"StringToUTF16Ptr\":                             reflect.ValueOf(syscall.StringToUTF16Ptr),\n\t\t\"Symlink\":                                      reflect.ValueOf(syscall.Symlink),\n\t\t\"TCP_NODELAY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TF_DISCONNECT\":                                reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TF_REUSE_SOCKET\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TF_USE_DEFAULT_WORKER\":                        reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TF_USE_KERNEL_APC\":                            reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TF_USE_SYSTEM_THREAD\":                         reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TF_WRITE_BEHIND\":                              reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TH32CS_INHERIT\":                               reflect.ValueOf(constant.MakeFromLiteral(\"2147483648\", token.INT, 0)),\n\t\t\"TH32CS_SNAPALL\":                               reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TH32CS_SNAPHEAPLIST\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TH32CS_SNAPMODULE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TH32CS_SNAPMODULE32\":                          reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TH32CS_SNAPPROCESS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TH32CS_SNAPTHREAD\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_DAYLIGHT\":                        reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_STANDARD\":                        reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TIME_ZONE_ID_UNKNOWN\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_DEFAULT\":                         reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_GROUPS\":                          reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_PRIVILEGES\":                      reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"TOKEN_ADJUST_SESSIONID\":                       reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"TOKEN_ALL_ACCESS\":                             reflect.ValueOf(constant.MakeFromLiteral(\"983551\", token.INT, 0)),\n\t\t\"TOKEN_ASSIGN_PRIMARY\":                         reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TOKEN_DUPLICATE\":                              reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TOKEN_EXECUTE\":                                reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"TOKEN_IMPERSONATE\":                            reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TOKEN_QUERY\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TOKEN_QUERY_SOURCE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TOKEN_READ\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"131080\", token.INT, 0)),\n\t\t\"TOKEN_WRITE\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"131296\", token.INT, 0)),\n\t\t\"TRUNCATE_EXISTING\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TerminateProcess\":                             reflect.ValueOf(syscall.TerminateProcess),\n\t\t\"TimespecToNsec\":                               reflect.ValueOf(syscall.TimespecToNsec),\n\t\t\"TokenAccessInformation\":                       reflect.ValueOf(constant.MakeFromLiteral(\"22\", token.INT, 0)),\n\t\t\"TokenAuditPolicy\":                             reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"TokenDefaultDacl\":                             reflect.ValueOf(constant.MakeFromLiteral(\"6\", token.INT, 0)),\n\t\t\"TokenElevation\":                               reflect.ValueOf(constant.MakeFromLiteral(\"20\", token.INT, 0)),\n\t\t\"TokenElevationType\":                           reflect.ValueOf(constant.MakeFromLiteral(\"18\", token.INT, 0)),\n\t\t\"TokenGroups\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"TokenGroupsAndPrivileges\":                     reflect.ValueOf(constant.MakeFromLiteral(\"13\", token.INT, 0)),\n\t\t\"TokenHasRestrictions\":                         reflect.ValueOf(constant.MakeFromLiteral(\"21\", token.INT, 0)),\n\t\t\"TokenImpersonationLevel\":                      reflect.ValueOf(constant.MakeFromLiteral(\"9\", token.INT, 0)),\n\t\t\"TokenIntegrityLevel\":                          reflect.ValueOf(constant.MakeFromLiteral(\"25\", token.INT, 0)),\n\t\t\"TokenLinkedToken\":                             reflect.ValueOf(constant.MakeFromLiteral(\"19\", token.INT, 0)),\n\t\t\"TokenLogonSid\":                                reflect.ValueOf(constant.MakeFromLiteral(\"28\", token.INT, 0)),\n\t\t\"TokenMandatoryPolicy\":                         reflect.ValueOf(constant.MakeFromLiteral(\"27\", token.INT, 0)),\n\t\t\"TokenOrigin\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"17\", token.INT, 0)),\n\t\t\"TokenOwner\":                                   reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"TokenPrimaryGroup\":                            reflect.ValueOf(constant.MakeFromLiteral(\"5\", token.INT, 0)),\n\t\t\"TokenPrivileges\":                              reflect.ValueOf(constant.MakeFromLiteral(\"3\", token.INT, 0)),\n\t\t\"TokenRestrictedSids\":                          reflect.ValueOf(constant.MakeFromLiteral(\"11\", token.INT, 0)),\n\t\t\"TokenSandBoxInert\":                            reflect.ValueOf(constant.MakeFromLiteral(\"15\", token.INT, 0)),\n\t\t\"TokenSessionId\":                               reflect.ValueOf(constant.MakeFromLiteral(\"12\", token.INT, 0)),\n\t\t\"TokenSessionReference\":                        reflect.ValueOf(constant.MakeFromLiteral(\"14\", token.INT, 0)),\n\t\t\"TokenSource\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"7\", token.INT, 0)),\n\t\t\"TokenStatistics\":                              reflect.ValueOf(constant.MakeFromLiteral(\"10\", token.INT, 0)),\n\t\t\"TokenType\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"TokenUIAccess\":                                reflect.ValueOf(constant.MakeFromLiteral(\"26\", token.INT, 0)),\n\t\t\"TokenUser\":                                    reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"TokenVirtualizationAllowed\":                   reflect.ValueOf(constant.MakeFromLiteral(\"23\", token.INT, 0)),\n\t\t\"TokenVirtualizationEnabled\":                   reflect.ValueOf(constant.MakeFromLiteral(\"24\", token.INT, 0)),\n\t\t\"TranslateAccountName\":                         reflect.ValueOf(syscall.TranslateAccountName),\n\t\t\"TranslateName\":                                reflect.ValueOf(syscall.TranslateName),\n\t\t\"TransmitFile\":                                 reflect.ValueOf(syscall.TransmitFile),\n\t\t\"UNIX_PATH_MAX\":                                reflect.ValueOf(constant.MakeFromLiteral(\"108\", token.INT, 0)),\n\t\t\"USAGE_MATCH_TYPE_AND\":                         reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"USAGE_MATCH_TYPE_OR\":                          reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"UTF16FromString\":                              reflect.ValueOf(syscall.UTF16FromString),\n\t\t\"UTF16PtrFromString\":                           reflect.ValueOf(syscall.UTF16PtrFromString),\n\t\t\"UTF16ToString\":                                reflect.ValueOf(syscall.UTF16ToString),\n\t\t\"Unlink\":                                       reflect.ValueOf(syscall.Unlink),\n\t\t\"UnmapViewOfFile\":                              reflect.ValueOf(syscall.UnmapViewOfFile),\n\t\t\"Unsetenv\":                                     reflect.ValueOf(syscall.Unsetenv),\n\t\t\"Utimes\":                                       reflect.ValueOf(syscall.Utimes),\n\t\t\"UtimesNano\":                                   reflect.ValueOf(syscall.UtimesNano),\n\t\t\"VirtualLock\":                                  reflect.ValueOf(syscall.VirtualLock),\n\t\t\"VirtualUnlock\":                                reflect.ValueOf(syscall.VirtualUnlock),\n\t\t\"WAIT_ABANDONED\":                               reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WAIT_FAILED\":                                  reflect.ValueOf(constant.MakeFromLiteral(\"4294967295\", token.INT, 0)),\n\t\t\"WAIT_OBJECT_0\":                                reflect.ValueOf(constant.MakeFromLiteral(\"0\", token.INT, 0)),\n\t\t\"WAIT_TIMEOUT\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"258\", token.INT, 0)),\n\t\t\"WSACleanup\":                                   reflect.ValueOf(syscall.WSACleanup),\n\t\t\"WSADESCRIPTION_LEN\":                           reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"WSAEACCES\":                                    reflect.ValueOf(syscall.WSAEACCES),\n\t\t\"WSAECONNABORTED\":                              reflect.ValueOf(syscall.WSAECONNABORTED),\n\t\t\"WSAECONNRESET\":                                reflect.ValueOf(syscall.WSAECONNRESET),\n\t\t\"WSAEnumProtocols\":                             reflect.ValueOf(syscall.WSAEnumProtocols),\n\t\t\"WSAID_CONNECTEX\":                              reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(),\n\t\t\"WSAIoctl\":                                     reflect.ValueOf(syscall.WSAIoctl),\n\t\t\"WSAPROTOCOL_LEN\":                              reflect.ValueOf(constant.MakeFromLiteral(\"255\", token.INT, 0)),\n\t\t\"WSARecv\":                                      reflect.ValueOf(syscall.WSARecv),\n\t\t\"WSARecvFrom\":                                  reflect.ValueOf(syscall.WSARecvFrom),\n\t\t\"WSASYS_STATUS_LEN\":                            reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"WSASend\":                                      reflect.ValueOf(syscall.WSASend),\n\t\t\"WSASendTo\":                                    reflect.ValueOf(syscall.WSASendTo),\n\t\t\"WSASendto\":                                    reflect.ValueOf(syscall.WSASendto),\n\t\t\"WSAStartup\":                                   reflect.ValueOf(syscall.WSAStartup),\n\t\t\"WaitForSingleObject\":                          reflect.ValueOf(syscall.WaitForSingleObject),\n\t\t\"Write\":                                        reflect.ValueOf(syscall.Write),\n\t\t\"WriteConsole\":                                 reflect.ValueOf(syscall.WriteConsole),\n\t\t\"WriteFile\":                                    reflect.ValueOf(syscall.WriteFile),\n\t\t\"X509_ASN_ENCODING\":                            reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"XP1_CONNECTIONLESS\":                           reflect.ValueOf(constant.MakeFromLiteral(\"1\", token.INT, 0)),\n\t\t\"XP1_CONNECT_DATA\":                             reflect.ValueOf(constant.MakeFromLiteral(\"128\", token.INT, 0)),\n\t\t\"XP1_DISCONNECT_DATA\":                          reflect.ValueOf(constant.MakeFromLiteral(\"256\", token.INT, 0)),\n\t\t\"XP1_EXPEDITED_DATA\":                           reflect.ValueOf(constant.MakeFromLiteral(\"64\", token.INT, 0)),\n\t\t\"XP1_GRACEFUL_CLOSE\":                           reflect.ValueOf(constant.MakeFromLiteral(\"32\", token.INT, 0)),\n\t\t\"XP1_GUARANTEED_DELIVERY\":                      reflect.ValueOf(constant.MakeFromLiteral(\"2\", token.INT, 0)),\n\t\t\"XP1_GUARANTEED_ORDER\":                         reflect.ValueOf(constant.MakeFromLiteral(\"4\", token.INT, 0)),\n\t\t\"XP1_IFS_HANDLES\":                              reflect.ValueOf(constant.MakeFromLiteral(\"131072\", token.INT, 0)),\n\t\t\"XP1_MESSAGE_ORIENTED\":                         reflect.ValueOf(constant.MakeFromLiteral(\"8\", token.INT, 0)),\n\t\t\"XP1_MULTIPOINT_CONTROL_PLANE\":                 reflect.ValueOf(constant.MakeFromLiteral(\"2048\", token.INT, 0)),\n\t\t\"XP1_MULTIPOINT_DATA_PLANE\":                    reflect.ValueOf(constant.MakeFromLiteral(\"4096\", token.INT, 0)),\n\t\t\"XP1_PARTIAL_MESSAGE\":                          reflect.ValueOf(constant.MakeFromLiteral(\"262144\", token.INT, 0)),\n\t\t\"XP1_PSEUDO_STREAM\":                            reflect.ValueOf(constant.MakeFromLiteral(\"16\", token.INT, 0)),\n\t\t\"XP1_QOS_SUPPORTED\":                            reflect.ValueOf(constant.MakeFromLiteral(\"8192\", token.INT, 0)),\n\t\t\"XP1_SAN_SUPPORT_SDP\":                          reflect.ValueOf(constant.MakeFromLiteral(\"524288\", token.INT, 0)),\n\t\t\"XP1_SUPPORT_BROADCAST\":                        reflect.ValueOf(constant.MakeFromLiteral(\"512\", token.INT, 0)),\n\t\t\"XP1_SUPPORT_MULTIPOINT\":                       reflect.ValueOf(constant.MakeFromLiteral(\"1024\", token.INT, 0)),\n\t\t\"XP1_UNI_RECV\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"65536\", token.INT, 0)),\n\t\t\"XP1_UNI_SEND\":                                 reflect.ValueOf(constant.MakeFromLiteral(\"32768\", token.INT, 0)),\n\n\t\t// type definitions\n\t\t\"AddrinfoW\":                   reflect.ValueOf((*syscall.AddrinfoW)(nil)),\n\t\t\"ByHandleFileInformation\":     reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)),\n\t\t\"CertChainContext\":            reflect.ValueOf((*syscall.CertChainContext)(nil)),\n\t\t\"CertChainElement\":            reflect.ValueOf((*syscall.CertChainElement)(nil)),\n\t\t\"CertChainPara\":               reflect.ValueOf((*syscall.CertChainPara)(nil)),\n\t\t\"CertChainPolicyPara\":         reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)),\n\t\t\"CertChainPolicyStatus\":       reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)),\n\t\t\"CertContext\":                 reflect.ValueOf((*syscall.CertContext)(nil)),\n\t\t\"CertEnhKeyUsage\":             reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)),\n\t\t\"CertInfo\":                    reflect.ValueOf((*syscall.CertInfo)(nil)),\n\t\t\"CertRevocationCrlInfo\":       reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)),\n\t\t\"CertRevocationInfo\":          reflect.ValueOf((*syscall.CertRevocationInfo)(nil)),\n\t\t\"CertSimpleChain\":             reflect.ValueOf((*syscall.CertSimpleChain)(nil)),\n\t\t\"CertTrustListInfo\":           reflect.ValueOf((*syscall.CertTrustListInfo)(nil)),\n\t\t\"CertTrustStatus\":             reflect.ValueOf((*syscall.CertTrustStatus)(nil)),\n\t\t\"CertUsageMatch\":              reflect.ValueOf((*syscall.CertUsageMatch)(nil)),\n\t\t\"Conn\":                        reflect.ValueOf((*syscall.Conn)(nil)),\n\t\t\"DLL\":                         reflect.ValueOf((*syscall.DLL)(nil)),\n\t\t\"DLLError\":                    reflect.ValueOf((*syscall.DLLError)(nil)),\n\t\t\"DNSMXData\":                   reflect.ValueOf((*syscall.DNSMXData)(nil)),\n\t\t\"DNSPTRData\":                  reflect.ValueOf((*syscall.DNSPTRData)(nil)),\n\t\t\"DNSRecord\":                   reflect.ValueOf((*syscall.DNSRecord)(nil)),\n\t\t\"DNSSRVData\":                  reflect.ValueOf((*syscall.DNSSRVData)(nil)),\n\t\t\"DNSTXTData\":                  reflect.ValueOf((*syscall.DNSTXTData)(nil)),\n\t\t\"Errno\":                       reflect.ValueOf((*syscall.Errno)(nil)),\n\t\t\"FileNotifyInformation\":       reflect.ValueOf((*syscall.FileNotifyInformation)(nil)),\n\t\t\"Filetime\":                    reflect.ValueOf((*syscall.Filetime)(nil)),\n\t\t\"GUID\":                        reflect.ValueOf((*syscall.GUID)(nil)),\n\t\t\"Handle\":                      reflect.ValueOf((*syscall.Handle)(nil)),\n\t\t\"Hostent\":                     reflect.ValueOf((*syscall.Hostent)(nil)),\n\t\t\"IPMreq\":                      reflect.ValueOf((*syscall.IPMreq)(nil)),\n\t\t\"IPv6Mreq\":                    reflect.ValueOf((*syscall.IPv6Mreq)(nil)),\n\t\t\"InterfaceInfo\":               reflect.ValueOf((*syscall.InterfaceInfo)(nil)),\n\t\t\"IpAdapterInfo\":               reflect.ValueOf((*syscall.IpAdapterInfo)(nil)),\n\t\t\"IpAddrString\":                reflect.ValueOf((*syscall.IpAddrString)(nil)),\n\t\t\"IpAddressString\":             reflect.ValueOf((*syscall.IpAddressString)(nil)),\n\t\t\"IpMaskString\":                reflect.ValueOf((*syscall.IpMaskString)(nil)),\n\t\t\"LazyDLL\":                     reflect.ValueOf((*syscall.LazyDLL)(nil)),\n\t\t\"LazyProc\":                    reflect.ValueOf((*syscall.LazyProc)(nil)),\n\t\t\"Linger\":                      reflect.ValueOf((*syscall.Linger)(nil)),\n\t\t\"MibIfRow\":                    reflect.ValueOf((*syscall.MibIfRow)(nil)),\n\t\t\"Overlapped\":                  reflect.ValueOf((*syscall.Overlapped)(nil)),\n\t\t\"Pointer\":                     reflect.ValueOf((*syscall.Pointer)(nil)),\n\t\t\"Proc\":                        reflect.ValueOf((*syscall.Proc)(nil)),\n\t\t\"ProcAttr\":                    reflect.ValueOf((*syscall.ProcAttr)(nil)),\n\t\t\"ProcessEntry32\":              reflect.ValueOf((*syscall.ProcessEntry32)(nil)),\n\t\t\"ProcessInformation\":          reflect.ValueOf((*syscall.ProcessInformation)(nil)),\n\t\t\"Protoent\":                    reflect.ValueOf((*syscall.Protoent)(nil)),\n\t\t\"RawConn\":                     reflect.ValueOf((*syscall.RawConn)(nil)),\n\t\t\"RawSockaddr\":                 reflect.ValueOf((*syscall.RawSockaddr)(nil)),\n\t\t\"RawSockaddrAny\":              reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),\n\t\t\"RawSockaddrInet4\":            reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),\n\t\t\"RawSockaddrInet6\":            reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),\n\t\t\"RawSockaddrUnix\":             reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),\n\t\t\"Rusage\":                      reflect.ValueOf((*syscall.Rusage)(nil)),\n\t\t\"SID\":                         reflect.ValueOf((*syscall.SID)(nil)),\n\t\t\"SIDAndAttributes\":            reflect.ValueOf((*syscall.SIDAndAttributes)(nil)),\n\t\t\"SSLExtraCertChainPolicyPara\": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)),\n\t\t\"SecurityAttributes\":          reflect.ValueOf((*syscall.SecurityAttributes)(nil)),\n\t\t\"Servent\":                     reflect.ValueOf((*syscall.Servent)(nil)),\n\t\t\"Signal\":                      reflect.ValueOf((*syscall.Signal)(nil)),\n\t\t\"Sockaddr\":                    reflect.ValueOf((*syscall.Sockaddr)(nil)),\n\t\t\"SockaddrGen\":                 reflect.ValueOf((*syscall.SockaddrGen)(nil)),\n\t\t\"SockaddrInet4\":               reflect.ValueOf((*syscall.SockaddrInet4)(nil)),\n\t\t\"SockaddrInet6\":               reflect.ValueOf((*syscall.SockaddrInet6)(nil)),\n\t\t\"SockaddrUnix\":                reflect.ValueOf((*syscall.SockaddrUnix)(nil)),\n\t\t\"StartupInfo\":                 reflect.ValueOf((*syscall.StartupInfo)(nil)),\n\t\t\"SysProcAttr\":                 reflect.ValueOf((*syscall.SysProcAttr)(nil)),\n\t\t\"Systemtime\":                  reflect.ValueOf((*syscall.Systemtime)(nil)),\n\t\t\"TCPKeepalive\":                reflect.ValueOf((*syscall.TCPKeepalive)(nil)),\n\t\t\"Timespec\":                    reflect.ValueOf((*syscall.Timespec)(nil)),\n\t\t\"Timeval\":                     reflect.ValueOf((*syscall.Timeval)(nil)),\n\t\t\"Timezoneinformation\":         reflect.ValueOf((*syscall.Timezoneinformation)(nil)),\n\t\t\"Token\":                       reflect.ValueOf((*syscall.Token)(nil)),\n\t\t\"Tokenprimarygroup\":           reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)),\n\t\t\"Tokenuser\":                   reflect.ValueOf((*syscall.Tokenuser)(nil)),\n\t\t\"TransmitFileBuffers\":         reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)),\n\t\t\"UserInfo10\":                  reflect.ValueOf((*syscall.UserInfo10)(nil)),\n\t\t\"WSABuf\":                      reflect.ValueOf((*syscall.WSABuf)(nil)),\n\t\t\"WSAData\":                     reflect.ValueOf((*syscall.WSAData)(nil)),\n\t\t\"WSAProtocolChain\":            reflect.ValueOf((*syscall.WSAProtocolChain)(nil)),\n\t\t\"WSAProtocolInfo\":             reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)),\n\t\t\"WaitStatus\":                  reflect.ValueOf((*syscall.WaitStatus)(nil)),\n\t\t\"Win32FileAttributeData\":      reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)),\n\t\t\"Win32finddata\":               reflect.ValueOf((*syscall.Win32finddata)(nil)),\n\n\t\t// interface wrapper definitions\n\t\t\"_Conn\":     reflect.ValueOf((*_syscall_Conn)(nil)),\n\t\t\"_RawConn\":  reflect.ValueOf((*_syscall_RawConn)(nil)),\n\t\t\"_Sockaddr\": reflect.ValueOf((*_syscall_Sockaddr)(nil)),\n\t}\n}\n\n// _syscall_Conn is an interface wrapper for Conn type\ntype _syscall_Conn struct {\n\tIValue       interface{}\n\tWSyscallConn func() (syscall.RawConn, error)\n}\n\nfunc (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { return W.WSyscallConn() }\n\n// _syscall_RawConn is an interface wrapper for RawConn type\ntype _syscall_RawConn struct {\n\tIValue   interface{}\n\tWControl func(f func(fd uintptr)) error\n\tWRead    func(f func(fd uintptr) (done bool)) error\n\tWWrite   func(f func(fd uintptr) (done bool)) error\n}\n\nfunc (W _syscall_RawConn) Control(f func(fd uintptr)) error           { return W.WControl(f) }\nfunc (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error  { return W.WRead(f) }\nfunc (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { return W.WWrite(f) }\n\n// _syscall_Sockaddr is an interface wrapper for Sockaddr type\ntype _syscall_Sockaddr struct {\n\tIValue interface{}\n}\n"
  },
  {
    "path": "stdlib/syscall/syscall.go",
    "content": "// Package syscall provide wrapper of standard library syscall package for native import in Yaegi.\npackage syscall\n\nimport \"reflect\"\n\n// Symbols stores the map of syscall package symbols.\nvar Symbols = map[string]map[string]reflect.Value{}\n\nfunc init() {\n\tSymbols[\"github.com/traefik/yaegi/stdlib/syscall/syscall\"] = map[string]reflect.Value{\n\t\t\"Symbols\": reflect.ValueOf(Symbols),\n\t}\n}\n\n//go:generate ../../internal/cmd/extract/extract -exclude=^Exec,Exit,ForkExec,Kill,Ptrace,Reboot,Shutdown,StartProcess,Syscall syscall\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_aix_ppc64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":             reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":             reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":         reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":             reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":     reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":       reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":     reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtracePeekData\":   reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":   reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":   reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":   reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSingleStep\": reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"RawSyscall\":       reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":      reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":           reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":         reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":     reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":          reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":         reflect.ValueOf(syscall.Syscall6),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_android_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22 && !linux\n// +build go1.21,!go1.22,!linux\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_android_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22 && !linux\n// +build go1.21,!go1.22,!linux\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_android_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22 && !linux\n// +build go1.21,!go1.22,!linux\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_android_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22 && !linux\n// +build go1.21,!go1.22,!linux\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_darwin_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\": reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceDetach\": reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_darwin_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\": reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceDetach\": reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_dragonfly_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_freebsd_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_freebsd_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_freebsd_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_freebsd_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_freebsd_riscv64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_illumos_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22 && !solaris\n// +build go1.21,!go1.22,!solaris\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_ios_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\": reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceDetach\": reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_ios_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\": reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceDetach\": reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_js_wasm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_linux_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_linux_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_linux_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_linux_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_linux_loong64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_linux_mips.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":           reflect.ValueOf(syscall.Syscall9),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_linux_mips64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_linux_mips64le.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_linux_mipsle.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":           reflect.ValueOf(syscall.Syscall9),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_linux_ppc64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_linux_ppc64le.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_linux_riscv64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_linux_s390x.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceFpregs\": reflect.ValueOf((*syscall.PtraceFpregs)(nil)),\n\t\t\"PtracePer\":    reflect.ValueOf((*syscall.PtracePer)(nil)),\n\t\t\"PtracePsw\":    reflect.ValueOf((*syscall.PtracePsw)(nil)),\n\t\t\"PtraceRegs\":   reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_netbsd_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_netbsd_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_netbsd_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_netbsd_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_openbsd_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_openbsd_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_openbsd_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_openbsd_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_plan9_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_plan9_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_plan9_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_solaris_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_wasip1_wasm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"ProcExit\":     reflect.ValueOf(syscall.ProcExit),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_windows_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ExitProcess\":        reflect.ValueOf(syscall.ExitProcess),\n\t\t\"GetExitCodeProcess\": reflect.ValueOf(syscall.GetExitCodeProcess),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall12\":          reflect.ValueOf(syscall.Syscall12),\n\t\t\"Syscall15\":          reflect.ValueOf(syscall.Syscall15),\n\t\t\"Syscall18\":          reflect.ValueOf(syscall.Syscall18),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":           reflect.ValueOf(syscall.Syscall9),\n\t\t\"SyscallN\":           reflect.ValueOf(syscall.SyscallN),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_windows_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ExitProcess\":        reflect.ValueOf(syscall.ExitProcess),\n\t\t\"GetExitCodeProcess\": reflect.ValueOf(syscall.GetExitCodeProcess),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall12\":          reflect.ValueOf(syscall.Syscall12),\n\t\t\"Syscall15\":          reflect.ValueOf(syscall.Syscall15),\n\t\t\"Syscall18\":          reflect.ValueOf(syscall.Syscall18),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":           reflect.ValueOf(syscall.Syscall9),\n\t\t\"SyscallN\":           reflect.ValueOf(syscall.SyscallN),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_windows_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ExitProcess\":        reflect.ValueOf(syscall.ExitProcess),\n\t\t\"GetExitCodeProcess\": reflect.ValueOf(syscall.GetExitCodeProcess),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall12\":          reflect.ValueOf(syscall.Syscall12),\n\t\t\"Syscall15\":          reflect.ValueOf(syscall.Syscall15),\n\t\t\"Syscall18\":          reflect.ValueOf(syscall.Syscall18),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":           reflect.ValueOf(syscall.Syscall9),\n\t\t\"SyscallN\":           reflect.ValueOf(syscall.SyscallN),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_21_syscall_windows_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ExitProcess\":        reflect.ValueOf(syscall.ExitProcess),\n\t\t\"GetExitCodeProcess\": reflect.ValueOf(syscall.GetExitCodeProcess),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall12\":          reflect.ValueOf(syscall.Syscall12),\n\t\t\"Syscall15\":          reflect.ValueOf(syscall.Syscall15),\n\t\t\"Syscall18\":          reflect.ValueOf(syscall.Syscall18),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":           reflect.ValueOf(syscall.Syscall9),\n\t\t\"SyscallN\":           reflect.ValueOf(syscall.SyscallN),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_aix_ppc64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":             reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":             reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":         reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":             reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":     reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":       reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":     reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtracePeekData\":   reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":   reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":   reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":   reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSingleStep\": reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"RawSyscall\":       reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":      reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":           reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":         reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":     reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":          reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":         reflect.ValueOf(syscall.Syscall6),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_android_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22 && !linux\n// +build go1.22,!linux\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_android_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22 && !linux\n// +build go1.22,!linux\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_android_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22 && !linux\n// +build go1.22,!linux\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_android_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22 && !linux\n// +build go1.22,!linux\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_darwin_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\": reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceDetach\": reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_darwin_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\": reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceDetach\": reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_dragonfly_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_freebsd_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_freebsd_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_freebsd_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_freebsd_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_freebsd_riscv64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_illumos_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22 && !solaris\n// +build go1.22,!solaris\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_ios_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\": reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceDetach\": reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_ios_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\": reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceDetach\": reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_js_wasm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_linux_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_linux_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_linux_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_linux_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_linux_loong64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_linux_mips.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":           reflect.ValueOf(syscall.Syscall9),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_linux_mips64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_linux_mips64le.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_linux_mipsle.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":           reflect.ValueOf(syscall.Syscall9),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_linux_ppc64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_linux_ppc64le.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_linux_riscv64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceRegs\": reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_linux_s390x.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"AllThreadsSyscall\":  reflect.ValueOf(syscall.AllThreadsSyscall),\n\t\t\"AllThreadsSyscall6\": reflect.ValueOf(syscall.AllThreadsSyscall6),\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":           reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":               reflect.ValueOf(syscall.Kill),\n\t\t\"PtraceAttach\":       reflect.ValueOf(syscall.PtraceAttach),\n\t\t\"PtraceCont\":         reflect.ValueOf(syscall.PtraceCont),\n\t\t\"PtraceDetach\":       reflect.ValueOf(syscall.PtraceDetach),\n\t\t\"PtraceGetEventMsg\":  reflect.ValueOf(syscall.PtraceGetEventMsg),\n\t\t\"PtraceGetRegs\":      reflect.ValueOf(syscall.PtraceGetRegs),\n\t\t\"PtracePeekData\":     reflect.ValueOf(syscall.PtracePeekData),\n\t\t\"PtracePeekText\":     reflect.ValueOf(syscall.PtracePeekText),\n\t\t\"PtracePokeData\":     reflect.ValueOf(syscall.PtracePokeData),\n\t\t\"PtracePokeText\":     reflect.ValueOf(syscall.PtracePokeText),\n\t\t\"PtraceSetOptions\":   reflect.ValueOf(syscall.PtraceSetOptions),\n\t\t\"PtraceSetRegs\":      reflect.ValueOf(syscall.PtraceSetRegs),\n\t\t\"PtraceSingleStep\":   reflect.ValueOf(syscall.PtraceSingleStep),\n\t\t\"PtraceSyscall\":      reflect.ValueOf(syscall.PtraceSyscall),\n\t\t\"RawSyscall\":         reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":        reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Reboot\":             reflect.ValueOf(syscall.Reboot),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\n\t\t// type definitions\n\t\t\"PtraceFpregs\": reflect.ValueOf((*syscall.PtraceFpregs)(nil)),\n\t\t\"PtracePer\":    reflect.ValueOf((*syscall.PtracePer)(nil)),\n\t\t\"PtracePsw\":    reflect.ValueOf((*syscall.PtracePsw)(nil)),\n\t\t\"PtraceRegs\":   reflect.ValueOf((*syscall.PtraceRegs)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_netbsd_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_netbsd_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_netbsd_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_netbsd_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_openbsd_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_openbsd_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_openbsd_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_openbsd_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_openbsd_ppc64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":     reflect.ValueOf(syscall.Syscall9),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_plan9_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_plan9_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_plan9_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_solaris_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":         reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"ForkExec\":     reflect.ValueOf(syscall.ForkExec),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_wasip1_wasm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exit\":         reflect.ValueOf(syscall.Exit),\n\t\t\"Kill\":         reflect.ValueOf(syscall.Kill),\n\t\t\"ProcExit\":     reflect.ValueOf(syscall.ProcExit),\n\t\t\"RawSyscall\":   reflect.ValueOf(syscall.RawSyscall),\n\t\t\"RawSyscall6\":  reflect.ValueOf(syscall.RawSyscall6),\n\t\t\"Shutdown\":     reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\": reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":      reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall6\":     reflect.ValueOf(syscall.Syscall6),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_windows_386.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ExitProcess\":        reflect.ValueOf(syscall.ExitProcess),\n\t\t\"GetExitCodeProcess\": reflect.ValueOf(syscall.GetExitCodeProcess),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall12\":          reflect.ValueOf(syscall.Syscall12),\n\t\t\"Syscall15\":          reflect.ValueOf(syscall.Syscall15),\n\t\t\"Syscall18\":          reflect.ValueOf(syscall.Syscall18),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":           reflect.ValueOf(syscall.Syscall9),\n\t\t\"SyscallN\":           reflect.ValueOf(syscall.SyscallN),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_windows_amd64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ExitProcess\":        reflect.ValueOf(syscall.ExitProcess),\n\t\t\"GetExitCodeProcess\": reflect.ValueOf(syscall.GetExitCodeProcess),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall12\":          reflect.ValueOf(syscall.Syscall12),\n\t\t\"Syscall15\":          reflect.ValueOf(syscall.Syscall15),\n\t\t\"Syscall18\":          reflect.ValueOf(syscall.Syscall18),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":           reflect.ValueOf(syscall.Syscall9),\n\t\t\"SyscallN\":           reflect.ValueOf(syscall.SyscallN),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_windows_arm.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ExitProcess\":        reflect.ValueOf(syscall.ExitProcess),\n\t\t\"GetExitCodeProcess\": reflect.ValueOf(syscall.GetExitCodeProcess),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall12\":          reflect.ValueOf(syscall.Syscall12),\n\t\t\"Syscall15\":          reflect.ValueOf(syscall.Syscall15),\n\t\t\"Syscall18\":          reflect.ValueOf(syscall.Syscall18),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":           reflect.ValueOf(syscall.Syscall9),\n\t\t\"SyscallN\":           reflect.ValueOf(syscall.SyscallN),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/go1_22_syscall_windows_arm64.go",
    "content": "// Code generated by 'yaegi extract syscall'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unrestricted\n\nimport (\n\t\"reflect\"\n\t\"syscall\"\n)\n\nfunc init() {\n\tSymbols[\"syscall/syscall\"] = map[string]reflect.Value{\n\t\t// function, constant and variable definitions\n\t\t\"Exec\":               reflect.ValueOf(syscall.Exec),\n\t\t\"Exit\":               reflect.ValueOf(syscall.Exit),\n\t\t\"ExitProcess\":        reflect.ValueOf(syscall.ExitProcess),\n\t\t\"GetExitCodeProcess\": reflect.ValueOf(syscall.GetExitCodeProcess),\n\t\t\"Shutdown\":           reflect.ValueOf(syscall.Shutdown),\n\t\t\"StartProcess\":       reflect.ValueOf(syscall.StartProcess),\n\t\t\"Syscall\":            reflect.ValueOf(syscall.Syscall),\n\t\t\"Syscall12\":          reflect.ValueOf(syscall.Syscall12),\n\t\t\"Syscall15\":          reflect.ValueOf(syscall.Syscall15),\n\t\t\"Syscall18\":          reflect.ValueOf(syscall.Syscall18),\n\t\t\"Syscall6\":           reflect.ValueOf(syscall.Syscall6),\n\t\t\"Syscall9\":           reflect.ValueOf(syscall.Syscall9),\n\t\t\"SyscallN\":           reflect.ValueOf(syscall.SyscallN),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unrestricted/unrestricted.go",
    "content": "// Package unrestricted provides the original version of standard library symbols which may cause the interpreter process to exit.\npackage unrestricted\n\nimport (\n\t\"log\"\n\t\"os\"\n\t\"os/exec\"\n\t\"reflect\"\n)\n\n// Symbols stores the map of syscall package symbols.\nvar Symbols = map[string]map[string]reflect.Value{}\n\nfunc init() {\n\tSymbols[\"os/os\"] = map[string]reflect.Value{\n\t\t\"Exit\":        reflect.ValueOf(os.Exit),\n\t\t\"FindProcess\": reflect.ValueOf(os.FindProcess),\n\t}\n\n\tSymbols[\"os/exec/exec\"] = map[string]reflect.Value{\n\t\t\"Command\":        reflect.ValueOf(exec.Command),\n\t\t\"CommandContext\": reflect.ValueOf(exec.CommandContext),\n\t\t\"ErrNotFound\":    reflect.ValueOf(&exec.ErrNotFound).Elem(),\n\t\t\"LookPath\":       reflect.ValueOf(exec.LookPath),\n\t\t\"Cmd\":            reflect.ValueOf((*exec.Cmd)(nil)),\n\t\t\"Error\":          reflect.ValueOf((*exec.Error)(nil)),\n\t\t\"ExitError\":      reflect.ValueOf((*exec.ExitError)(nil)),\n\t}\n\n\tSymbols[\"log/log\"] = map[string]reflect.Value{\n\t\t\"Fatal\":   reflect.ValueOf(log.Fatal),\n\t\t\"Fatalf\":  reflect.ValueOf(log.Fatalf),\n\t\t\"Fatalln\": reflect.ValueOf(log.Fatalln),\n\t\t\"New\":     reflect.ValueOf(log.New),\n\t\t\"Logger\":  reflect.ValueOf((*log.Logger)(nil)),\n\t}\n\n\tSymbols[\"github.com/traefik/yaegi/stdlib/unrestricted/unrestricted\"] = map[string]reflect.Value{\n\t\t\"Symbols\": reflect.ValueOf(Symbols),\n\t}\n}\n\n//go:generate ../../internal/cmd/extract/extract -include=^Exec,Exit,ForkExec,Kill,Ptrace,Reboot,Shutdown,StartProcess,Syscall syscall\n"
  },
  {
    "path": "stdlib/unsafe/go1_21_unsafe.go",
    "content": "// Code generated by 'yaegi extract unsafe'. DO NOT EDIT.\n\n//go:build go1.21 && !go1.22\n// +build go1.21,!go1.22\n\npackage unsafe\n\nimport (\n\t\"reflect\"\n\t\"unsafe\"\n)\n\nfunc init() {\n\tSymbols[\"unsafe/unsafe\"] = map[string]reflect.Value{\n\t\t// type definitions\n\t\t\"Pointer\": reflect.ValueOf((*unsafe.Pointer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unsafe/go1_22_unsafe.go",
    "content": "// Code generated by 'yaegi extract unsafe'. DO NOT EDIT.\n\n//go:build go1.22\n// +build go1.22\n\npackage unsafe\n\nimport (\n\t\"reflect\"\n\t\"unsafe\"\n)\n\nfunc init() {\n\tSymbols[\"unsafe/unsafe\"] = map[string]reflect.Value{\n\t\t// type definitions\n\t\t\"Pointer\": reflect.ValueOf((*unsafe.Pointer)(nil)),\n\t}\n}\n"
  },
  {
    "path": "stdlib/unsafe/unsafe.go",
    "content": "// Package unsafe provides wrapper of standard library unsafe package to be imported natively in Yaegi.\npackage unsafe\n\nimport (\n\t\"reflect\"\n\t\"unsafe\"\n)\n\n// Symbols stores the map of unsafe package symbols.\nvar Symbols = map[string]map[string]reflect.Value{}\n\nfunc init() {\n\tSymbols[\"github.com/traefik/yaegi/stdlib/unsafe/unsafe\"] = map[string]reflect.Value{\n\t\t\"Symbols\": reflect.ValueOf(Symbols),\n\t}\n\tSymbols[\"github.com/traefik/yaegi/yaegi\"] = map[string]reflect.Value{\n\t\t\"convert\": reflect.ValueOf(convert),\n\t}\n\n\tSymbols[\"unsafe/unsafe\"][\"Add\"] = reflect.ValueOf(add)\n\n\t// Add builtin functions to unsafe, also implemented in interp/cfg.go.\n\tSymbols[\"unsafe/unsafe\"][\"Sizeof\"] = reflect.ValueOf(sizeof)\n\tSymbols[\"unsafe/unsafe\"][\"Alignof\"] = reflect.ValueOf(alignof)\n\t// The following is used for signature check only.\n\tSymbols[\"unsafe/unsafe\"][\"Offsetof\"] = reflect.ValueOf(func(interface{}) uintptr { return 0 })\n}\n\nfunc convert(from, to reflect.Type) func(src, dest reflect.Value) {\n\tswitch {\n\tcase to.Kind() == reflect.UnsafePointer && from.Kind() == reflect.Uintptr:\n\t\treturn uintptrToUnsafePtr\n\tcase to.Kind() == reflect.UnsafePointer:\n\t\treturn func(src, dest reflect.Value) {\n\t\t\tdest.SetPointer(unsafe.Pointer(src.Pointer()))\n\t\t}\n\tcase to.Kind() == reflect.Uintptr && from.Kind() == reflect.UnsafePointer:\n\t\treturn func(src, dest reflect.Value) {\n\t\t\tptr := src.Interface().(unsafe.Pointer)\n\t\t\tdest.Set(reflect.ValueOf(uintptr(ptr)))\n\t\t}\n\tcase from.Kind() == reflect.UnsafePointer:\n\t\treturn func(src, dest reflect.Value) {\n\t\t\tptr := src.Interface().(unsafe.Pointer)\n\t\t\tv := reflect.NewAt(dest.Type().Elem(), ptr)\n\t\t\tdest.Set(v)\n\t\t}\n\tdefault:\n\t\treturn nil\n\t}\n}\n\nfunc add(ptr unsafe.Pointer, l int) unsafe.Pointer {\n\treturn unsafe.Add(ptr, l)\n}\n\nfunc sizeof(i interface{}) uintptr {\n\treturn reflect.ValueOf(i).Type().Size()\n}\n\nfunc alignof(i interface{}) uintptr {\n\treturn uintptr(reflect.ValueOf(i).Type().Align())\n}\n\n//go:nocheckptr\nfunc uintptrToUnsafePtr(src, dest reflect.Value) {\n\tdest.SetPointer(unsafe.Pointer(src.Interface().(uintptr))) //nolint:govet\n}\n\n//go:generate ../../internal/cmd/extract/extract unsafe\n"
  },
  {
    "path": "stdlib/wrapper-composed.go",
    "content": "package stdlib\n\nimport (\n\t\"bufio\"\n\t\"io\"\n\t\"net\"\n\t\"net/http\"\n\t\"reflect\"\n)\n\n// Wrappers for composed interfaces which trigger a special behavior in stdlib.\n// Note: it may become useless to pre-compile composed interface wrappers\n// once golang/go#15924 is resolved.\n\n// In net/http, a ResponseWriter may also implement a Hijacker.\n\ntype _netHTTPResponseWriterHijacker struct {\n\tIValue       interface{}\n\tWHeader      func() http.Header\n\tWWrite       func(a0 []byte) (int, error)\n\tWWriteHeader func(statusCode int)\n\n\tWHijack func() (net.Conn, *bufio.ReadWriter, error)\n}\n\nfunc (w _netHTTPResponseWriterHijacker) Header() http.Header { return w.WHeader() }\n\nfunc (w _netHTTPResponseWriterHijacker) Write(a0 []byte) (int, error) { return w.WWrite(a0) }\n\nfunc (w _netHTTPResponseWriterHijacker) WriteHeader(statusCode int) { w.WWriteHeader(statusCode) }\n\nfunc (w _netHTTPResponseWriterHijacker) Hijack() (net.Conn, *bufio.ReadWriter, error) {\n\treturn w.WHijack()\n}\n\n// In io, a Reader may implement WriteTo, used by io.Copy().\n\ntype _ioReaderWriteTo struct {\n\tIValue interface{}\n\tWRead  func(p []byte) (n int, err error)\n\n\tWWriteTo func(w io.Writer) (n int64, err error)\n}\n\nfunc (w _ioReaderWriteTo) Read(p []byte) (n int, err error) { return w.WRead(p) }\n\nfunc (w _ioReaderWriteTo) WriteTo(wr io.Writer) (n int64, err error) { return w.WWriteTo(wr) }\n\n// In io, a Writer may implement ReadFrom, used by io.Copy().\n\ntype _ioWriterReadFrom struct {\n\tIValue interface{}\n\tWWrite func(p []byte) (n int, err error)\n\n\tWReadFrom func(r io.Reader) (n int64, err error)\n}\n\nfunc (w _ioWriterReadFrom) Write(p []byte) (n int, err error) { return w.WWrite(p) }\n\nfunc (w _ioWriterReadFrom) ReadFrom(r io.Reader) (n int64, err error) { return w.WReadFrom(r) }\n\n// Each MapType value (each slice) must be sorted by complexity, i.e. by number\n// of interface methods.\nfunc init() {\n\tMapTypes[reflect.ValueOf((*_net_http_ResponseWriter)(nil))] = []reflect.Type{\n\t\treflect.ValueOf((*_netHTTPResponseWriterHijacker)(nil)).Type().Elem(),\n\t}\n\tMapTypes[reflect.ValueOf((*_io_Reader)(nil))] = []reflect.Type{\n\t\treflect.ValueOf((*_ioReaderWriteTo)(nil)).Type().Elem(),\n\t}\n\tMapTypes[reflect.ValueOf((*_io_Writer)(nil))] = []reflect.Type{\n\t\treflect.ValueOf((*_ioWriterReadFrom)(nil)).Type().Elem(),\n\t}\n}\n"
  }
]